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 |
hi, can you please tell me some thing about "Worksoft Certify Tool"? how it is useful??
what is the table name that will contain all the script form names and print program names ?
when debugging the script what is the functionality of f5,f6,f7 and f8?
How do I set tabs between the fields in display?
What is t.code for script styles?
Can i Have Some Realtime Examples on Scripts ?
You are running a report. It is taking long time for execution. What steps will you do to reduce the execution time ?
What is the use of perform statement in scripts ?
Structures used in perform statement in scripts ?
What are the modules in FI that you have worked on ?
How to Find Driver Program given the name of Sapscript?
How to change the package of a SAP Script ?