SAP Basis Articles

Found 498 articles

Data Replication from SAP PO to SQL Server

SAP Expert
SAP Expert
Updated on 13-Mar-2026 637 Views

It is important to note that SAP PO (Process Orchestration) is not a data source but a middleware − it does not store or contain business data itself. To replicate data to SQL Server, you extract data from the actual source system (such as SAP ERP) through SAP PO, and load it into SQL Server using a JDBC adapter. What Is SAP PI/PO? SAP Process Integration (PI), also known as SAP Process Orchestration (PO), enables cross-system communication and integration. It allows you to connect SAP and non-SAP systems based on different technologies like Java and SAP ABAP. It ...

Read More

\\nLoad and unload a table in SAP HANA using SQL query

SAP Developer
SAP Developer
Updated on 13-Mar-2026 2K+ Views

In SAP HANA, it is possible to manually load and unload individual tables and table columns for memory management purposes. You can perform loading of table to precisely measure the total or "worst case" amount of memory used by a particular table. A table is unloaded from database to actively free up memory space. Basic Load and Unload Syntax You can use the following SQL queries to perform load/unload operations on tables − LOAD UNLOAD Loading a Table To load a specific ...

Read More

Searching data from the different system in SAP.

seetha
seetha
Updated on 13-Mar-2026 255 Views

You need to create a search help with custom data selection by defining a search help exit. This is particularly useful when you need to fetch data from external systems or apply complex filtering logic that cannot be achieved through standard selection methods. Creating Custom Search Help with Exit Function To implement custom data selection, follow these steps − Step 1: Navigate to the Definition tab of your search help in transaction SE11. Step 2: Remove all content from the Selection method input field to disable standard data selection. Step 3: Enter your custom function ...

Read More

Allow only a possible set of values to choose from while setting value in SAP ABAP

varma
varma
Updated on 13-Mar-2026 536 Views

If you need to place a restriction on field values, you can use predefined domains on the column or text field to control the permissible values. Implementation Steps The process follows this hierarchy − Select Table Field -> Data Element -> Specify Domain While specifying the domain, you can set the permissible set of values which you want the table field to accept. This creates a value restriction at the domain level that applies to all fields using that domain. Domain Value Table Configuration To configure allowed values in your domain − ...

Read More

How to join tables in SAP system

radhakrishna
radhakrishna
Updated on 13-Mar-2026 1K+ Views

If you want to check the relation between different tables, you need to have a minimum read-only access to SAP system. Table joins in SAP allow you to combine data from multiple related tables based on common fields. Dictionary Structure Reference Below is the link to refer information about dictionary structure − https://help.sap.com/saphelp_46c/helpdata/en/ea/e9a3bb4c7211d189520000e829fbbd/frameset.htm Common Table Join Methods in SAP There are several ways to join tables in SAP system − ...

Read More

Adding items to table using function in SAP

mkotla
mkotla
Updated on 13-Mar-2026 233 Views

When adding items to a table using functions in SAP, you need to use the correct method to retrieve structure metadata. The following shows how to properly implement this functionality. Replacing the Structure Metadata Method Instead of using the original statement, you need to replace the following code − IRfcStructure articol = repo.GetStructureMetadata("Z_ITEMS") as IRfcStructure; You need to replace this with the corrected approach − IRfcTable table = function.GetTable("Z_ITEMS"); IRfcStructure articol = table.Metadata.LineType; Explanation The original method GetStructureMetadata() may not properly handle table structures in all SAP environments. The ...

Read More

Creating a Function module in ABAP to take any table and write it to the screen

Manikanth Mani
Manikanth Mani
Updated on 13-Mar-2026 2K+ Views

SAP List Viewer (ALV) is used to add an ALV component and provides a flexible environment to display lists and tabular structure. A standard output consists of header, toolbar, and an output table. The user can adjust the settings to add column display, aggregations, and sorting options using additional dialog boxes. Creating a Function Module Using ALV You can use the following code to display any table using the CL_SALV_TABLE class − DATA: go_alv TYPE REF TO cl_salv_table. CALL METHOD cl_salv_table=>factory IMPORTING r_salv_table = ...

Read More

Fetching list of products from SAP: connecting SAP database from .net application

Monica Mona
Monica Mona
Updated on 13-Mar-2026 269 Views

When connecting a .NET application to an SAP database to fetch product lists, you may encounter connectivity issues. You can troubleshoot by trying a telnet connection to the SAP system. Open a command prompt on the system where you are running your .NET application and try to telnet to the server having the SAP system installed. Testing SAP Connectivity Use the following telnet command to test the connection − Telnet 127.0.0.1 3300 If you are using a local system, try using a hostname instead of the loopback IP address and make an entry ...

Read More

ABAP dump while creating an entry in SAP system using SAP JCO

Ayyan
Ayyan
Updated on 13-Mar-2026 486 Views

This seems to be a problem at ABAP side and not Java side. This is an ABAP dump and you need to use Transaction code: ST22 on ABAP backend to check the functional module in SAP system. Identifying the ABAP Dump When encountering SAP JCO connection issues during entry creation, follow these steps to diagnose the problem − Navigate to transaction ST22 in your SAP system to access the dump analysis screen. This transaction provides detailed ...

Read More

Finding where-used list of SAP standard programs

radhakrishna
radhakrishna
Updated on 13-Mar-2026 1K+ Views

You would need to run SAPRSEUB to enable the where-used functionality for standard SAP programs. This report generates comprehensive indices that help you track program dependencies and references throughout your SAP system. Please note that this program runs for a considerable amount of time and requires significant disk space. SAPRSEUB is a standard Executable ABAP Report available within your SAP system that creates where-used lists for all programs in the system. Related SAP Reports Several reports work together to maintain program references and object lists − SAPRSEUB − Generate Where-Used List (For ...

Read More
Showing 1–10 of 498 articles
« Prev 1 2 3 4 5 50 Next »
Advertisements