cancel
Showing results for 
Search instead for 
Did you mean: 

logic as "If Sales Document / Order Item in Orders DSO has no corresponding Sales Document / Order Item in Despatches DSO then 1 else 0 to target DSO

0 Kudos
85

Hi Gurus,

We have a requirement of writing logic on Sales document/Order Item from sources.

Scenario:

Here the scenario is, we have the two DSO's 1) Orders and 2) Despatches at source level and we are loading Orders, Despatches source level DSO's to target DSO with Sales Document/Order Item as Key fields.


We need to write logic as "If Sales Document / Order Item in Orders DSO has no corresponding Sales Document / Order Item in Despatches DSO then 1 else 0 to target DSO.


Please guide.


Thanks,

Pavan kumar

View Entire Topic
former_member182470
Active Contributor
0 Kudos

Hi Pavan,

You can create either an End routine or Field Routine in DSO3(Target). You can just map the transformation from DSO1(Orders) to DSO3(Target). You will have to look-up DSO2(Despatches) in the routine.

Data : IT1 LIKE DSO1

          IT2 LIKE DSO2

loop at source_package for all entries into IT3

where source_fields-sales doc no EQ IT2-sales doc no.

          AND source_fields-Order Item no EQ IT2-Order Item no.

result 0.

else

result 1.

Note: This is just a rough code to give you an idea. It may not be syntactically correct.

Regards,

Suman

Former Member
0 Kudos

Hi Both,

I think the syntax should contain "OR" between Doc no and Item no. As per his query the Target DSO will have 1 if either of DOCs or ITEMs are equal. Let me know what you guys think

Data : IT1 LIKE DSO1

          IT2 LIKE DSO2

loop at source_package for all entries into IT3

where source_fields-sales doc no EQ IT2-sales doc no.

          OR

source_fields-Order Item no EQ IT2-Order Item no.

result 0.

else

result 1.

Thanks,

Rohit