Posts

Showing posts from March, 2015

Helpful Standard Programs

Image
1) RSTXPDFT4 - To download PDF from Spool. 2) RSTXICON - Displays all icons with codes usable with TYPE POOLS: icon. 3) RS_ABAP_SOURCE_SCAN - Source Scan of Programs 4) RSTXSCRP - Import / Export SAPScripts      T-Code: /ATL/RSTXSCRP 5) RSBDCCTU - Program for RACOMMIT - Use this program to execute Batch Input Recordings     that contain COMMIT. Use the Queue ID and Recording name after generating Batch Input Session, use those in this program and execute to COMMIT. Ensure to use 'N' for background mode and check RACOMMIT to COMMIT. 6) RSCPSETEDITOR - Default MS Word Editor change - SAPScript and Smartforms >>> See SAP Note: 791199 for more information 7) SIAC_REGENERATE_TEMPLATES - HTML Templates Regeneration Program 8) SIAC_UPLOAD - Load IAC Objects from File System (Image/MIME Objects Upload for Internet Service) 9) RDDIT076 - Execute this program in SE38 to change the Owner name of the Task 10) RSEIDOCA - I-Doc Mon...

AL11 Log Deletion

Aim:     To delete files in AL11 based on date range. Program: REPORT  al11_log_deletion. *================== * Data Declarations *================== TYPE-POOLS :  icon . * For Standard Program RSWATCH0 Data DATA :  i_outtab   TYPE  STANDARD  TABLE  OF  cst_rswatch01_alv ,       wa_outtab  TYPE  cst_rswatch01_alv ,       g_fname    TYPE  char80  VALUE  '(RSWATCH0)GT_OUTTAB' . FIELD-SYMBOLS  <fs_outtab>  TYPE  STANDARD  TABLE . * Structure for Directory Name TYPES :  BEGIN  OF  t_outtab1 ,         dirname  TYPE  shvalue_d ,         END  OF  t_outtab1 . * Declaration of variables for FM -...

Report to create Support Tickets in Solution Manager using BAPI_NOTIFICATION_CREATE

Points to understand: 1) Go to table CRMD_ORDERADM_H and give old process type as 'SLFN' to see the old data. 2) New Process type is 'ZMIN'. Support Tickets will be created under new process type. 3) Use Transaction Code: SM_CRM to see the Incident. Give the Object ID generated in CRMD_ORDERADM_H for 'ZMIN' Process Type through the below program to see the Support Ticket Details. REPORT   zag_support . *--Data Declarations TABLES :  crmd_orderadm_h . *--BAPI related data TYPES :  BEGIN  OF  bapi_notif_ext_type ,          numb ( 12 )  TYPE  c ,          refnum ( 20 )  TYPE  c ,          type_notif ( 6 )  TYPE  c ,          category ( 12 )  TYPE  c ,          subjec...