Articles on Trending Technologies

Technical articles with clear explanations and examples

Refreshing list viewer data selectively in SAP ABAP

SAP ABAP Expert
SAP ABAP Expert
Updated on 30-Jul-2019 183 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.

Read More

Use workbench along with SAP Business One

Sharon Christine
Sharon Christine
Updated on 30-Jul-2019 478 Views

The answer is No. Workbench is not present in business one. The reason being the core of business one is not based on ABAP or NetWeaver.Business one relies heavily on SQL. It has a SQL database and you can write queries for fetching data. These data are then used for creating reports.But When you analyze business one with ABAP, the extension capabilities are very little in business one as available in ABAP.But you have other options for achieving the same; you can integrate with either JAVA or .NET using their connectors for writing your custom requirements.

Read More

How to write on selection screen after giving any user input in SAP ABAP

SAP ABAP Expert
SAP ABAP Expert
Updated on 30-Jul-2019 1K+ Views

You can use the WRITE to write on the selection screen. But still you have other options available to accomplish your task.You can choose to show your text in a message which is shown at the bottom of the screen. Also, you can try with a popup to show your required text.Sample snippet: Message 'Your text' TYPE S

Read More

Need to update MySQL and SAP database at the same time from a Form

SAP ABAP Expert
SAP ABAP Expert
Updated on 30-Jul-2019 247 Views

Yes, you can do that but if you are thinking of making the changes in the existing PHP script so that it takes care of both the tasks. Then it will be quite tough.But if you want to have two operations in parallel then you can have it.You can go for writing a web service which can do the DB update activity. You can also try using the SAP API to do the updates. SAP API has the most common and used methods to do the updates.So you might be able to find the ones for your requirement.You can also ...

Read More

Convert CHAR to HEX in SAP system and functions

SAP
Sai Subramanyam
Sai Subramanyam
Updated on 30-Jul-2019 1K+ Views

I tried to use the same function as mentioned; I am too getting the exception.What I can make out of the dump thrown by the exception, only character type data objects are compatible with the function.You can try using another function module ‘CRM_EI_KB_CONV_DEC_TO_HEX’  which is available in ECC 6.0 environment.It will convert a decimal to hex and can be used. Hope it helps.

Read More

Debugging a failed Insert statement in SAP ABAP

Rahul Sharma
Rahul Sharma
Updated on 30-Jul-2019 542 Views

Note that in SAP ABAP, sy-subrc == 0 means success. You can use breakpoint before your INSERT statement to ensure if it is a success or not. You can check the possible return value by bringing cursor on it and then press F1 key.Try checking if/else branch in your code snippet.

Read More

Getting error not assigned on running SAP ABAP program

SAP ABAP Expert
SAP ABAP Expert
Updated on 30-Jul-2019 921 Views

The error is in field symbol. In future if you encounter such issue you can go through the logs created by ST22. It will help you in detail to understand the issue and its root cause. The reason of your error is that the field symbol is not initialized and you are trying to use it. You should have a habit of checking the content before using.check is ASSIGNED

Read More

\\nCan I integrate the SAP Learning Solution with a LMS platform?\\n

SAP
SAP ABAP Expert
SAP ABAP Expert
Updated on 30-Jul-2019 157 Views

The list of supported products can be viewed on the IMS website.  IMS has listed a set in the listed directory. SAP is not present in that list so it makes it clear that IMS does not support SAP.You can check the link too, in case if SAP is included in future:Link

Read More

How to index a table in SAP?

SAP ABAP Expert
SAP ABAP Expert
Updated on 30-Jul-2019 1K+ Views

You need to use the transaction SE11. This transaction is used to create indexes on the tables.One main thing to keep in mind over here the way these indexes are moved to production. You need to use the transaction to create indexes in development environment. Once they are created, you need to transport them to the production environment.Once you have made the change, activate the table.

Read More

How to communicate from SAP to Message queue?

SAP ABAP Expert
SAP ABAP Expert
Updated on 30-Jul-2019 296 Views

Yes, you can do what you are aspiring for. But it depends upon your actual requirement. Let’s say you need to execute the some custom application or program in SAP, then you can opt for any available connector which reads a file or else. This connector then later establishes a connection to the queue and then sends a message.Let’s say you cannot keep polling for files availability, and then you need to use the remote function call methodology. RFC has a SDK available and its online support is tremendous. You can use it too for sending a message.

Read More
Showing 61141–61150 of 61,248 articles
Advertisements