C_TAW12_71 무료 덤프문제 온라인 액세스
| 시험코드: | C_TAW12_71 |
| 시험이름: | SAP Certfied Development Associate - ABAP with SAP NetWeaver 7.02 |
| 인증사: | SAP |
| 무료 덤프 문항수: | 80 |
| 업로드 날짜: | 2026-08-30 |
You have newly joined a development team and your team member is developing a report. He wants to put the validation for the vendor No. In which event he should put the error message so that in case when wrong vendor is entered error message should appear and focus the cursor on that field.
There is one function group name AG which contains three function module FM1, FM2 and FMR. It also has one global variable Gl_val. FM1 and FM2 has a simple code of adding 1 into that variable and FMR has the code of returning that global variable. So what will be the output of falling code? Report test_fungrp. Data : gl_val type i. Data : ret_val type i. Call Function FM1. Clear gl_val. Call Function FM2. Call function FMR importing VAL = Ret_val. Write : / Ret_val.
What will be the output of the following code for the user has a date format as DD-MM-YYYY? (Assume today's date is the 14th Feb 2010) Report test_date.
Write : / sy-datum.