Articles on Trending Technologies

Technical articles with clear explanations and examples

Double click on ALV Grid to call Transaction and pass information in SAP

SAP
Lakshmi Srinivas
Lakshmi Srinivas
Updated on 30-Jul-2019 1K+ Views

You can make use of field - “wa_selrow” to define which column was clicked. Also, change the grid from row selection mode to cell selection mode.wa_selrow contains which field it is calling the transaction regardless or the field you clicked on so based on the content of wa_selrow, you can control the call to the transaction.You can also turn on the debugger and double click on the field to check what value is getting passed into wa_selfield.

Read More

Condition Variables within Sub-Query in SAP

Sai Subramanyam
Sai Subramanyam
Updated on 30-Jul-2019 192 Views

One line answer - Sub-Queries are not allowed. But if you need to handle your scenario, then you can do the following: Encapsulate your entire query into a stored procedure and then use the stored procedure. Create a view. The view is created to handle either your main query or sub-query. Create a table level variable and store the end results of view in it and then go ahead and fetch the value of table variable in the main query.

Read More

Deleting BOM component in SAP

SAP
Ankitha Reddy
Ankitha Reddy
Updated on 30-Jul-2019 3K+ Views

In order to delete a component of BOM, you can use transaction 'CS02'. CS02 is referred as Change Material BOM. It is further classified within the Logistics - General module. Module: Logistics-General Application Component - Bills of Material Package: CS Package Description: R/3 Application development: PP Bills of Material. But if you require deleting more than one BOM component then you can use LSMW script. Method: 0002 Change Program Name : RCDBI020 Once you have deleted the components if you want to verify the deletion and view the deleted components. You can view them under ...

Read More

What should I install to start learning SAP ABAP?

Samual Sam
Samual Sam
Updated on 30-Jul-2019 427 Views

SAP NetWeaver is a Java-based stack and its developer edition is available.https://www.sap.com/developer/trials-downloads.htmlIn SAP system, Function modules are like web services. They are used to expose the structure of the data dictionary or to expose business objects.Function modules are sub-programs that contain a set of reusable statements with importing and exporting parameters. Unlike Include programs, function modules can be executed independently. SAP system contains several predefined function modules that can be called from any ABAP program. The function group acts as a kind of container for a number of function modules that would logically belong together. For instance, the function modules ...

Read More

How is GENTRAN used in Electronic data interchange EDI in SAP?

SAP
Swarali Sree
Swarali Sree
Updated on 30-Jul-2019 520 Views

Let me give you a basic info about electronic data interchange, it is used to exchange data (usually structured) between firms.Speaking about GENTRAN, it is one of the available EDI tools which can help you parse data in most of the common formats available. If you want to change the format of data from one to another, GENTRAN can do it for you too.Coming up to the most exciting part of it, it provides a drag and drop interface to you where you can program.Usually, when you need to convert a document from one format to another, you need to ...

Read More

Displaying popup in SAP STMS

SAP
Sharon Christine
Sharon Christine
Updated on 30-Jul-2019 254 Views

First of all use CALL SCREEN ... STARTING AT ..., then in PBO processing, use Suppress Dialog to bypass the screen (dynpro) processor and an empty screen is not displayed, then use LEAVE TO LIST-PROCESSING in PAI event. Now you can follow it with your WRITE statements to display it as a popup.

Read More

Interfacing database to external parties in SAP system

Ramu Prasad
Ramu Prasad
Updated on 30-Jul-2019 264 Views

Interacting directly with SAP databases is not considered a good programming practice. As SAP database is nothing but a normal database, it can interact in any way like any ODBC technique - ADO.NET or other.Remote Function Calls can be used to make calls to databases. ERP Connect supports RFC and can be used for reading data from tables.In case one needs a high customization and control, one can create a custom RFC component to fetch and return the intended data.

Read More

Finding code where admin user is created in SAP Hybris

Sai Subramanyam
Sai Subramanyam
Updated on 30-Jul-2019 203 Views

There is a method addUserRights at below path in which it is done.hybris/bin/platform/bootstrap/bin → ybootstrap.jar → DMLRecordFactory

Read More

Seeing list of all program screens in SAP ABAP

Sai Subramanyam
Sai Subramanyam
Updated on 30-Jul-2019 978 Views

If you want to check all Dynpros belongs to one program, you can use table D020S. D020S is known as SAP Table to store screen sources information. This is available within R/3 SAP systems depending on the version and release level. To display or maintain this table, use T-code SM30 You can use T-code SE11 to view the fields in table D020S: It is text table D020T with the key program = sy-repid

Read More

Finding index of rows and columns in SAP

SAP
Samual Sam
Samual Sam
Updated on 30-Jul-2019 504 Views

To identify the index of the row, you can use the property “indexOfRow” to get the row of the clicked button.All the buttons will be in the same column, so it does not make sense to get the column index, but if you still need to get the column index then you can go ahead and use the property “indexOfColumn” or “columnIndex”.

Read More
Showing 61201–61210 of 61,297 articles
Advertisements