‎2006 Aug 28 7:54 AM
Good Day.
I am new to SDN and posting for the first time.
I want to print vendor address in SAP SCRIpt Form.
I have vendors from all over the world and the address format is different in each country.
I want to know if there is anything using which I can display the address as per the country specification.
thank you in advance.
‎2006 Aug 28 7:55 AM
<Address> ..<EndAddress> Will help
have a look at http://sap.niraj.tripod.com/id18.html
Welcome to SDN.
Plz reward if useful.
thnx
‎2006 Aug 28 7:55 AM
<Address> ..<EndAddress> Will help
have a look at http://sap.niraj.tripod.com/id18.html
Welcome to SDN.
Plz reward if useful.
thnx
‎2006 Aug 28 7:58 AM
ADDRESS-ENDADDRESS will print address depends upon the receiver address standards. IN order to solve your problem, I suggest two ways.
1) In sapscript
/:ADDRESS
/: ADDRESSRNUMBER = W_ADRNR
/: COUNTRY 'DE'
/: FROMCOUNTRY 'DE'
/:ENDADDRESS
and from prorgam pass W_ADRNR from ADRC. It will print entire address.
http://help.sap.com/saphelp_40b/helpdata/en/d1/803238454211d189710000e8322d00/content.htm
‎2006 Aug 28 8:01 AM
Hi,
You can retrieve the Vendor address number from LFA1 table along with the country code and pass it to ADRC-ADDRNUMBER with the ADRC-PO_BOX_CTY = lfa1-land1 and print the address,
Rgds,
‎2006 Aug 28 8:02 AM