‎2013 Jul 13 7:41 AM
Hi,
My client's requirement is to attach document in each records of a table control.
Please help .
Thanks,
Shadab
‎2013 Jul 15 8:35 AM
Hi Shadab,
Add either a button / hyper link to a column of the table control.
In your PAI, you can call function CALL_BROWSER with the URL of the document.
For instance,
CALL FUNCTION 'CALL_BROWSER'
EXPORTING
URL = 'URL of your document'
WINDOW_NAME = ' '
NEW_WINDOW = ' '
EXCEPTIONS
FRONTEND_NOT_SUPPORTED = 1
FRONTEND_ERROR = 2
PROG_NOT_FOUND = 3
NO_BATCH = 4
UNSPECIFIED_ERROR = 5
OTHERS = 6.
Regards.