‎2009 Jun 26 2:13 AM
Hi,
I am using an sap standard function module IDOC_PROCESS_ERROR.
I need to pass the idoc numbers as the input for the function module.
For each of the idoc, the function module gives an pop up window which displays the status information of the idoc.I need to press enter and then the function module process the next idoc.
So when i am using it in my program, if i enter 10 idocs i need to press the enter key 10 times as an response to the pop up window. Is there any way of suppressing the popup window via my code?
Regards,
Lakshminarasimhan.N
‎2009 Jun 26 6:22 AM
Hi
There is an import parameter Dialog flag. Default value is X. Instead of X, use space. I think it will work.
IMPORTING
*" VALUE(IDOC_NUMBER) LIKE EDIDC-DOCNUM
*" VALUE(DIALOG_FLAG) DEFAULT 'X'
*" EXCEPTIONS
*" NO_AUTHORIZATION
*" IDOC_NOT_IN_DATABASEIf it doesn't work. Try scheduling your program in background.
Hope it helps.
Sourav.
‎2009 Jun 26 6:22 AM
Hi
There is an import parameter Dialog flag. Default value is X. Instead of X, use space. I think it will work.
IMPORTING
*" VALUE(IDOC_NUMBER) LIKE EDIDC-DOCNUM
*" VALUE(DIALOG_FLAG) DEFAULT 'X'
*" EXCEPTIONS
*" NO_AUTHORIZATION
*" IDOC_NOT_IN_DATABASEIf it doesn't work. Try scheduling your program in background.
Hope it helps.
Sourav.
‎2009 Jun 26 6:26 AM