Send answers of these qutions

1.     Strengths in technical subject ?
2.     Explain best report which u did ?
3.     Major events of reports ?
4.     Difference between interactive and classical reports ?
5.     Types of BDC’s
6.     If you say session than why ?
7.     If you say call transaction why?
8.     Batch Input & Direct Input differences?
9.     Where error logs will be stored(Table name)?
10.     SAP Scripts.
11.     Why do you use SAP scripts?
12.     Basic elements of sap script?
13.     How can you say you are the best among others?
14.     What is the difference between LSMW & BDC?
15.     Which one you prefer most and why?
16.     What are the topics you learn in ABAP?
17.     Define logical database?
1.     Tables in SD & MM modules?
2.     Best Report explanation?
3.     Report Events(Classical & Interactive)?
4.     Select options?
5.     BDCS and errors in BDCs?
6.     How to add fields in a table?
7.     Define logical database (Get)?
8.     Difference between check table and value table?
9.     Where Icons will be stored?
10.     When Bapi and Idocs are used?
11.     What are macros?
12.     ALE communication type(synchronus or Asynchronus)?
1.     How will you create Vendor master data in IDOC & how will you send through ALE?
2.     Differences between scripts and smart forms?
3.     Data dictionary?
4.     Explain about ALE & BAPI?
5.     How will you include message controls in ALE and EDI?
6.     In an Interactive Report by using some commands the out put will be displayed in sorted order depending on any field?
7.     Best Report explanation?
8.     What is the use of Delimiter in flat file uploading in BDCs?

send these answered of qutions

Similar Messages

  • HT5312 forgot my security questions, how do i reset answers to these questions by using the rescue email?

    forgot my security questions, how do i reset answers to these questions by using the resuce email?

    If you have a link to send the answers there, use it, wait a few hours, and check the address's spam filter.
    If you can't get it reset that way, go back to the article you asked this question from and use the link to contact the iTunes Store staff in the 'Additional Information' section. Ifn this case, you can't reset the questions yourself, and nobody on these boards can reset them for you.
    (92571)

  • Can any one give me answer for these questions

    Can any one give me answer for these questions. I  got these questions from net plz post the answers you know
    ABAP CERTIFICATION QUESTIONS
    1. If a table does not have MANDT as part of the primary key, it is ____.
    A: A structure
    B: Invalid
    C: Client-independent
    D: Not mandatory
    2. In regard to CALL, which of the following is NOT a valid statement?
    A: CALL FUNCTION
    B: CALL SCREEN
    C: CALL TRANSACTION
    D: CALL PROGRAM
    3. Name the type of ABAP Dictionary table that has these characteristics:
    Same number of fields as the database table
    Same name as database table
    Maps 1:1 to database table
    A: Pooled
    B: Cluster
    C: Transparent
    D: View
    4. An event starts with an event keyword and ends with:
    A: Program execution.
    B: END-OF-EVENT.
    C: Another event keyword.
    D: END-EVENT.
    5. What is the system field for the current date?
    A: SY-DATUM
    B: SY-DATE
    C: SY-DATID
    D: SY-SDATE
    6. The following code indicates:
    SELECT fld1 fld2 FROM tab1 APPENDING TABLE itab
    WHERE fld1 IN sfld1.
    A: Add rows to the existing rows of itab.
    B: Add rows to itab after first deleting any existing rows of itab.
    C: Select rows from tab1 for matching itab entries.
    D: Nothing, this is a syntax error.
    7. You may change the following data object as shown below so that it equals 3.14.
    CONSTANTS: PI type P decimals 2 value '3.1'.
    PI = '3.14'.
    A: True
    B: False
    8. The SAP service that ensures data integrity by handling locking is called:
    A: Update
    B: Dialog
    C: Enqueue/Dequeue
    D: Spool
    9. Which of these sentences most accurately describes the GET VBAK LATE. event?
    A: This event is processed before the second time the GET VBAK event is processed.
    B: This event is processed after all occurrences of the GET VBAK event are completed.
    C: This event will only be processed after the user has selected a basic list row.
    D: This event is only processed if no records are selected from table VBAK.
    10. Which of the following is not a true statement in regard to a hashed internal table type?
    A: Its key must always be UNIQUE.
    B: May only be accessed by its key.
    C: Response time for accessing a row depends on the number of entries in the table.
    D: Declared using internal table type HASHED TABLE.
    11. TO include database-specific SQL statements within an ABAP program, code them between:
    A: NATIVE SQL_ENDNATIVE.
    B: DB SQL_ENDDB.
    C: SELECT_ENDSELECT.
    D: EXEC SQL_ENDEXEC.
    12. To measure how long a block of code runs, use the ABAP statement:
    A: GET TIME .
    B: SET TIME FIELD .
    C: GET RUN TIME FIELD .
    D: SET CURSOR FIELD .
    13. When a secondary list is being processed, the data of the basic list is available by default.
    A: True
    B: False
    14. Given:
    DATA: BEGIN OF itab OCCURS 10,
    qty type I,
    END OF itab.
    DO 25 TIMES. itab-qty = sy-index. APPEND itab. ENDDO.
    LOOP AT itab WHERE qty > 10.
    WRITE: /1 itab-qty.
    ENDLOOP.
    This will result in:
    A: Output of only those itab rows with a qty field less than 10
    B: Output of the first 10 itab rows with a qty field greater than 10
    C: A syntax error
    D: None of the above
    15. After a DESCRIBE TABLE statement SY-TFILL will contain
    A: The number of rows in the internal table.
    B: The current OCCURS value.
    C: Zero, if the table contains one or more rows.
    D: The length of the internal table row structure.
    16. You may declare your own internal table type using the TYPES keyword.
    A: True
    B: False
    17. After adding rows to an internal table with COLLECT, you should avoid adding more rows with APPEND.
    A: True
    B: False
    18. Which of the following is not a component of control break processing when looping at an internal table?
    A: AT START OF
    B: AT FIRST
    C: AT LAST
    D: AT NEW
    19. A dictionary table is made available for use within an ABAP program via the TABLES statement.
    A: True
    B: False
    20. Which of the following would be best for hiding further selection criteria until a function is chosen?
    A: AT NEW SELECTION-SCREEN
    B: SELECTION-SCREEN AT LINE-SELECTION
    C: SUBMIT SELECTION-SCREEN
    D: CALL SELECTION-SCREEN
    21. What must you code in the flow logic to prevent a module from being called unless a field contains a non-initial value (as determined by its data type)?
    A: ON INPUT
    B: CHAIN
    C: FIELD
    D: ON REQUEST
    22. The AT USER-COMMAND event is triggered by functions defined in the ____.
    A: screen painter
    B: ABAP report
    C: menu painter status
    D: ABAP Dictionary
    23. In regard to a function group, which of the following is NOT a true statement?
    A: Combines similar function modules.
    B: Shares global data with all its function modules.
    C: Exists within the ABAP workbench as an include program.
    D: Shares subroutines with all its function modules.
    24. In regard to SET PF-STATUS, you can deactivate unwanted function codes by using ____.
    A: EXCLUDING
    B: IMMEDIATELY
    C: WITHOUT
    D: HIDE
    25. In regard to data transported in PAI when the FIELD statement is used, which of the following is NOT a true statement?
    A: Fields in PBO are transported directly from PAI.
    B: Fields with identical names are transported to the ABAP side.
    C: Fields not defined in FIELD statements are transported first.
    D: Fields that are defined in FIELD statements are transported when their corresponding module is called.
    26. The order in which an event appears in the ABAP code determines when the event is processed.
    A: True
    B: False
    27. A field declared as type T has the following internal representation:
    A: SSMMHH
    B: HHMMSS
    C: MMHHSS
    D: HHSSMM
    28. Which of the following is NOT a component of the default standard ABAP report header?
    A: Date and Time
    B: List title
    C: Page number
    D: Underline
    29. Assuming a pushbutton with function code 'FUNC' is available in the toolbar of a list report, what event is processed when the button is clicked?
    A: AT USER-COMMAND.
    B: AT PFn.
    C: AT SELECTION-SCREEN.
    D: END-OF-SELECTION.
    30. In regard to field selection, what option of the SELECT statement is required?
    A: FOR ALL ENTRIES
    B: WHERE
    C: INTO
    D: MOVE-CORRESPONDING
    31. The following program outputs what?
    report zjgtest1
    write: /1 'Ready_'.
    PARAMETER: test.
    INITIALIZATION.
    write: /1 'Set_'.
    START-OF-SELECTION.
    write: /1 'GO!!'.
    A: Set_ GO!! (each on its own line)
    B: Set_ Ready_ GO!! (all on their own lines)
    C: Ready_ GO!! (each on its own line)
    D: Ready_ Set_ GO!! (all on their own lines)
    32. To declare a selection criterion that does not appear on the selection screen, use:
    A: NO-DISPLAY
    B: INVISIBLE
    C: MODIF ID
    D: OBLIGATORY
    33. An internal table that is nested within another internal table should not contain a header line.
    A: True
    B: False
    34. What is output by the following code?
    DATA: BEGIN OF itab OCCURS 0, letter type c, END OF itab.
    itab-letter = 'A'. APPEND itab. itab-letter = 'B'. APPEND itab.
    itab-letter = 'C'. APPEND itab. itab-letter = 'D'. APPEND itab.
    LOOP AT itab.
    SY-TABIX = 2.
    WRITE itab-letter.
    EXIT.
    ENDLOOP.
    A: A
    B: A B C D
    C: B
    D: B C D
    35. To select all database entries for a certain WHERE clause into an internal table in one step, use
    A: SELECT_INTO TABLE itab_
    B: SELECT_INTO itab_
    C: SELECT_APPENDING itab
    D: SELECT_itab_
    36. After a successful SELECT statement, what does SY-SUBRC equal?
    A: 0
    B: 4
    C: 8
    D: Null
    37. This selection screen syntax forces the user to input a value:
    A: REQUIRED-ENTRY
    B: OBLIGATORY
    C: DEFAULT
    D: SELECTION-SCREEN EXCLUDE
    38. If the following code results in a syntax error, the remedy is:
    DATA: itab TYPE SORTED TABLE OF rec_type WITH UNIQUE KEY field1
    WITH HEADER LINE.
    itab-field1 = 'Company'. itab-field2 = '1234'. INSERT TABLE itab.
    itab-field1 = 'Bank'. itab-field2 = 'ABC'. INSERT TABLE itab.
    SORT itab.
    LOOP AT itab.
    write: /1 itab-field1, itab-field2.
    ENDLOOP.
    A: There is no syntax error here
    B: Remove the SORT statement
    C: Change INSERT to APPEND
    D: Add a WHERE clause to the loop
    39. If this code results in an error, the remedy is:
    SELECT fld1 fld2 FROM tab1 WHERE fld3 = pfld3.
    WRITE: /1 tab1-fld1, tab1-fld2.
    ENDSELECT.
    A: Add a SY-SUBRC check.
    B: Change the WHERE clause to use fld1 or fld2.
    C: Remove the /1 from the WRITE statement.
    D: Add INTO (tab1-fld1, tab1-fld2).
    40. When modifying an internal table within LOOP AT itab. _ ENDLOOP. you must include an index number.
    A: True
    B: False
    41. To allow the user to enter values on the screen for a list field, use:
    A: OPEN LINE.
    B: SET CURSOR FIELD.
    C: WRITE fld AS INPUT FIELD.
    D: FORMAT INPUT ON.
    42. Before a function module may be tested, it must first be:
    A: Linked
    B: Authorized
    C: Released
    D: Active
    43. To include a field on your screen that is not in the ABAP Dictionary, which include program should contain the data declaration for the field?
    A: PBO module include program
    B: TOP include program
    C: PAI module include program
    D: Subroutine include program
    44. If a table contains many duplicate values for a field, minimize the number of records returned by using this SELECT statement addition.
    A: MIN
    B: ORDER BY
    C: DISTINCT
    D: DELETE
    45. The system internal table used for dynamic screen modification is named:
    A: ITAB
    B: SCREEN
    C: MODTAB
    D: SMOD
    46. Within the source code of a function module, errors are handled via the keyword:
    A: EXCEPTION
    B: RAISE
    C: STOP
    D: ABEND
    47. Which system field contains the contents of a selected line?
    A: SY-CUCOL
    B: SY-LILLI
    C: SY-CUROW
    D: SY-LISEL
    48. The following statement writes what type of data object?
    WRITE: /1 'Total Amount:'.
    A: Text literal
    B: Text variable
    C: In-code comment
    D: Text integer
    49. For the code below, second_field is of what data type?
    DATA: first_field type P, second_field like first_field.
    A: P
    B: C
    C: N
    D: D
    50. Which of the following describes the internal representation of a type D data object?
    A: DDMMYYYY
    B: YYYYDDMM
    C: MMDDYYYY
    D: YYYYMMDD
    51. A BDC program is used for all of the following except:
    A: Downloading data to a local file
    B: Data interfaces between SAP and external systems
    C: Initial data transfer
    D: Entering a large amount of data
    52. In regard to PERFORM, which of the following is NOT a true statement?
    A: May be used within a subroutine.
    B: Requires actual parameters.
    C: Recursive calls are allowed in ABAP.
    D: Can call a subroutine in another program.
    53. What is the transaction code for the ABAP Editor?
    A: SE11
    B: SE38
    C: SE36
    D: SE16
    54. In regard to HIDE, which of the following is NOT a true statement?
    A: Saves the contents of variables in relation to a list line's row number.
    B: The hidden variables must be output on a list line.
    C: The HIDE area is retrieved when using the READ LINE statement.
    D: The HIDE area is retrieved when an interactive event is triggered.
    55. Database locks are sufficient in a multi-user environment.
    A: True
    B: False
    56. The complete technical definition of a table field is determined by the field's:
    A: Domain
    B: Field name
    C: Data type
    D: Data element
    57. In regard to LEAVE, which of the following is NOT a true statement?
    A: May be used to return immediately to a calling program.
    B: May be used to stop the current loop pass and get the next.
    C: May be used to start a new transaction.
    D: May be used to go to the next screen.
    58. The following code indicates:
    SELECT fld6 fld3 fld2 fld1 FROM tab1 INTO CORRESPONDING FIELDS OF TABLE itab
    WHERE fld3 = pfld3.
    A: The order of the fields in itab does not matter.
    B: Fill the header line of itab, but not the body.
    C: Table itab can only contain fields also in table tab1.
    D: None of the above.
    59. The ABAP statement below indicates that the program should continue with the next line of code if the internal table itab:
    CHECK NOT itab[] IS INITIAL.
    A: Contains no rows
    B: Contains at least one row
    C: Has a header line
    D: Has an empty header line
    60. What will be output by the following code?
    DATA: BEGIN OF itab OCCURS 0, fval type i, END OF itab.
    itab-fval = 1. APPEND itab.
    itab-fval = 2. APPEND itab.
    FREE itab.
    WRITE: /1 itab-fval.
    A: 2
    B: 0
    C: blank
    D: 1
    61. To allow the user to enter a range of values on a selection screen, use the ABAP keyword:
    A: DATA.
    B: RANGES.
    C: PARAMETERS.
    D: SELECT-OPTIONS.
    62. If an internal table is declared without a header line, what else must you declare to work with the table's rows?
    A: Another internal table with a header line.
    B: A work area with the same structure as the internal table.
    C: An internal table type using the TYPES statement.
    D: A PARAMETER.
    63. Assuming an internal table contains 2000 entries, how many entries will it have after the following line of code is executed?
    DELETE itab FROM 1500 TO 1700.
    A: This is a syntax error.
    B: 1801
    C: 1800
    D: 1799
    64. To remove lines from a database table, use ____.
    A: UPDATE
    B: MODIFY
    C: ERASE
    D: DELETE
    65. All of the following may be performed using SET CURSOR except:
    A: Move the cursor to a specific field on a list.
    B: Move the cursor to a specific list line.
    C: Move the cursor to a specific pushbutton, activating that function.
    D: Move the cursor to a specific row and column on a list.
    66. When is it optional to pass an actual parameter to a required formal parameter of a function module?
    A: The actual parameter is type C.
    B: The formal parameter contains a default value.
    C: The formal parameter's \"Reference\" attribute is turned on.
    D: It is never optional.
    67. Coding two INITIALIZATION events will cause a syntax error.
    A: True
    B: False
    68. Adding a COMMIT WORK statement between SELECT_ENDSELECT is a good method for improving performance.
    A: True
    B: False
    69. To save information on a list line for use after the line is selected, use this keyword.
    A: APPEND
    B: EXPORT
    C: WRITE
    D: HIDE
    70. To bypass automatic field input checks, include this in PAI.
    A: AT EXIT-COMMAND
    B: ON INPUT
    C: ON REQUEST
    D: LEAVE TO SCREEN 0.
    71. Within a function module's source code, if the MESSAGE_RAISING statement is executed, all of the following system fields are filled automatically except:
    A: SY-MSGTY
    B: SY-MSGNO
    C: SY-MSGV1
    D: SY-MSGWA
    72. The following code indicates:
    REPORT ZLISTTST.
    START-OF-SELECTION.
    WRITE: text-001.
    FORMAT HOTSPOT ON.
    WRITE: text-002.
    FORMAT HOTSPOT OFF.
    AT LINE-SELECTION.
    WRITE / text-003.
    A: Text-002 may not be selected.
    B: The value of text-002 is stored in a special memory area.
    C: Text-002 may be clicked once to trigger the output of text-003.
    D: None of the above.
    73. The ____ type of ABAP Dictionary view consists of one or more transparent tables and may be accessed by an ABAP program using Open SQL.
    A: Database view
    B: Projection view
    C: Help view
    D: Entity view
    74. A concrete field is associated with a field-symbol via ABAP keyword
    A: MOVE
    B: WRITE
    C: ASSIGN
    D: VALUE
    75. The output for the following code will be:
    report zabaprg.
    DATA: char_field type C.
    char_field = 'ABAP data'.
    WRITE char_field.
    A: ABAP data
    B: A
    C: Nothing, there is a syntax error
    D: None of the above
    76. Page footers are coded in the event:
    A: TOP-OF-PAGE.
    B: END-OF-SELECTION.
    C: NEW-PAGE.
    D: END-OF-PAGE.
    77. The event AT SELECTION-SCREEN OUTPUT. occurs before the selection screen is displayed and is the best event for assigning default values to selection criteria.
    A: True
    B: False
    78. The TABLES statement declares a data object.
    A: True
    B: False
    79. Assuming tab1-fld7 is not a key field, how can you prevent reading all the table rows?
    SELECT fld1 fld2 fld3 FROM tab1 INTO (fld4, fld5, fld6)
    WHERE fld7 = pfld7.
    WRITE: /1 fld4, fld5, fld6.
    ENDSELECT.
    A: Take fld7 out of the WHERE clause.
    B: Create an index in the ABAP Dictionary for tab1-fld7.
    C: Use INTO TABLE instead of just INTO.
    D: Take the WRITE statement out of the SELECT_ENDSELECT.
    80. Which of the following is NOT a required attribute when creating an ABAP program?
    A: Application
    B: Title
    C: Status
    D: Type
    81. When creating a transparent table in the ABAP Dictionary, which step automatically creates the table in the underlying database?
    A: Adding technical settings to the table
    B: Checking the table syntax
    C: Saving the table
    D: Activating the table
    82. Within the ABAP program attributes, Type = 1 represents:
    A: INCLUDE program
    B: Online program
    C: Module pool
    D: Function group
    E: Subroutine pool
    83. If this code results in an error, the remedy is:
    SELECT fld1 SUM( fld1 ) FROM tab1 INTO_
    A: Remove the spaces from SUM( fld1 ).
    B: Move SUM( fld1 ) before fld1.
    C: Add GROUP BY f1.
    D: Change to SUM( DISTINCT f1 ).
    84. Which keyword adds rows to an internal table while accumulating numeric values?
    A: INSERT
    B: APPEND
    C: COLLECT
    D: GROUP
    85. Assuming itab has a header line, what will be output by the following code?
    READ TABLE itab INDEX 3 TRANSPORTING field1.
    WRITE: /1 itab-field1, itab-field2.
    A: The contents of the third row's itab-field1.
    B: The contents of the third row's itab-field1 and itab-field2.
    C: The contents of the third row's itab-field2.
    D: Nothing.
    86. The following code indicates:
    SELECTION-SCREEN BEGIN OF BLOCK B1.
    PARAMETERS: myparam(10) type C,
    Myparam2(10) type N,
    SELECTION-SCREEN END OF BLOCK.
    A: Draw a box around myparam and myparam2 on the selection screen.
    B: Allow myparam and myparam2 to be ready for input during an error dialog.
    C: Do not display myparam and myparam2 on the selection screen.
    D: Display myparam and myparam2 only if both fields have default values.
    87. Which statement will sort the data of an internal table with fields FRUIT, QTY, and PRICE so that it appears as follows?
    FRUIT QTY PRICE
    Apples 12 22.50
    Apples 9 18.25
    Oranges 15 17.35
    Bananas 20 10.20
    Bananas 15 6.89
    Bananas 5 2.75
    A: SORT itab DESCENDING BY QTY PRICE.
    B: SORT itab BY PRICE FRUIT.
    C: SORT itab.
    D: SORT itab BY PRICE DESCENDING.
    88. Which keyword adds a line anywhere within an internal table?
    A: APPEND
    B: MODIFY
    C: ADD
    D: INSERT
    89. To read a single line of an internal table, use the following:
    A: LOOP AT itab. _ ENDLOOP.
    B: READ itab.
    C: SELECT SINGLE * FROM itab.
    D: READ TABLE itab.
    90. Which Open SQL statement should not be used with cluster databases?
    A: UPDATE
    B: MODIFY
    C: DELETE
    D: INSERT
    91. To include a field on your screen that is not in the ABAP Dictionary, which include program should contain the data declaration for the field?
    A: PBO module include program
    B: TOP include program
    C: PAI module include program
    D: Subroutine include program
    92. This flow logic statement is used to make multiple fields open for input after an error or warning message.
    A: GROUP
    B: FIELD-GROUP
    C: CHAIN
    D: LOOP AT SCREEN
    93. Given:
    PERFORM subroutine USING var.
    The var field is known as what type of parameter?
    A: Formal
    B: Actual
    C: Static
    D: Value

    ANSWERS :
    1. If a table does not have MANDT as part of the primary key, it is ____.
    A: A structure
    B: Invalid
    C: Client-independent
    D: Not mandatory
    Ans : C
    2. In regard to CALL, which of the following is NOT a valid statement?
    A: CALL FUNCTION
    B: CALL SCREEN
    C: CALL TRANSACTION
    D: CALL PROGRAM
    Ans : D
    3. Name the type of ABAP Dictionary table that has these characteristics:
    Same number of fields as the database table
    Same name as database table
    Maps 1:1 to database table
    A: Pooled
    B: Cluster
    C: Transparent
    D: View
    Ans : C
    4. An event starts with an event keyword and ends with:
    A: Program execution.
    B: END-OF-EVENT.
    C: Another event keyword.
    D: END-EVENT.
    Ans: C
    5. What is the system field for the current date?
    A: SY-DATUM
    B: SY-DATE
    C: SY-DATID
    D: SY-SDATE
    Ans : A
    6. The following code indicates:
    SELECT fld1 fld2 FROM tab1 APPENDING TABLE itab
    WHERE fld1 IN sfld1.
    A: Add rows to the existing rows of itab.
    B: Add rows to itab after first deleting any existing rows of itab.
    C: Select rows from tab1 for matching itab entries.
    D: Nothing, this is a syntax error.
    Ans : B
    7. You may change the following data object as shown below so that it equals 3.14.
    CONSTANTS: PI type P decimals 2 value '3.1'.
    PI = '3.14'.
    A: True
    B: False
    Ans : B
    8. The SAP service that ensures data integrity by handling locking is called:
    A: Update
    B: Dialog
    C: Enqueue/Dequeue
    D: Spool
    Ans : C
    9. Which of these sentences most accurately describes the GET VBAK LATE. event?
    A: This event is processed before the second time the GET VBAK event is processed.
    B: This event is processed after all occurrences of the GET VBAK event are completed.
    C: This event will only be processed after the user has selected a basic list row.
    D: This event is only processed if no records are selected from table VBAK.
    Ans :
    10. Which of the following is not a true statement in regard to a hashed internal table type?
    A: Its key must always be UNIQUE.
    B: May only be accessed by its key.
    C: Response time for accessing a row depends on the number of entries in the table.
    D: Declared using internal table type HASHED TABLE.
    Ans : C
    11. TO include database-specific SQL statements within an ABAP program, code them between:
    A: NATIVE SQL_ENDNATIVE.
    B: DB SQL_ENDDB.
    C: SELECT_ENDSELECT.
    D: EXEC SQL_ENDEXEC.
    Ans : D
    12. To measure how long a block of code runs, use the ABAP statement:
    A: GET TIME .
    B: SET TIME FIELD .
    C: GET RUN TIME FIELD .
    D: SET CURSOR FIELD .
    Ans : C
    13. When a secondary list is being processed, the data of the basic list is available by default.
    A: True
    B: False
    Ans : B
    14. Given:
    DATA: BEGIN OF itab OCCURS 10,
    qty type I,
    END OF itab.
    DO 25 TIMES. itab-qty = sy-index. APPEND itab. ENDDO.
    LOOP AT itab WHERE qty > 10.
    WRITE: /1 itab-qty.
    ENDLOOP.
    This will result in:
    A: Output of only those itab rows with a qty field less than 10
    B: Output of the first 10 itab rows with a qty field greater than 10
    C: A syntax error
    D: None of the above
    Ans : B
    15. After a DESCRIBE TABLE statement SY-TFILL will contain
    A: The number of rows in the internal table.
    B: The current OCCURS value.
    C: Zero, if the table contains one or more rows.
    D: The length of the internal table row structure.
    Ans ; A
    16. You may declare your own internal table type using the TYPES keyword.
    A: True
    B: False
    Ans : A
    17. After adding rows to an internal table with COLLECT, you should avoid adding more rows with APPEND.
    A: True
    B: False
    Ans : A
    18. Which of the following is not a component of control break processing when looping at an internal table?
    A: AT START OF
    B: AT FIRST
    C: AT LAST
    D: AT NEW
    Ans : A
    19. A dictionary table is made available for use within an ABAP program via the TABLES statement.
    A: True
    B: False
    Ans : A
    20. Which of the following would be best for hiding further selection criteria until a function is chosen?
    A: AT NEW SELECTION-SCREEN
    B: SELECTION-SCREEN AT LINE-SELECTION
    C: SUBMIT SELECTION-SCREEN
    D: CALL SELECTION-SCREEN
    Ans : D
    21. What must you code in the flow logic to prevent a module from being called unless a field contains a non-initial value (as determined by its data type)?
    A: ON INPUT
    B: CHAIN
    C: FIELD
    D: ON REQUEST
    Ans : A
    22. The AT USER-COMMAND event is triggered by functions defined in the ____.
    A: screen painter
    B: ABAP report
    C: menu painter status
    D: ABAP Dictionary
    Ans : C
    23. In regard to a function group, which of the following is NOT a true statement?
    A: Combines similar function modules.
    B: Shares global data with all its function modules.
    C: Exists within the ABAP workbench as an include program.
    D: Shares subroutines with all its function modules.
    Ans ; C
    24. In regard to SET PF-STATUS, you can deactivate unwanted function codes by using ____.
    A: EXCLUDING
    B: IMMEDIATELY
    C: WITHOUT
    D: HIDE
    Ans : A
    25. In regard to data transported in PAI when the FIELD statement is used, which of the following is NOT a true statement?
    A: Fields in PBO are transported directly from PAI.
    B: Fields with identical names are transported to the ABAP side.
    C: Fields not defined in FIELD statements are transported first.
    D: Fields that are defined in FIELD statements are transported when their corresponding module is called.
    Ans ; C
    26. The order in which an event appears in the ABAP code determines when the event is processed.
    A: True
    B: False
    Ans : B
    27. A field declared as type T has the following internal representation:
    A: SSMMHH
    B: HHMMSS
    C: MMHHSS
    D: HHSSMM
    Ans : B
    28. Which of the following is NOT a component of the default standard ABAP report header?
    A: Date and Time
    B: List title
    C: Page number
    D: Underline
    Ans ; A
    29. Assuming a pushbutton with function code 'FUNC' is available in the toolbar of a list report, what event is processed when the button is clicked?
    A: AT USER-COMMAND.
    B: AT PFn.
    C: AT SELECTION-SCREEN.
    D: END-OF-SELECTION.
    Ans : A
    30. In regard to field selection, what option of the SELECT statement is required?
    A: FOR ALL ENTRIES
    B: WHERE
    C: INTO
    D: MOVE-CORRESPONDING
    Ans : B
    31. The following program outputs what?
    report zjgtest1
    write: /1 'Ready_'.
    PARAMETER: test.
    INITIALIZATION.
    write: /1 'Set_'.
    START-OF-SELECTION.
    write: /1 'GO!!'.
    A: Set_ GO!! (each on its own line)
    B: Set_ Ready_ GO!! (all on their own lines)
    C: Ready_ GO!! (each on its own line)
    D: Ready_ Set_ GO!! (all on their own lines)
    Ans : C
    32. To declare a selection criterion that does not appear on the selection screen, use:
    A: NO-DISPLAY
    B: INVISIBLE
    C: MODIF ID
    D: OBLIGATORY
    Ans : A
    33. An internal table that is nested within another internal table should not contain a header line.
    A: True
    B: False
    Ans : B
    34. What is output by the following code?
    DATA: BEGIN OF itab OCCURS 0, letter type c, END OF itab.
    itab-letter = 'A'. APPEND itab. itab-letter = 'B'. APPEND itab.
    itab-letter = 'C'. APPEND itab. itab-letter = 'D'. APPEND itab.
    LOOP AT itab.
    SY-TABIX = 2.
    WRITE itab-letter.
    EXIT.
    ENDLOOP.
    A: A
    B: A B C D
    C: B
    D: B C D
    Ans : A
    35. To select all database entries for a certain WHERE clause into an internal table in one step, use
    A: SELECT_INTO TABLE itab_
    B: SELECT_INTO itab_
    C: SELECT_APPENDING itab
    D: SELECT_itab_
    36. After a successful SELECT statement, what does SY-SUBRC equal?
    A: 0
    B: 4
    C: 8
    D: Null
    Ans : A
    37. This selection screen syntax forces the user to input a value:
    A: REQUIRED-ENTRY
    B: OBLIGATORY
    C: DEFAULT
    D: SELECTION-SCREEN EXCLUDE
    Ans : B
    38. If the following code results in a syntax error, the remedy is:
    DATA: itab TYPE SORTED TABLE OF rec_type WITH UNIQUE KEY field1
    WITH HEADER LINE.
    itab-field1 = 'Company'. itab-field2 = '1234'. INSERT TABLE itab.
    itab-field1 = 'Bank'. itab-field2 = 'ABC'. INSERT TABLE itab.
    SORT itab.
    LOOP AT itab.
    write: /1 itab-field1, itab-field2.
    ENDLOOP.
    A: There is no syntax error here
    B: Remove the SORT statement
    C: Change INSERT to APPEND
    D: Add a WHERE clause to the loop
    Ans :
    39. If this code results in an error, the remedy is:
    SELECT fld1 fld2 FROM tab1 WHERE fld3 = pfld3.
    WRITE: /1 tab1-fld1, tab1-fld2.
    ENDSELECT.
    A: Add a SY-SUBRC check.
    B: Change the WHERE clause to use fld1 or fld2.
    C: Remove the /1 from the WRITE statement.
    D: Add INTO (tab1-fld1, tab1-fld2).
    Ans : D
    40. When modifying an internal table within LOOP AT itab. _ ENDLOOP. you must include an index number.
    A: True
    B: False
    Ans : A
    41. To allow the user to enter values on the screen for a list field, use:
    A: OPEN LINE.
    B: SET CURSOR FIELD.
    C: WRITE fld AS INPUT FIELD.
    D: FORMAT INPUT ON.
    Ans : C
    42. Before a function module may be tested, it must first be:
    A: Linked
    B: Authorized
    C: Released
    D: Active
    Ans : D
    43. To include a field on your screen that is not in the ABAP Dictionary, which include program should contain the data declaration for the field?
    A: PBO module include program
    B: TOP include program
    C: PAI module include program
    D: Subroutine include program
    Ans : B
    44. If a table contains many duplicate values for a field, minimize the number of records returned by using this SELECT statement addition.
    A: MIN
    B: ORDER BY
    C: DISTINCT
    D: DELETE
    Ans : C
    45. The system internal table used for dynamic screen modification is named:
    A: ITAB
    B: SCREEN
    C: MODTAB
    D: SMOD
    Ans : B
    46. Within the source code of a function module, errors are handled via the keyword:
    A: EXCEPTION
    B: RAISE
    C: STOP
    D: ABEND
    Ans : A
    47. Which system field contains the contents of a selected line?
    A: SY-CUCOL
    B: SY-LILLI
    C: SY-CUROW
    D: SY-LISEL
    Ans : D
    48. The following statement writes what type of data object?
    WRITE: /1 'Total Amount:'.
    A: Text literal
    B: Text variable
    C: In-code comment
    D: Text integer
    Ans : A
    49. For the code below, second_field is of what data type?
    DATA: first_field type P, second_field like first_field.
    A: P
    B: C
    C: N
    D: D
    Ans : A
    50. Which of the following describes the internal representation of a type D data object?
    A: DDMMYYYY
    B: YYYYDDMM
    C: MMDDYYYY
    D: YYYYMMDD
    Ans : A
    51. A BDC program is used for all of the following except:
    A: Downloading data to a local file
    B: Data interfaces between SAP and external systems
    C: Initial data transfer
    D: Entering a large amount of data
    Ans : A
    52. In regard to PERFORM, which of the following is NOT a true statement?
    A: May be used within a subroutine.
    B: Requires actual parameters.
    C: Recursive calls are allowed in ABAP.
    D: Can call a subroutine in another program.
    Ans : B
    53. What is the transaction code for the ABAP Editor?
    A: SE11
    B: SE38
    C: SE36
    D: SE16
    Ans : B
    54. In regard to HIDE, which of the following is NOT a true statement?
    A: Saves the contents of variables in relation to a list line's row number.
    B: The hidden variables must be output on a list line.
    C: The HIDE area is retrieved when using the READ LINE statement.
    D: The HIDE area is retrieved when an interactive event is triggered.
    Ans : B
    55. Database locks are sufficient in a multi-user environment.
    A: True
    B: False
    Ans : B
    56. The complete technical definition of a table field is determined by the field's:
    A: Domain
    B: Field name
    C: Data type
    D: Data element
    Ans : A
    57. In regard to LEAVE, which of the following is NOT a true statement?
    A: May be used to return immediately to a calling program.
    B: May be used to stop the current loop pass and get the next.
    C: May be used to start a new transaction.
    D: May be used to go to the next screen.
    Ans : B
    58. The following code indicates:
    SELECT fld6 fld3 fld2 fld1 FROM tab1 INTO CORRESPONDING FIELDS OF TABLE itab
    WHERE fld3 = pfld3.
    A: The order of the fields in itab does not matter.
    B: Fill the header line of itab, but not the body.
    C: Table itab can only contain fields also in table tab1.
    D: None of the above.
    Ans : C
    59. The ABAP statement below indicates that the program should continue with the next line of code if the internal table itab:
    CHECK NOT itab[] IS INITIAL.
    A: Contains no rows
    B: Contains at least one row
    C: Has a header line
    D: Has an empty header line
    Ans : B
    60. What will be output by the following code?
    DATA: BEGIN OF itab OCCURS 0, fval type i, END OF itab.
    itab-fval = 1. APPEND itab.
    itab-fval = 2. APPEND itab.
    FREE itab.
    WRITE: /1 itab-fval.
    A: 2
    B: 0
    C: blank
    D: 1
    Ans : A
    61. To allow the user to enter a range of values on a selection screen, use the ABAP keyword:
    A: DATA.
    B: RANGES.
    C: PARAMETERS.
    D: SELECT-OPTIONS.
    Ans : D
    62. If an internal table is declared without a header line, what else must you declare to work with the table's rows?
    A: Another internal table with a header line.
    B: A work area with the same structure as the internal table.
    C: An internal table type using the TYPES statement.
    D: A PARAMETER.
    Ans : B
    63. Assuming an internal table contains 2000 entries, how many entries will it have after the following line of code is executed?
    DELETE itab FROM 1500 TO 1700.
    A: This is a syntax error.
    B: 1801
    C: 1800
    D: 1799
    Ans : A
    64. To remove lines from a database table, use ____.
    A: UPDATE
    B: MODIFY
    C: ERASE
    D: DELETE
    Ans : D
    65. All of the following may be performed using SET CURSOR except:
    A: Move the cursor to a specific field on a list.
    B: Move the cursor to a specific list line.
    C: Move the cursor to a specific pushbutton, activating that function.
    D: Move the cursor to a specific row and column on a list.
    Ans : C
    66. When is it optional to pass an actual parameter to a required formal parameter of a function module?
    A: The actual parameter is type C.
    B: The formal parameter contains a default value.
    C: The formal parameter's \"Reference\" attribute is turned on.
    D: It is never optional.
    Ans : B
    67. Coding two INITIALIZATION events will cause a syntax error.
    A: True
    B: False
    Ans : B
    68. Adding a COMMIT WORK statement between SELECT_ENDSELECT is a good method for improving performance.
    A: True
    B: False
    Ans : B
    69. To save information on a list line for use after the line is selected, use this keyword.
    A: APPEND
    B: EXPORT
    C: WRITE
    D: HIDE
    Ans : D
    70. To bypass automatic field input checks, include this in PAI.
    A: AT EXIT-COMMAND
    B: ON INPUT
    C: ON REQUEST
    D: LEAVE TO SCREEN 0.
    Ans : A
    71. Within a function module's source code, if the MESSAGE_RAISING statement is executed, all of the following system fields are filled automatically except:
    A: SY-MSGTY
    B: SY-MSGNO
    C: SY-MSGV1
    D: SY-MSGWA
    Ans : D
    72. The following code indicates:
    REPORT ZLISTTST.
    START-OF-SELECTION.
    WRITE: text-001.
    FORMAT HOTSPOT ON.
    WRITE: text-002.
    FORMAT HOTSPOT OFF.
    AT LINE-SELECTION.
    WRITE / text-003.
    A: Text-002 may not be selected.
    B: The value of text-002 is stored in a special memory area.
    C: Text-002 may be clicked once to trigger the output of text-003.
    D: None of the above.
    Ans : C
    73. The ____ type of ABAP Dictionary view consists of one or more transparent tables and may be accessed by an ABAP program using Open SQL.
    A: Database view
    B: Projection view
    C: Help view
    D: Entity view
    Ans : A
    74. A concrete field is associated with a field-symbol via ABAP keyword
    A: MOVE
    B: WRITE
    C: ASSIGN
    D: VALUE
    Ans : C
    75. The output for the following code will be:
    report zabaprg.
    DATA: char_field type C.
    char_field = 'ABAP data'.
    WRITE char_field.
    A: ABAP data
    B: A
    C: Nothing, there is a syntax error
    D: None of the above
    Ans : B
    76. Page footers are coded in the event:
    A: TOP-OF-PAGE.
    B: END-OF-SELECTION.
    C: NEW-PAGE.
    D: END-OF-PAGE.
    Ans : D
    77. The event AT SELECTION-SCREEN OUTPUT. occurs before the selection screen is displayed and is the best event for assigning default values to selection criteria.
    A: True
    B: False
    Ans : B
    78. The TABLES statement declares a data object.
    A: True
    B: False
    Ans : A
    79. Assuming tab1-fld7 is not a key field, how can you prevent reading all the table rows?
    SELECT fld1 fld2 fld3 FROM tab1 INTO (fld4, fld5, fld6)
    WHERE fld7 = pfld7.
    WRITE: /1 fld4, fld5, fld6.
    ENDSELECT.
    A: Take fld7 out of the WHERE clause.
    B: Create an index in the ABAP Dictionary for tab1-fld7.
    C: Use INTO TABLE instead of just INTO.
    D: Take the WRITE statement out of the SELECT_ENDSELECT.
    Ans :
    80. Which of the following is NOT a required attribute when creating an ABAP program?
    A: Application
    B: Title
    C: Status
    D: Type
    Ans : A
    81. When creating a transparent table in the ABAP Dictionary, which step automatically creates the table in the underlying database?
    A: Adding technical settings to the table
    B: Checking the table syntax
    C: Saving the table
    D: Activating the table
    Ans : D
    82. Within the ABAP program attributes, Type = 1 represents:
    A: INCLUDE program
    B: Online program
    C: Module pool
    D: Function group
    E: Subroutine pool
    Ans : B
    83. If this code results in an error, the remedy is:
    SELECT fld1 SUM( fld1 ) FROM tab1 INTO_
    A: Remove the spaces from SUM( fld1 ).
    B: Move SUM( fld1 ) before fld1.
    C: Add GROUP BY f1.
    D: Change to SUM( DISTINCT f1 ).
    Ans : C
    84. Which keyword adds rows to an internal table while accumulating numeric values?
    A: INSERT
    B: APPEND
    C: COLLECT
    D: GROUP
    Ans : C
    85. Assuming itab has a header line, what will be output by the following code?
    READ TABLE itab INDEX 3 TRANSPORTING field1.
    WRITE: /1 itab-field1, itab-field2.
    A: The contents of the third row's itab-field1.
    B: The contents of the third row's itab-field1 and itab-field2.
    C: The contents of the third row's itab-field2.
    D: Nothing.
    Ans ; A
    86. The following code indicates:
    SELECTION-SCREEN BEGIN OF BLOCK B1.
    PARAMETERS: myparam(10) type C,
    Myparam2(10) type N,
    SELECTION-SCREEN END OF BLOCK.
    A: Draw a box around myparam and myparam2 on the selection screen.
    B: Allow myparam and myparam2 to be ready for input during an error dialog.
    C: Do not display myparam and myparam2 on the selection screen.
    D: Display myparam and myparam2 only if both fields have default values.
    Ans : A
    87. Which statement will sort the data of an internal table with fields FRUIT, QTY, and PRICE so that it appears as follows?
    FRUIT QTY PRICE
    Apples 12 22.50
    Apples 9 18.25
    Oranges 15 17.35
    Bananas 20 10.20
    Bananas 15 6.89
    Bananas 5 2.75
    A: SORT itab DESCENDING BY QTY PRICE.
    B: SORT itab BY PRICE FRUIT.
    C: SORT itab.
    D: SORT itab BY PRICE DESCENDING.
    Ans : D
    88. Which keyword adds a line anywhere within an internal table?
    A: APPEND
    B: MODIFY
    C: ADD
    D: INSERT
    Ans : D
    89. To read a single line of an internal table, use the following:
    A: LOOP AT itab. _ ENDLOOP.
    B: READ itab.
    C: SELECT SINGLE * FROM itab.
    D: READ TABLE itab.
    Ans : D
    90. Which Open SQL statement should not be used with cluster databases?
    A: UPDATE
    B: MODIFY
    C: DELETE
    D: INSERT
    Ans :
    91. To include a field on your screen that is not in the ABAP Dictionary, which include program should contain the data declaration for the field?
    A: PBO module include program
    B: TOP include program
    C: PAI module include program
    D: Subroutine include program
    Ans : B
    92. This flow logic statement is used to make multiple fields open for input after an error or warning message.
    A: GROUP
    B: FIELD-GROUP
    C: CHAIN
    D: LOOP AT SCREEN
    Ans ; C
    93. Given:
    PERFORM subroutine USING var.
    The var field is known as what type of parameter?
    A: Formal
    B: Actual
    C: Static
    D: Value
    Ans : B

  • HT201363 Good evening ...  I have an account in appel and I have purchased a card  But I can not buy applications because the applications you want to push it under the answers to security questions and I forgot the answers to these questions  How can I c

    Good evening ...
    I have an account in appel and I have purchased a card
    But I can not buy applications because the applications you want to push it under the answers to security questions and I forgot the answers to these questions
    How can I change my answers to security questions??

    Hello, yazanalmasri0.
    If you need to reset your security questions and have a rescue email attached to your Apple ID, this article will help you with this issue.
    Rescue email address and how to reset Apple ID security questions
    http://support.apple.com/kb/HT5312
    If you are still unable to reset your security questions or do not have a rescue email associated with your account, you will need to reach out to our account security team. 
    Apple ID: Contacting Apple for help with Apple ID account security
    http://support.apple.com/kb/HT5699
    Cheers,
    Jason H.

  • Answers for these interview Q's

    Hi BW experts,
    I want to know the answers for these interview Q's I faced.
    1). What is the use of Nav. Attribute other than the drill down functionality in the reports.
    2). What is the use of PSA?(I answered, we can update the errored records).  But, if there are like million records, how can we do?
    Thanks,
    Sam

    1). What is the use of Nav. Attribute other than the drill down functionality in the reports.
    You can also use Nav. Attr's to filter data in your queries.
    2). What is the use of PSA?(I answered, we can update the errored records). But, if there are like million records, how can we do?
    The PSA is a copy of the data coming from your source system.  With it you can edit the data before updating your data targets.  You can also use it to debug your transfer rules and update rules from an infopackage execution.  It is also the source for reconstructing a request in your data providers (as long as the data has not been collapsed).
    Does this help?

  • Does anyone know answers to these iPad questions?

    Does anyone know answers to these iPad questions?
    1) can you only only install applications from iTunes? Or can you install like on a regular mac?
    2) no usb or card reader? you have to have an attachment through the Dock connector?
    3) Can it read pdf files?
    4) no flash? can the mac's safari do flash?
    5) Can you develop apps on the iPad?
    6) anyone know when you can actually see one in the store? not buy but see one.
    thanks

    magnus404 wrote:
    Does anyone know answers to these iPad questions?
    1) can you only only install applications from iTunes? Or can you install like on a regular mac?
    iTunes, for now
    2) no usb or card reader? you have to have an attachment through the Dock connector?
    Yes - there will be an accessory available for SD cards.
    3) Can it read pdf files?
    Yes since it runs iPhone OS
    4) no flash? can the mac's safari do flash?
    No flash in iPhone OS Safari, but Mac OS X Safari has it.
    5) Can you develop apps on the iPad?
    Unknown, but there is an iPad SDK for use on a Mac.
    6) anyone know when you can actually see one in the store? not buy but see one.
    Near the end of March for WiFi versions and end of April for 3G versions in U.S.
    June timeframe internationally.
    http://www.apple.com/ipad
    Message was edited by: romad

  • HT1212 do not know answers to security questions on our ipod.  It is sending answers to an email that is not in use anymore  we cannot download any new games.

    cannot answer our security questions. It sends answers to an email that is no longer in use.

    Forgotten Security Questions/Answers
    You need to contact Apple by:
    1 - Use the Express lane and start here:
    https://expresslane.apple.com
    then click More Products and Services>Apple ID>Other Apple ID Topics>Forgotten Apple ID security questions.
    or
    Apple - Support -form iTunes Store - Contact Us
    2 - Call Apple in your country by getting the number from here:
    http://support.apple.com/kb/HE57
    or           
    Apple ID: Contacting Apple for help with Apple ID account security
    3 - Use your rescue email address if you set one up
    Rescue email address and how to reset Apple ID security questions
    For general  information see:
    Apple ID: All about Apple ID security questions

  • Suddenly won't let me send/answer emails. I use AOL

    Keep getting a message "Cannot send message using server AOL - The sender address was rejected from the list below or Try Later to leave message in your Outbox until it can be sent".
    Don't know what to do to be able to send/ answer mail as I am a Senior & not tech savy.
    Had no problem before I hooked up a new monitor.

    The Password rejection can confuse people since it's a catch all meaning...
    This Password, Username, Authentication method... is not recognized on this Port to this Server.
    If WebMail works in a browser, it's not Name or Password, but one of the other ones.
    Try this in a Browser...
    https://my.screenname.aol.com/_cqr/login/login.psp
    Or Keychain has more than 2 entries for that account one incoming, one outgoing.
    The receiving email ports are:
    IMAP is port 143
    IMAP-SSL is port 993
    POP is port 110
    POP-SSL is port 995
    Outgoing ports are...
    SMTP and SMTP-SSL is on ports 25, 587 and 465. Port 587 has to be SSL, and port 465 is enforced TLS-wrapped and is generally used by Outlook users.

  • Send me these qutions of answers

    1. Strengths in technical subject ?
    2. Explain best report which u did ?
    3. Major events of reports ?
    4. Difference between interactive and classical reports ?
    5. Types of BDC’s
    6. If you say session than why ?
    7. If you say call transaction why?
    8. Batch Input & Direct Input differences?
    9. Where error logs will be stored(Table name)?
    10. SAP Scripts.
    11. Why do you use SAP scripts?
    12. Basic elements of sap script?
    13. How can you say you are the best among others?
    14. What is the difference between LSMW & BDC?
    15. Which one you prefer most and why?
    16. What are the topics you learn in ABAP?
    17. Define logical database?
    1. Tables in SD & MM modules?
    2. Best Report explanation?
    3. Report Events(Classical & Interactive)?
    4. Select options?
    5. BDCS and errors in BDCs?
    6. How to add fields in a table?
    7. Define logical database (Get)?
    8. Difference between check table and value table?
    9. Where Icons will be stored?
    10. When Bapi and Idocs are used?
    11. What are macros?
    12. ALE communication type(synchronus or Asynchronus)?
    1. How will you create Vendor master data in IDOC & how will you send through ALE?
    2. Differences between scripts and smart forms?
    3. Data dictionary?
    4. Explain about ALE & BAPI?
    5. How will you include message controls in ALE and EDI?
    6. In an Interactive Report by using some commands the out put will be displayed in sorted order depending on any field?
    7. Best Report explanation?
    8. What is the use of Delimiter in flat file uploading in BDCs?

    hi,
    i've given the answer for maximum questions , hope it may help u
    Strengths in technical subject ?
    Strong in BDC, LSMW, OBJECTS, REPORTS, BAPI etc
    3. Major events of reports ?
    INITIALIZATION                          
    AT SELECTION-SCREEN                          
    START-OF-SELECTION      
    GET <table>                    
    GET <table> LATE                     
    TOP-OF-PAGE                    
    END-OF-PAGE                    
    AT LINE-SELECTION               
    AT USER-COMMAND               
    AT PF<nn>     
    4. Difference between interactive and classical reports ?
         Interactive Reporting
    Interactive reporting allows the user to participate actively in retrieving and presenting data during the session. Instead of one extensive and detailed list, with interactive reporting you create a condensed basic list from which the user can call detailed information by positioning the cursor and entering commands. Interactive reporting thus reduces information retrieval to the data actually required.
    classical reports
    its normal report using write statements
    5. Types of BDC’s
          CALL TRANSACTION and BATCH INPUT SESSION
    6. If you say session than why ?
           can schedule it to run at any time
    7. If you say call transaction why?
             Is used to run at that time
    10. SAP Scripts.
         SAPscript is the integrated text management system of the SAP R/3 System. SAPscript is tightly integrated into the SAP System. It is used for many different word-processing tasks all over the SAP System.
    11. Why do you use SAP scripts?
    For reporting
    12. Basic elements of sap script?
    Header data 
    Paragraph formats
    Character formats
    Windows 
    Pages.
    Page windows
    14. What is the difference between LSMW & BDC?
    In the context of session method,
    the method of updating is “Batch Input” ,
    we require a program to be coded,
    But in the context of LSMW method,
    The methods of updating
    using “Batch Input/Direction Input”
    from an IDOC,
    from a BAPI structure.
    15. Which one you prefer most and why?
    lsmw
    16. What are the topics you learn in ABAP?
    BDC, LSMW, OBJECTS, REPORTS, BAPI etc
    17.Define logical database?
    Ans :- A Logical Database is a hierarchical structure of tables. Use the GET   statement to process Logical Databases.
    -     LDB consists of logically related tables grouped together – used for reading and processing data.
    -     Advantages = 1. No need of programming for retrieval , meaning for data selection
    -                            2. Easy to use standard user interface, have check completeness of user input.
    Disadvantages = 1. Fast in case of lesser no. of tables But if the table is in the lowest level of hierarchy, all upper level tables should be read so performance is slower.
    1. Tables in SD & MM modules?
    Tables in SD
    KNA1               -     Customer Master – General Data
    KNB1               -     Customer Master – Company Code
    KNVV               -     Customer Master – Sales Area Data
    KNVS               -     Customer Master – Shipping Data
              VBAK               -     Sales Document: Header Data
    KNKK               -     Customer Master Credit mgt: Control area
    KNMT               -     Customer-Material Info Record Data Table
    KNKA               -     Customer Master Credit management:
    KNVP                    -     Customer Master Partner Functions
    S116                    -     Customer Analysis
          VBUK          :   Header status and administrative data
            VBAK          :   Sales document: Header data
            VBKD          :   Sales document: Business data
            VBUP          :   Item status
            VBAP          :   Sales document: Item data
            VBEP          :   Sales document: Schedule line data
          VBPA          :   Sales document: Partner
          SADR          :   Address
          VBFA          :   Sales document flow
            KONV          :   Conditions
          NAST          :   Message status
          STXH          :   Texts: Header
          STXL          :   Texts: Lines
            VBUV          :   Incompletion log
         VTTK          :     Shipment header
    VEKP          :     Shipping unit header
    VTTP          :     Shipment item
    VTTS          :     Shipment stage
    Tables in MM
    EINA     Purchasing Info Record- General Data
    EINE     Purchasing Info Record- Purchasing Organization Data
    MAKT     Material Descriptions
    MARA     General Material Data
    MARC     Plant Data for Material
    MARD     Storage Location Data for Material
    MAST     Material to BOM Link
    MBEW     Material Valuation
    MKPF     Header- Material Document
    MSEG     Document Segment- Material
    MVER     Material Consumption
    MVKE     Sales Data for materials
    RKPF     Document Header- Reservation
    T023     Mat. groups
    T024     Purchasing Groups
    T156     Movement Type
    T157H     Help Texts for Movement Types
    A501     Plant/Material
    EBAN     Purchase Requisition
    EBKN     Purchase Requisition Account Assignment
    EKAB     Release Documentation
    EKBE     History per Purchasing Document
    EKET     Scheduling Agreement Schedule Lines
    EKKN     Account Assignment in Purchasing Document
    EKKO     Purchasing Document Header
    EKPO     Purchasing Document Item
    IKPF     Header- Physical Inventory Document
    ISEG     Physical Inventory Document Items
    LFA1     Vendor Master (General section)
    LFB1     Vendor Master (Company Code)
    NRIV     Number range intervals
    RESB     Reservation/dependent requirements
    T161T     Texts for Purchasing Document Types
    3. Report Events(Classical & Interactive)?
    1.     classical report Events
    TOP-Of-PAGE, END-OF-PAGE,
    AT LINE-SELECTION, AT USER-COMMAND
    4. Select options?
         Main advantage of select option is we can have range of values
    5. BDCS and errors in BDCs?
         Error is captured in the table of structure bdcmsgcoll
    6. How to add fields in a table?
    Use append structure or include.append should be the last.
    8. Difference between check table and value table?
    Check table is the foreign key table it checks with the value of value table (parent table)
    11. What are macros?
    Macros are the coding written in the method of an object
    12. ALE communication type(synchronus or Asynchronus)?
    2. Differences between scripts and smart forms?
    Scripts are client dependent smartforms are client independent
    8. What is the use of Delimiter in flat file uploading in BDCs?
    To separate the fields

  • I can not find the answers to these question.  If anyone could point me in the correct direction, I would appreciate it.

    Apple Products: 2 IPAD 2's. iMac, 2 Iphone4S, iphone 3S, Ipods.  I have 1 itunes account and make play list, for each device that needs to sync, but it seems I might have to have multiple accounts?  Also same thing with photo library on my iMac.  I would not want to have multiple accounts if I don't need to.  But it seems the ipads can not send Messaging or use the Apple talk to each other because I use the same Itunes account?  There is no manuls to set these up.  If just one person, all would work fine.  But this is a family....

    Contact the store directly.

  • Answers to these ABAP Questions

    Hi Everyone,
    It would very nice of your guys to answer these questions for me.
    <b>1.     Which is related to Debugging function?
          1.Modify     2. Continue     3. Switch 4.Change
    2.     In DO and ENDDO the following statement occurs ?
    1.     Read Sy-Index     
    2.     Read line sy-index
    3.     Read list sy-lilli
    4.     Read list sy-index
    3.     After the following statement in APAP   immediately triggers END-OF-SELECTION?
           1.Stop     2.Exit     3.Continue     4.Check
    4.     The following statement inserts the record in internal table?
          1.Append     2.Select   3.Insert     4.Read
    5.     In batch input the following structure is used to insert the transaction data ?
          1.BDC     2.BDCDATA 3.BDCTABLE     4.BDCTAB
    6.     The function WS_UPLOAD will be used in the following server?
    1. Application  2.Presentation     3.Database   4.     All     
    7.     The Following statement is correct in case of Application Server while creating a file?
    1.     OPEN DATASET FOR INPUT
    2.     OPEN DATASET FOR WRITING
    3.     OPEN DATASET FOR INSERTING
    4.     OPEN DATASET FOR APPENDING
    8.     The following statement is used append the record, with the same key fields and the amount will be added to the current value?
    1.APPEND     2.Collect    3. INSERT     4.DELETE
    9.     The following is required while creating a table?
    1.     Data element and Domain     
    2.     Data and types
    3.     Domain and  types
    4.     Data element and data statement
    10.     The module pool program is belongs to?
    1.Executable     2. Program type M      3.User Exits     4.Function module
    11.     At selection-screen, which is the statement, will overwrite the default values?
    1.Initialization     2.Start of Selection     
    3.Top-of-page      4.End-of-page
    12.     In Batch input session in Call transaction if the error occurs immediately triggers the following
    1.Creates a session     2. Creates Error log     
    3.SY-subrc ne 0      4.EXIT
    13.     What is the width of the report?
    1.120     2.257     3.255
    14.     What is the NAMESPACES in SAP?
    15.     At LINE-SELECTION the following one will trigger?
    1.PICK     2.PF05     3.BACK     4.SY-UCOMM
    16.     The function codes will be stored in the following system field?
    1.SY-UCOMM  2.SY-LISEL     3.SY-OKCODE  4.SY-INDEX
    17.     In BATCH Input, which is the okcode, will terminate the entire Session?
    1./bdel      2./bend  3./n     4./okcode
    18.     In which case will create pop up window?
    1.CALL SCREEN     2.SET SCREEN     3.WINDOW STARTING AT .. Endat  4.CALL SCREEN at … endat.
    19.     The following statement will insert fields in the Standard SAP table?
    1.APPEND STRUCTUREs     2.VIEWS      3.INSERT 4.STRUCTURES
    20.     Which is the system field will store the function codes at AT USER-COMMAND
    1.SY-UCOMM     2. SY-OKCODE     3.SY-LISEL 4.SY-INDEX</b>     
    Thanks a lot,
    Prashant.

    Hi Prashant,
    Here are the answers:
    <b>1.</b> Which is related to Debugging function?
    <b> Continue</b>
    <b>2.</b> In DO and ENDDO the following statement occurs ?
    <b> Read Sy-Index</b>
    <b>3.</b> After the following statement in APAP immediately triggers END-OF-SELECTION?
    <b>Stop</b>
    <b>4.</b> The following statement inserts the record in internal table?
    <b>Append</b>
    <b>5.</b> In batch input the following structure is used to insert the transaction data ?
    <b>BDCDATA</b>
    <b>6.</b> The function WS_UPLOAD will be used in the following server?
    <b>Application</b>
    <b>7.</b> The Following statement is correct in case of Application Server while creating a file?
    <b> OPEN DATASET FOR INPUT</b>
    <b>
    8.</b> The following statement is used append the record, with the same key fields and the amount will be added to the current value?
    <b>Collect</b>
    <b>9.</b> The following is required while creating a table?
    <b> Data element and Domain</b>
    <b>
    10.</b> The module pool program is belongs to?
    Program type M
    <b>11.</b> At selection-screen, which is the statement, will overwrite the default values?
    <b>
    Initialization</b>
    <b>12</b>. In Batch input session in Call transaction if the error occurs immediately triggers the following
    <b>
    SY-subrc ne 0</b>
    <b>13.</b> What is the width of the report?
    <b>255</b>
    <b>15.</b> At LINE-SELECTION the following one will trigger?
    <b>PICK</b>
    <b>16.</b> The function codes will be stored in the following system field?
    <b>SY-UCOMM</b>
    <b>17</b>. In BATCH Input, which is the okcode, will terminate the entire Session?
    <b>/okcode</b>
    <b>18.</b> In which case will create pop up window?
    <b>WINDOW STARTING AT .. Endat</b>
    <b>
    19.</b> The following statement will insert fields in the Standard SAP table?
    <b>APPEND STRUCTUREs</b>
    <b>20.</b> Which is the system field will store the function codes at AT USER-COMMAND
    <b>SY-UCOMM</b>
    Hope this helps you,
    Regards,
    Pragya

  • ICal - event from windows - I don't want to send answer

    If somebody send me calender event, I open the file and the iCal starts automatically. That is ok, but it ask me, if I agree, don't agree or maybe with the event. What can I do if I don't want to send message back. In our company, we are sending a lot of this events and I can not send everyone the answer yes or not. It just inform me about something I don't need to answer. How can I turn of this? I just want to add it to iCal and that's it.
    thank you

    what about this: http://www.nhoj.co.uk/icalreplychecker/
    regards

  • Please can anybody post answers to these questions

    Hai can anybody resolve these issues
    how to import jar files into DC in webDynpro java?
    how to rectify he corrupted code in the DC, i.e how to to get that code into original form?
    default value of singleton
    what is a Model Node in WebDynpro Jaa
    How can you customize the Portal Page
    Regards
    Srinivas

    Wrong forum

  • I forgot the answers to my security questions and do not posses the option to send answers to a rescue email

    I forgot the answers to my security questions. I have gone in circles reading over the instructions on how to retrieve them via rescue email, but I do not have that option. I cannot buy music on three out of four of my devices because of my lack of answers to the security questions. What do I do?

    Alternatives for Help Resetting Security Questions and/or Rescue Mail
         1. If you have a valid rescue email address, then use this procedure:
             Rescue email address and how to reset Apple ID security questions.
         2. Fill out and submit this form. Select the topic, Account Security. You must
             have a Rescue Email to use this option.
         3. This is the only option if you do not already have a valid Rescue Email.
             These are telephone numbers for contacting Apple Support in your country.
             Apple ID- Contacting Apple for help with Apple ID account security. Select
             the appropriate country and call. Ask to speak to the Account Security Team.
         4. Account security issues almost always require you to speak directly to an
             Apple representative to securely establish your identity as the account holder.
             You can set it up so that Apple calls you, either immediately or at a time
             convenient to you.
                1. Go to www.apple.com/support.
                2. Choose Contact Support and click Contact Us.
                3. Choose Other Apple ID Topics and choose the appropriate topic for
                    your issue.
                4. Follow the onscreen instructions.
             Note: If you have already forgotten your security questions, then you cannot
             set up a rescue email address in order to reset them. You must set up
             the rescue email address beforehand.
    Your Apple ID: Manage My Apple ID.
                            Apple ID- All about Apple ID security questions.

  • IPhone email stopped sending *ANSWER*

    Apparently if you put to much text in the saved signature area of the iPhone it causes the outgoing email to stop sending. I had added a "CONFIDENTIALITY NOTICE" containing a few lines of text and lines.
    Symptoms: The send progress bar locks in place and does not disapear untill you power down/up. Nothing shows in the sent folder the email does not send. A email may send but it only contains the subject, no content.
    Removeing the excess text in the signature fixed the issue.

        Hello JSA1031!
    I know it's important to have access to your email. I'd like to get some more information. What type of email are you using? Are you using the application or the browser? You mentioned the email stopped sending, so I'd like to ask if you can receive emails.
    Please supply some additional information for me, thanks!
    ChristinaB_VZW
    Follow us on Twitter @VZWSupport

Maybe you are looking for

  • Accordion with Vertical Navigation problem

    Following tutorial about phone layout accordion/vertical navigation menu encountering following problem in my original file: Create accordion - ok (style to my pref) Insert vertical navigation - ok (style to my pref) When trying to resize the v/nav t

  • She Said We Need Space and Has Temporarily Separated

    I just dropped off my (late 2013) 15" MacBook Pro for screen replacement (dead pixel). The store was in Grand Central, NY. Any idea where my baby is being shipped for repair and when I'll have her back? I miss her so much already. (I creep myself out

  • Data types in DB connect

    Hi all I have following fields in my SQL 2005 DB <b>type - len</b> uniqueidentifier - 16 ENUM     - 1 datetime     - 23 NAME     - 255 COMMENT -  16      When I make the data source in BW 2004s , what are the data types that I should use for my infoo

  • Bootcamp can't download driver for install.

    When i try to run the bootcamp utility i have a message saying that i'm not connected to internet, the problem is that i am connected to the internet. I had the same issue with the JAVA download but i find the pkg on apple website so it was'nt such a

  • Problem with users disabling ARD client service

    I've got a problem and i'm not quite sure of the work around. I'm a PC guy by nature and can't quite figure this out. I'm having a problem with users disabling the ARD service from the sharing menu. Unfortunately users need to have admin privleges to