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: 

FV50 - Parking not possible during batch input

fabio_bellocchio
Participant
0 Kudos

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

1 REPLY 1

GauthamV
Active Contributor
0 Kudos

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.