by Barry Allen | Feb 9, 2023 | ABAP Programs
What are SAP ABAP Projects, and why do we need them? SAP ABAP (Advanced Business Application Programming) is a programming language used to develop applications for the SAP software platform. SAP ABAP projects are collections of development objects and programs that... by Barry Allen | Jan 22, 2023 | ABAP Programs, ChatGPT
Introduction A general idea of how to integrate ChatGPT with SAP ABAP: First, you would need to have access to an instance of the ChatGPT model, either through the OpenAI API or by running the model locally. Next, you would need to create an ABAP program that calls... by Barry Allen | Dec 29, 2022 | ABAP, ABAP Beginner, SAP
Introduction A Call transaction is a very simple report program. Once you execute and come out of the program, there is no log to cross check. Syntax: CALL TRANSACTION <transaction code> USING <it_bdcdata> MODE ‘A/E/N’ UPDATE ‘A/S/L’ MESSAGE INTO... by Barry Allen | Dec 29, 2022 | ABAP, ABAP Beginner, SAP
Introduction In SAP environment, suppose you need to upload a data from an external source like an excel sheet. You have a program for the upload already in the system. You will therefore, visit the program or transaction, and then simply open the file location,... by Barry Allen | Nov 17, 2022 | ABAP, ABAP RAP, SAP
Preface – This post is part of the SAP ABAP RAP series. Introduction SAP RAP stands for Restful Application Programming. It is the newest framework by SAP to develop projects using ABAP and S/4HANA. In this project, we will learn simple steps to learn how to create a... by Barry Allen | Apr 8, 2022 | ABAP, ABAP Beginner, Oracle, SAP, SQL
Preface – This post is part of the ABAP Beginner series. Introduction There are two forms of SQL used in the ABAP/4 programming language: OPEN SQL and NATIVE SQL Regardless of the database platform used by the R/3 system, Open SQL allows you to access the database...