Application Development 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: 

Field Exit for Batch Input creation from LSMW

JasonLante
Explorer
0 Kudos

Hi all,

I am having problems getting a field exit to work for validation of user id in the "Create Batch Input Session" step of LSMW.

Program: /SAPDMC/SAP_LSMW_BI_RECORDING

Screen: 1000

Data Element: SYUNAME

Any help would be appreciated.

Regards,

Jason

Message was edited by: Jason Lante

1 ACCEPTED SOLUTION

Former Member
0 Kudos

Hi Jason,

Field exit is obselete in 4.6 c or greater versions. However if 4.6b, Execute program RSMODPRF and give your data element name (Sy-UNAME) and execute. It will take you to the function module with name FIELD_EXIT_(your dataelement name). Implement your code here in the FM.

Regards,

Senthil

2 REPLIES 2

Former Member
0 Kudos

Hi Jason,

Field exit is obselete in 4.6 c or greater versions. However if 4.6b, Execute program RSMODPRF and give your data element name (Sy-UNAME) and execute. It will take you to the function module with name FIELD_EXIT_(your dataelement name). Implement your code here in the FM.

Regards,

Senthil

0 Kudos

Field exits are not supported after 4.6 yes, but they still work. I found the reason why my field exit wasn't working; it related to the fact that the field I am applying it to is not directly related to a dictionary object. Meaning I cannot apply a field exit.

So my question now is what other ways are there to enhance LSMW?

Regards,

Jason