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: 

How to import file using BDC recording

Former Member
0 Kudos

Hi all,

Iam doing recording for SE16 and for matnr Iam getting data from file in C drive or what ever.

But recording is not capturing these values.

Could anybody please tell me how to import file in BDC.

Thanks

Saichand.

5 REPLIES 5

Manohar2u
Active Contributor
0 Kudos

If you have this customized Z table, then you can directly update the database rather doing BDC.

Or try doing BDC for SM30.

Regds

Manohar

Former Member
0 Kudos

Hi,

My requirement is not for updating.

My question is how to capture when you press import button in range then dialog box appears for selecting file in recording.

I hope you understand.

Thanks,

Saichand.

Message was edited by: Sai Chand Pullepu

Manohar2u
Active Contributor
0 Kudos

Is this what you are looking for

parameters: Mfile like rlgrap-filename default

'h:\tape_lepage\UPLOAD\MATL.txt'.

Can you check whether this program helps you

http://www.sap-img.com/abap/upload-material-master-finish-goods.htm

Regds

Manohar

Manohar2u
Active Contributor
0 Kudos

Oh Sorry I might be wrong, do you need to the sample file which creates by SHDB while recording?

Regds

Manohar

ibrahim_u
Active Participant
0 Kudos

you cant record this screen.

because the function command that opens this screen not in your application. it is in the standart sap program for entering parameters or select-options fields.

i think you can do this one by one.

eg.


parameters : p_fname like rlgrap-filename.

start-of-selection.
*YOUR UPLOAD CODE

end-of-selection.
  loop at FILE.
*   BDC and CALL Transaction Codes.
  endloop.

ibrahim.