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 | Jul 27, 2020 | ABAP Programs, OOABAP
Preface – This post is part of the ABAP Programs and Object Oriented ABAP series. Introduction The OO ALV is ALV using object-oriented ABAP. ALV stands for ABAP List Viewer and provides the standard list format and user interface for all the ABAP programs. The...
by Barry Allen | Dec 29, 2019 | ABAP Programs
Preface – This post is part of the ABAP Programs series. DATA: ls_parameter TYPE /iwbep/s_mgw_name_value_pair, lv_custid TYPE kunnr, lv_flag TYPE char1, lt_custinfo TYPE TABLE OF ztest_gw_srv, ls_custinfo TYPE ztest_gw_srv, ls_entity TYPE...
by Barry Allen | Dec 29, 2019 | ABAP Programs
Preface – This post is part of the ABAP Programs series. TYPES: BEGIN OF t_entry, access_token TYPE string, token_type TYPE string, expires_in TYPE n LENGTH 8, scope TYPE string, jti TYPE string, END OF t_entry . TYPES: t_entry_map TYPE SORTED TABLE OF...
by Barry Allen | Dec 29, 2019 | ABAP Programs, Blockchain
Preface – This post is part of the Blockchain on SAP Cloud Platform and ABAP Programs series. In this article, we will learn how to create a block in Blockchain on the SAP Cloud Platform. METHOD create_object_history. DATA: lo_http_client TYPE REF TO...