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

Need Help on User exit

Former Member
0 Likes
1,016

Hi,

this is my requirement: When create a shipment (VT01N ) transaction code , i need to do some calucation and finally update into field (VTTK-EXTI1). but it is not updating: iam using FM exits :EXIT_SAPLV56U_004 and EXIT_SAPLV56U_005.

data is coming into internal table , but not upating into field.

please help me

Hi,

this is my requirement: When create a shipment (VT01N ) transaction code , i need to do some calucation and finally update into field (VTTK-EXTI1). but it is not updating: iam using FM exits :EXIT_SAPLV56U_004 and EXIT_SAPLV56U_005.

data is coming into internal table , but not upating into field.

please help me

4 REPLIES 4
Read only

Former Member
0 Likes
802

Hi Chandra,

Make sure to put the value in i_xvttk and set the updkz field.

Regards,

John.

Read only

Former Member
0 Likes
802

Hi..

i have done same.. and what is update field here...

please give more clear.

Read only

0 Likes
802

Hi,

LOOP AT i_xvttk

WHERE updkz = 'I' OR

updkz = 'U'.

i_xvttk-exti1 = "blablabla".

MODIFY i_xvttk.

ENDLOOP.

Regards,

John.

Read only

Former Member
0 Likes
802

hi ,

i have done same thing is not updating table field.

i_xvttk-exti1 = v_finalvicsbol.

modify table i_xvttk.

see the code also..