Kayıtlar

Transaction Code assignment for Query created in SQVI - SQVI Raporu Tcode Bağlanması

Resim
 What is SQVI SQVI is a basic query tool in SAP that enables you to choose a data source, define selection criteria, and layout for ad-hoc reports. The report can be run, with the option to export it or analyze the results on-screen. How to assignment SQVI to a Tcode Firstly, an SQVI report created in the development system is not a report that gets transported to the Production system; it can be created in each system separately. Therefore, you need to perform the process according to the respective system. To link an SQVI report created in the Production system to a tcode, you need to create a tcode in the Production system. If you don't have the authorization to do this in the Production system, you can use a second method: create a new tcode in the development system and transport it to the Production system. However, you will then need to fix the development and test systems again, otherwise, you will encounter dumps when executing the tcodes. Auth Err.  

Send Mail ALV Output with Excel Pivot Table

  *&---------------------------------------------------------------------* *& Include          ZSD_AP_P0009_I005 *&---------------------------------------------------------------------* class  lcl_send_oo_email  definition  .    "PUBLIC FINAL CREATE PUBLIC .    public section .      class-methods :       send_email          importing  i_kunnr  type  kunnr .   endclass .   class  lcl_send_oo_email  implementation .    method  send_email .        "Date formating      data ( lv_str_date ) =  sy - datum+6 ( 2 )  &&  '.'  && sy - datum+4 ( 2 )  &&  '.'  && sy - da...

GITHUB TUTORIAL

Resim
 

FIORI RFC & ODATA OLUSTURMA ORION İLE EKRAN SETUP

Resim
 

How to create a table using REUSE_ALV in the simplest way in abap.

REPORT  zcem_reuse_alv . "Your Program Name TYPE-POOLS :  slis . *--------------------------------------------------------------------* TABLES :  scarr . "You can write tables names here. *----------------------------------------------------------------------* * ALV VARIABLES *----------------------------------------------------------------------* DATA :   gs_fieldcat  TYPE  lvc_s_fcat ,   gt_fieldcat  TYPE  lvc_t_fcat ,   gt_sort      TYPE  lvc_t_sort ,   gs_sort      TYPE  lvc_s_sort ,   gs_layout    TYPE  lvc_s_layo ,   variant      TYPE  disvariant . CONSTANTS  :   gc_form  TYPE  slis_alv_event - form  VALUE  'TOP_OF_PAGE' . "You should create a structure, and add the...