Application Development and Automation Discussions
Join the discussions or start your own on all things application development, including tools and APIs, programming models, and keeping your skills sharp.
cancel
Showing results for 
Search instead for 
Did you mean: 
Read only

PRoblem in SAP Script Address Comand

Former Member
0 Likes
559

HI Frnds,

I am using Address command to display Vendor Address in SAP Script.

But I am facing problem like that vendor's post code is display first rather then City name and after PO code.

I have change alignment to display format for City and PO Code display. But it also gives same error.

Kindly Help me out for this problem.

Regards,

PRiyank

5 REPLIES 5
Read only

Former Member
0 Likes
522

You should use the command /: ADDRESS....ENDADDRESS.

An example can be :

/: ADDRESS DELIVERY PARAGRAPH AD

/: NAME &LFA1-NAME&

/: STREET &LFA1-STRAS&

/: CITY &LFA1-ORT01&

/: POSTCODE &LFA1-PSTLZ&

/: COUNTRY &LFA1-LAND1&

/: FROMCOUNTRY 'DE'

/: ENDADDRESS

Read only

Former Member
0 Likes
522

chk this out

<b>/:ADDRESS PARAGRAPH AS

/: TITLE &VBLKK-ANRED&

/: NAME &VBLKK-NAME1&, &VBLKK-NAME2&, &VBLKK-NAME3&, &VBLKK-NAME4&/: Street ‘115’

/: POBOX &VBLKK-PFACH& CODE &VBLKK-PSTL2& CITY &VBLKK-PFORT&

/: CITY &VBLKK-ORT01&, &VBLKK-ORT02&

/: POSTCODE &VBLKK-PSTLZ&

/: COUNTRY &VBLKK-LAND1&

/: REGION &VBLKK-REGIO&

/: FROMCOUNTRY &TVST-ALAND&

/: End Address</b>

Read only

Former Member
0 Likes
522

I am using same format.. then also gives such display in output as: First City then POstal code

my code:

/: ADDRESS DELIVERY PARAGRAPH AN

/: NAME &LFA1-NAME2&, &LFA1-NAME3&, &LFA1-NAME4&

/: STREET &LFA1-STRAS&

/: CITY &LFA1-ORT01&, &LFA1-ORT02&

/: POSTCODE &LFA1-PSTLZ&

/: COUNTRY &LFA1-LAND1&

/: REGION &LFA1-REGIO&

/: ENDADDRESS

Read only

0 Likes
522

my code:

/: ADDRESS DELIVERY PARAGRAPH AN

/: NAME &LFA1-NAME2&, &LFA1-NAME3&, &LFA1-NAME4&

/: STREET &LFA1-STRAS&

<b>/: POSTCODE &LFA1-PSTLZ&

/: CITY &LFA1-ORT01&, &LFA1-ORT02&</b>

/: COUNTRY &LFA1-LAND1&

/: REGION &LFA1-REGIO&

/: ENDADDRESS

ya change

Read only

0 Likes
522

I have change mucode but its give same output .. nothing changed.