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

Parameter ID

Former Member
0 Likes
390

Hi friends,

We wanted to default the value "02" for version in CK24, which is having parameter ID "VSN", We gave this value in parameter tab of user own data, but still it is not defaulting.

Do we need to do any change in the standard program for this?

All your valuble answers will be highly appreciated & rewarded points.

Thanks in advance.

Regards

Ravi

2 REPLIES 2
Read only

Former Member
0 Likes
330

use this ........

DATA : lv_vbeln TYPE vbeln.

IF sobj-fieldname = 'VBELN'.

lv_vbeln = sobj-value.

IF lv_vbeln > 0.

SET PARAMETER ID 'VF' FIELD lv_vbeln.

CALL TRANSACTION 'VF03' AND SKIP FIRST SCREEN.

ENDIF.

ENDIF.

Read only

0 Likes
330

I am not technical person, but your code seems to be related to VF02 and some other filed not the one which i mentioned.

Regards

Ravi