Nikitha N has Published 73 Articles

How to convert a list collection into a dictionary in Java?

Nikitha N

Nikitha N

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

2K+ Views

Following is an example to convert a list collection into a dictionary in Java.Example Live Demoimport java.util.ArrayList; import java.util.Dictionary; import java.util.Hashtable; public class CollectionDictionary {    public static void main(String[] args) {       ArrayList list = new ArrayList();       list.add("JavaFx");       list.add("Java");     ... Read More

Error while creating a PO in SAP system from a .NET application

Nikitha N

Nikitha N

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

255 Views

Below is the correct sequence to invoke Function Module for automatic OP generation:ME_REFRESH_PO onceME_CREATE_PO_HEADER onceME_CREATE_PO_ITEM n timesME_POST_PO onceIn case you don’t follow this sequence, it may result in data inconsistencies.

Customizing SAP ERP industry specific

Nikitha N

Nikitha N

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

343 Views

SAP provides a lot of offerings which are industry specifics and can be altered/ modified within limits to serve the purpose. Offerings include industries ranging from Sales, HR, Plant maintenance and others. One can customize the existing system to serve the needs but the customization is not extensive and basically ... Read More

Previous 1 ... 4 5 6 7 8
Advertisements