‎2007 Feb 01 7:24 AM
Hi Folks,
Is there any way to fetch an itab (with data) which is there exist in a standard repot to a zprogram.
Regards,
praneet
‎2007 Feb 01 7:28 AM
hi,
i think we can do it by creating varinats in shd0.
thanks
shiva
‎2007 Feb 01 7:37 AM
shiva,
can u explain your process in detail...seems to be useful
Regards,
praneet
‎2007 Feb 01 7:28 AM
Hi Praneet,
You can call the perform and do the same though it is not going to reduce your time of execution because your itab will be populated only when you run the program. It wont be filled and stored anywhere.
Ex: Perform Form_name(Standard_Prog_name)
Changing itab.
Award points if you find it helpful.
Ishaq.
‎2007 Feb 01 7:35 AM
Hi
How can we get data into itab if we won't run the standard? If i want to copy the whole program, it is very vast.
praneet
‎2007 Feb 01 7:31 AM
Hi,
If the itab is exported in standard program,you can import the same in your zprogram.
Otherwise,as far I know,you need to do the similar process in your program.
‎2007 Feb 01 7:35 AM
You can use
PERFORM form(prog).
Additions:
1. ... USING p1 p2 p3 ...
2. ... CHANGING p1 p2 p3 ...
3. ... TABLES itab1 itab2 ...
4. ... IF FOUND
Using this u can get the itab values.