cancel
Showing results for 
Search instead for 
Did you mean: 

Problem in printing address using ADDRESS ENDADDRESS in SAP Script

Former Member
0 Kudos

Hi Friends,

I have an issue while printing address in SAP Script.

Please find the code i used in the script.The problem is always the city is getting printed in capital letters eventhough the value is in lower case.

All other fields are getting printed in lower case.

Country is Great Britain for your reference.

{

ADDRESS PARAGRAPH AS

NAME &V_NAME1&

STREET &V_STREET&

CITY &V_CITY2&, &V_CITY1&

POSTCODE &V_POST_CODE1&

COUNTRY &V_COUNTRY&

ENDADDRESS

}

Expecting an early solution

Rajesh.

Accepted Solutions (0)

Answers (2)

Answers (2)

Former Member
0 Kudos

Rajesh,

Are u using a standard driver program or is it customized,

i feel that the city value which is in lower case is getting translated somewhere later .

there can be no other reason for this translation as in your case.

During debugging try changing the city value at runtime

and see if it reflects. Hope this works

Regards

Sajimon Chandran

Former Member
0 Kudos

After selecting the data in your program, you could use TRANSLATE variable name TO LOWER CASE.

Former Member
0 Kudos

Hi Gustavo Campane

Thanks for the reply.

The value for the city is in lower case only.But in the print it is in Upper case.