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: 

code

Former Member
0 Kudos

likp-zukrl+2(2) = zvbak-spart.

wht does likp-zukrl+2(2) mean.

5 REPLIES 5

Former Member
0 Kudos

2 charecters from the third charecter....

it is offset.

chareceters will be numbered starting from 0.

so it will be 3rd and fourth charecters....

Former Member
0 Kudos

HI,

likp-zukrl+2(2) = zvbak-spart means it will replace from 3rd char of likp-zukrl to 2 char by the first two chars in zvbak-spart.

see this example:

data:var(10) value 'none',var1(2) value 'no'.

var+2(2) = var1.

write:/ var.

rgds,

bharat.

Former Member
0 Kudos

likp-zukrl+2(2) = zvbak-spart.

Means value of zvbak-spart will be placed to likp-zukrl from 2nd position to next two words

Ex

zvbak-spart = 'ABC'

likp-zukrl = 'DEFGH'

likp-zukrl+2(2) = zvbak-spart.

Then

likp-zukrl = 'DE<b>AB</b>H'.

Rewards if useful.............

Minal

Former Member
0 Kudos

in the table likp it will capture only the first two characters of the zukrl field

work more offset creations ...u will come to know that

Former Member
0 Kudos

Hi,

It will pick up 2 characters start with 3rd i.e. 3rd and 4th characters.

likp-zukrl = '12345'.

likp-zukrl+2(2) value contain 34.

Regards,

Bhaskar