SAP ABAP Expert

SAP ABAP Expert

115 Articles Published

Articles by SAP ABAP Expert

Page 2 of 12

Move data from one warehouse to other in SAP MM

SAP ABAP Expert
SAP ABAP Expert
Updated on 13-Mar-2026 183 Views

You can perform warehouse-to-warehouse transfer in SAP MM using the existing function module BAPI_GOODSMVT_CREATE. This BAPI allows you to create goods movements for transferring materials between different storage locations or warehouses efficiently. Using BAPI_GOODSMVT_CREATE for Warehouse Transfer The BAPI_GOODSMVT_CREATE function module is designed to handle various types of goods movements in SAP MM, including transfers between warehouses. This BAPI provides a programmatic way to execute material movements that would typically be done through transaction codes like MIGO or MB1B. Key Parameters When using this BAPI for warehouse transfers, you need to configure the following essential parameters ...

Read More

Making RFC call from COM/OLE object in SAP

SAP ABAP Expert
SAP ABAP Expert
Updated on 13-Mar-2026 358 Views

To communicate between SAP systems, there is a need to define a mechanism. One of the most common ways is to define Remote Function Call (RFC Connection) between two systems. By creating a trusted RFC connection between two systems, it allows you to create trusted-trusting relationship between systems wherein, you can communicate and exchange information and data. There are different types of trusted RFC connections − Type 3 Connection − ABAP connection to external system Type I Connection − TCP/IP connection ...

Read More

Getting an error on creating an Index in SAP HANA

SAP ABAP Expert
SAP ABAP Expert
Updated on 13-Mar-2026 550 Views

When you encounter the error message "column already indexed" while creating an index in SAP HANA, it indicates that an index already exists on that column. This is a common issue that occurs when you try to create duplicate indexes. Understanding Automatic Index Creation SAP HANA automatically creates indexes on columns with specific data types. If the data type of your column is TEXT, HANA creates an index on it by default. This automatic indexing helps optimize text searches and queries. Solution: Change Data Type to BLOB For better performance and to avoid the indexing conflict, ...

Read More

Error in JavaServer Faces JSF application in SAP NWDS

SAP ABAP Expert
SAP ABAP Expert
Updated on 13-Mar-2026 167 Views

When working with JavaServer Faces (JSF) applications in SAP NetWeaver Developer Studio (NWDS), you may encounter rendering issues or validation errors related to the HTML DOCTYPE declaration. This problem typically occurs when the DOCTYPE is incompatible with JSF components or when the HTML structure doesn't align with JSF requirements. Common DOCTYPE Issue in JSF Applications The most frequent issue arises from using an outdated or incompatible DOCTYPE declaration. If you're experiencing rendering problems or validation errors, try updating the DOCTYPE declaration in your JSF pages. Solution Replace the problematic DOCTYPE declaration with the following corrected version ...

Read More

How to split SAP Smartform templates

SAP ABAP Expert
SAP ABAP Expert
Updated on 13-Mar-2026 532 Views

Splitting SAP Smartform templates is not directly achievable using the standard template concept of Smart Forms. The template functionality in Smart Forms has limitations when it comes to creating complex split layouts. Alternative Approach for Content Splitting To overcome this limitation, you need to use separate windows instead of relying on templates. This approach allows you to distribute content across different sections of your form effectively. Implementation Strategy The recommended approach involves − Creating multiple windows ...

Read More

De-normalization and Analytic views in SAP HANA

SAP ABAP Expert
SAP ABAP Expert
Updated on 13-Mar-2026 442 Views

Note that HANA is not primarily designed for de-normalization; however, it stores data in columnar format so all aggregations are performed on the fly. This columnar storage approach allows for efficient query processing without the need for traditional de-normalization techniques. You can create multiple views but this will add duplicate data and require extra effort to maintain them. The number of views normally depends on business needs, because views contain data in many aspects so they can be reused. In case you have multiple measures to handle in ...

Read More

Forcing SAP Webi report to show specific data

SAP ABAP Expert
SAP ABAP Expert
Updated on 13-Mar-2026 274 Views

In SAP WebI (Web Intelligence), you can force a report to show specific data by creating a separate query that filters for the desired values. This can be done by creating a separate query that only shows priority. Then you need to replace column [Query1].[Priority] with the merged dimension [Priority]. Step-by-Step Process Follow these steps to implement data filtering using merged dimensions − Step 1: Create a Separate Query First, create a new query in your WebI document that contains only the ...

Read More

Turning Help mode ON to add SAP ABAP Explanation Text

SAP ABAP Expert
SAP ABAP Expert
Updated on 13-Mar-2026 199 Views

To enable Help mode in SAP ABAP for adding explanation text, you have several options available. Help mode allows you to add explanatory text to various elements in your SAP system, making it more user-friendly and informative. Methods to Enable Help Mode You can turn ON help mode through the following approaches − 1. Personal Settings in Portal: Navigate to your personal settings within the SAP portal and enable help mode from the user preferences. 2. Associated ...

Read More

Connecting SAP system from C# application via .NET Connector 3.0

SAP ABAP Expert
SAP ABAP Expert
Updated on 13-Mar-2026 1K+ Views

Connecting to an SAP system from a C# application requires configuring the .NET Connector 3.0 with proper connection parameters. The configuration can be defined in your application's app.config or web.config file. Configuration Setup You can configure the SAP connection using the following XML configuration − ...

Read More

Error while posting a sales order in SAP from .net application

SAP ABAP Expert
SAP ABAP Expert
Updated on 13-Mar-2026 216 Views

Note that sold to party and ship to party are mandatory fields when creating a sales order in SAP. You need to add the created structures and tables to the function as shown in the code below − Creating Sales Order Using BAPI The following example demonstrates how to use the BAPI_SALESORDER_CREATEFROMDAT1 function to create a sales order from a .NET application − RfcRepository repo = destination.Repository; IRfcFunction salesDoc = repo.CreateFunction("BAPI_SALESORDER_CREATEFROMDAT1"); // Set the order header structure IRfcStructure salesHeader = salesDoc.GetStructure("ORDER_HEADER_IN"); salesHeader.SetValue("DOC_TYPE", "ZDLR"); salesHeader.SetValue("SALES_ORG", "1000"); salesHeader.SetValue("DISTR_CHAN", "10"); salesHeader.SetValue("DIVISION", "00"); // Set partner data (mandatory ...

Read More
Showing 11–20 of 115 articles
« Prev 1 2 3 4 5 12 Next »
Advertisements