‎2008 Apr 25 11:12 AM
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
‎2008 Apr 25 11:29 AM
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.
‎2008 Apr 25 1:43 PM
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