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: 

Possible to trigger output type through Function module?

Former Member
0 Kudos

Hi,

Is it possible to trigger output type through Function modules or through some codings or any standard FM's?

Regards

Bala.

3 REPLIES 3

Former Member
0 Kudos

Hi,

Yes we can trigger using Function Modules.

Regards,

Bala

0 Kudos

Hi,

When the status of Billing document changes(VF01) i need to trigger the output type Using function modules. Is there any Standard FM ? If please provide a sample code for triggering output type.

Regards

Bala.

obadiah_king
Explorer
0 Kudos

You did not specify what area you need to retrigger an output type for, but here is a sample to retrigger a delivery output.

CALL FUNCTION 'BAPI_LIKP_PROCESS_MSG_DIRECT'

EXPORTING

  • DYNAMICOUTPUTDEVICE =

processing = PROCESSING

  • SORTMESSAGE = 1

TABLES

deliverynumber = delnbrs

outputtype = outputs

messageprotocol = bapimsgprot

return = bapiret2.

Thanks