SAP ABAP Expert has Published 141 Articles

Automating SAP Purchase Request via Eclipse with use of QTP10

SAP ABAP Expert

SAP ABAP Expert

Updated on 17-Feb-2020 10:12:40

97 Views

Note that Eclipse UI is JAVA based so you can automate Eclipse using QTP Java add-ins.To perform QTP Java add-in, Go to Control Panel → Add or Remove Programs and select Quickest Professional from the list. Click on Change button.To perform add-in installation, click on small black down arrow next ... Read More

Triggering outbound shipment IDoc on change data in SAP

SAP ABAP Expert

SAP ABAP Expert

Updated on 17-Feb-2020 10:11:17

1K+ Views

You need to ensure that Output Type has got "Multiple issuing" checkbox ticked in T-code: V/82. This is available in “General data" section of your message type.It seems to be a configuration issue. You should try checking this:Go to SPRO → Logistic execution → Transportation → Basic Transportation Functions → ... Read More

Creating custom reports from SAP and deliver to Line Managers

SAP ABAP Expert

SAP ABAP Expert

Updated on 13-Feb-2020 04:49:13

108 Views

To use Crystal Report, you need to buy license for the tool and then you have to learn report development for custom reporting and scheduling. Also to view reports, Line managers need to have BO read only access via Infoview however you can also set up a schedule to the ... Read More

Executing SAP RFC creates an error: “The current application triggered a termination with a short dump”

SAP ABAP Expert

SAP ABAP Expert

Updated on 12-Dec-2019 10:54:19

1K+ Views

This is very generic error and it could be due to any reason: code error, inconsistency in data, or some other issue. You can use T-Code: ST22 to check short dump message in SAP system.This is used to check ABAP Runtime errors- All Client. You need to pass the filter ... Read More

How to send MATMAS and DEBMAS idoc to other SAP system

SAP ABAP Expert

SAP ABAP Expert

Updated on 12-Dec-2019 10:19:54

1K+ Views

I would suggest you to use T-code: BD12 to send the complete IDoc of DEBMAS.

How to avoid memory leakage in SAP B1 DI API

SAP ABAP Expert

SAP ABAP Expert

Updated on 12-Dec-2019 10:18:50

323 Views

The thumb rule goes like this, if you instantiate a DI API object, you have to release it. if you don't release it explicitly, it will result in memory leaks.You can use a ReleaseComObject method to release the object memory. In case if you try to release a null object, ... Read More

Using SAP ABAP, how can I read content of CSV files in a directory to an internal table?

SAP ABAP Expert

SAP ABAP Expert

Updated on 12-Dec-2019 10:17:53

2K+ Views

There are many functions that can be used to read csv however many are broken and read part of content. You need to go through each file and then process the file content. I would prefer to perform this manually.You can use the READ DATASET to read data from a ... Read More

In SAP system, auto filling of NAME_1 while entering client number

SAP ABAP Expert

SAP ABAP Expert

Updated on 12-Dec-2019 10:12:32

166 Views

You should use maintenance view to display name corresponding to customer number. With use of Maintenance view, you can maintain related data in several tables. Check out this link to know more about Maintenance view:SAP LinkTo perform a check for the mandatory, edit the generated screen and in screen flow ... Read More

In SAP Crystal Reports, Putting 2 pages of data into a single report

SAP ABAP Expert

SAP ABAP Expert

Updated on 12-Dec-2019 10:11:25

604 Views

You can do this by adding a group based on participant Id as primary key. Then you have to add ran description in group footer.In your group footer settings, check the "New page before" option

How to map output of a function to an internal table in SAP ABAP using Gateway service

SAP ABAP Expert

SAP ABAP Expert

Updated on 12-Dec-2019 09:04:35

172 Views

You need to just import the function so that it can be used. First, you need to have a ABAP structure which should map the structure of the output parameters.Exampledefine structure zza_enqtstat {     entries_total  : abap.int4;     entries_peak   : abap.int4;     entries_actual : abap.int4; }Then ... Read More

Advertisements