cancel
Showing results for 
Search instead for 
Did you mean: 

DMEE to readd vendor address from Street 4 and 5

Former Member
0 Kudos

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.

Accepted Solutions (0)

Answers (2)

Answers (2)

ajaycwa1981
Active Contributor

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

sanil181988
Explorer
0 Kudos

Hi Ajay Maheshwari,

I have same requirement, can you tell me which Function Module (EXIT Module for DMEE tree)did you use ?

Thanks,

Sanil K.

Bohdan
Active Contributor
0 Kudos

Hello Venkata,

I've checked in standard structures, there is no standard mapping for vendor's fields Street 4 and Street 5 in structures FPAYH, FPAYHX and FPAYP. However, that's is not a big issue. In such cases, when SAP doesn't provide standard mapping, we can configure it via user-exit. Please get in touch with your developer and discuss this topic. If you need any further input, please let me know.

B.R

The Wirtschaftsmann