cancel
Showing results for 
Search instead for 
Did you mean: 

Customer Exit Problem

Former Member
0 Kudos

Hi,

I searched all the threads could'nt get a solution Can any one suggest me how to write customer exit have date field purchase order date 0BBP_PODATE need to populate every month of 1st to current date and should not display selection screen . I try to go to CMOD programme it giving error message.

Program names ZX... are reserved for includes of exit function groups

Regards

RK

Accepted Solutions (1)

Accepted Solutions (1)

shanthi_bhaskar
Active Contributor
0 Kudos

goto your project and use enhancement component RSR00001 and goto components and EXIT_SAPLRRS0_001 and double click on exit..then double click on inlcude ZXRSRU01 then it throws warning then press enter ok then it wil take you to the inlcude program..there you can write below code.

if i_step = 1.

if i_vnam = 'cdate'.

l_s_range-low = sy-datum.

l_s_range-sign = 'I'.

l_s_range-opt = 'EQ'.

append l_s_range to e_t_range.

endif.

endif

create cdate varaible where you have to uncheck ready for input option

Former Member
0 Kudos

Dear Bhaskar,

Thank you very much for your reply.Here when i double click ZXRSRU01 clould'nt get any Ok button . i am getting this below error message and can you suggest me this issue.

Program names ZX... are reserved for includes of exit function groups

Regards

Rk

shanthi_bhaskar
Active Contributor
0 Kudos

i hope its not error ..it is a warning...press enter when it shows that message..

Edited by: shanthi bhaskar on Aug 9, 2010 12:17 PM

former_member185181
Active Contributor
0 Kudos

press enter button twice

Answers (0)