Day 4 [This is Questions of ABAP Certification.] data: f1(12) type c value ‘Test Variant’, f2(6) type c, f3(8) type c.Move: f1 to f2, f2 to f3. What do f1, f2, and f3 contain after executing the above code?
Posts Tagged ‘Certification’
Certification: วันที่ 3 คำถามเกี่ยวกับ Loops
September 3rd, 2009
Todsapon Kumnuan Day 3 [This is Questions of ABAP Certification.] DATA: number TYPE i. WHILE number < 10. ADD 1 TO number. IF number < 8. CONTINUE. ELSE. ADD 4 TO number. ENDIF. ENDWHILE. WRITE number. What does NUMBER equal after executing the above code?
Certification: วันที่ 2 คำถามเกี่ยวกับ sy-tabix
September 3rd, 2009
Todsapon Kumnuan Day 2 [This is Questions of ABAP Certification.] >> An internal table ICODE contains the following entries: field1 field2 ———————- Jenjira 1234567 Anuchit 2347899 Somkiat 7654321 Chaiwat 1000000 IF NOT icode[] IS INITIAL. SORT icode BY field1 DESCENDING. READ TABLE icode WITH KEY field1 = ‘Somkiat’. WRITE: / sy-tabix. ENDIF. What is the output of [...]
Certification: วันที่ 1 คำถามเกี่ยวกับการใส่ค่าลง Internal Table
September 3rd, 2009
Todsapon Kumnuan Day 1 [This is Questions of ABAP Certification.] REPORT ztestpon NO STANDARD PAGE HEADING. DATA: BEGIN OF itab OCCURS 0, field1(8), field2(8), END OF itab. MOVE: ‘X’ TO itab-field1, ‘Y’ TO itab-field2. APPEND itab. APPEND itab. MOVE: ‘Y’ TO itab-field1. APPEND itab. CLEAR itab. MOVE: ‘X’ TO itab-field2. APPEND itab. What are the contents of itab [...]

Posted in
Tags:

