Home
Welcome to www.developerpages.gr
Place for professionals or hobbyists Developers. You can read technical articles for many programming languages, you can post your own articles, comment on solutions to several issues given by other developers to participate in our discussions, to ask your own questions and get answers from professionals.
Create your own account and enter in our community, learn, find solutions and give your own opinion about programming.
Random Articles
Download Documents and images for Sap CRM
Download product documents ( images, pdf, etc.. ) from Sap Crm with the following ABAP Code :
Java Simple While Loop
Simple While Loop example in Java :
Create xml file (sales orders) with abap
Simple code for create xml file with Sap Sales Orders :
xml file :
<?xml version="1.0"?>
<Orders>
<Order>
<order_num>0000000001</order_num>
<date>20121025</date>
<customer_code>0000000003</customer_code>
<customer_name>Customer Name</customer_name>
<Items>
<Item>
<matnr>000000000001000001</matnr>
<quantity>1.000 </quantity>
<amount>10.85 </amount>
</Item>
</Items>
</Order>
</Orders>
Abap Program :
Create Sales Order with BAPI Function
Create sales Order in SAP R/3 with BAPI funcion :
How to get List of Java Threads
The following code returns a list of Java Threads :