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

SAP Scripts.

Former Member
0 Likes
413

I have to align USD under Amount in... all the amount to be left aligned ... & the final summation under Totals... for Statement of Accounts... how do I do that ??

How do I get which ABAP program is being used for this data generation...

___________

Amount in

USD

____________

2.136,78

16.000,65

514,96

_____________

Totals

_____________

18652,39

1 ACCEPTED SOLUTION
Read only

Former Member
0 Likes
386

hi,

check the table TNAPR to find print program or in tcode NACE. or in sapscript editor there is button in application tool bar called Program Symbols... click on that it pops-up with print program name assigned to it.

all above will work only if the executed successfully.

for allignment..

use tab spaces allignment in paragraph format as right for the amount or use decimal with ( , ) to show it as..

__________________

2.136,78

16.000,65

514,96

__________________

for tab space use 2 commas EG: ,,&fieldname&,,

3 REPLIES 3
Read only

Former Member
0 Likes
386

to know the Driver program,you can check it in NACE transaction.

for alignment,you have use TABS option available in Paragraph format.

create the TABS with LEFT JUSTIFIED and use them in the text editor.

<b>,,</b> represents 1 tab position.

Regards

Srikanth

Message was edited by: Srikanth Kidambi

Read only

0 Likes
386

Hi,

For checking the Driver program you can you can use TNAPR table and also from <b>SE71 display the form and goto menu Form->Check->texts and select all the checkbox incl res,</b> You will get the print program name in another window.

You can use the tabs for alignment as mentioned by srikanth.

Read only

Former Member
0 Likes
387

hi,

check the table TNAPR to find print program or in tcode NACE. or in sapscript editor there is button in application tool bar called Program Symbols... click on that it pops-up with print program name assigned to it.

all above will work only if the executed successfully.

for allignment..

use tab spaces allignment in paragraph format as right for the amount or use decimal with ( , ) to show it as..

__________________

2.136,78

16.000,65

514,96

__________________

for tab space use 2 commas EG: ,,&fieldname&,,