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
Load image into abap internal table
The following code load image file into abap internal table :
Finding Character Strings in ABAP
To search a character field for a particular pattern, use the SEARCH statement as follows:
SEARCH <c> FOR <str> <options>.
The statement searches the field <c> for <str> starting at position <n1>. If successful, the return code value of SY-SUBRC is set to 0 and SY-FDPOS is set to the offset of the string in the field <c>. Otherwise, SY-SUBRC is set to 4.
The search string <str> can have one of the following forms.
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 Delivery with BAPI Function
Create Delivery with BAPI Function :
JSON Object in JavaScript example
the following code creates JSON Object in JavaScript :