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

idoc

Former Member
0 Likes
584

hi,,

how to Collect IDocs and Perform Job Scheduling once in a day.

Ganesh

1 ACCEPTED SOLUTION
Read only

Former Member
0 Likes
560

Hi Ganesh,

In WE20 You have the option to COLLECT IDOC. You need to select that radio button.

Then you can schedule a job based on kind of IDOC (Inbound - RBDAPP1 and outbound RSEOUT00) on the reports menstioned.

Reward points if useful.

Regards,

Atish

4 REPLIES 4
Read only

Former Member
0 Likes
561

Hi Ganesh,

In WE20 You have the option to COLLECT IDOC. You need to select that radio button.

Then you can schedule a job based on kind of IDOC (Inbound - RBDAPP1 and outbound RSEOUT00) on the reports menstioned.

Reward points if useful.

Regards,

Atish

Read only

Former Member
0 Likes
560

Hi,

the best way is to set to collect IDoc in the partner profile (WE20) for the corresponding message type. Then you can schedule to run program YFI_RSEOUT00 periodically/frequently.

Use JOB_OPEN, JOB_SUBMIT and JOB_CLOSE function modules for your scenario.

You can create a Job in SM36 specifying the frequency of the run as 1 day for your interface program.

<b>Reward points</b>

Regards

Read only

Former Member
0 Likes
560

Hi,

Refer to <b>Generating RFC port and partner profile</b> for collecting IDocs and <b>Working the interface</b> for Background jobs in the link below:

<a href="http://www.intelligententerprise.com/channels/applications/feature/archive/kasturi2.jhtml">http://www.intelligententerprise.com/channels/applications/feature/archive/kasturi2.jhtml</a>

Pls do reward points.

Regards,

Ameet

Read only

Former Member
0 Likes
560

Hi Ganesh,

While configuring the partner profile using transaction WE20, you can set the <b>output mode</b> for the transfer of IDOC.

Output Mode field of the partner profile to determine the timing of the dispatch. If the mode is set to Transfer IDoc Immed., IDocs are immediately transferred to the communication layer; if not, they are buffered until the next run of dispatch program RSEOUT00.

For collectiong the Idoc, u should select flags:-

Collect IDoc and

donot start subsystem.

By doing so, as soon as the IDOC is created , it will not be transfered to the communication layer.

In this case, you have to schedule the <b>program RSEOUT00</b> using transaction <b>SM36</b>, by providing program name(RSEOUT00) and the frequency of scheduling as desired.

monica