cancel
Showing results for 
Search instead for 
Did you mean: 

How to control the default Reverse Date at VL09

Former Member
2,000

Hello,

At VL09 (reverse goods movement) screen, the default Reverse Date is today.

If users want to modify the Reverse Date,

users have to select a line, click on define date button and input date into the local date field at pop-up screen.

I want the default Reverse Date at VL09 screen to be the same as the Actual GI date of delivery.

Please tell me how.

Thank you.

Amyshen
Explorer
0 Kudos
Yes,you can enhance it in the program:RVV50L09 at the head of form:list_body_aufbauen. The code as follow: ENHANCEMENT 1 ZES_VL09_SCREEN. IF SY-TCODE = 'VL09' AND SY-UCOMM = ''. LOOP AT XLIKPUKWA . XLIKPUKWA-STDAT = XLIKPUKWA-WADAT_IST."冲销日期等于过账日期 MODIFY XLIKPUKWA. ENDLOOP. ENDIF. ENDENHANCEMENT.

Accepted Solutions (0)

Answers (2)

Answers (2)

Former Member
0 Kudos

Dear ,

As per my opinion, In standard if you do not touch then it is better.

Please take help your abaper or basis team to create a new Z T.Code for your requirement.

Regards,

Sandip Shaktavat

Former Member
0 Kudos

Hi.

you could use enhancement to fix it

Former Member
0 Kudos

Thank for your reply

But could you tell me more detail please?

Regards

Jiyeob

harry_wu
Contributor

1. There is no standard BADI and userexit which can fulfill your requirement.

2. You can try to do the modification in RVV50L09.

Before

"CALL FUNCTION 'WS_REVERSE_GOODS_ISSUE'"

You can add "Move XLIKPUKWA-wadat_ist to XLIKPUKWA-STDAT. "

Amyshen
Explorer
0 Kudos
Yes,you can enhance it in program:RVV50L09 at the head of form:list_body_aufbauen