2011 Nov 30 4:32 AM
Dear SDN,
our client has a custom program for GL Document batch input through TCode FV50.
Though the answer should not be, the question here is very straightforward: why, in this program, the mentioned error occurs for some users, but not for others, giving ALL the input parameters are the same???
1 - Batch input runs
2 - FV50 is displayed
3 - (Menu) Document -> Park
4 - Error: FP140 - Msg: "Parking not possible during batch input"
Note: User who gets the error has ALL the authorizations that users who don't get the error have.
Any suggestion is highly appreciated.
Regards,
Fabio
Dear SDN,
our client has a custom program for GL Document batch input through TCode FV50.
Though the answer should not be, the question here is very straightforward: why, in this program, the mentioned error occurs for some users, but not for others, giving ALL the input parameters are the same???
1 - Batch input runs
2 - FV50 is displayed
3 - (Menu) Document -> Park
4 - Error: FP140 - Msg: "Parking not possible during batch input"
Note: User who gets the error has ALL the authorizations that users who don't get the error have.
Any suggestion is highly appreciated.
Regards,
Fabio
2011 Nov 30 6:03 AM
This message is triggered in SAPMF05A program - MF05AFB0_BELEG_PARKEN include.
keep a breakpoint at this line and check in debug mode.
Also since you are using a custom program to call FV50 transaction,
check if CTU_PARAMS structure is used and try using NOBINPT = 'X' option.
if sy-binpt ne space.
call function 'CUSTOMIZED_MESSAGE'
exporting
i_arbgb = 'FP'
i_dtype = 'E'
i_msgnr = '140'.
if 1 = 2.
message e140(fp).
endif.
endif.