how to get total price in sapscript form?
Answer Posted / shweta thakur
suppose you want totat of netpr from purcahsing item header
table(EKPO).
IN SE38 you will have to define write_form in main loop
like this:
loop at it_ekpo into wa_ekpo .
call function 'write_form'
exporting
element = 'tm'
window = 'main' . "provide window name
total = total + wa_ekpo-netpr.
endloop.
Is This Answer Correct ? | 12 Yes | 2 No |
Post New Answer View All Answers
How do we define text symbols?
What is the use of rstxscrp program?
What is sap script?
Different types of ABAP memory ?
How can I change the page size of the layout?
Can we add new records to the already displayed ALV list.
In sap scripts, how will u link form with the event driven?
How do I create boxes in sapscript?
How to find the driver program for the given sapscript?
What are step loops? How do you program page down page up in step loops?
How can I create a shaded box?
How can I copy sapscripts from one client to another, or export/import them?
What is the print program?
How to pass the variables to forms ?
Disadvantage of Move-corresponding Statement ?