Application Development and Automation Discussions
Join the discussions or start your own on all things application development, including tools and APIs, programming models, and keeping your skills sharp.
cancel
Showing results for 
Search instead for 
Did you mean: 
Read only

Function module & Abap Program

Former Member
0 Likes
547

Dear friends,

I have one value in 'RSPO_CHECK_DEVICE_PERMISSION'

function. how to use or import to abap program?

Regards,

Srini

2 REPLIES 2
Read only

Former Member
0 Likes
513

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

Read only

Former Member
0 Likes
513

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.