Article Categories
- All Categories
-
Data Structure
-
Networking
-
RDBMS
-
Operating System
-
Java
-
MS Excel
-
iOS
-
HTML
-
CSS
-
Android
-
Python
-
C Programming
-
C++
-
C#
-
MongoDB
-
MySQL
-
Javascript
-
PHP
-
Economics & Finance
Articles by Lakshmi Srinivas
Page 11 of 24
LDAP_SEARCH function not returning photos stored in Active Directory with LDAP integration in SAP BSP application
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 MoreDisplaying Records with maximum event number for each group in SAP Crystal Reports
When working with SAP Crystal Reports, you often need to display only the records with the maximum event number for each group. This is a common requirement when you want to show the latest or highest event for each deal or group in your report. The most effective approach is to use the suppress formula to hide details that don't match the maximum event number criteria for their respective group. Suppress Formula Method I would suggest using this logic to suppress details if ...
Read MoreDifferent ways to interact with SAP system from a web application
There are several methods to interact with SAP systems from web applications. Using any of these methods depends on what you are connecting to and the version of your SAP system. You can use Standard BAPI's (Business Application Programming Interface) to read or update service orders. BAPI is a Remote Function Call (RFC) with a standard API that provides a standardized interface for external systems. Web Services in SAP ERP In latest releases of SAP ERP, many Function Modules are exposed as Web Services, making it easier to integrate ...
Read MoreBootstrap progress-striped class
The progress-striped class is used to form a striped progress bar in Bootstrap.You can try to run the following code to create a striped progress bar in BootstrapExample Bootstrap Example Striped Progress Bars Success Progress Bar 45%Complete (success) Info Progress Bar 80% Complete (info)
Read MoreContainer for embedded content in Bootstrap
Use the .embed-responsive class in Bootstrap to set a container for embedded content.You can try to run the following code to implement the .embed-responsive class in BootstrapExample Bootstrap Example Add pages in WordPress To add pages on a WordPress, try the below given steps in the video:
Read MoreWhat are C++ Floating-Point Constants?
Floating-point constants specify values that must have a fractional part.Floating-point constants have a "mantissa, " which specifies the value of the number, an "exponent, " which specifies the magnitude of the number, and an optional suffix that specifies the constant's type(double or float).The mantissa is specified as a sequence of digits followed by a period, followed by an optional sequence of digits representing the fractional part of the number. For example −24.25 12.00These values can also contain exponents. For example, 24.25e3 which is equivalent to 24250In C++ you can use the following code to create a floating point constant −Example#include ...
Read MoreImg-circle Bootstrap class
Use the img-circle Bootstrap class to style your image and make it completely round.You can try to run the following code to implement the img-circle classExample Bootstrap Images Styling images with Bootstrap Original Image Image with Rounded Corners
Read MoreUse dropdowns with any button size using Bootstrap
Use btn-large, .btn-sm, or .btn-xs class to use dropdowns with any button size.Let us see an example of btn-largeExample Bootstrap Example Default Action Another action Something else here Separated link
Read MorePills with Dropdowns Bootstrap Example
To form pills with dropdowns, you can try to run the following exampleExample Bootstrap Example Website Home About Products Online Compiler Image Editor Services Contact
Read MoreUsage of Bootstrap navbar-btn class
Add buttons using class .navbar-btn to elements not residing in a to vertically center them in the navbar. .navbar-btn can be used on and elements.You can try to run the following code to implement the navbar-btn classExample Bootstrap Example Search below: Submit Button Navbar Button
Read More