cancel
Showing results for 
Search instead for 
Did you mean: 

Problem with SAP Script

Former Member
0 Kudos

Hey guys: Please help ...I need STREET 4 field in the customer master to show up on the SAP Script form...here is the code that I have

ADDRESS PARAGRAPH ZF

TITLE &DKADR-ANRED&

NAME &DKADR-NAME1&, &DKADR-NAME2&, &DKADR-NAME3&, &DKADR-NAME4&

STREET &DKADR-STRAS&

STREET2 &DKADR-ADRNR&

POBOX &DKADR-PFACH& CODE &DKADR-PSTL2&

CITY &DKADR-ORT01&, &DKADR-ORT02&

POSTCODE &DKADR-PSTLZ&

COUNTRY &DKADR-LAND1&

REGION &DKADR-REGIO&

FROMCOUNTRY &DKADR-INLND&

ENDADDRESS

From looking at structure DKADR, street 4 is not one the of available fields. Please help

thanks

Brian

Accepted Solutions (1)

Accepted Solutions (1)

Former Member
0 Kudos

What transaction are you using?

Look at the street 4 field with f1 and look wich element is it using

Former Member
0 Kudos

Transaction code FD03 to display the customer master...

Table Name ADDR1_DATA

Field Name STR_SUPPL3

Data Element AD_STRSPP3

DE Supplement 0

whats your idea?

thanks

Brian

Former Member
0 Kudos

Can't you just try to fetch it?

Write in the sapscript &ADDR1_DATA-STR_SUPPL3& and see if you can fetch it.

Former Member
0 Kudos

yeah that didnt work...I tried...nothing shows up

thx

brian

Former Member
0 Kudos

Is the calling program an standard or a custom program?

Try to see if they fill dkadr leaving the information you need

Former Member
0 Kudos

DAKDR is being filled via a custom program ZRFKORD11.

Problem is that DAKDR doesnt have a field that can be populated with Street 4.

What do you suggest?

thanks

Brian

Former Member
0 Kudos

But is filling it with the information you need?

What I mean is, you have access to STR_SUPPL3?

IF so, just declare a variable of that type and pass the STR_SUPPL3 and later print that in the sapscript.

How is it getting DKADR? With a select? can you post it?

Answers (1)

Answers (1)

Former Member
0 Kudos

Please declare a vriable in the print program and pass the value for street 4 to that variable and call it in the acript.

Hope it helps.

Shreekant