| 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  |
| 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  |
| 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  |
| 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  |
| 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.  |
| 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  |
| Kishore |
| |
| |
| Answer | if the for is con figured , you can get from TNAPR also  |
| 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.  |
| 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.  |
| 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.  |
| 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  |
| 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...  |
| 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.  |
| 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.  |
| 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.  |
| 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).  |
| 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  |
| Richa [Eminent] |
| |
| |
| Answer | Use program RSTXTCPY to Copy the text betwn clients.  |
| 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>.  |
| 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  |
| 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.  |
| 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  |
| 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  |
| 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.  |
| Abc |
| |
| |
| Answer | &VARIABLE(C)&  |
| Gnar |
| |
| |
|
| |
|
Back to Questions Page |