Sharon Christine has Published 433 Articles

How to pull distinct values from an array in java?

Sharon Christine

Sharon Christine

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

862 Views

To pull distinct values in an array you need to compare each element of the array to all the remaining elements, in case of a match you got your duplicate element. One solution to do so you need to use two loops (nested) where the inner loop starts with i+1 ... Read More

Using table parameter in SAP RFC Function module

Sharon Christine

Sharon Christine

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

1K+ Views

RFC enabled function modules, you should use a structure as line type for the table.  You should declare a dictionary structure Z_MY_PARTS_DATA with a single field DESCRIPTION TYPE CGPL_TEXT2.Declare a data dictionary table type Z_MY_PARTS_TABLE using this structure.Next is to use the table type in Function module. Read More

What is the open/standardized file format for exporting invoices in SAP ERP System?

Sharon Christine

Sharon Christine

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

104 Views

SAP uses IDoc known as an intermediate document to exchange data between logical systems. If your system involves non-SAP systems as well, then IDoc can be used as a standard interface for data exchange between SAP and non-SAP systems.IDoc is a container for information exchange. IDoc is made by message ... Read More

Advertisements