Writing sign left by the amount with function

User Rating:  / 6

Write the sign left by amount using function  CLOI_PUT_SIGN_IN_FRONT

simple example: 

select sales Orders with BAPI Function BAPISDORDER_GETDETAILEDLIST

User Rating:  / 0

This simple ABAP program explain how to select Sales Order data with BAPI function BAPISDORDER_GETDETAILEDLIST :

Create xml file (sales orders) with abap

User Rating:  / 16

Simple code for create xml file with Sap Sales Orders :

xml file :

View source
<?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 abap internal table dynamically

User Rating:  / 3

Then following simple program creates abap internel table dynamicaly , select 2 rows of any database table and display data to screen : 

Call web service in ABAP

User Rating:  / 4

The following ABAP program call a web service :

calculate working days between two dates with abap

User Rating:  / 8

The following program calculates working days between two dates :

Submit abap program and gets output from memory

User Rating:  / 0

The following program runs an abap program and gets the output list from memory into internal table :

Execute operating system commands with abap

User Rating:  / 0

The following example explain how to execute operating system commands with abap statements :

Parse xml file with ABAP

User Rating:  / 7

Parse xml with abap using standard SAP classes and methonds: 

Read first : Read utf-8 xml file with abap

and here the example program : 

Read utf-8 xml file with abap

User Rating:  / 1

Read utf-8 xml file and store it in string variable :

   

Login  

   
   

     

© Developerpages