Difference between revisions of "SAP ABAP PSEUDO COMMENTS"
From SapWiki
Line 32: | Line 32: | ||
===Ejemplos=== | ===Ejemplos=== | ||
+ | ====##NO_TEXT==== | ||
+ | <nowiki> | ||
l_string = 'Hola Mundo' ##no_text. | l_string = 'Hola Mundo' ##no_text. | ||
+ | constants CV_T7CLCERTIFNBR type CTABNAME value 'T7CLCERTIFNBR' ##NO_TEXT. | ||
+ | </nowiki> | ||
+ | |||
+ | ====##NEEDED==== | ||
+ | The pragma ##NEEDED tells the check tools that even though the variable isn't used for further processing, the variable is still needed | ||
+ | <nowiki> | ||
+ | LOOP AT mt_t511p INTO rs_table_row | ||
+ | WHERE molga = cl_hrpaycl_t511p_reader=>gc_molga AND | ||
+ | konst = iv_payroll_constant AND | ||
+ | begda >= iv_date AND | ||
+ | endda <= iv_date ##NEEDED. | ||
+ | ENDLOOP. | ||
+ | </nowiki> |
Revision as of 15:29, 13 May 2021
- Local Nested Reading DB OP (SELECT) found
SELECT * INTO TABLE @DATA(lt_t001) FROM t001. LOOP AT lt_t001 INTO DATA(ls_t001). SELECT SINGLE city1 INTO @DATA(l_city) FROM adrc WHERE addrnumber = @ls_t001-adrnr. "#EC CI_SEL_NESTED ENDLOOP.
- NonLocal Nested Reading DB OP (SELECT) found
LOOP AT lt_t001 INTO ls_t001. PERFORM form2 USING ls_t001-adrnr. ENDLOOP. FORM form2 USING p_adrnr. SELECT SINGLE city1 INTO @DATA(l_city) FROM adrc WHERE addrnumber = @p_adrnr. "#EC CI_SEL_NESTED ENDFORM.
- Al actualizar
LOOP AT gt_tabla INTO wa_tabla. update zt_tabla set habilitado = 'N' WHERE rut_emp = wa_tabla-rut_emp. "#EC CI_IMUD_NESTED COMMIT WORK. ENDLOOP.
Contents
Pragmas
Listado de Pragmas
Pragmas en help.sap.com
Ejemplos
##NO_TEXT
l_string = 'Hola Mundo' ##no_text. constants CV_T7CLCERTIFNBR type CTABNAME value 'T7CLCERTIFNBR' ##NO_TEXT.
##NEEDED
The pragma ##NEEDED tells the check tools that even though the variable isn't used for further processing, the variable is still needed
LOOP AT mt_t511p INTO rs_table_row WHERE molga = cl_hrpaycl_t511p_reader=>gc_molga AND konst = iv_payroll_constant AND begda >= iv_date AND endda <= iv_date ##NEEDED. ENDLOOP.