mr pavan


{ City } hyderabad
< Country > india
* Profession * sap abap consultant
User No # 107047
Total Questions Posted # 6
Total Answers Posted # 5

Total Answers Posted for My Questions # 10
Total Views for My Questions # 91780

Users Marked my Answers as Correct # 56
Users Marked my Answers as Wrong # 3
Questions / { mr pavan }
Questions Answers Category Views Company eMail

how to sort internal table?with out sort statement?

Infosys, JK Technologies,

1 SAP ABAP 12376

how to find Bapi? and Badi?

Gentera, NTT Data,

1 SAP ABAP 13688

what is view?different types of views?

NTT Data,

3 SAP ABAP 11616

what is the usage of Enhancement category in tables?   

CMC, PWC,

1 SAP ABAP 25079

what are the tools you are using for performance tuning in a object?

Accenture,

2 SAP ABAP 13935

If a Function module is defined as RFC enabled why the parameters should be  pass by value not by reference in sap abap

Yash Technologies,

2 SAP ABAP 15086




Answers / { mr pavan }

Question { HCL, 5980 }

how to edit text in script?and how to migrate scripts into
smart forms?


Answer

FB_MIGRATE_FORM is the function module to convert script to smart form.

Is This Answer Correct ?    2 Yes 0 No

Question { Cyber Technology, 17694 }

1. How to disable search help on selection screen?
2.How to highlight particular row ALV grid?
3.What is use of At selection screen on field?
4.How to use performance tunning ?
5.How to developed Report?
6. I create custome transprant table to addeda records in SE11 we could add multiple record at a time and maintain the transperant table in SE93?what kind of view generated in background?


Answer

1. go to screen 1000 in screen painter and take off search help option for that parameter.

2. in field catalog there is on field called emphasis it is highlighted the row by color.simply activate this field by .X'.  

3.At selection screen on is an event using to validate the field.

4. performance tuning.
 a. SLIN : syntax check.
 b. SE30 : Performance analysis.
 c. SCII : Code Inspector.
 d. ST05 : SQL Reace.

5. reports are developed in three ways.
  a. Classical Reports.
  b. Interactive Reports.
  c. ALV Reports*.

6. if the table is transparent,Database view is generated by default in background. 

Is This Answer Correct ?    2 Yes 1 No


Question { NTT Data, 13688 }

how to find Bapi? and Badi?


Answer

find the extract for finding BADIs from one of the SDN posts Finding BADIsBusiness add-ins are enhancements to the standard version of the system. Business Add-In is a new SAP enhancement technique based on ABAP Objects.They can be inserted into the SAP system based on specific user requirements.Each Business Add-In has:• at least one Business Add-In definition• a Business Add-In interface• a Business Add-In class that implements the interface In order to enhance a program, a Business Add-In must first be definedSubsequently two classes are automatically generated:• An interface with ‘IF_EX_’ inserted between the first and second characters of the BADI name.• An adapter class with ‘CL_EX_’ inserted between the first and second characters of the BADI name. The Application developer creates an interface for this Add-In. There are multiple ways of searching for BADI. • Finding BADI Using CL_EXITHANDLER=>GET_INSTANCE• Finding BADI Using SQL Trace (TCODE-ST05).• Finding BADI Using Repository Information System (TCODE- SE84). 1. Go to the Transaction, for which we want to find the BADI, take the example of Transaction VD02. Click on System->Status. Double click on the program name. Once inside the program search for ‘CL_EXITHANDLER=>GET_INSTANCE’.Make sure the radio button “In main program” is checked. A list of all the programs with call to the BADI’s will be listed.The export parameter ‘EXIT_NAME’ for the method GET_INSTANCE of class CL_EXITHANDLER will have the user exit assigned to it. The changing parameter ‘INSTANCE’ will have the interface assigned to it. Double click on the method to enter the source code.Definition of Instance would give you the Interface name. 2. Start transaction ST05 (Performance Analysis).Set flag field "Buffer trace"Remark: We need to trace also the buffer calls, because BADI database tables are buffered. (Especially view V_EXT_IMP and V_EXT_ACT)Push the button "Activate Trace". Start transaction VA02 in a new GUI session. Go back to the Performance trace session.Push the button "Deactivate Trace".Push the button "Display Trace".The popup screen "Set Restrictions for Displaying Trace" appears.Now, filter the trace on Objects:• V_EXT_IMP• V_EXT_ACT Push button "Multiple selections" button behind field ObjectsFill: V_EXT_IMP and V_EXT_ACT All the interface class names of view V_EXT_IMP start with IF_EX_. This is the standard SAP prefix for BADI class interfaces. The BADI name is after the IF_EX_.So the BADI name of IF_EX_CUSTOMER_ADD_DATA is CUSTOMER_ADD_DATA 3. Go to “Maintain Transaction” (TCODE- SE93).Enter the Transaction VD02 for which you want to find BADI.Click on the Display push buttons.Get the Package Name. (Package VS in this case) Go to TCode: SE84->Enhancements->Business Add-inns->DefinitionEnter the Package Name and Execute.

for BAPI
First go to transaction BAPI,in alphabetical tab.  There is lists all of the BAPIs,  you can then look thru them by business object.

Regards
gspavan.

Is This Answer Correct ?    7 Yes 0 No

Question { NTT Data, 11616 }

what is view?different types of views?


Answer

A view is logical view on more than one table,the structure of view is stored in ABAP dictionary,a view on the database than can be created from this structure.The data of a view is derived from one or more tables, but not stored physically.

4 types of views
1)Database 
2)Projection
3)Help
4)Maintenance views.

Is This Answer Correct ?    15 Yes 1 No

Question { PWC, 25079 }

what is the usage of Enhancement category in tables?

  


Answer

When a table is created you need to set enhancement catagory. The reason for encancement catagory is to say what type of fields you can have in your table. For the SAP tables when you want to make enhancements( adding your own fields- append structure)what type of field you can add it depends on how they set the enhancement catogary. 1> Can be enhanced deep: You can have any type of fields and if it is a standard table you can add any type of field whether it may be a character type, reference type or even a table type ( deep means structure within structure) fields. 2>Can be enhanced (character-type or numeric): Now you can add only flat data type fields not a reference type or deep structures ( a table type within a table). 3>Can be enhanced (character-type) : In a table for which this technical attribute is set you can have only character type fields and in standard tables you can enhance it by adding only character type fields not even integer or float or packed.(C, N, D and T are the character type fields and your table should contain these type of fields.). 4>Cannot be enhanced: This table cannot be enhanced means you cannot add further fields into this table.

Is This Answer Correct ?    30 Yes 1 No