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: 

IDOC_INPUT_ORDERS with error messageVBAK-LIFSK is not an input field

alex_m
Active Contributor
0 Kudos

Hi

While craeting SO from third party system this message.The FM IDOC_INPUT_ORDERS. The idoc is processed with status 51 with error message VBAK-LIFSK is not input field.

It only happens for Idocs that are processed in the background, process in in foreground is ok.

My all the incoming order will be delivey blocked... Did any body have any clue for this issue?...

Thanks,

Alex.

3 REPLIES 3

former_member188685
Active Contributor
0 Kudos

> Idocs that are processed in the background, process in in foreground is ok

inside the program may be that field is set for input disable in background.

check for this kind of codie isnide the SAPMV45A program.

if sy-batch = 'X' and sy-binput = 'X'.
loop at screen.
if screen-name = 'VBAK-LIFSK'.
 screen-input = 0.
modify screen.
endif.
endloop.
endif.

may be this is causing in background issue.

0 Kudos

Hi Vijay,

Thanks for your reply. I did searched already in SO user exit place, but no such a code available.. Did you guess any problem in inbound FM?.. I could see lot of OOS messgae for this error (00 - 347), but all oss message for other fields not VBAK-LIFSK...

Reply me if u have any idea...

0 Kudos

FYI.. This error because of the user doesnt have a authoraisation to block the order.... Its got resolved...