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

conversion the land1 field

Former Member
0 Likes
1,104

Hi,

I want to convert the land1 values 'us' to 'US'.

These values in a internal table so please tell me how to do it.

Which function module i can use for this.

I already search for conver routine but there is no conversio routine for the field land1 in tzone table. so please give me some idea....

Advance thanks,

Kumar A.

Hi,

I want to convert the land1 values 'us' to 'US'.

These values in a internal table so please tell me how to do it.

Which function module i can use for this.

I already search for conver routine but there is no conversio routine for the field land1 in tzone table. so please give me some idea....

Advance thanks,

Kumar A.

5 REPLIES 5
Read only

Former Member
0 Likes
908
loop at itab into wa_itab.

    translate wa_itab-land1 to upper case.
    modify itab from wa_itab.

endloop.

Message was edited by:

Chandrasekhar Jagarlamudi

Read only

Former Member
0 Likes
908

hi Anil,

Use Translate statement ..


data : v_land1(50) type c value 'us'

translate v_land1 to upper case.

write : v_land1.

Regards,

Santosh

Message was edited by:

Santosh Kumar Patha

Read only

Former Member
0 Likes
908

use translate command with upper case.

Read only

Former Member
0 Likes
908

Hi Anil,

Pass the land1 value in the FM 'AIPC_CONVERT_TO_UPPERCASE', as an input parameter(I_INPUT), we will be getting the uppercase value in the output parameter (E_OUTPUT).

reward points if useful

regards

ramireddy

Read only

Former Member
0 Likes
908

You can change the customer master using standard SAP program RFBIDE00.

Rob