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: 

what mean of id_ruler_string

former_member1137458
Participant
0 Kudos
WHEN '4'.   "level 6 in RFDOPR10/RFKOPR10
      CALL METHOD ruler_create
        EXPORTING
          id_ruler_string = '2.13.24.29|43|58|73|88|103|118|'.

what mean of '2.13.24.29|43|58|73|88|103|118|'

Dokument CL_DOPR_WRITER ist in Sprache DE nicht vorhanden

Document CL_DOPR_WRITER is not available in language EN

where can find out this class document?

Edited by: cpliu903 on Oct 7, 2010 9:10 AM

1 ACCEPTED SOLUTION

matt
Active Contributor
0 Kudos

CL_DOPR_WRITER is only documented internal to SAP. You cannot access the documentation.

Looks fairly simple though - it's setting up the position of columns which it will use in output. The first at column 2, the next at column 8. There seem to be a mixture of syntaxes - in some cases, "dot" is used as a column separator, in others "pipe".

matt

2 REPLIES 2

matt
Active Contributor
0 Kudos

CL_DOPR_WRITER is only documented internal to SAP. You cannot access the documentation.

Looks fairly simple though - it's setting up the position of columns which it will use in output. The first at column 2, the next at column 8. There seem to be a mixture of syntaxes - in some cases, "dot" is used as a column separator, in others "pipe".

matt

Former Member
0 Kudos

Hi,

I am not sure if you find an answer, but I think that it describes positions of columns in list, dots means that columns are separated by space and pipes make columns separate by '|'.

Pavel