Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Plz any one Explaine me how to Use mapping function for perticular Type
Ex ; I have 3 Partner type
LES, RD, SRD
I need to apply Mapping differently for Each Partners
Use Mapping Load
Mapping_Partner:
Mapping LOAD Partner Type,
PartnerID
FROM
Partner.qvd
(qvd);
Step 2: Apply this map to transaction table.
Transactions:
LOAD
CustomerID,
ProductID,
Amount,
ApplyMap ('Mapping_Partner', PartnerID,'Unknown')
FROM
Transactions.qvd
(qvd);