Abhinanda Shri has Published 74 Articles

Interacting SAP and Navision using 3rd party applications

Abhinanda Shri

Abhinanda Shri

Updated on 16-Dec-2019 07:13:59

155 Views

There are many middleware tools that work as middleware for integrating different applications. There exists a vast variety of them but choosing a correct one is based on the applications being integrated.For integrating the third-party application with either SAP or Navision, you can use Apache Camel. Also, SAP provides a ... Read More

How to use OR condition in a JavaScript IF statement?

Abhinanda Shri

Abhinanda Shri

Updated on 19-Sep-2019 08:07:16

4K+ Views

To use OR condition in JavaScript IF statement, use the || operator i.e Logical OR operator. If any of the two operands are non-zero, then the condition becomes true.Here’s how you can use the operator || in JavaScriptExampleLive Demo                    var ... Read More

Why do we use restrict qualifier in C++?

Abhinanda Shri

Abhinanda Shri

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

167 Views

There's no such keyword in C++. List of C++ keywords can be found in section 2.11/1 of C++ language standard. restrict is a keyword in the C99 version of C language and not in C++.In C, A restrict-qualified pointer (or reference) is basically a promise to the compiler that for ... Read More

How to concatenate lists in java?

Abhinanda Shri

Abhinanda Shri

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

433 Views

The addAll(Collection

How can I use goto statement in JavaScript?

Abhinanda Shri

Abhinanda Shri

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

2K+ Views

JavaScript goto statement is a reserved keyword. Generally, according to web standards it isn’t considered a good practice to use goto statement.Using goto with JavaScript preprocessing is still considered good as shown below.var a = 0; [lbl] beginning: console.log("Demo Text!"); a++; if(i < 424) goto beginning;The above code gets translated ... Read More

Difference between undefined, unspecified, and implementation-defined behavior in C and C++?

Abhinanda Shri

Abhinanda Shri

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

251 Views

Undefined behavior is simply behavior that is not defined by the C++ specification. For example, if you have multiple unary increment/decrement operations in an expression like i++ + ++i, they result in behavior that is not defined. This is simply due to the fact that some language constructs are syntactically ... Read More

What is an Ant build in Java?

Abhinanda Shri

Abhinanda Shri

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

501 Views

ANT stands for Another Neat Tool. It is a Java-based build tool from Apache.Ant is used to simplify the mundane tasks such as compiling the code, packaging the binaries, deploying the binaries to the test server, testing the changes, copying the code from one location to another etc. It is ... Read More

SAP Authorization concept and Authorization Objects, Object Class

Abhinanda Shri

Abhinanda Shri

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

1K+ Views

To clear the air all at once, SAP Authorization Objects and Object Class has nothing much in common from Object Oriented classes and objects and differ vastly from it.Authorization object details the current user’s privileges which are used to authorize user activities and data availability. The Authorization Object is the ... Read More

Decoding SAP text from STXL.CLUSTD table

Abhinanda Shri

Abhinanda Shri

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

806 Views

Accessing cluster tables in SAP is not recommended. If you set a direct access underlying database in SAP R/3 system, this option is not recommended as it will bypass all the security features in ERP system and open security threats the structural changes of the database. This also results in ... Read More

Where is VKORG stored in SAP

Abhinanda Shri

Abhinanda Shri

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

1K+ Views

Since VKORG is related to sales, it is stored in VBAK which is header table for all the sales order. It is a mandatory field on the table so it is mapped with order and stored with the order itself.You can get the description in the TVKOT table for more ... Read More

Advertisements