Abhinaya has Published 62 Articles

What is Bitwise XOR Assignment Operator (^=) in JavaScript?

Abhinaya

Abhinaya

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

196 Views

It performs XOR operation on the right operand with the left operand and assigns the result to the left operand.ExampleYou can try to run the following code to learn how to work with Bitwise XOR Assignment OperatorLive Demo                    var a ... Read More

Using BU, ZK code in SAP Macros

Abhinaya

Abhinaya

Updated on 16-Dec-2019 08:46:53

770 Views

OK CODE – In SAP, an OK code is used for any functionality. The OK code is used to perform an action executed or will be executed (save, back, exit) etc. BU – This OK function is used to perform SAVE function in an MM01 transaction.ZK – This code is used ... Read More

Calling SAP Web Service to get data in Flash dashboard

Abhinaya

Abhinaya

Updated on 10-Dec-2019 10:23:22

76 Views

You can also try hosting your Flash application on SAP box. Following approaches can be used:Using Transaction: SICF, you can change the default host’s default service to point to BSP application and then add crossdomain.xml file as MIME.You can also configure ICM to manage this and it sits between the ... Read More

What does the method removeLast() do in java?

Abhinaya

Abhinaya

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

52 Views

The removeLast() method of the java.util.LinkedList class removes and returns the last element of this list.Example:import java.util.*; public class LinkedListDemo {    public static void main(String[] args) {       LinkedList list = new LinkedList();       list.add("Hello");       list.add(2);       list.add("Chocolate");   ... Read More

How to iterate over a Java list?

Abhinaya

Abhinaya

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

11K+ Views

Often, you will want to cycle through the elements in a collection. For example, you might want to display each element.The easiest way to do this is to employ an iterator, which is an object that implements either the Iterator or the ListIterator interface.Iterator enables you to cycle through a ... Read More

Why the use of "using namespace std' considered bad practice?

Abhinaya

Abhinaya

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

396 Views

C++ has a standard library that contains common functionality you use in building your applications like containers, algorithms, etc. If names used by these were out in the open, for example, if they defined a queue class globally, you'd never be able to use the same name again without conflicts. ... Read More

I don’t want configuration information to be transferred with the database in SAP ABAP

Abhinaya

Abhinaya

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

72 Views

The straight answer to this is a big NO. This is one of the most common places of error in the SAP environment. When you create a clone of your production in the form of QA with most of the things as it is from production, you need to make ... Read More

Debugging an Asynchronous RFC in SAP ABAP

Abhinaya

Abhinaya

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

466 Views

In SAP system, an Asynchronous call (aRFC) of a remote-enabled function module specified in func using the RFC interface. The addition DESTINATION is used to specify a single destination in dest or use IN GROUP to specify a group of application servers. The latter supports parallel processing of multiple function ... Read More

Not able to access SOAP Manager in SAP server

Abhinaya

Abhinaya

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

66 Views

SAP server will not respond to request having IP but not the domain name. So you need to just add the domain to your host file. You can find the host files in host folder within drivers/etc folder. That should resolve your issue.

Difference between using - "standard table of", "Hashed table of", or simply "table of" in SAP ABAP

Abhinaya

Abhinaya

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

2K+ Views

“TYPE STANDARD TABLE OF “refers to the standard table. It refers to a normal internal table which can be accessed via table index or by key in case if you have a key defined over a table while sorting.“TYPE HASHED TABLE OF” refers to the generic hashed internal table. The ... Read More

Advertisements