eB Layout Editor - Include Document Copy column in Documents Held relationship on Person Object

Hello,

I'd like to add a new column, or replace an existing column, on the Documents Held relationship for Person objects in eB Web. I want to display the Copy distributed. Currently we display prefix, middle, revision, name, date acknowledged, transmittal number, and Class name.

What Data Type and Element must I enter, if this is possible? I tried Data Type: xs:string, Element: copy and Invalid Type for the dropdown selection.

Thanks for any and all help!

Parents
  • Hello Patrick,

    You can display the copy distributed by creating a contextual report using script below.

    START WITH Transmittal
    SELECT
    LineItems.Document.Code Number,
    LineItems.Document.Middle Middle,
    LineItems.Document.Revision Rev,
    LineItems.DateAcknowledged DateAck,
    Code TransmittalNo,
    LineItems.PreferedCopyCode CopyNo
    WHERE
    ApprovalStatus = 'A'
    AND LineItems.IssuedTo.Id = @id
    ORDER BY
    LineItems.Document.Code

    Contextual report feature is available on eB v 15.5 and +.

    Regards,
    NT

    Answer Verified By: Carma De Villiers 

Reply
  • Hello Patrick,

    You can display the copy distributed by creating a contextual report using script below.

    START WITH Transmittal
    SELECT
    LineItems.Document.Code Number,
    LineItems.Document.Middle Middle,
    LineItems.Document.Revision Rev,
    LineItems.DateAcknowledged DateAck,
    Code TransmittalNo,
    LineItems.PreferedCopyCode CopyNo
    WHERE
    ApprovalStatus = 'A'
    AND LineItems.IssuedTo.Id = @id
    ORDER BY
    LineItems.Document.Code

    Contextual report feature is available on eB v 15.5 and +.

    Regards,
    NT

    Answer Verified By: Carma De Villiers 

Children