‎2006 Mar 17 9:29 AM
When this function is called, another dialog screen opens and wants the file name. I want to give file name as a paramter to function. And this function has a file parameter which's length is 70. But in dialog screen length is not 70. Why this is so?
‎2006 Mar 17 12:25 PM
‎2006 Mar 17 1:28 PM
hi,
here's an ex. to scan documents - i don't fill the par. file:
CALL FUNCTION 'ARCHIV_CREATE_DIALOG_META'
EXPORTING
archiv_id = toaar-archiv_id
ar_object = twfdb-ncitype
* DEL_DATE = ' '
* NOTE = ' '
object_id = objid
sap_object = twfdb-object
* FILE = ' '
* COMMIT_FLAG = ' '
IMPORTING
archiv = archiv
archiv_doc_id = docid
documentclass = class
EXCEPTIONS
error_archiv = 1
error_communicationtable = 2
error_connectiontable = 3
error_kernel = 4
error_parameter = 5
error_scanqueue = 6
OTHERS = 7.
‎2006 Mar 17 2:04 PM
Hey Andreas,
How do you pass the file's path? I want to pass file's path and I don't want to get dialog screen while this function is running. How do?