Loading Hundreds of Documents to DMS

Question:
I have hundreds of historical documents that I need to load into DMS. Any suggestions or techniques?
Answer:
Hi mike01,
Why not create a program that will checkin all these originals into DIR ?
you could do something like
that's not very complicated program but you have to get all the originals' URLs in a text file first
open_data_set for output.
read original_list_filename into original_list.
close_data_set.
loop at original_list.
bapi_document_create.
wait until DIR is created.
bapi_document_checkin.
endloop.
well it's just the idea but i think it works.
hope it helps
_________________
Regards,
Tang the ABAPer
Answer:
Thank you. Looks like that will work for me.

More Articles:

list output in background?
SAPMail to use SO_NEW_DOCUMENT_ATT_SEND_API1?
Passing data from a table to another?
Selection problem?
Any Function Module to Display all the materials of BOM?
Change of Table Class for a closed system?