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

SAPScript Address Node - Print All UpperCase

Former Member
0 Likes
1,031

I am using the ADDRESS...ENDADDRESS tag. Basically I am passing an address-number to print the address.

Is there way to retrieve all the address information in uppercase using this tag? (Using something like a NO_UPPERCASE_FOR_CITY flag)

Thanks in advance!

1 ACCEPTED SOLUTION
Read only

Former Member
0 Likes
872

I think <b>NO_UPPERCASE_FOR_CITY</b> will Only Take care of City, But You will Get details as Maintained in the Table.

May be try some other way to do it in Script.

regards

vijay

6 REPLIES 6
Read only

Former Member
0 Likes
873

I think <b>NO_UPPERCASE_FOR_CITY</b> will Only Take care of City, But You will Get details as Maintained in the Table.

May be try some other way to do it in Script.

regards

vijay

Read only

Former Member
0 Likes
872

Hi,

NO_UPPERCASE_FOR_CITY

Default = NO_UPPERCASE_FOR_CITY ‘ ‘

Usually, the system prints the city and country names of foreign addresses in uppercase ( NO_UPPERCASE_FOR_CITY ‘ ‘ ).

You can use this parameter to force the system to output city and country name unchanged (uppercase/lowercase).

( NO_UPPERCASE_FOR_CITY ‘X’ )

Thanks,

Naga

Read only

Former Member
0 Likes
872

Hi,

Here is the sample for you hope it works...

*********

/: ADDRESS PARAGRAPH AB

/: TITLE &VBDKR-ANRED&

/: NAME &VBDKR-NAME1&, &VBDKR-NAME2&, &VBDKR

/: STREET &VBDKR-STRAS&

/: POBOX &VBDKR-PFACH& CODE &VBDKR-PSTL2&

/: POSTCODE &VBDKR-PSTLZ&

/: CITY &VBDKR-ORT01&

/: COUNTRY &VBDKR-LAND1&

/: REGION &VBDKR-REGIO&

/: FROMCOUNTRY &VBDKR-SLAND&

/: ENDADDRESS

**************

Here in Paragraph AB Paragrapg Format>Outline TAB>Check UPPERCASE.

I think it will work.

Thanks.

If this helps you award points and close the thread.

Read only

0 Likes
872

It is very strange! When I come out of the form, the uppercase flag gets reset! What could be the reason?

Read only

0 Likes
872

Actually This will call the FM ADDRESS_PRINT_FORM

check the FM passing the parameters to this FM

and see the effect...

the atributes you are passing might cause the flag to be reset.

regards

vijay

Read only

0 Likes
872

Pass the same parameters values to the above FM

check ..

vijay