SAP Articles - Page 41 of 91

Refreshing list viewer data selectively in SAP ABAP

SAP ABAP Expert
Updated on 30-Jul-2019 22:30:20

178 Views

Only refreshing the selected or the modified rows is compatible or supported in EDIT mode but not in the display mode.As you said, you are using the display mode so I doubt you can do anything. But in case you switch over to EDIT mode from DISPLAY mode, then you can go for and bind the function with the DATA_CHANGED event.You can use the suggested approach and it should work for you. Hope it helps.

Triggering outbound shipment IDoc on change data in SAP

SAP ABAP Expert
Updated on 17-Feb-2020 10:11:17

2K+ 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 → Output control → Maintain Output determination for shipments → Maintain Output Determination procedure.You can refer this SAP Thread for more details:SAP ThreadRefreshing list viewer data selectively in SAP ABAP

How to send MATMAS and DEBMAS idoc to other SAP system

SAP ABAP Expert
Updated on 12-Dec-2019 10:19:54

2K+ Views

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

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

SAP ABAP Expert
Updated on 12-Dec-2019 10:17:53

4K+ 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 file on the application server. Below is the syntax:READ DATASET INTO [LENGTH ].Below is SAP documentation link that you can use to know more about reading data from files:SAP DocumentationExampleIncase you are using binary mode, you can use LENGTH to find the length of data transferred to . ... Read More

Automating SAP Purchase Request via Eclipse with use of QTP10

SAP ABAP Expert
Updated on 17-Feb-2020 10:12:40

202 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 to the cross button for Java Add-in. Clicking on it would show a small menu with 3 options as shown in the below image.

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

SAP ABAP Expert
Updated on 12-Dec-2019 10:12:32

262 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 logic you should add a module to check if the required fields are filled or not. You can also set the field possible to mandatory in the screen field options, however this is not recommended as it will show it as mandatory even for empty lines.SAP Link

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

SAP ABAP Expert
Updated on 12-Dec-2019 10:11:25

851 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

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

SAP ABAP Expert
Updated on 12-Dec-2019 10:54:19

2K+ 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 condition, and click on Start

Combining fields in CDS view in SAP ABAP

karthikeya Boyini
Updated on 16-Dec-2019 07:42:39

3K+ Views

With the use of SAP ABAP 7.5, you can make use of the CONCAT_WITH_SPACE function.ExampleThe above code can be simplified like this:CONCAT_WITH_SPACE( bp.name_first, bp.name_last, 1 )

Keyboard shortcut for double clicking a selected object in SAP

Sharon Christine
Updated on 30-Jul-2019 22:30:20

727 Views

You can use F2 for this.

Advertisements