Вы находитесь на странице: 1из 4

1.Without using Tcode SE11, How can we enter the values in to the table???

Ans: We can use transcation Code SE16 to enter values into table only if table maintainence is allowed for that table 2.What is the difference between Collect statement and Append Statement??? Ans: collect will not allow duplicate entries, while append can allow duplicates. (Or) collect will collects all the numeric fields of nonnumeric field values append will append record at the end of table (or)
APPEND creates always a new row in the internal table; COLLECT checks the key fields (= the non numeric fields); if there is already a row with the same key fields, COLLECT will change this row by adding the values in the numeric fields (see documentation); if there is no row with the same key fields, COLLECT will have the same effect as APPEND.

3.What do you mean by correction and Transportation system??? Ans: The CTS contains work bench organizer and transport system : The workbench organizer is used to record and contol changes to the ABAP/4 development objects; The transport system is used to move objects from an SAP dev.system to production system 4.What is the difference between User Exits and BADI???? in user exits we go by general method for enhancements while BADIs we use objects (oops concepts) methods for enhancement. (Or) 1UserExits r used for adding additional functionality to the existing SAP standard transactions.Using UserExits we can add additional functionality standard SAP functionality without making any changes to the original code. BADI is a standardized interface for ABAP sources that enables partners and customers to enhance SAP-delivered programs in their namespace.

5.How can we identify User exits in our screen??? Ans: We can identify User exits by using transactions CMOD and SMOD.

6.What do you mean by Inbound and Outbound interface??? Ans: outbound generating an idoc in ale layer with master_idoc_create_messgetype, inbound is receivng system with idoc_inbound_process, gives an return variable wether it is sucess or not 7.In realtime do we configure ALE systems or Administator will take care of that?? Ans: no we have to configur that 8.How to release an object??? After entering transaction code SE10 select the transport request which u want to transport and click on transport icon(Truck symbol) to release it. (or) go to se09 or se01 there write your task no and use release button it will asks whats the other system name 9.What is the flow of a Sales document??? Ans: inquiry quotation sales order shipping delivery invoice return goods

10.What is the flow of Purchase order???

Ans:Purchase Requistion->RFQ->Vendor Evaluation->Purchase Order(ME21). 12.What is the flow of Invoice??? Ans: after creation of delivry note invoice is prepared

13.What are the standard IDOC's used??? Ans: MATMAS CREMAS DEBMAS GLMAST etc... 14.What do you mean by table control???Where will we use this??? Ans: Table control is the only facility provide thru dialog programming when we come acrosse the use of updating standard tables,deletion,insertion and all database operations. (or) to display records in table format., we use in Screens (or) table controls are enhanced version for step loops where we can expand rows .main difference between these two is step loop can be expanded to two lines table controls can`t. 15.What are field symbols??Where will we use these symbols??? Ans: field symbols are used for dynamic allocation. at runtime u can assign a concrete field to fieldsymbol. (or) field symbols are just like pointers concept which are used in C language. We use them when we want to refer to the fields considered,it doesnt allocate any memory for it. (or) Field symbols r pointers to the existing data types(like 'C') which does not allocate any memory space. These are used faster access of data.

Вам также может понравиться