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
select sales Orders with BAPI Function BAPISDORDER_GETDETAILEDLIST
This simple ABAP program explain how to select Sales Order data with BAPI function BAPISDORDER_GETDETAILEDLIST :
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 :
ASP Hello World
Write "Hello World !" with ASP
JSON Object in JavaScript example
the following code creates JSON Object in JavaScript :
VBScript "Hello World !"
Write "Hello World !" with VBScript :