SAP HANA Articles

Page 22 of 58

Upgrading SAP .NET Connector from .NET 2.0 to .NET 3.0

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

You are correct. SAP .NET Connector 2.0 uses proxy classes however .NET Connector 3.0 uses a generic API. You need to rewrite all code that includes NCo interaction when upgrading from version 2.0 to 3.0. Benefits of .NET Connector 3.0 The upgrade from NCo 2.0 to NCo 3.0 brings significant improvements − Enhanced Stability: NCo 3.0 is more stable, robust and supports heavy load scenarios Better Architecture: .NET 3.0 provides better application design by decoupling the connection handling Memory Optimization: It consumes less memory compared to the ...

Read More

Attach data from SAP system using Oracle Web Logic and Oracle Enterprise Service Bus

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

Oracle Service Bus (OSB) provides robust integration capabilities with SAP systems through its built-in SAP adapter. This adapter enables seamless data retrieval from SAP systems via queries, making it an essential component for enterprise integration scenarios. Available Adapters in Oracle Service Bus 10.3.1 With the 10.3.1 release of Oracle Service Bus, the following adapters are available for enterprise system integration − Oracle AQ Database Oracle Applications SAP J.D. Edwards OneWorld ...

Read More

Converting BLOB to Char in SAP HANA using SQL

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

In SAP HANA, you may need to convert BLOB (Binary Large Object) data to character format for display or processing purposes. BLOB data stores binary information like images, documents, or encoded text that needs to be converted to readable character format. Converting BLOB to Character Data You can perform BLOB to character conversion using the TO_ALPHANUM function. This function converts binary data to alphanumeric character representation − SELECT TO_ALPHANUM(blob_column) FROM your_table_name; Complete Example Here's a practical example showing how to convert BLOB data to character format − -- Create a sample ...

Read More

Sorting Prompt values in SAP BO Webi report

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

In Business Objects 4.1, you can sort prompt values (List of Values - LOV) to display them in a specific order when users make selections. This can be done by following the below steps in the Universe − Steps to Sort Prompt Values Step 1: Navigate to Parameters and LOV Open your Universe in Information Design Tool and navigate to the Parameters and LOV section where your prompts are defined. Step 2: Edit SQL Query Next, go to the Edit SQL ...

Read More

IN statement in SQL doesn't accept a wild character (SAP)

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

The IN statement in SQL doesn't accept wild characters directly. When working with SAP systems, you need to use OR/AND conditions to handle wildcard functionality with the IN operator. Workaround Solution To implement wildcard behavior with the IN statement, you can use a conditional approach that checks for a wildcard parameter first, then applies the IN condition − select * from Test1 t INNER JOIN Test2 s ON t.ID = s.RID where t.sdate >= ?1 AND t.edate

Read More

No error while inserting record in child table with no match in master table in SAP

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

Note that when you perform an insertion using an ABAP program, there is no check on foreign key constraint. Even when you define checks in data dictionary SE11, there is still no check at database level. Application Level vs Database Level Validation When you execute using an ABAP code, this checks consistency at application level and not at database level. Errors you see in SE16 show records rejected at application level, but direct database insertions bypass these checks. Example − ...

Read More

Generating an IDoc file to generate orders in SAP R/3 system

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

BELNR is not required however it is useful for tracking and duplicate order management. Let us say a customer places an order and as he is not sure, he places the order again. Now there are 2 orders and you are not sure if there are two IDocs for the same order. Using BELNR for Order Management With BELNR (Document Number), it contains the order number of the customer system and you can add an optional field with Order Number. In case the same order is used, it can ...

Read More

Getting information from pooled tables in SAP system

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

Note that you can't access Pooled tables directly and it should be accessed via Application server. When a pooled table is created, it involves creation of a suitable transparent table with a suitable delivery class and then it is changed to a pooled table. A pooled table can be flagged as transparent in its technical settings, which is a simple way of transforming it to a transparent table. To fetch information from Pooled tables, you need to write an ABAP code that can extract the data as per requirement. What are Pooled Tables? Pooled tables are ...

Read More

CUID format in SAP BO Server Repository

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

As per my understanding, CUID (Cluster Unique Identifier) is a 35-character string that normally starts with A, B, C, F, K, and M. To know formatting of different ID types, you can refer to this − SAP Note: 1285103: What are the different types of IDs used in the BusinessObjects Enterprise repository? What is CUID? CUID stands for Cluster Unique Identifier. CUIDs are Globally Unique Identifiers that uniquely identify an InfoObject, both within a single CMS cluster and across multiple CMS clusters. Because ...

Read More

Fetching monitoring data in an application using SAP FM\'s

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

To fetch monitoring data in SAP applications, you need to login to the XM interface and utilize specific BAPIs (Business Application Programming Interfaces) designed to read CCMS (Computing Center Management System) data. CCMS provides comprehensive monitoring capabilities for SAP systems, allowing you to track system performance, alerts, and operational status. Available Function Modules SAP provides several function modules specifically designed for monitoring data retrieval − BAPI_SYSTEM_ALERT_ACKNOWLEDGE BAPI_SYSTEM_ALERT_GETDETAILS BAPI_SYSTEM_MON_GETLIST BAPI_SYSTEM_MON_GETTEMPLATE BAPI_SYSTEM_MON_GETTREE Function Module Descriptions BAPI_SYSTEM_ALERT_ACKNOWLEDGE − Used to acknowledge system alerts that have been identified and reviewed by administrators. BAPI_SYSTEM_ALERT_GETDETAILS − Retrieves detailed ...

Read More
Showing 211–220 of 573 articles
« Prev 1 20 21 22 23 24 58 Next »
Advertisements