Alankritha Ammu has Published 47 Articles

What is the use of return statement inside a function in JavaScript?

Alankritha Ammu

Alankritha Ammu

Updated on 07-Jan-2020 08:51:24

217 Views

The “return” statement in JavaScript mentions a value, which you like to return. Inside a function, the value is returned to the function caller.ExampleYou can try to run the following code to implement return statement inside a functionLive Demo                    function ... Read More

I am getting GUID Key columns truncated while using proxy ERP tables to query SAP tables

Alankritha Ammu

Alankritha Ammu

Updated on 06-Dec-2019 11:12:59

102 Views

I think there is a restriction in SAPand when you use default functional module it only shows 16characters.To overcome this you should install Z module in SAP system and you can activate it by entering the name of LINQ table.Custom function "Z_XTRACT_IS_TABLE"

Aggregating rows in SAP ABAP with the same name

Alankritha Ammu

Alankritha Ammu

Updated on 05-Dec-2019 10:38:25

393 Views

You can use the COLLECT keyword or some aggregate functions to achieve the result. You should define some datatype to match the scenario.TYPES: BEGIN OFt_my_type,    key_aTYPE foo,    key_bTYPE foo,    nokey_cTYPE foo,    nokey_dTYPE foo, END OFt_my_type, tt_my_type_list TYPE STANDARD TABLE OF t_my_type WITH DEFAULT KEY, tt_my_type_hash TYPE ... Read More

Error connecting SAP while sapjco3.jar file is in my library path

Alankritha Ammu

Alankritha Ammu

Updated on 05-Dec-2019 10:26:37

480 Views

You need to copy sapjco3.dll in a folder in your Java library path as he t library is not sapjco3.jar and it is a sapjco3.dll file.You can call in your application usingfollowing:System.getProperty("java.library.path")Following approaches can be used:First is by copying sapjco3.dll into one of the folder which are already in your ... Read More

How to convert a Java String to an Int?

Alankritha Ammu

Alankritha Ammu

Updated on 30-Jul-2019 22:30:21

192 Views

The parseXxx() method is used to get the primitive data type of a certain String. In this case to convert a String to integer you could use the parseInt() method.Example Live Demopublic class Test {    public static void main(String args[]) {       int x =Integer.parseInt("9");       double ... Read More

C++ Keywords

Alankritha Ammu

Alankritha Ammu

Updated on 30-Jul-2019 22:30:21

6K+ Views

Keywords are those words whose meaning is already defined by Compiler. These keywords cannot be used as an identifier. Note that keywords are the collection of reserved words and predefined identifiers. Predefined identifiers are identifiers that are defined by the compiler but can be changed in meaning by the user. For ... Read More

How can we edit a java program?

Alankritha Ammu

Alankritha Ammu

Updated on 30-Jul-2019 22:30:21

500 Views

Java programs are simple text-based programs and can be edited using any text editor like notepad etc. The filename should be same as class name.

Advertisements