Αναζήτηση

Monday, December 9, 2013

Open and display pdf file with SAP ABAP

The following ABAP Program open PDF file and display into SAP Screen :

Wednesday, April 10, 2013

Top rated articles module for joomla core rating system


This Joomla module displays "Top Rated Articles" for joomla 2.5 core rating system

Features :

  • Select categories 
  • Choice your own star icons  
  • Display star icons from template or default installation icons
  • Display intro text ( if selected )
  • Select your style for module
  • SEO - Friedly Links
  • Supports Multilingual Systems

Thursday, March 7, 2013

How to create a module for Joomla 2.5


We can create our own module for Joomla 2.5 CMS by writing our own code we follow the following procedure:
1. Decide a name. All modules start with mod_
   ( e.g : mod_mymodule )
2. create a directory (eg mod_mymodule) the following files:
    index.html
    helper.php
    mod_mymodule.xml

Wednesday, February 6, 2013

Installing Joomla! CMS on Windows PC


One of the most popular Content Management Systems (CMS) is the open source Joomla!.
To Joomla is written in PHP and uses a MySQL database
We show in simple steps how to do an installation in Joomla wampserver we have installed on our computer or a server
H wampserver installation procedure described here
The procedure is described as follows:
1. Downloads the latest (stable) version of joomla.
2. Create a directory under c:\ wamp\ www\
   (Eg c:\wamp\www\myjoomla)

Installing Web Server (wamp) on PC for web application development


Before getting Hosting, domain names, etc., it would be good to create an integrated development environment to our computer to develop our applications, we do our tests, and the application will be ready to publish on Internet, which has a monetary cost.
    Depending on the programming language and environment that we decide to use will need to install on your PC and the corresponding Web Server together with the need for the language and the database will use.
Because the configuration to work together (WebServer, programming language, database) are somewhat complicated process we would find a peketo where has it all together is customized and installing to get ready environment and deal only with the our application.
Such a package that combines apache Web Server with PHP Language and MySQL DataBase is Wampserver
Follow these steps:

Wednesday, January 30, 2013

Insert SAP CRM Product Relations with BAPI Fuction

The following simple code inserts SAP CRM Product Relations ( using BAPI Function ) :


Tuesday, January 29, 2013

Replace in ABAP Strings


Pattern-based replacement
1. REPLACE [{FIRST OCCURRENCE}|{ALL OCCURRENCES} OF]
pattern
IN [section_of] dobj WITH new
[IN {BYTE|CHARACTER} MODE]
[{RESPECTING|IGNORING} CASE]
[REPLACEMENT COUNT rcnt]
{ {[REPLACEMENT OFFSET roff]
[REPLACEMENT LENGTH rlen]}
| [RESULTS result_tab|result_wa] }.
Position-based replacement
2. REPLACE SECTION [OFFSET off] [LENGTH len] OF dobj WITH new
[IN {BYTE|CHARACTER} MODE].

Thursday, January 17, 2013

Load budget in FM with BAPI_0050_CREATE


Load budget data in SAP FM with function  BAPI_0050_CREATE from text file :
  

Monday, December 17, 2012

create simple ABAP class into abap program


The simple ABAP program writes to screen from simple ABAP class method:


program ztest_class.

*--------------------------------------------------------------------
*  www.developerpages.gr
*--------------------------------------------------------------------

class myfirstclass DEFINITION FINAL.
  PUBLIC SECTION.
    methods hello_world.
ENDCLASS.

CLASS myfirstclass implementation.
  METHOD hello_world.
    write :/ 'Hello world from simple ABAP class !'.
  ENDMETHOD.

ENDCLASS.