‎2008 Oct 14 1:24 PM
hi iam using a fmodule
posting_interface_document.
now this fmodule is parking document in fvb1 whenever a workflow is triggered.
now but the issue is that it takes me directly to fvb1 whenevr it is triggered where as wat i wwant is that it should execute the job in the background immediately
‎2008 Oct 14 1:54 PM
Have you called POSTING_INTERFACE_START function module before calling POSTING_INTERFACE_DOCUMENT?
Call the below FM to call the transaction in display mode. I_MODE = 'N' tells that it is display mode. I_FUNCTION = 'C' tell the method used is CALL transaction. I_UPDATE = 'S' is a synchronous updation.
CALL FUNCTION 'POSTING_INTERFACE_START'
EXPORTING
i_function = 'C'
i_update = 'S'
i_mode = 'N'
EXCEPTIONS
client_incorrect = 1
function_invalid = 2
group_name_missing = 3
mode_invalid = 4
update_invalid = 5
OTHERS = 6.
Regards,
Kiran Bobbala