how to get total price in sapscript form?
Answers were Sorted based on User's Feedback
Answer / 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 |
Answer / sampad
In the text element, type :
Summing &wa_ekko-netpr& into &wa_sum&
Then, print wa_sum.
Is This Answer Correct ? | 2 Yes | 0 No |
SAP Script is client dependent. Smartform is client independent. What is the main defference between two?
You want to backup sapscript layoutsets. How will you do it? Can you perform the download and upload function here? How?
How do I create boxes in sapscript?
2. Which datatype can not be used to define parameter.
6. What is the difference between file port and TRFC port.
How can I get the landscape format in sapscript?
How to use the new-window command?
How can we use tables in sap scripts ?
How do we set the date, time format?
What is the use of protect & endprotect?
If u want to add any fields in the layout what is the procedure you follow ?
wat happens when a smartform is activated?