Posts

Showing posts from April, 2017

OUTPUT CONTROL IN SCRIPT

Image
OUTPUT CONTROL USING NACE     IN SCRIPT. T.CODE : NACE CHOOSE BILLING AND  CLICK OUTPUT TYPES CLICK POSITION     AND  ENTER INVOICE FORM NO RD00 SELECT INVOICE AND CLICK ON PROCESSING ROUTINE SEE THAT FORM EX: RVINVOICE01 SAVE AND BACK. GO TO SE38 CHOOSE THE STANDARD FORM COPY EX: RSTXFCPY THEN EXECUTE  FORM NAME : RVINVOICE01 TARGET FORM NAME : ZRVINVOICE01A EXECUTE. THEN FORM WILL BE COPIED  SAVE AND BACK GO TO T.CODE : NACE CHOOSE BILLING AND  CLICK OUTPUT TYPES CLICK POSITION     AND  ENTER INVOICE FORM NO RD00 SELECT INVOICE AND CLICK ON PROCESSING ROUTINE YOU CAN CHANGE FORM RVINVOICE01 TO  ZRVINVOICE01A   THEN SAVE   and back. t.code vf03 enter billing no goto billing doc      to issus output to click print preview you can see the copy form.

ALV INTRODUCTION

Image
THE SAP LIST VIEWER :-                     --> It is a generic tool that outputs data in a table forms (rows & columns), with integrated functions to manipulate output (sort,totals, filter, column order, hide, etc.) and export it (excel, csv file,crystal report).               it is also possible to make ALV  editable via ALV control.       ALV name comes from  "ABAP List Viewer"                                               ALV-ABAP DISPLAY TYPE:- Simple list: Hierarchical sequential list:   Tree                       TECHNOLOGIES               -->LIST.          --> CONTROL FRAME WORK. IN SAP release the control framework,       a control was made avaliable for ALV grid.  it can be used in 3 ways:      1. Direct use of control.       2. function module wrapper. it may be used in full                 screen mode               - which means that the buttons are display in
Image
Image

BDC-CALL

report  ZDSN         no standard page  heading  line-size  255 . *----------------------------------------------------------------------* *   data definition *----------------------------------------------------------------------* *       Batchinputdata of single transaction DATA :    bdcdata  LIKE  bdcdata     OCCURS  0  WITH HEADER LINE . *       messages of call transaction DATA :    messtab  LIKE  bdcmsgcoll  OCCURS  0  WITH HEADER LINE . *       error session opened (' ' or 'X') DATA :    e_group_opened . *       message texts TABLES :  t100 . types :  begin of  ty_mat ,        matnr ( 18 )  type c ,        mbrsh ( 1 )  type c ,        mtart ( 4 )  type c ,        maktx ( 40 )  type c ,        meins ( 3 )  type c ,         end of  ty_mat .    data :  it_mat  type table of  ty_mat ,         wa_mat  type  ty_mat .    parameters :  p_file  type   IBIPPARMS - PATH . at selection-screen on value-request for  p_file .    CALL FUNCTION  &#