SAP Articles

Page 32 of 91

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 460 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 556 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 771 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 389 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

In SAPUI5, how two add two icons in StandardListItem

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

Instead of using StandardListItem, you should use CustomListItem. With the use of CustomListItem, you can add any kind of content including multiple icons. Understanding CustomListItem As per SAP documentation, CustomListItem has the following use: This control with a content aggregation can be used to customize standard list items that SAP doesn't provide. List mode and ListItem type are applied to CustomListItems as well. Note: Even though the content aggregation allows any control, complex responsive layout controls (e.g. Table, Form) should not be aggregated as content. Reference: SAP CustomListItem Constructor Syntax The constructor for ...

Read More

Moving BAPI, Function Module, and Business Object from one SAP system to other

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

Moving BAPI, Function Module, and Business Object from one SAP system to another can be performed using the Change and Transport System (CTS). CTS is a comprehensive tool that can be used to move ABAP objects, Java objects, and other development artifacts across your SAP system landscape. Transport Management System Overview Transport management is one of the key components in SAP system landscape and is used to perform the following activities − Defining Transport Domain Controller ...

Read More

Modifying or Executing SAP jobs using .NET Connector

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

In SAP system, you have an external BAPI (Business Application Programming Interface) that can be called to manage SAP jobs using the .NET Connector. The primary function module for this purpose is BAPI_XBP_JOB. Managing SAP Jobs with BAPI Function Modules You can use BAPI_XBP_JOB* function modules to create, schedule, and manage jobs that run queries or other processes in SAP. These BAPIs provide a standardized interface for external systems to interact with SAP's job scheduling functionality. For more details about available BAPI_XBP_JOB function ...

Read More

Checking SAP Business One installation programmatically

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

You can check SAP Business One installation programmatically by using COM interop to verify if the SAP Business One client components are properly registered on the system. This approach uses the Type.GetTypeFromCLSID method to attempt creating an instance of the SAP Business One application object. Method Implementation The following function demonstrates how to check if SAP Business One client is installed on the system − Public Function isSapBusinessOneClientInstalled() As Boolean Try ' Attempt to get SAP Business One Application type using its CLSID ...

Read More

Not able to delete Server Intelligence Agent SIA in CMS

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

When working with SAP Business Objects, you may need to delete a Server Intelligence Agent (SIA) from the Central Management Server (CMS). The SIA is a Windows service that manages and distributes processing load across servers in your BI environment. You can use the following steps to safely delete this service − Step-by-Step Process Step 1: Stop the SIA Service Open Central Configuration Manager (CCM) and stop the Server Intelligence Agent (SIA) that you want to delete. This prevents any ...

Read More
Showing 311–320 of 902 articles
« Prev 1 30 31 32 33 34 91 Next »
Advertisements