Abhinanda Shri has Published 69 Articles

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

Abhinanda Shri

Abhinanda Shri

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

513 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

916 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

2K+ 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

2K+ 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

2K+ 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

Can anyone help me with Eclipse configuration for SAP HANA Cloud platform? Below is schema details:

Abhinanda Shri

Abhinanda Shri

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

158 Views

Note that Eclipse Neon is not compatible tih SAP HANA Cloud platform. Refer the below compatibility document: https://tools.hana.ondemand.com/#hanatools

Retrieving data from a table in SAP ABAP

Abhinanda Shri

Abhinanda Shri

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

3K+ Views

Usually, in ABAP you use OpenSql statements to retrieve the data. OpenSql statements are similar to normal SQL statements.In case you need to use the function module on a remote system, then you need to use remote function calls like RFC_READ_TABLE. It lets you query data on remote calls as ... Read More

Which is the best tutorial site to learn JavaScript?

Abhinanda Shri

Abhinanda Shri

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

215 Views

JavaScript is a dynamic computer programming language. It is lightweight and most commonly used as a part of web pages, whose implementations allow a client-side script to interact with the user and make dynamic pages. It is an interpreted programming language with object-oriented capabilities.To learn JavaScript, refer to the following ... Read More

How to create a generic array in java?

Abhinanda Shri

Abhinanda Shri

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

257 Views

No, we can’t create generic arrays in java.

Previous 1 ... 3 4 5 6 7
Advertisements