Loading Hundreds of Documents to DMS
I have hundreds of historical documents that I need to load into DMS. Any suggestions or techniques?
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
Thank you. Looks like that will work for me.