Application Development 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 logical port for the proxy

Former Member
0 Kudos

HI ,

There is method or FM that can bring all the logical port that available for proxy class,

logical port that defined on SOAMANAGER or LPCONFIG .

Regards

Joy

1 ACCEPTED SOLUTION

former_member194669
Active Contributor
0 Kudos

Try this way


    call function 'RFC_READ_TABLE'
         destination                rfc_sys
         exporting
              query_table          = 'SRT_LP' " Table for Logical Ports
         tables
              options              = options1
              fields               = nametab1
              data                 = i_srt_lp[].  " Output table contains call values for proxy class after fm call

1 REPLY 1

former_member194669
Active Contributor
0 Kudos

Try this way


    call function 'RFC_READ_TABLE'
         destination                rfc_sys
         exporting
              query_table          = 'SRT_LP' " Table for Logical Ports
         tables
              options              = options1
              fields               = nametab1
              data                 = i_srt_lp[].  " Output table contains call values for proxy class after fm call