Application Development 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: 

ABOUT OFFSET OF FIELD

Former Member
0 Kudos
71

HI EXPERTS , PLZ LET ME KNOW THAT , IN THE JVTBEZGP-JGPARTNER WHICH HAVE CURRENTLY 0000010127 DATA , I WANT ONLY 00010127, FIRST 2 ZEROS SHOULD BE EXCLUDED, PLZ TELL ME THE SOLUTION. THANKS

1 ACCEPTED SOLUTION

Former Member
0 Kudos
55

Hi ,

Try using the shift command .

Regards

Arun

3 REPLIES 3

Former Member
0 Kudos
56

Hi ,

Try using the shift command .

Regards

Arun

0 Kudos
55

plz tell me the command by takin any example

0 Kudos
55

Hi

Here is a sample code

-.----


data : g_f_order(10) type c.

g_f_order = '0000010127'.

write / g_f_order.

shift g_f_order left by 2 places.

write / g_f_order

-


Regards

Arun