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

write clarification

Former Member
0 Likes
710

Please have a look on it and help me.

For this write statements part below i gave header part.

**********************************************************

WRITE :/(1) sy-vline,

(10) it_itab-zztono,

(1) sy-vline,

(10) it_itab-docno,

(1) sy-vline,

(10) it_itab-boedate,

(1) sy-vline,

(25) it_itab-impdpsno,

(1) sy-vline,

(12) it_itab-ZZPLASLNO,

(1) sy-vline,

(10) it_itab-bondregnno,

(1) sy-vline,

(13) it_itab-totdtyval,

(1) sy-vline,

(13) it_itab-zzintrst,

(1) sy-vline,

(13) it_itab-zzdtyval,

(1) sy-vline.

*************************************************************

FORM header.

NEW-LINE NO-SCROLLING.

WRITE : (50) '',

(24) ''(201) COLOR COL_NEGATIVE INTENSIFIED OFF.

SKIP 1.

FORMAT COLOR COL_TOTAL INTENSIFIED OFF.

WRITE : (144) sy-uline.

WRITE :/(1) sy-vline,

(10) ''(100),

(1) sy-vline,

(10) ''(200),

(1) sy-vline,

(10) ''(101),

(1) sy-vline,

(25) ''(102),

(1) sy-vline,

(12) ''(202),

(1) sy-vline,

(10) ''(103),

(1) sy-vline,

(13) ''(104),

(1) sy-vline,

(13) ''(105),

(1) sy-vline,

(13) ''(106),

(1) sy-vline.

WRITE :/(144) sy-uline.

FORMAT COLOR OFF.

**************************************************************

Like the same header in need for this part write statements also,

The write statements are like this

WRITE :/(1) sy-vline,

(10) it_itab-zztono,

(1) sy-vline,

(10) it_itab-docno,

(1) sy-vline,

(10) it_itab-boedate,

(1) sy-vline,

(10) it_itab-bondregnno,

(1) sy-vline,

(25) it_itab-impdpsno,

(1) sy-vline, "$02

(10) it_itab-impdpdat,

(1) sy-vline,

(12) it_itab-ZZPLASLNO,

(1) sy-vline,

(10) it_itab-zzpladate,

(1) sy-vline,

(12) it_itab-BCD,

(1) sy-vline,

(12) it_itab-CVD,

(1) sy-vline,

(12) it_itab-ZCES,

(1) sy-vline,

(12) it_itab-ZHCS,

(1) sy-vline,

(12) it_itab-ZEDC,

(1) sy-vline,

(12) it_itab-ZHDC,

(1) sy-vline,

(12) it_itab-SAD, "$02

(1) sy-vline,

(13) it_itab-totdtyval,

(1) sy-vline,

(13) it_itab-zzintrst,

(1) sy-vline,

(13) it_itab-zzdtyval,

(1) sy-vline.

**************************************

Header ?

Please help me.

Thanks***************************************

1 ACCEPTED SOLUTION
Read only

Former Member
0 Likes
675

Hi,

here (10) it_itab-zztono, means that the value in internal tab it_itab-zztono , and field zztono will be displayed at 10th position from the margin. So on and so forth.

Reward points if helpful.

Thanks,

Message was edited by:

Pritha Agrawal

7 REPLIES 7
Read only

Former Member
0 Likes
676

Hi,

here (10) it_itab-zztono, means that the value in internal tab it_itab-zztono , and field zztono will be displayed at 10th position from the margin. So on and so forth.

Reward points if helpful.

Thanks,

Message was edited by:

Pritha Agrawal

Read only

0 Likes
675

Ok but please check all the lines and give me the suitable answer please

Thanks

Read only

0 Likes
675

Ali ,

WRITE :/(1) sy-vline,

(10) <b>--->Size allocations for this Fields ---10 chars</b>

it_itab-zztono,<b>----:>Field values</b>

(1)<b>---->Size</b>

sy-vline<b>---> Vertical Line.</b>

<b>this defination will be same for all fields.</b>

Regards

Prabhu

Read only

0 Likes
675

like the same can you explain fro this

WRITE :/(1) sy-vline,

(10) ''(100),

Thanks

Read only

0 Likes
675

Hi,

Here 100 is the <b>text symbol</b>.

Regards,

Read only

Former Member
0 Likes
675

Hi,

1. check wether your internal table has the data by puuting break point.

2.chnage the code

WRITE:/(1) sy-vline, (10) it_itab-zztono,

(11) sy-vline,(21) it_itab-docno,

(22) sy-vline,(32) it_itab-boedate,

(33) sy-vline,(58) it_itab-impdpsno,

(59) sy-vline,(71) it_itab-ZZPLASLNO,

(72) sy-vline,(82) it_itab-bondregnno,

(83) sy-vline,(96) it_itab-totdtyval,

(97) sy-vline,(110) it_itab-zzintrst,

(111) sy-vline,(124) it_itab-zzdtyval,

(125) sy-vline.

Header data.

Write:/(1) sy-vline,(10) ''(100),

(11) sy-vline,(21) ''(200),

(22) sy-vline,(32) ''(101),

(33) sy-vline,(58) ''(102),

(59) sy-vline,(71) ''(202),

(72) sy-vline,(82) ''(103),

(83) sy-vline,(96) ''(104),

(97) sy-vline,(110) ''(105),

(111) sy-vline,(124) ''(106),

(125) sy-vline.

Don't forget to reward if useful

Read only

sreeramkumar_madisetty
Active Contributor
0 Likes
675

Hi

WRITE :/(1) sy-vline,

(10) and (1) --->Size allocations for this Fields ---10 chars and 1 char

it_itab-zztono,----:>Field values

sy-vline---> Vertical Line.

Regards,

Sreeram