2006 Mar 21 4:12 PM
Hi all,
How can I download a script on to the local presentation server ?
I a working with the modified version of standard program sapfm06p. Here I cannot understand how the data is transfered from program to the script. Suppose If I want to do some modifications like add 5% surcharge to the item price to the item data in the program I do not understand in which include they have been dealt. I have been trying the same for two days but I couldn't get any info from debugging. Is there any specific manner to find out which include deals what ?
Regards,
Varun.
2006 Mar 21 4:19 PM
2006 Mar 21 4:14 PM
Got to SE38 program RSTXSCRP. This helps to download Script on presentation server. Choose FORM radio button. Give mode as EXPORT. Give Layout set name in Object name.
Give File name with path to Dataset name and execute.
Message was edited by: Ashish Gundawar
2006 Mar 21 4:15 PM
check in which window does this field gets displayed on the screen. go to the window & check the field which is been used. Now, using this field check in program where it is been populated & how the window is called. U will find the window called & also the field been populated. This will be the include which needs to be modified in ur case.
2006 Mar 21 4:19 PM
2006 Mar 21 5:11 PM
Hi Rich,
You have provided me with the right include. Its fine but what I want to know is in which include the data is getting populated into fileds or tables. I see a lot of select statements but they all populate data into some inernal tables but for displaying data in the script editor everything is in sap standard tables. Can yo clarify me on this.
Regards,
Varun.
2006 Mar 21 5:33 PM
Hi varun,
check the Function modules ME_PRINT_PO & ME_READ_PO_FOR_PRINTING ..the latter reads the data from database n the former uses them to print it. ME_PRINT_PO conatins a lot of subroutines which u need to go through to understand better how this code works.
Hope it helps,
Regards,
Bikash
2006 Mar 21 4:24 PM
Hi Varun,
Just activate the debugger of the script & check what is the element where the item details are getting printed.You can activate by doing..<b>Utilitles--->Activate Debugger.</b>,then try to do F5 & see the flow of the program,then see the element which is triggering the item details & then go to the program & see where this element is accessed & do the required changes.