Hi,
Can we do the computations and calculations in Sapscripts?
If yes, please let me know with example.
thanks in advance
Vijay
In Scripts, you can call a perform which in turn can do any
type of computation or calculation and return the result to
the script.
In script u write..
perform p_name using v_par1 type itcsy
v_par2 type itcsy
changing v_par3 type itcsy
you can write the form p_name in the print program.
Or in any program, but in that case u have to give the
program name also while calling the script.
perform p_name in program v_prog
using v_par1 type itcsy
v_par2 type itcsy
changing v_par3 type itcsy
v_par1 and v_par2 are passed to the form and the return
value is filled in v_par3.
you can do any type of computation using the variables
passed from the script and return the result in the changing
parameter.
Note- the type of parameter should by ITCSY.
Is This Answer Correct ? | 20 Yes | 1 No |
Can i Have Some Realtime Examples on Smartforms ?
What is the most complex interactive report that was written by you ?
What is the use of rstxscrp program?
How to add extra functionality to a standard print program without touching the print program ?
What are the different types of windows in sapscripts?
Will a script be activated without page format ?
If u want to add any fields in the layout what is the procedure you follow ?
what is the use of outline option?
What are problem you faced in script?
How to design the windows in script?
What does the smartforms development class start with ?
How to check the changes made in the standard layout set , other than using Utilities--- -> Print preveiw ? can u explain the different other ways to check it?