Articles on Trending Technologies

Technical articles with clear explanations and examples

Tutorix - AI Tutor

LDAP_SEARCH function not returning photos stored in Active Directory with LDAP integration in SAP BSP application

SAP
Lakshmi Srinivas
Lakshmi Srinivas
Updated on 13-Mar-2026 288 Views

When working with LDAP integration in SAP BSP applications, you may encounter issues where the LDAP_SEARCH function module doesn't return photo data stored in Active Directory. This is a common problem that can be resolved by switching to a more appropriate function module. Solution: Use LDAP_READ Instead I would recommend using LDAP_READ instead of LDAP_SEARCH, and you will see that thumbnail photos should be available in a convenient form as XSTRING data type. LDAP_SEARCH is mentioned as obsolete in SAP documentation and may not handle binary data like photos correctly. The LDAP_READ function module is specifically designed ...

Read More

How to count number of columns in a table with jQuery

Kristi Castro
Kristi Castro
Updated on 13-Mar-2026 943 Views

To count number of columns in a table with jQuery, use the each() function with attr(). This method iterates through each cell in the first row and accounts for cells that span multiple columns using the colspan attribute. Example You can try to run the following code to learn how to count columns in a table − jQuery Example table { ...

Read More

Callback is not working on remote but working locally in SAP CRM

Samual Sam
Samual Sam
Updated on 13-Mar-2026 361 Views

The issue lies in the class you are using for making a method call. This class is basically making RFC callback with the help of SAP GUI. So, when you are using the function builder, it works well because it has an SAP GUI connection present. But when you are using an external system, the GUI is missing and it doesn't work. Understanding the Problem When working with SAP CRM, callbacks rely on the SAP GUI framework for proper execution. In a local environment, the SAP GUI provides the necessary interface layer for RFC (Remote Function Call) ...

Read More

BAPI to upload documents to SAP system is throwing an exception

Swarali Sree
Swarali Sree
Updated on 13-Mar-2026 590 Views

When using a BAPI to upload documents to an SAP system, you may encounter exceptions indicating that the function module is trying to access GUI-related functions. As mentioned in the exception message, this occurs because the function module attempts to access GUI-related functionality, which doesn't support BAPIs. This suggests the issue stems from either a custom RFC module or a bug in SAP coding, and you should open a support ticket with SAP. Understanding the Root Cause The primary issue arises from improper use of GUI services in non-GUI operations. When developing BAPI functions, you shouldn't use GUI ...

Read More

How to count number of rows in a table with jQuery?

Arnab Chakraborty
Arnab Chakraborty
Updated on 13-Mar-2026 2K+ Views

Counting the number of rows in a table is a common requirement in web development. jQuery provides several methods to count table rows efficiently. In this tutorial, we'll learn how to count table rows using jQuery's .length property. Basic Method to Count Table Rows The simplest way to count table rows is by using jQuery's selector to target all tr elements within a table and then use the .length property to get the count. Example Here's a complete example that demonstrates how to count table rows − Count ...

Read More

How can I tell if table row is in view using jQuery?

Kristi Castro
Kristi Castro
Updated on 13-Mar-2026 1K+ Views

To check if a table row is visible in the viewport or exists on the page, you can use jQuery's is()

Read More

How to make a jQuery function call after "X" seconds?

Kristi Castro
Kristi Castro
Updated on 13-Mar-2026 5K+ Views

To make a jQuery function call after "X" seconds, use the setTimeout() method. This method allows you to delay the execution of any function by a specified number of milliseconds. On button click, you can set a timeout and fade out an element. The setTimeout() method takes two parameters: the function to execute and the delay in milliseconds − $("#button1").bind("click", function() { setTimeout(function() { $('#list').fadeOut(); }, 4000); }); In the above code, 4000 represents 4000 milliseconds (4 seconds), which is the delay that ...

Read More

Recovery database SBO-COMMON in SAP Business One

Sai Subramanyam
Sai Subramanyam
Updated on 13-Mar-2026 1K+ Views

In SAP Business One, SBO-Common is a system database that serves as a central repository for managing and tracking your company databases. While normal day-to-day business functions operate entirely within the company database, SBO-Common handles the administrative and structural aspects of your SAP Business One environment. The SBO-Common database acts as a master database that maintains critical system information and ensures proper coordination between different company databases in your SAP Business One installation. What SBO-Common Database Contains The SBO-Common database stores essential system information − DB List − Complete list of databases ...

Read More

Adding an image to SAP Adobe form from MIME repository

SAP
Sharon Christine
Sharon Christine
Updated on 13-Mar-2026 2K+ Views

Note that the image must be uploaded from the system to MIME repository beforehand. Step 1: Upload Image to MIME Repository Run Transaction SE78 and press F5 to upload your image to the MIME repository. Step 2: Declare Variables in Interface You have to declare 2 variables in the interface - global data with types string and xstring. You need to change the data declaration as below − data: gv_bmp_watermark type xstring. constants: gc_url_watermark type string value '/BC/PUBLIC/MyImages/watermark100.bmp'. Step 3: Add Code Initialization ...

Read More

Upgraded to SAP.net connector 3.0 is not working in Visual Studio 2008 and 2010

Samual Sam
Samual Sam
Updated on 13-Mar-2026 317 Views

Note that SAP.NET Connector 3.0 doesn’t work similar to the 2.0 connector. There are many significant changes − both improvements and modifications − provided in the .NET 3.0 version. SAP.NET Connector 3.0 Overview SAP .NET Connector 3.0 is the current version of SAP's development environment for communication between the Microsoft .NET platform and SAP systems. With the use of SAP.NET connector, you can connect SAP system to all common programming languages like Visual Basic.NET, C#, or Managed C++ and many more. This is the official SAP documentation link about general capabilities of SAP.NET connector − ...

Read More
Showing 24131–24140 of 61,298 articles
Advertisements