New SAPScript Interview Questions :: ALLInterview.com http://www.allinterview.com New SAPScript Interview Questions en-us when debugging the script what is the functionality of f5,f6,f7 and http://www.allinterview.com/showanswers/97328.html F5 (SINGLE STEP) ---------------- Single Step means debug line by line F6 ( EXECUTE) --------------- Execute the subroutine / Function Module without entering into the definition. F7 ( RETURN) ------------- After entering into the subrou SAP Script is client dependent. Smartform is client independent. Wha http://www.allinterview.com/showanswers/90893.html => If u develop a script in 800 client, you cannot see in onther client like 810 where as in smartforms you can. Buddula15 Can we write code(Select Queries) in SAP-Script? Not to use Driver Pr http://www.allinterview.com/showanswers/88842.html YES using subroutines How to Find Driver Program given the name of Sapscript? http://www.allinterview.com/showanswers/82828.html one is is You can go to SE71 (form painter) go to insert-> program symbols and find the name. else in the tcode NACE -> choose an output type->procesing routines you will find the form name and the script name. I want to add multiple boxes in the particular window of the script. http://www.allinterview.com/showanswers/82587.html A) Use command to create BOX. /: Box X(position),Y(position),width,height. I want to create an additional windows in standard sapscript Like &# http://www.allinterview.com/showanswers/82586.html yes itz possible. copy the standard script into zscript ( like medruck into zmedruck). then add requoired windows to that customized script. Suppose that i want to show multiple records of purchase order in th http://www.allinterview.com/showanswers/82389.html Yes it is possible but if records are more than one page it cannot be displayed because main window only flow over multiple pages variable windows cannot flow over... Buddula15 I am getting problem in language(like EN,DE &amp; FR) whenever i cop http://www.allinterview.com/showanswers/80230.html There will be an option called SE71->enter name and desc of the script-> now there will be a option-> To all languages.. select that.. It will solve your problem... Hi, Can we do the computations and calculations in Sapscripts? If ye http://www.allinterview.com/showanswers/78434.html 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 I want few sample tech spec&#039;s in ABAP http://www.allinterview.com/showanswers/76406.html how you create standardtext and how to transfer standard text from o http://www.allinterview.com/showanswers/75702.html The T-code for creation of standard text is SO10 there r two ways of transfering of standard text By using standard program RSTXSCRP download/upload or By using standard program RSTXTRAN first transfer to correction, transport request is How to insert field in standard script ..? http://www.allinterview.com/showanswers/70716.html Using itcsy structure.This Structure has two fields 1) name 2) value systax. perform <pername> in program <progname> using <field> changing <field>. how we can debug in sap scipt http://www.allinterview.com/showanswers/69112.html go to se 71 and give form name and go to utilities and clicked on active debugger--> or RSTXLDMC-->executable program for debugging. 10. Tcode used fo complete documentation of BAPI data record online. http://www.allinterview.com/showanswers/66412.html Tcode SWO1->buisiness object repository sekect the application and can see the list of BAPI available with documentation 9. How do u suppress blank space in sap script. http://www.allinterview.com/showanswers/66411.html &variable(C)& for compressing the blanks of that variable.