on 2019 Dec 17 1:05 PM
Hi, team!
Can you help me with tcode FM_FUNCTION and LSMW recording?
I want create LSMW with this tcode to create many Function Areas, but can't to do... something is wrong with screens.
Or how can we create Function Area massive? Error code display is "No batchinput data for dynpro SAPLBUSS 2500" Message number no. 00344.
Waiting for your reply...
Please help me)
Thanks.
Best regards.
Cristina
Request clarification before answering.
The issue is due to the content of the SET/GET Parameter FBE, which fills the screen field "Functional Area" when the transaction FM_FUNCTION is started.
It's a problem if you have one Batch Input session (via LSMW or not) or CALL TRANSACTION USING, which creates a Functional Area with the screens SAPLBUSS 5024 and SAPLBUSS 2500, and if you create two or more Functional Areas sequentially:
The workaround to have only one transaction per session is not
Another workaround is to develop a program (see below) which initializes the SET/GET Parameter FBE with an EXISTING Functional Area code and calls the transaction FM_FUNCTION. Record the Batch Input data on the transaction SE38, call the program and create one functional area. Now run your Batch Input, it should work.
ABAP code:
REPORT ZZZ.
" 0001 is an existing functional area
SET PARAMETER ID 'FBE' FIELD '0001'.
CALL TRANSACTION 'FM_FUNCTION'.
Good luck!
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
User | Count |
---|---|
8 | |
1 | |
1 | |
1 | |
1 | |
1 | |
1 | |
1 | |
1 | |
1 |
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.