on 2016 Feb 12 3:04 AM
Hi All,
I have configured DMEE for bankers checks. Some vendors address has been maintained in Street 4 and 5, But I couldn't find a mapping field to read Street 4 and 5 in my DMEE. Could you please help on this.
Request clarification before answering.
Hi Sai
We had similar requirement, to populate Vendor Email address from Vendor Master in DME file
we used Event 05 against format tree in OBPM1.. Write the below sample code, to fill FPAYHX structure (REF01 field) with email address from Vendor Master
DATA: WA_adr6 TYPE adr6.
CLEAR wa_adr6.
SELECT SINGLE * FROM adr6
INTO wa_adr6
WHERE addrnumber = IS_FPAYH-zadnr.
ES_FPAYHX-REF01 = wa_adr6-SMTP_ADDR.
After this, map FPAYHX-REF01 field to your node in DME tree and you are there
You can do similar thing and retrieve the value from Street 4 and 5 fields.
Rgds
Ajay M
PS: Request you to close your threads once your issue is fixed. you can close by marking any of the relevant answer as CORRECT ANSWER. For any workaround solution, you can specify it as HELPFUL ANSWER.. Incase no solution is available, Close your thread by marking it as "Assumed Answered" . This helps others in future to know how the issue was resolved
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
User | Count |
---|---|
88 | |
12 | |
7 | |
5 | |
5 | |
4 | |
4 | |
3 | |
3 | |
2 |
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.