Application Development and Automation 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: 
Read only

FMODULE

Former Member
0 Likes
364

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

1 REPLY 1
Read only

Former Member
0 Likes
317

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