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

Flat file Interfaces

Former Member
0 Likes
923

I'm working on a flat file Inbound interface

I need to generate a program which calls the program RFEBCK00(FCKR transaction) and in my program I should convert the oracle format to RFEBCK00 program STRUCTURE (I will be getting a file in oracle format ) and when executed the program must perform its normal procedure.

my client doesn't want me to copy the RFEBCKK00 and do changes...............

can anyone give me suggestions.

Thanks in Advance

Hema

5 REPLIES 5
Read only

PS_1978
Active Participant
0 Likes
750

Hi abap,

Can you explain what ORACLE format is?

Normal procedure is, generally flat files will be separated by a special character (like , | , # ,...) or a fixed length file.

If your flat file is one of this, then you have to split the data at that particular special character, validate the data and format it according to RFEBCK00 file structure and then submit it.

If your flat file is a fixed length one, then making use of offsets, move value to the corresponding field, validate and format it according to RFEBCK00 file structure and then submit it.

Hope it helps.

Regards,

Phani.

Read only

Former Member
0 Likes
750

Converting the fields I'm able to do that part but how to impliment from FCKR transaction without doing any changes in original program or copying the original program into my program.

Thanks

Hema

Read only

PS_1978
Active Participant
0 Likes
750

I have just seen the transaction FCKR, I think that you have to again generate a file on presentation server with the format that supports the transaction FCKR and submit the path of that file to the report RFEBCK00 and also pass the required (mandatory) parameters.

Hope it helps.

Regards,

Phani

Read only

Former Member
0 Likes
750

yes you got me exactly ..

Now my problem is how can I submit the path...

Read only

PS_1978
Active Participant
0 Likes
750

Hi,

You will be aware of the path where you are going to generate the file, right?

If you know the path, just use the SUBMIT statement with CK_FILE = <file name with path> and also pass the other mandatory fields.

SUBMIT RFEBCK00 with CK_FILE = <file name with path>
                                        with GROUP  = <session name>
                                        with I_BLART = <document_type> and return.

Regards,

Phani.