Skip to main content

Posts

Showing posts from 2017

YCLASSICAL_JOINING

*&---------------------------------------------------------------------* *& Report  YCLASSICAL_JOINING *& *&---------------------------------------------------------------------* *& *& *&---------------------------------------------------------------------* REPORT   yclassical_joining  NO   STANDARD   PAGE  HEADING                               LINE - SIZE   110                               LINE - COUNT   255                               MESSAGE - ID  z...

YCLASSICAL_JOINING

*&---------------------------------------------------------------------* *& Report  YCLASSICAL_JOINING *& *&---------------------------------------------------------------------* *& *& *&---------------------------------------------------------------------* REPORT   yclassical_joining  NO   STANDARD   PAGE  HEADING                               LINE - SIZE   110                               LINE - COUNT   255                               MESSAGE - ID  z...

YINTERACTIVE_REPORT

*&---------------------------------------------------------------------* *& Report  YINTERACTIVE_REPORT *& *&---------------------------------------------------------------------* *& *& *&---------------------------------------------------------------------* REPORT   yinteractive_report1  NO   STANDARD   PAGE  HEADING                               LINE - SIZE   60                               LINE - COUNT   255                               MESSAGE - ID  zsan....

Popular posts from this blog

SAP ABAP ALV Reports Interview Questions and Answers for Experienced.

SAP ABAP ALV Reports Interview Questions and Answers for Experienced. Here, i am sharing very import real time oriented questions which are faced at several interviews on ALV Reports to help for freshers and experienced SAP ABAP consultants with appropriate answers . What is ALV? ALV stands for ABAP List Viewer. ALV gives us a standard List format and user interface to all our ABAP reports. ALV is created by a set of standard function modules provided by SAP. What are the uses of ALV reports? Sorting of records Filtering of records Totals and Sub-totals Download the report output to Excel/HTML Changing the order of the columns in the report Hide the unwanted columns from the report What are standard function modules used to create ALV? REUSE_ALV_LIST_DISPLAY Display an ALV list REUSE_ALV_GRID_DISPLAY Display an ALV grid REUSE_ALV_COMMENTARY_WRITE Output List header information REUSE_ALV_VARIANT_F4 Display variant selection dialog box REUSE_ALV_VARIANT_EXISTENCE Checks w...

SAP ABAP Program to Send IDOC

SAP ABAP Program to Send IDOC This is the SAP ABAP Program to send custom Idoc ,it useful for SAP ABAP Developers who are developing idocs . *&---------------------------------------------------------------------* *& Report ZIDOC_PROGRAM *& *&---------------------------------------------------------------------* *& *& *&---------------------------------------------------------------------* REPORT ZIDOC_PROGRAM. types : begin of zidoc_table, zid type zid, zname type znname2, zcity type zcity, END OF zidoc_table. DATA :it_zidoc type TABLE OF zidoc_table, wa_zidoc type zidoc_table, s_segment type zidoc_segment, it_ddic type TABLE OF edidc, wa_ddic type edidc, it_eddis type TABLE OF edids, wa_eddis type edids, it_eddid type TABLE OF edidd, wa_eddid type edidd. CONSTANTS : c_zseg like edidd-segnam VALUE 'zidoc_segment'. *SELECTION-SCREEN : select-OPTIONS : s_zid for wa_zidoc-zid. PARAMETERS : p_mestyp type edidc-mes...