SAP LSMW basic creation to call ABAP code
SAP LSMW basic creation to call ABAP code Read More »
Once you have your Web Service working using Postman or a similar API testing tool it is time to implement it within an SAP solution. At this point you have got a couple of options, one is to implement a JavaScript Web Service Call it within an SAP BSP/HTML web page and the other is
HTML Javascript Web Service call from SAP BSP Read More »
This is the second part of a series that will teach you how to consume/use/call a Web Service from within your SAP system and use the data received to perform and action within your ABAP code. 1Test your REST Web Service Call outside of SAP 2Test your SAP HTTP connection is ready for the REST
Test SAP HTTP connection ready for REST Web Service call Read More »
So you want to call a REST Web Service from SAP, but you don’t know how to go about it. Well in this situation you first need to make sure it works outside of SAP and more importantly you know what your expecting it to do or what values it will return. There are so
REST Web Service from SAP use getpostman to test first Read More »
So is it possible to add an OR condition to the key values of the read statement? The simple answer is no, but you can replicate this functionality using one of two methods. Method 1 – Using multiple ABAP READ statements within nested IF statements The first method would be to use multiple READ
ABAP read table with OR condition Read More »
Each entry in the glossary contains a reference to the application component to which it belongs. You can use this path in the R/3 Library to find further information. For example, for more information about ABAP Dictionary. look under ABAP Workbench (application component BC-DWB) ABAP Dictionary ABAP Workbench (BC-DWB)Central and redundancy-free storage facility for all
In order to Create dynamic ABAP Web Dynpro screen within your SAP application, first simply create a new Web dynpo application. Then add the below ABAP code into the WDDOMODIFYVIEW method of your main view. method WDDOMODIFYVIEW . data : lr_textview type ref to cl_wd_text_view. Data: lr_uicontainer type ref to cl_wd_uielement_container, lr_rowhead type ref to cl_wd_row_head_data,
Create dynamic ABAP Web dynpro screen in SAP Read More »
Useful ABAP code example to demonstrate how to display an SAP ALV report which displays alist of PERNR details and then automatically allows the user to email ALV PDF as a document attchement. The code covers the following SAP ABAP report functionality: Email address input selection screen fields Display ALV report using Objects cl_salv_table Add
Email ALV PDF using ABAP report of pernrs then email output as attachment Read More »
When working with SAP queries it is often useful to have a look at the ABAP code it generates. This could be to either use it as a basis for a new report or just to see what is going on. You can also use this information to assign a transaction code to your infoset
View SAP Query ABAP program created Read More »