Articles on Trending Technologies

Technical articles with clear explanations and examples

How to print data of specific element from an array in java?

Monica Mona
Monica Mona
Updated on 30-Jul-2019 15K+ Views

An array is a data structure/container/object that stores a fixed-size sequential collection of elements of the same type. The size/length of the array is determined at the time of creation. The position of the elements in the array is called as index or subscript. The first element of the array is stored at the index 0 and, the second element is at the index 1 and so on. Each element in an array is accessed using an expression which contains the name of the array followed by the index of the required element in square brackets. You can access an ...

Read More

Internal Table itab declaration in SAP and difference between both the declarations

Rahul Sharma
Rahul Sharma
Updated on 30-Jul-2019 290 Views

As per my understanding, the key difference between two statements is that in first you are reserving memory space for storing 5 lines of the customer_tab table.If you consider performance, the 2nd statement should be better.

Read More

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

SAP
Lakshmi Srinivas
Lakshmi Srinivas
Updated on 30-Jul-2019 232 Views

I would recommend to use LDAP_READ instead of LDAP_SEARCH and you will see thumbnail photo should be available in a convenient form to be from “XSTRING”.LDAP_SEARCH is mentioned as obsolete in SAP documentation. To see full documentation of this FM, you can use T-code SE37 to open Function Builder. Navigate to Goto ->Documentation -> Function Module Documentation.Function Module: LDAP_READ  Function Group: FSLDAP_EXTProgram Name: SAPLFSLDAP_EXTINCLUDE Name: LFSLDAP_EXTU01

Read More

Invalid Connection String in SAP Business One

Lakshmi Srinivas
Lakshmi Srinivas
Updated on 30-Jul-2019 594 Views

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.

Read More

How to check a String for palindrome using arrays in java?

Ankitha Reddy
Ankitha Reddy
Updated on 30-Jul-2019 9K+ Views

To verify whether the given string is a palindrome (using arrays) Convert the given string into a character array using the toCharArray() method. Make a copy of this array. Reverse the array. Compare the original array and the reversed array. in case of match given string is a palindrome. Example import java.util.Arrays; import java.util.Scanner; public class Palindrome { public static void main(String args[]) { System.out.println("Enter a string "); Scanner sc = new Scanner(System.in); String s ...

Read More

Refreshing list viewer data selectively in SAP ABAP

SAP ABAP Expert
SAP ABAP Expert
Updated on 30-Jul-2019 182 Views

Only refreshing the selected or the modified rows is compatible or supported in EDIT mode but not in the display mode.As you said, you are using the display mode so I doubt you can do anything. But in case you switch over to EDIT mode from DISPLAY mode, then you can go for and bind the function with the DATA_CHANGED event.You can use the suggested approach and it should work for you. Hope it helps.

Read More

Use workbench along with SAP Business One

Sharon Christine
Sharon Christine
Updated on 30-Jul-2019 478 Views

The answer is No. Workbench is not present in business one. The reason being the core of business one is not based on ABAP or NetWeaver.Business one relies heavily on SQL. It has a SQL database and you can write queries for fetching data. These data are then used for creating reports.But When you analyze business one with ABAP, the extension capabilities are very little in business one as available in ABAP.But you have other options for achieving the same; you can integrate with either JAVA or .NET using their connectors for writing your custom requirements.

Read More

How to write on selection screen after giving any user input in SAP ABAP

SAP ABAP Expert
SAP ABAP Expert
Updated on 30-Jul-2019 1K+ Views

You can use the WRITE to write on the selection screen. But still you have other options available to accomplish your task.You can choose to show your text in a message which is shown at the bottom of the screen. Also, you can try with a popup to show your required text.Sample snippet: Message 'Your text' TYPE S

Read More

Need to update MySQL and SAP database at the same time from a Form

SAP ABAP Expert
SAP ABAP Expert
Updated on 30-Jul-2019 246 Views

Yes, you can do that but if you are thinking of making the changes in the existing PHP script so that it takes care of both the tasks. Then it will be quite tough.But if you want to have two operations in parallel then you can have it.You can go for writing a web service which can do the DB update activity. You can also try using the SAP API to do the updates. SAP API has the most common and used methods to do the updates.So you might be able to find the ones for your requirement.You can also ...

Read More

Convert CHAR to HEX in SAP system and functions

SAP
Sai Subramanyam
Sai Subramanyam
Updated on 30-Jul-2019 1K+ Views

I tried to use the same function as mentioned; I am too getting the exception.What I can make out of the dump thrown by the exception, only character type data objects are compatible with the function.You can try using another function module ‘CRM_EI_KB_CONV_DEC_TO_HEX’  which is available in ECC 6.0 environment.It will convert a decimal to hex and can be used. Hope it helps.

Read More
Showing 61121–61130 of 61,248 articles
Advertisements