Online Access Free C_TAW12_71 Practice Test
| Exam Code: | C_TAW12_71 |
| Exam Name: | SAP Certfied Development Associate - ABAP with SAP NetWeaver 7.02 |
| Certification Provider: | SAP |
| Free Question Number: | 80 |
| Posted: | Dec 05, 2025 |
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.