cancel
Showing results for 
Search instead for 
Did you mean: 

Regards Splitter Program in Xi

Former Member
0 Kudos

Once file reaches XI, the Splitter Program split the files for record type x and y.

XI reads the splited files, maps them and call proxy to submit data into the ECC systems.

how xi will read these files .where we have to call the that files in IR or ID

regards

Raju

Accepted Solutions (0)

Answers (4)

Answers (4)

Former Member
0 Kudos

Hi Raju,

Trying to understand your requirement.

what is the source for your scenario(its not ecc rt?) Where are you have this splitter program?

If you are plannig to split the file inside Mapping , then use a multimapping or BPM approach.

If you have already developed a splitter program(Zprogram in XI as u mentioned is it a Java Mapping ? or say a Function module in sap), if its in Sap then create a reciver RFC channel.

call proxy to submit data into the ECC systems

please elaborate more on this.If your FM in sap can split the map then there may be some way to handle it in sap itself.

Please correct if assumptions are wrong!

Regards.

Srinivas

Former Member
0 Kudos

Hi,

Is the Splitter Program is custom developed or Pipeline service for MultiMapping you are talking about....

if it is the custom developed...then the file will be used in mapping in IR....and configuration part like sending to Proxy will be done in ID...

if you didnot the answers expected..please reframe ur query and post it...

HTH

Rajesh

former_member200962
Active Contributor
0 Kudos

The Splitter Program that you mentioned...is it the Multi_mapping concept...1:N mapping?

If yes then you can just search SDN with keywords "Enhanced Interface Determination" or "multi mapping"

Regards,

Abhishek.

Former Member
0 Kudos
how xi will read these files .where we have to call the that files in IR or ID

As per your requirment u need to use two message mappings.

First mapping will spilt the input file(in xand y records)

Second mapping will map those files to target structure. As this mapping will be n:m mapping, You will have to do this inside BPM.

In BPM XI reads the files and do the further processing.

Thanks

Jai

Former Member
0 Kudos

here me not useing useing bpm.

the Zprogram will the files in XI.after we have to map\validate

Former Member
0 Kudos

Hi,

If i undestand your requirement correctly...you are receiving the data to XI ...and in XI need to spllit the records into separate

like X records and Y records and then need to send them to proxy ...if this is what you are looking for....

then use MultiMapping ...in multimapping need to write the udf or some mapping logic..so that it will separate the records into respective types...which can be sent to Proxy...

HTH

Rajesh

Former Member
0 Kudos

hi,

Can you explain a bit more.

As you told splitter program will generate multiple files which you need to map/validate further.

If you need to map two different structure at source side, you need to use BPM.

Thanks

Jai

Former Member
0 Kudos

Hi rajesh,

there is Zprogram in XI splits the files ok.

XI reads the splited files, and do maps them and call proxy to submit data into the ECC systems.

my query is where we will call that zpragram in ID or iR

abhay_rajhans2
Contributor
0 Kudos

Hi ,

You can process by following way.

Call the Zprogram in ABAP stack of XI . It will split the file and put the splited files on the application server of XI. While creating the split files keep the naming of split files slightly different so that no file will get overwrite ex 1) abc.1 2) abc.2. By doing this you can use single NFS adapter with file name as abc*. Then from Application server XI will read the files using NFS adapter and pass the data to proxy.

Former Member
0 Kudos

Need to call the same in IR at Interface mapping...

HTH

Rajesh

former_member200962
Active Contributor
0 Kudos

Zprogram.....means RFC? .... you dont explicitly call the RFC from XI......your job will be just to create a RFC channel which will receive the data from the Zprogram.