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

XXL_SIMPLE_API

Former Member
0 Likes
513

i am using the above fm

i need to know what is the use of

  • print_text = xmplt_p

which is in the parameters

sarang r

3 REPLIES 3
Read only

Former Member
0 Likes
486

hi,

this is used for printing a list texts(header,etc..).

you can pass the texts differently...

 XMPLT_O-LINE_NO    = 1.
  XMPLT_O-INFO_NAME  = 'Report-Type'.
  XMPLT_O-INFO_VALUE = 'Central'.
  APPEND XMPLT_O.

  XMPLT_O-LINE_NO    = 2.
  XMPLT_O-INFO_NAME  = 'Responsible'.
  XMPLT_O-INFO_VALUE = 'Craig Young, DP/III'.
  APPEND XMPLT_O.

  XMPLT_O-LINE_NO    = 3.
  XMPLT_O-INFO_NAME  = 'Checks'.
  XMPLT_O-INFO_VALUE = 'OK'.
  APPEND XMPLT_O.

  XMPLT_P-HF         = 'H'.
  XMPLT_P-LCR        = 'C'.
  XMPLT_P-LINE_NO    = 1.
  XMPLT_P-TEXT       = 'Periodical Report:'.
  APPEND XMPLT_P.

  XMPLT_P-LINE_NO    = 2.
  XMPLT_P-TEXT       = 'Performance per Year'.
  APPEND XMPLT_P.

  XMPLT_P-HF         = 'F'.
  XMPLT_P-LCR        = 'R'.
  XMPLT_P-LINE_NO    = 1.
  XMPLT_P-TEXT       = 'Distribution:'.
  APPEND XMPLT_P.

  XMPLT_P-LINE_NO    = 2.
  XMPLT_P-TEXT       = 'all Sales Accountants'.
  APPEND XMPLT_P.

regards

vijay

Read only

0 Likes
486

i know that but for what is that used for

XMPLT_P

besause i am buliding a list i do not what to fill in that column XMPLT_P

sarangan r

Read only

0 Likes
486

Hi,

Sarangan Did you check this example program <b> XXLSTEST</b>.

if tried commenting that it gave dump, but if you pass it blank there will not be a problem.

just pass blank internal table.

regards

vijay