13 video [amdp procedure -1] ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ CLASS zajay_class_amdp_procedure DEFINITION PUBLIC. PUBLIC SECTION. INTERFACES if_amdp_marker_hdb. TYPES: begin of typ_sales, vbeln type vbeln, auart type auart, end of TYP_SALES. TYPES: begin of typ_mat, matnr type matnr, mtart type mtart, END OF TYP_MAT. TYPES: tt_sales_details type table of typ_sales, tt_mat_details type table of typ_mat. class-METHODS get_sales_details IMPORTING value(im_auart) type auart EXPORTING value(ex_sales_details) type tt_sales_details . CLASS-METHODS get_materail_details EXPORTI...
1) INTRODUCTION TO ABAP ~~~~~~~~~~~~~~~~~~~~~~ sap --> System application and products functional ---------- > sales > finance > material management > quality > production > hr > logistics > plant maintanace technical ---------- > abap abap--> advanced business application programming. 2) DATA TYPES ,DATA , PARAMETERS ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -> simple english to make the program statements. -> every statement must end with period(.). -> space between abap keywords , variables are mandatory. -> alll literals are enclosed with single codes. -> abap key word is not case sensitive. -> three steps--> saved-checked-activated. DATA TYPES ~~~~~~~~~~ --> elementary types --> referance types --> complex data types C -character N- numeric D- date T- time X- hexadecimal String I- integer F -float P- packed declarative keywords -------------------- > data > parameters ...
Comments
Post a Comment