ALLInterview.com :: Home Page KalAajKal.com
 Advertise your Business Here     
Browse  |   Placement Papers  |   Company  |   Code Snippets  |   Certifications  |   Visa Questions
Post Question  |   Post Answer  |   My Panel  |   Search  |   Articles  |   Topics  |   ERRORS new
   Refer this Site  Refer This Site to Your Friends  Site Map  Bookmark this Site  Set it as your HomePage  Contact Us     Login  |  Sign Up                      
info       Did you received any Funny E-Mails from your Friends and like to share with rest of our friends? Yeah!! you can post that stuff   HERE
Google
 
Categories >> Software >> ERP-CRM >> SAP >> SAPScript
 
 


 

Back to Questions Page
 
Question
when debugging the script what is the functionality of 
f5,f6,f7 and f8?
Rank Answer Posted By  
 Question Submitted By :: Surya
I also faced this Question!!   © ALL Interview .com
Answer
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 subroutine/ Function module
definition , To comeout from any point of definition.

F8 ( CONTINUE)
--------------
Jumps to next break/watch point if available. otherwise it
executes the whole program and comeout of it.


Buddula15
 
0
Buddula15
 
 
Question
SAP Script is client dependent. Smartform is client 
independent. What is the main defference between two?
Rank Answer Posted By  
 Question Submitted By :: Gopi
This Interview Question Asked @   TCS
I also faced this Question!!   © ALL Interview .com
Answer
=> If u develop a script in 800 client, you cannot see in 
onther client like 810 where as in smartforms you can.

Buddula15
 
4
Buddula15
 
 
Question
Can we write code(Select Queries) in SAP-Script? Not to use
Driver Program.
Rank Answer Posted By  
 Question Submitted By :: Mounesh
This Interview Question Asked @   IBM , Infosisio
I also faced this Question!!   © ALL Interview .com
Answer
YES using subroutines
 
0
Roshan
 
 
 
Answer
In Script you cannot write any select queries but you can 
write all abap related code in External Subroutine and you 
can call the subroutine from Script.



Buddula15
 
0
Buddula15
 
 
Question
How to Find Driver Program given the name of Sapscript?
Rank Answer Posted By  
 Question Submitted By :: Ashwin Urkude
This Interview Question Asked @   Reliance
I also faced this Question!!   © ALL Interview .com
Answer
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.
 
0
Mon
 
 
Answer
Its very simple.

First You need to goto form->check->texts. you will get one 
small box hit on enter where you can see the driver program 
name
 
0
Kishore
 
 
Answer
if the for is con figured , you can get from TNAPR also
 
0
Umas
 
 
Question
I want to add multiple boxes in the particular window of 
the script.Is it possible?If yes, than how ?
Rank Answer Posted By  
 Question Submitted By :: Pankaj Singh
This Interview Question Asked @   IBM
I also faced this Question!!   © ALL Interview .com
Answer
A) Use command to create BOX.
/: Box X(position),Y(position),width,height.
 
0
Kubera
 
 
Question
I want to create an additional windows in standard 
sapscript Like 'Medruck'.Is it possible? If yes, then how?
Rank Answer Posted By  
 Question Submitted By :: Pankaj Singh
I also faced this Question!!   © ALL Interview .com
Answer
yes itz possible.
copy the standard script into zscript ( like medruck into 
zmedruck). then add requoired windows to that customized 
script.
 
0
Makineni
 
 
Answer
It is not possible to add new window in satandard sap 
script. You can copy the standard script and then add 
windows to that form.
 
0
Venu
 
 
Question
Suppose that i want to show multiple records of purchase 
order in the window rather than main window in the 
SAPscript form? Is it possible? If yes, than how ?
Rank Answer Posted By  
 Question Submitted By :: Pankaj Singh
This Interview Question Asked @   IBM , Ibm
I also faced this Question!!   © ALL Interview .com
Answer
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
 
0
Buddula15
 
 
Question
I am getting problem in language(like EN,DE & FR) whenever 
i copy from one client to another...means the layout is 
getting printed in EN even though the lanuage selected is 
DE...
Rank Answer Posted By  
 Question Submitted By :: Bhargavi Vaidya
I also faced this Question!!   © ALL Interview .com
Answer
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...
 
0
Deepak
 
 
Answer
check the SAP Logon language would be 'DE' while executing 
script.
check the field values whether they are maintained only in 
english or german, if not use SO10 object for any 
translation from english text to german text.
 
0
Anil
 
 
Question
Hi,
Can we do the computations and calculations in Sapscripts?
If yes, please let me know with example.

thanks in advance
Vijay
Rank Answer Posted By  
 Question Submitted By :: Vijay
This Interview Question Asked @   IBM
I also faced this Question!!   © ALL Interview .com
Answer
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.
 
0
Richa
 
 
Question
how you create standardtext and how to transfer standard 
text from one client to another?
Rank Answer Posted By  
 Question Submitted By :: Radhamandadapu
This Interview Question Asked @   Accenture
I also faced this Question!!   © ALL Interview .com
Answer
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 assigned 
to it.
go to T-code SE09 to transport that request.
 
0
Krishnaveni
 
 
Answer
To create standard text in SAP script, there is an option 
to insert standard text in the text element screen. click 
on insert--->text--->standard and give the text name, text 
id and language as input parameters and text object is 
always "TEXT" for standard SAP script texts. this inserts 
standard text in the script.
To transport standard text from one client to another, we 
could probably use SCC1 transaction in the target client 
and give the source client and tranport request for copying
(not sure about this).
 
0
Indu
[Eminent]
 
 
Answer
TRANSFER Standard TEXT FROM ONE CLIENT TO ANOTHER
lets see it with an example -

i have defined a text -ZTEXT in client 100
now i want it to be copied to client 200
Goto to client 200
goto tcode so10
Utilities->Copy from client->
fill in text name =ZTEXT
text id =ST
Land=EN
source client = 100
target name = ZTEXT
and execute..
this will copy the text to client 200
 
0
Richa
[Eminent]
 
 
Answer
Use program RSTXTCPY to Copy the text betwn clients.
 
0
Debahruti
[Eminent]
 
 
Question
How to insert field in standard script ..?
Rank Answer Posted By  
 Question Submitted By :: Somnath_k
I also faced this Question!!   © ALL Interview .com
Answer
Using itcsy structure.This Structure has two fields
       1) name
       2) value

systax. perform <pername> in program <progname>
                   using <field>
                   changing <field>.
 
0
Raju
 
 
Answer
perform <form-name> in program <report-name>
                               using value1
                               changing value2.

i tried with this but i am not getting proper if u then sen
  to this plz
 
0
Ameen
[Thinking--Minds.com]
 
 
Question
how we can debug in sap scipt
Rank Answer Posted By  
 Question Submitted By :: Ravindra
I also faced this Question!!   © ALL Interview .com
Answer
go to se 71 and give form name 
and go to utilities and clicked on active debugger-->

or RSTXLDMC-->executable program for debugging.
 
0
Amar
 
 
Answer
Go to SE71 and give form name
select utilities option in menubar and activate the debugger
go to SE38 and execute the print program.
it automatically goes to debugging mode

or

excecute the predefined ececutable program 
RSTXDBUG
 
0
Renuka
 
 
Question
10.	Tcode used fo complete documentation of BAPI data 
record online.
Rank Answer Posted By  
 Question Submitted By :: Sanjita Mishra
I also faced this Question!!   © ALL Interview .com
Answer
Tcode SWO1->buisiness object repository

sekect the application and can see the list of BAPI 
available with documentation
 
0
Neelima
 
 
Question
9.	How do u suppress blank space in sap script.
Rank Answer Posted By  
 Question Submitted By :: Sanjita Mishra
I also faced this Question!!   © ALL Interview .com
Answer
&variable(C)& for compressing the blanks of that variable.
 
0
Abc
 
 
Answer
&VARIABLE(C)&
 
0
Gnar
 
 
 
Back to Questions Page
 
 
 
 
 
   
Copyright Policy  |  Terms of Service  |  Help  |  Site Map 1  |  Articles  |  Site Map  |   Site Map  |  Contact Us interview questions urls   External Links 
   
Copyright © 2007  ALLInterview.com.  All Rights Reserved.

ALLInterview.com   ::  Forum9.com   ::  KalAajKal.com