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: 

RSEINB00 File deleting

Former Member
0 Kudos

After RSEINB00 program is run to get the Idoc files , the original file is deleted.

Is there a way to keep this file in another folder before running this program ?

1 ACCEPTED SOLUTION

sridhar_k1
Active Contributor
0 Kudos

If you are executing the program in background job, define a step to execute external program as first step, and RSEINB00 as second step.

Create a unix shell script which takes two parameters and copys the files from first parameter dir to secong parameter dir.

In first step definition click on external program, enter path/name of the shell script in the name field, and enter soiurce and target dir as parameters (like /source/* /target/* )

Define second step for RSEINB00.

Regards

Sridhar

Regards

Sridhar

2 REPLIES 2

sridhar_k1
Active Contributor
0 Kudos

If you are executing the program in background job, define a step to execute external program as first step, and RSEINB00 as second step.

Create a unix shell script which takes two parameters and copys the files from first parameter dir to secong parameter dir.

In first step definition click on external program, enter path/name of the shell script in the name field, and enter soiurce and target dir as parameters (like /source/* /target/* )

Define second step for RSEINB00.

Regards

Sridhar

Regards

Sridhar

0 Kudos

Thanks for the reply.

Please tell me more details on creating the Unix shell scripts for this purpose.