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: 

WHAT IS RSNASTED?

Former Member
0 Kudos

HI,

what is rsnasted ? and when we will go for it..

regards

ganesh

1 ACCEPTED SOLUTION

Former Member
4 REPLIES 4

Former Member
0 Kudos

Hi,

RSNATED is the program used for triggering IDOC for the output type..where the output medium is 6.

And the subroutine that triggers the IDOC in the program is EDI_PROCESSING.

Thanks,

Naren

Former Member
0 Kudos

RSNASTED itself determines the associated IDoc outbound function module, executes it to fill the EDIDx tables and passes the prepared IDoc to the port.

You can call the standard processing routines from any ABAP, by executing the following call to the routine. You only have to make sure that the structure NAST is declared with the tables statement in the calling routine and that you fill the at least the key part and the routing information before.

TABLES NAST.

NAST-MANDT = SY-MANDT.

NAST-KSCHL = 'ZEDIK'.

NAST-KAPPL = 'V1'.

NAST-OBJKY = '0012345678'.

NAST-PARNR = 'D012345678'.

PERFORM einzelnachricht_screen(RSNAST00).

Calling einzelnachricht_screen determines how the message is processed. If you want to force the IDoc-processing you can call it directly:

TNAPR-PROGN = ''.

TNAPR-ROUTN = 'ENTRY'.

PERFORM edi_processing(RSNASTED).

PLZ REWARD POINTS

Former Member

Former Member
0 Kudos

thanks friends