Skip to content

More than one table in output #266

Answered by fw2568
kubusek17 asked this question in Q&A
Jan 11, 2024 · 1 comments · 2 replies
Discussion options

You must be logged in to vote

Transparent identifier members are automatic fields generated in linq statements (see https://ericlippert.com/2014/07/31/transparent-identifiers-part-one/). As your field docData is now a IEnumerable<> it contains no fields description and status.

A working code:

from _ in func.HandleReturn()
from headers in func.MapTable("HEADERS", docData =>
        from documentNo in docData.GetField<string>("VBELN")
        from documentType in docData.GetField<string>("FKART")
        select new {documentNo, documentType } 
    )
from customers in func.MapTable("CUSTOMERS", s =>
        from kunnr in s.GetField<string>("KUNNR")
        from name1 in s.GetField<string>("NAME1")
        from name2 in s.G…

Replies: 1 comment 2 replies

Comment options

You must be logged in to vote
2 replies
@kubusek17
Comment options

@fw2568
Comment options

Answer selected by kubusek17
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Category
Q&A
Labels
None yet
2 participants
Converted from issue

This discussion was converted from issue #265 on January 11, 2024 11:09.