‎2008 Apr 26 7:23 AM
1. Which function module is called by the remote system that acts as
the entry point for all inbound ALE process?
2. How many secondary indexes can we create in a table?
3. what table stores the online messages?
4. To link a loop to a table control, we use the addition WITH CONTROL
else this works as a stand-alone ______________________________.
5. How many watchpoints can be used in a program?
6. Within a macro, u can use up to _________ Place holders.
7. Components of BADI?
8. What are the different ways of passing the data between the lists?
9. How 2 pass data from a FORM to a SUBROUTINE program?
10. How records from the left table are omitted in an outer join?
‎2008 Apr 26 7:58 AM
Hi
Shlipa Reddy,
I should provide answers for some of the questions.
Answers:
2) There is no specific limit on the creation of secondary indexes upto my knowledge.
5) Max. Break-points: 30
Watch points: 10
6) In Macro, Max. Placeholders: 9
7) Components of BADI:
Tcodes:
SE18: BADI Definition.
SE19: BADI Implementation.
For One Badi def we able to provide n no.of implementation.
Components:
1) Attributes:
It gives the Name of the Business add in class,
we have a chance tick or uncheck the Multiple use checkbox for custom badi def and
Filter type: Fiter type always should be data element and search help needs to be attached.
2)Interface:
It gives the inteface name for the given badi definition
In this interface provided the method definitions.
we provide implementation with these method using se19.
3)Fcodes and Subscreens.
These should be used when we add our own screen to
SAP statndard tcode.
10) By using Right Outer join , we skip the field values from the left side table in the join.
If it helpful, reward points.
Thank you,
G.V.K.Prasad
‎2008 Apr 26 7:45 AM
2. How many secondary indexes can we create in a table?
Ans : - 16.
3. what table stores the online messages?
Ans :- Table T100.
‎2008 Apr 26 7:58 AM
Hi
Shlipa Reddy,
I should provide answers for some of the questions.
Answers:
2) There is no specific limit on the creation of secondary indexes upto my knowledge.
5) Max. Break-points: 30
Watch points: 10
6) In Macro, Max. Placeholders: 9
7) Components of BADI:
Tcodes:
SE18: BADI Definition.
SE19: BADI Implementation.
For One Badi def we able to provide n no.of implementation.
Components:
1) Attributes:
It gives the Name of the Business add in class,
we have a chance tick or uncheck the Multiple use checkbox for custom badi def and
Filter type: Fiter type always should be data element and search help needs to be attached.
2)Interface:
It gives the inteface name for the given badi definition
In this interface provided the method definitions.
we provide implementation with these method using se19.
3)Fcodes and Subscreens.
These should be used when we add our own screen to
SAP statndard tcode.
10) By using Right Outer join , we skip the field values from the left side table in the join.
If it helpful, reward points.
Thank you,
G.V.K.Prasad
‎2008 Apr 26 11:49 AM
hi check this..
2. How many secondary indexes can we create in a table?
for a table there can only 9 indexs created
3. what table stores the online messages?
the table eddis stores all the messages for idoc
5. How many watchpoints can be used in a program?
may be 10 .
7. Components of BADI?
here is two example for a badi with better screen shots...
http://www.saptechnical.com/Tutorials/ExitsBADIs/ImplementBADI/page1.htm
http://www.saptechnical.com/Tutorials/ExitsBADIs/DefineBADI/page1.htm
8. What are the different ways of passing the data between the lists?
you mean that alv lists..or list box..
for alv....we can use the function modules
reuse_avl_list_display
reuse_alv_grid_display
reuse_alv_hirarchial_list_display
for the list box check this program..
TYPE-POOLS: VRM.
DATA: NAME TYPE VRM_ID,
LIST TYPE VRM_VALUES,
VALUE LIKE LINE OF LIST.
PARAMETERS: PS_PARM(10) AS LISTBOX VISIBLE LENGTH 10.
AT SELECTION-SCREEN OUTPUT.
NAME = 'PS_PARM'.
VALUE-KEY = '1'.
VALUE-TEXT = 'LINE 1'.
APPEND VALUE TO LIST. VALUE-KEY = '2'.
VALUE-TEXT = 'LINE 2'.
APPEND VALUE TO LIST.
CALL FUNCTION 'VRM_SET_VALUES' EXPORTING ID = NAME VALUES = LIST.
or check this program..
TYPE-POOLS : vrm.
TABLES:vbak,vbap.
DATA : v(80) TYPE c.
DATA: wa_vbak TYPE vbak,
it_vbak TYPE vbak OCCURS 0 WITH HEADER LINE,
wa_vbap TYPE vbap,
it_vbap TYPE vbap OCCURS 0 WITH HEADER LINE.
DATA: l_name TYPE vrm_id,
li_list TYPE vrm_values ,
v_count TYPE i,
l_value LIKE LINE OF li_list.
PARAMETERS: p_test(20) AS LISTBOX VISIBLE LENGTH 60 MODIF ID DAT.
INITIALIZATION.
AT SELECTION-SCREEN OUTPUT.
PERFORM get_data.
LOOP AT it_vbak.
l_value-key = it_vbak-vbeln .
l_value-text = it_vbak-vbeln .
APPEND l_value TO li_list.
ENDLOOP.
CALL FUNCTION 'VRM_SET_VALUES'
EXPORTING
id = 'P_TEST'
values = li_list
EXCEPTIONS
id_illegal_name = 1
OTHERS = 2.
AT SELECTION-SCREEN ON P_TEST.
clear : li_list , li_list[].
SELECT vbeln
matnr
meins
FROM vbap
INTO CORRESPONDING FIELDS OF TABLE it_vbap
WHERE vbeln = p_test.
&----
*& Form get_Data
----
FORM get_data .
SELECT vbeln
FROM vbak
INTO CORRESPONDING FIELDS OF TABLE it_vbak.
ENDFORM. " get_Data
9. How 2 pass data from a FORM to a SUBROUTINE program?
using the statement using and changing..like this.
perform zf_proc_get_om_objects tables i_objects
using c_otype_position
i0001-plans
changing g_retcd.
regards,
venkat
‎2008 Apr 26 12:02 PM
Hi shilpa,
I will try to give the answers for some quesions
Maximum secondary indexes pssble are 11.
Watch points- 10
Breakpoits-30
macros-9