SAP C_TAW12_750 SAP Certified Development Associate – ABAP with SAP NetWeaver 7.50 Online Training
SAP C_TAW12_750 Online Training
The questions for C_TAW12_750 were last updated at Nov 12,2024.
- Exam Code: C_TAW12_750
- Exam Name: SAP Certified Development Associate - ABAP with SAP NetWeaver 7.50
- Certification Provider: SAP
- Latest update: Nov 12,2024
What is a plug? Select all that apply.
- A . Can be assigned to multiple views
- B . outbound, or both
- C . Can be defined as default inbound
- D . Can be defined as outbound controlling multiple inbound plugs
- E . Can be defined as an exit
- F . Forms the basis of navigation within a Web Dynpro
- G . Can be defined as inbound and be controlled by multiple outbound plugs
- H . Can be defined as a startup
Which is not a Golden Rule for Open SQL? Please choose the correct answer.
- A . Minimize the Amount of Data Transferred
- B . Keep the result set large
- C . Reduce the Database Load
- D . Minimize the Number of Database Accesses
Which of the following tool is introduced as a holistic quality assurance tool? Choose the correct answer
- A . ABAP Test Cockpit (ATC)
- B . DBA Cockpit
- C . DBMS Cockpit
- D . BW system
Which modularization units are global? Select all that apply
- A . Function modules
- B . Subroutines (FORM routines)
- C . Methods within a local class in the program
- D . Methods within class pools
Which events can exist in all types of programs that actually contain executable statements?
- A . AT USER-COMMAND
- B . AT PF##
- C . INITIALIZATION
- D . LOAD-OF-PROGRAM
- E . AT LINE-SELECTION
- F . START-OF-SELECTION
You use the addition OBLIGATORY to define the input field of a parameter as a required field.
- A . True
- B . False
CORRECT TEXT
You want to select data from two tables and store the result in as structure.
Table PARTNER contains the fields PARTJD and KIND.
Table CONTRACT contains the fields CONTJD, CONT_TYPE and DIVISION.
The structure is defined as follows
DATA: BEGIN OF wa_result,
Part_id type partner-partjd, cont_id type contract-cont_id, ConMype TYPE contract-cont_type,
END of wa_result,
Lt_result type table of wa_result.
How can you replace the following SELECT statement with an outer join?
SELECT partjd from partner INTO wa_result WHERE kind = ‘Residential’.
SELECT contjd from CONTRACT into wa_result-cont_id WHERE part EQ
wa_partner-part_id And DIVISION eq ‘Water’.
Append wa_result to lt_result.
ENDSELECT.
If sy-subrc<>0. CLEAR wa_result-cont_id
APPEND wa_result TO lt_result. ENDIF.
ENDSELECT.
Please choose the correct answer.
- A . SELECT partjdcontjd from partner AS A LEFT JOIN contract AS b ON a-partjd = b-partjdAND b-division EQ ‘Water’ INTO TABLEIt_result WHERE kind = ‘Residential’
- B . SELECT partjdcontjd from partner LEFT JOIN contract on partner-partjd = contract-partjd
AND partner-kind EQ ‘Residential’ INTO CORRESPONDING FIELDS OF TABLE lt_result
WHERE division eq ‘Water’. - C . SELECT partjdcontjd from partner AS A LEFT JOIN contract AS b ON a-partjd = b-partjd INTO CORRESPONDING FIELDS OF TABLE lt_result WHERE kind = ‘Residential’ and AND division EQ ‘Water’.
- D . SELECT partjdcontjd from partner LEFT JOIN contract on partner-partjd = contract-partjd AND contract-division EQ ‘Water’ INTO TABLE It result WHERE kind EQ ‘Residential’.
What is the allowed length of the ABAP Dictionary data type DF34_RAW?
- A . The allowed length is between 1 and 34 digits.
- B . The allowed length is 34 digits.
- C . The allowed length is between 1 and 31 digits
- D . The allowed length is between 0 and 33 digits.
When analyzing a program, which tasks can you perform using the code inspector? There are 3 correct answers to this question.
- A . Discover unused variables.
- B . Inspect the memory consumption.
- C . Determine used database tables.
- D . Execute the extended program check.
- E . Evaluate the time needed for program execution.
Hello,
Thank you for putting together such a comprehensive list of questions. However, there misspellings and I have found one question so far that is repeated (questions 20 and 39) yet the answers are different. So which one is correct?