cancel
Showing results for 
Search instead for 
Did you mean: 

print address

Former Member
0 Kudos

How to print the address by using ADDRESS and ENDADDRESS.

Can anybody send me any exapmple and also how to write in the print program?

Regards,

pandu.

Accepted Solutions (0)

Answers (2)

Answers (2)

Former Member
0 Kudos

Try using this:



/: ADDRESS PARAGRAPH AS
/: TITLE &LFA1-ANRED&
/: NAME &LFA1-NAME1&, &LFA1-NAME2&, &LFA1-NAME3
/: STREET &LFA1-STRAS&
/: POBOX &LFA1-PFACH& CODE &LFA1-PSTL2&
/: CITY &LFA1-ORT01&, &LFA1-ORT02&
/: POSTCODE &LFA1-PSTLZ&
/: COUNTRY &LFA1-LAND1&
/: REGION &LFA1-REGIO&
/: FROMCOUNTRY &T001-LAND1&
/: ENDADDRESS

Reward if useful

Former Member
0 Kudos

Thank u for ur reply ..

Can u tell me how to call in print program, because iam creating the print program.

Regards,

pandu.

Former Member
0 Kudos

use the function module

ADDRESS_INTO_PRINTFORM

and pass address no and country and address type

If helpful give me the nuts

Former Member
0 Kudos

If you want to print country specific then use



/: ADDRESS PARAGRAPH AS
/: ADDRESSNUMBER &EKKO-ADRNR(K)&
/: FROMCOUNTRY &T001-LAND1&
/: ENDADDRESS



Reward if useful.