how to return multi table BAPI_GOODSMVT_GETITEMS #329
Unanswered
AhmedEssa1
asked this question in
Q&A
Replies: 1 comment
-
Just call first .MapTable in a linq expression - so from tab1 in f.MapTable(... ) |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
Output: f => f
.MapTable("GOODSMVT_ITEMS", s =>
from matDoc in s.GetField("MAT_DOC")
select new GoodsMvtItemDto
{
MatDoc = matDoc
}
.MapTable("GOODSMVT_HEADER", ss =>
from pstngDatein ss.GetField("PSTNG_DATE")
select new GoodsMvtHeaderDto {
PostingDate = pstngDate,
}
Beta Was this translation helpful? Give feedback.
All reactions