‎2008 Jan 25 12:25 PM
Dear friends,
I have one value in 'RSPO_CHECK_DEVICE_PERMISSION'
function. how to use or import to abap program?
Regards,
Srini
‎2008 Jan 25 12:29 PM
Hi Srinivasan
If you can tell us which value in that FM that you are referring to then we can help you better.
Regards
Ranganath
‎2008 Jan 25 12:31 PM
Hi,
To Check the access permission for an output device
call function 'RSPO_CHECK_DEVICE_PERMISSION'
exporting
dest = itcpp-tddest
NAME =
exceptions
no_such_device = 1
no_permission = 2
others = 3.
if sy-subrc <> 0.
message e460 with dest_long_name.
endif.
Plzz reward points i fit helps.