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
Articles by Lakshmi Srinivas
233 articles
Using SAP Web Service from WSDL file
Integrating SAP web services in .NET is straightforward, as Visual Studio handles most of the configuration with just a few clicks. Adding SAP Web Service Reference Follow these steps to integrate the SAP web service into your .NET project − Step 1: Open your .NET project in Visual Studio. Step 2: Right-click on your project in Solution Explorer and select Add Service Reference. Step 3: In the dialog box, specify the WSDL file location shared by your SAP client. This can be a URL or a local file path. Step 4: Click OK to ...
Read MoreInvalid Connection String in SAP Business One
The answer lies within the exception message itself. The connection string that you are using to connect to the Business object server is wrongly configured. Check for each parameter, you will find something must be wrong and hence why you are receiving this error message. Common Connection String Parameters A typical SAP Business One connection string contains several critical parameters that must be correctly configured − Server − The SAP Business One server address CompanyDB − The company database name UserName − Valid SAP Business One username ...
Read MoreLDAP_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 MoreFade Out Left Animation Effect with CSS
To implement Fade Out Left Animation Effect on an image with CSS, you can try to run the following code −Example .animated { background-image: url(/css/images/logo.png); background-repeat: no-repeat; background-position: left top; padding-top:95px; margin-bottom:60px; -webkit-animation-duration: 10s; animation-duration: 10s; -webkit-animation-fill-mode: both; animation-fill-mode: both; } @-webkit-keyframes fadeOutLeft { 0% { opacity: 1; -webkit-transform: translateX(0); } 100% { opacity: 0; -webkit-transform: translateX(-20px); } } @keyframes fadeOutLeft { 0% { opacity: 1; transform: translateX(0); } 100% { opacity: 0; transform: translateX(-20px); } } .fadeOutLeft { -webkit-animation-name: fadeOutLeft; animation-name: fadeOutLeft; } Reload page function myFunction() { location.reload(); }
Read MoreFade Out Down Animation Effect with CSS
To implement Fade Out Down Animation Effect on an image with CSS, you can try to run the following code −Example .animated { background-image: url(/css/images/logo.png); background-repeat: no-repeat; background-position: left top; padding-top:95px; margin-bottom:60px; -webkit-animation-duration: 10s; animation-duration: 10s; -webkit-animation-fill-mode: both; animation-fill-mode: both; } @-webkit-keyframes fadeOutDown { 0% { opacity: 1; -webkit-transform: translateY(0); } 100% { opacity: 0; -webkit-transform: translateY(20px); } } @keyframes fadeOutDown { 0% { opacity: 1; transform: translateY(0); } 100% { opacity: 0; transform: translateY(20px); } } .fadeOutDown { -webkit-animation-name: fadeOutDown; animation-name: fadeOutDown; } Reload page function myFunction() { location.reload(); }
Read MoreAchieve Glow Effect with CSS Filters
The glow effect is used to create a glow around the object. If it is a transparent image, then glow is created around the opaque pixels of it.The following parameters can be used in this filter −S.noParameter & Description1.ColorThe color you want the glow to be.2.StrengthThe intensity of the glow (from 1 to 255).ExampleYou can try to run the following code to create a glow around the object − Text Example: CSS Tutorials
Read MoreAlign the components with Bootstrap
To align the components like nav links, forms, buttons, or text to left or right in a navbar using the utility classes .navbar-left or .navbar-right. Both classes will add a CSS float in the specified direction.ExampleYou can try to run the following code to align components Bootstrap Example Alignment Java jmeter EJB Jasper Report Separated link One more separated link Left align-Submit Button Left align-Text Java jmeter EJB Jasper Report Separated link One more separated link Right align-Submit Button Right align-Text
Read MoreFade Out Up Big Animation Effect with CSS
To implement Fade Out Up Big Animation Effect on an image with CSS, you can try to run the following code −Example .animated { background-image: url(/css/images/logo.png); background-repeat: no-repeat; background-position: left top; padding-top:95px; margin-bottom:60px; -webkit-animation-duration: 10s; animation-duration: 10s; -webkit-animation-fill-mode: both; animation-fill-mode: both; } @-webkit-keyframes fadeOutUpBig { 0% { opacity: 1; -webkit-transform: translateY(0); } 100% { opacity: 0; -webkit-transform: translateY(-2000px); } } @keyframes fadeOutUpBig { 0% { opacity: 1; transform: translateY(0); } 100% { opacity: 0; transform: translateY(-2000px); } } .fadeOutUpBig { -webkit-animation-name: fadeOutUpBig; animation-name: fadeOutUpBig; } Reload page function myFunction() { location.reload(); }
Read More