Posts

Showing posts from July, 2023

amdp

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...

smart forms

  1 video [smart forms introduction] ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ---------------------------------- header details logo item details footer details ------------------------------------ basic properties ----------------- --> pages --> windows --> page windows smartstyles ------------ --> paragraph formats --> character formats global settings --------------- --> form interface --> global definitions > global data > types > field syambols > initilization > form routines > curr/quan field other properties ---------------- --> table  --> template --> folder flow logic ---------- --> alternative --> loop --> program lines --> command driver program --------------- > sf-funation module > ssf_function_module_name 3 video [ types of windows and intro about how to debug smartform] ------------------------------------------------------------------ types of windows ~~~~~~~~~~~~~~~ > main -...

bapi introduction

 45 video ([bapi  introduction]) ---------------------------------- --> se84 --> business application programing interface. BOR--> business object repository | |__> business object type | |__>    interfaces  key fields attributes methods events 

abap reports

  26 video [abap reports] ----------------------------- report --> final output of the program. * classical report * interactive report  1 classical report --> 0 to 19 interactive report. #classical ~~~~~~~~~~~ > top-of-page > initilization > at selection-screen > start of selection > end of selection > end-of-page --> all events are optional --> every event has its own property and will be trigger based on some prerequisites. --> no sequence to be maintaned and no duplicates of the event. --> no syntax check if some event is missing. --> format and spelling must be maintained. example program --------------- REPORT ZAJAY_PRACTICE. TOP-OF-PAGE. write: / 'TOP-OF-PAGE'. INITIALIZATION. write: / 'INITIALIZATION'. at SELECTION-SCREEN. write: / 'at SELECTION-SCREEN'. START-OF-SELECTION. write: / 'START-OF-SELECTION'. end-of-SELECTION. write: / 'end-of-SELECTION'. end-of-p...

data dictionary

 transaction code - se11 create custom table ~~~~~~~~~~~~~~~~~~~~  > table properties -> delivery -> maintanance  > technical seetings -> data class - what type of data -> size category - data volume of table -> buffering & change logs - table data to be buffered or not - capture the table data changes  > table creation ->options- predefined and data element type -> type of data - client dependent and client independent -> definition of keys -primary key,foreign key and composite primary keys. -> referenace fields - quantity and currency fields. -> indexes- primary and secondary indexes. -> data element type > top down approach - field - data element - domain > bottom up - domain - data element - field

ABAP for all

   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 ...