Posts

Use of field symbols in SAP ABAP programming, using field symbols in SAP ABAP

Use of field symbols in SAP ABAP programming, using field symbols in SAP ABAP  the declaration operator FIELD-SYMBOL declares a field symbol <fs> to which a memory area is assigned in the current operand position. The declared field symbol is visible statically in the program from FIELD-SYMBOL (<fs>) and is valid in the current context. The declaration is made when the program is compiled, regardless of whether the statement is actually executed. The syntax for declaring a field symbol. FIELD-SYMBOLS: <FIELD_SYMBOL> TYPE MARA-MATNR. "here MARA-MATNR is a variable type FIELD-SYMBOLS: <FIELD_SYMBOL> TYPE  MARA. "here MARA is a structure FIELD-SYMBOLS: <FIELD_SYMBOL> TYPE REF TO DATA . "here DATA is a reference type  ASSIGNING and ASSIGN are the keywords that are used to assign a value to the field symbol. Example of using field symbol as a work area In the below example we are going to use the field symbol as a work area. REPORT ZS...

How to Disable Icons in SAP ALV Toolbar :SAP ABAP Language

How to Disable Icons in SAP ALV Toolbar :SAP ABAP Language I have developed One SAP ALV Report in which i want to Disable Icons ,so How can you do that ,to learn ,follow the below steps. Fetch data from database table. Build field catalog and fill the excluding table with function codes of icons that you want to disable. &ILT& is the function code for Filter Icon. Pass field catalog and excluding table to function module ‘REUSE_ALV_GRID_DISPLAY’. TYPE-POOLS: slis.  " SLIS contains all the ALV data types *&---------------------------------------------------------------------* *& Data Declaration *&---------------------------------------------------------------------* DATA: it_sbook     TYPE TABLE OF sbook. DATA: it_fieldcat  TYPE slis_t_fieldcat_alv,       wa_fieldcat  TYPE slis_fieldcat_alv. DATA: it_excluding TYPE slis_t_extab,       wa_excluding TYPE slis_extab. DATA: g_repid  ...

SAP ABAP Full Form

SAP ABAP Full Form Many ABAP beginners do not know what is SAP ABAP Full Form? so I discussed here it, in brief, to teach ABAP Full Form for ABAP learners. ABAP stands for Advanced Business Application Programming. It is a programming language developed by SAP. SAP is a German company that develops ERP (Enterprise Resource Planning System) systems. ABAP (Advanced Business Application Programming) is a programming language for developing applications for the SAP R/3 system, a widely-installed business application subsystem. The latest version, ABAP Objects, is object-oriented programming. SAP is just a company name and Abap or Abap/4 is a language programming. SAP company has a lot of products: ERP(material, sales, costs, financial), CRM, SRM, SCM, and all of them are customizing and programmed with ABAP and Java. ... Much of SAP's software is written in ABAP. Functional SAP ERP Modules Human Resource Management (SAP HRM), also known as Human Resource (H...

How to Check RFC Connection using Function Module RFC_PING before Calling RFC Function Module

How to Check RFC Connection using Function Module RFC_PING before Calling RFC Function Module RFC part in SAP ABAP is may be some what confused ,but learn How to validate RFC connection in SAP?,Validating RFC destination before calling RFC function module, check RFC connection using Function module RFC_PING In ABAP programming, some times we may need to validate and check RFC Destination before calling a function module, you can find useful information in this tutorial. Required validations for RFC: Check if RFC destination is available or not. Check RFC destination connection is working or not. Example programm to validate RFC destination All the RFC destinations are stored in table RFCDES, we can check connection using function module RFC_PING (When ever you call and RFC, it will automatically validate connection, if you need to validate explicitly you can use this function module). REPORT ZSRI_CHECK_RFC. DATA : WA_DES TYPE RFCDES. PARAMETERS P_RFC TYPE STRING. ...

How to Write a Program in SAP ABAP

Image
How to Write a Program in SAP ABAP Anybody who want to lean SAP and Going to learn  SAP Programming Language  must be know the what is SAP Program ,How it will be created in SAP System and What is the Language(ABAP) used to create SAP Application Programs. What is ABAP Programming Language in SAP? ABAP (Advanced Business Application Programming) ABAP is a  programming language  that runs in the SAP ABAP run time environment, created and used by SAP for the development of  application programs . ABAP is also called ABAP/4, The “4” in ABAP/4 stands for “Fourth Generation Language” . How to Start SAP ABAP   Different types of ABAP Programs Reports Module Pool Programming Interfaces Forms Data conversions User Exits & BADI All of R/3’s applications and even parts of its basis system were developed in ABAP. Steps to create SAP Program Log in to SAP System. Now give the User Name and Pass word. SAP Systems...

SAP ABAP Tutorial with Screenshots

SAP ABAP Tutorial with Screenshots These tutorials explained with screenshots for ABAP Language learning beginners, which are step by step tutorials to learn SAP ABAP Language easily. ABAP Programming Language Basics tutorials with screenshots ABAP Syntax ABAP Statements ABAP Program Types SAP ABAP Workbench Tools Data Dictionary Tutorials with Screenshots       Data Dictionary Overview     Tables     Domain     Data element     Views     Lock Objects     Types     Search Helps SAP ABAP Reports and ALV Tutorials         What is Internal Table ?    Events in Interactive Reports    ALV Reports    ALV Field Catalog in ABAP    Simple ALV Report Example    ABAP ALV Interactive Report SAP ABAP BDC Tutorials      BDC and LSMW    BDC Call Transaction Method Program in SAP ABAP...

BADI in SAP ABAP Step by Step

 BADI in SAP ABAP Step by Step BAdI Acronym of Business Add Ins As a customer outsider, it helps BAdI to improve SAP functionality.  Why is BADI? Unlike previous improvement methods, BADI continues the approach aimed at re-use objectives. BADI can be used in a number of times that these standard evaluation techniques can only be used once. For example, if you are upgrading a custom project, you can not map the extension on other custom projects. In order to overcome this disadvantage, SAP provided a new evaluation technique called BADI. Code of transaction for BADI definition: SE18 When you create a BAdI definition, you create a class interface automatically and you can define the methods in the interface. The application of the methods can be made in SE19 transactions. When created BAD, they are generated automatically: An interface with 'IF_EX_' is inserted between the first and second characters of the BAdi name Class classified as 'CL_EX_' inserted ...