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   interview questions urls   External Links  Contact Us     Login  |  Sign Up                      
Do you have a collection of Interview Questions and interested to share with us!!
Please send that collection to along with your userid / name. ThanQ
Google
 
Categories >> Software >> ERP-CRM >> SAP >> SAPScript
 
 


 

Back to Questions Page
 
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]
 
 
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
 
 
Question
8.	You can link a search help to a parameter using 
syntax
Rank Answer Posted By  
 Question Submitted By :: Sanjita Mishra
I also faced this Question!!   © ALL Interview .com
Answer
PARAMETERS var TYPE dobj 
           MATCHCODE OBJECT objname

create the search help objname
 
0
Manoj Dash
 
 
Question
7.	What is the tcode to find application server 
directories.
Rank Answer Posted By  
 Question Submitted By :: Sanjita Mishra
I also faced this Question!!   © ALL Interview .com
Answer
AL11
 
0
Lopamudra
 
 
Question
6.	What is the difference between file port and TRFC 
port.
Rank Answer Posted By  
 Question Submitted By :: Sanjita Mishra
I also faced this Question!!   © ALL Interview .com
Answer
File port is used in EDI whereas the TRFC port is used in 
ALE for IDOCs.

with best wishes,
bhai.....
 
0
Bhai
 
 
Question
5.	What are the difference between BADI and user Exit.
Rank Answer Posted By  
 Question Submitted By :: Sanjita Mishra
I also faced this Question!!   © ALL Interview .com
Answer
badi is objective oriented but user exit is not
 
1
Yarru Sreenivasa Rao
 
 
Answer
In USEREXIT u code in the standard SAP program, hence any 
updation in the version of the standard program will lead 
to the loss of ur coding. But same is not the case of BADI. 
Here the code remains outside the standard program. 
You need to search for the suitable BADI as ur requirement 
and then do the coding and plug in the program. 

USEREXIT - It is also a program enhancement technique. here 
also u need to find suitable userexit and code in ur 
program.
 
0
Radha
 
 
Answer
BADI is OOPs concept...but User Exit not
BADI can be used more than once... but User Exit can be 
used only one time
BADI code remains outside the standard program. 
User Exit - code will be included in standard program
 
0
Manickam.m
 
 
Question
4.	Whatis the outbnd process code for quotion
Rank Answer Posted By  
 Question Submitted By :: Sanjita Mishra
I also faced this Question!!   © ALL Interview .com
Answer
Tcode - WE64 here you can find all the process 
codes,message type and function module assigned to that 
process code.
Process code for Quotation - SD12
 
0
Neelima
 
 
Question
3.	In ABAP/4 programs how do u access data present in 
presentation server and on an application server.
Rank Answer Posted By  
 Question Submitted By :: Sanjita Mishra
This Interview Question Asked @   Bando
I also faced this Question!!   © ALL Interview .com
Answer
for presentation server -- gui_upload
for application server -- open_dataset
 
0
Manoj Dash
 
 
Question
2.	Which datatype can not be used to define parameter.
Rank Answer Posted By  
 Question Submitted By :: Sanjita Mishra
I also faced this Question!!   © ALL Interview .com
Answer
we cannot use data type "float " to define parameters.
 
0
Manoj Dash
 
 
Answer
Type F cannot declared in parameters.But we can declare
packed decimals 
Ex: data : m type P decimals 2
 
0
Srinivs
 
 
Answer
String type also not allowed
 
0
Manickam.m
 
 
Question
1.What are the methods to modify sap standard tables.
Rank Answer Posted By  
 Question Submitted By :: Sanjita Mishra
I also faced this Question!!   © ALL Interview .com
Answer
Append Structure
Customizing Include
 
0
Megha
 
 
Question
what is the use of label
Rank Answer Posted By  
 Question Submitted By :: Akil
I also faced this Question!!   © ALL Interview .com
Answer
for reusability perpose lables can be used in scripts
 
0
Bhas
 
 
 
Back to Questions Page
 
 
 
 
 
   
Copyright Policy  |  Terms of Service  |  Help  |  Site Map 1  |  Articles  |  Site Map  |   Site Map  |  Contact Us
   
Copyright © 2007  ALLInterview.com.  All Rights Reserved.

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