SAP Certification,Ebooks, PDF's and ArticlesSAP Certification,Ebooks, PDF's and ArticlesDownload Certification Material on all SAP Modules ABAP Code Ebooks Downloads PDF Articles. Articles
ABAP OO Syntax
2008-01-02 23:01:00 Template for making a class Delete the parts that should not be used ***************************************** ** Definition part************************************* ***** CLASS xxx DEFINITION. *—————&mdas h;————* Public section*————&mdas h;—————PUBL IC SECTION. TYPES: DATA: *Static data CLASS-DATA: *Methods METHODS: *Using the constructor to initialize parameters constructorIMPORTING xxx type yyy, *Method with parameters mm1 IMPORTING iiiTYPE ttt. *Method without parameters mm2. *Static methods CLASS-METHODS: *—————&mdas h;—————&mda sh;—————** Protected section. Also accessable by subclasses*————&m dash;—————& mdash;————— —PROTECTED SECTION. *—————&mdas h;———... More About: Syntax
Automatic default the Purchase Order Text
2008-01-02 23:01:00 a) The work item cannot be used to notify several users.Mails can be routed to several users, just like work items. When a mail is sent, and one recipient reads and deletes the mail, all other recipients will still have access to their own copy in their own inbox. However, when a work item is processed by one of the recipients it will automatically disappear from all the other inboxes. So you can see that a work item is unsuitable for notifying several users. It is also worth noting that a mail can be forwarded in many different ways (fax, internet…) whereas the work item cannot. b) The work item holds up the workflowWhen the workflow sends a mail (usually as a background step) it continues with the process immediately after transmitting the mail. When a work item is generated, the workflow will not continue until the work item has been processed. This slows down the process. Occasionally this is what is intended (using the work item as an approval step without the abilit... More About: Automatic , Text , Order , Purchase , Hase
Sending XLS file as a mail via SAPCONNECT
2008-01-02 22:01:00 &—————& mdash;————— —————&mdash ;—————&mdas h;* *& Report ZEMAIL_ATTACH * *&————— —————&mdash ;—————&mdas h;—————&mda sh;* *& Example of sending external email via SAPCONNECT * *&————— —————&mdash ;—————&mdas h;—————&mda sh;* REPORT ZEMAIL_ATTACH . TABLES: ekko. PARAMETERS: p_email TYPE somlreci1-receiver DEFAULT ‘ test@here.comThis e-mail address is being protected from spam bots, you need JavaScript enabled to view it ‘. TYPES: BEGIN OF t_ekpo, ebeln TYPE ekpo-ebeln, ebelp TYPE ekpo-ebelp, aedat TYPE ekpo-aedat, matnr TYPE ekpo-matnr, END OF t_ekpo. DATA: it_ekpo TYPE STANDARD TABLE OF t_ekpo INITIAL SIZE ... More About: Mail , File , Sending
Calling a Business Add-In in your Program
2008-01-02 22:01:00 When you define a Business Add-In, enhancement management generates a class that implements your interface. The application developer uses a factory method to create an instance of this adapter class in the application program and calls the corresponding method, if necessary.The adapter class method generated by add-in management decides whether one or several active implementations should be called. If necessary, these implementations are subsequently executed. The application program ensures only that the adapter class method is called. The application program does not know which implementations are called. Example: Having created a string conversion Business Add-In, you would program the call of the Business Add-In into your ABAP source code as follows: 1 Report businessaddin.2 class cl_exithandler definition load. “Declaration3 data exit type ref to if_ex_businessaddin. “Interface reference4 data word(15) type c value ‘Business Add-in’. “String ... More About: Calling , Program
sap BAdI - Business Add-Ins
2008-01-02 22:01:00 Business add-ins are enhancements to the standard version of the system. They can be inserted into the SAP System to accommodate user requirements too specific to be included in the standard delivery. Since specific industries often require special functions, SAP allows you to predefine these points in your software. As with customer exits, two different views are available: · In the definition view, an application programmer defines exit points in a source that allow specific industry sectors, partners, and customers to attach additional coding to standard SAP source code without having to modify the original object. · In the implementation view, the users of Business Add-Ins can customize the logic they need or use a standard solution if one is available. In contrast to customer exits, Business Add-Ins no longer assume a two-level infrastructure (SAP and customer solutions), but instead allow for a multi-level system landscape (SAP, country-specific versions, industry solutio... More About: Business
ABAP OO Example
2008-01-02 22:01:00 Define, implement and use simple class ***INCLUDE ZBC404_HF_LCL_AIRPLANE . ***************************************** ** Definition part************************************* *****CLASS lcl_airplane DEFINITION. *—————&mdas h;————* Public section*————&mdas h;—————PUBL IC SECTION. TYPES: t_name(25) TYPE c. METHODS: constructor, set_attributes IMPORTING p_nameTYPE t_name p_planetypeTYPE saplane-planetype, display_attributes, display_n_o_airplanes. *—————&mdas h;————* Private section*————&mdas h;—————PRIV ATE SECTION. *Private attributes DATA: name(25) TYPE c, planetype TYPE saplane-planetype. *Private static attribute CLASS-DATA n_o_airplanes TYPE i. ENDCLASS. ***************************************** ** Implementation part************************************* ***** CLASS lcl_airpla...
OK SAPpers, who wants to be a Twit(terer)?
2008-01-02 21:01:00 Would you engage with Twit ter - more to the point, would you build apps on top of it? To me Twitter has massive potential for the enterprise but am I dreaming? More: continued here
sap Business Add-Ins: Import Procedure
2008-01-02 21:01:00 Conflicts can occur at release upgrade or when transporting a Business Add-In within a system infrastructure containing multiple levels (country versions, industry solutions, partners, etc.). Possible collisions include:Case 1 : Multiple active implementations exist for Business Add-Ins that have not been designed for multiple use (for the same filter value, if add-in is filter-dependent).Case 2 : Identical interfaces were assigned during Business Add-In definition.Case 3 : Identical function codes were assigned during Business Add-In definition.Whenever such collisions occur, corresponding error messages and warnings are created in the transport log at import. Their long texts provide you with information on how to proceed. If the collision described in case 1 occurs in your system, proceed as follows 1. Choose Utilities -> Adjustment -> Multiple active implementations (in transaction SE18).A list appears displaying your Business Add-Ins. A red traffic light indicates that multiple... More About: Import
APO Macro Debugging
2008-01-02 17:01:00 Smarter way to debug APO Macro s. More: continued here More About: Debugging
Happy Fourth Anniversary, Mars Rovers!
2008-01-02 17:01:00 On January 3, 2004, the 2nd Mars Rover touched down and began operation. Several days later, the 3rd Rover touched down. It’s been FOUR EARTH YEARS and both Spirit and Opportunity are still running. What does this mean to a technologist? More: continued here More About: Anniversary , Happy
Music Composition Environment
2008-01-02 11:01:00 Use open source apis to expand your Composition Environment implementation. Get capabilities of Music Sampler, Sequencer, Mixer and Composition Framework ready to use inside your Composition Environment. More: continued here Powered by SmartRSS More About: Music Composition
MDM Java API 2 an introductive series part IV
2008-01-02 11:01:00 This is the fourth part of my series about the MDM Java API 2 and will introduce you to some basics of MDM and its structure.After that I will show you an example search. More: continued here More About: Series , Part
Software development trends in 2008: Outsourcing, agile development
2008-01-02 10:01:00 Outsourcing and the spread of agile software development will affect many in IT in 2008. In light of that, software testers and requirements engineers will need to find their places in this environment. More: continued here More About: Software , Outsourcing , Software Development , Trends , Development
SOA, BPM drive data modeling interest
2008-01-02 10:01:00 Data modeling is not a new concept, but trends such as SOA and business process modeling (BPM) have highlighted its importance once again. More: continued here More About: Drive , Data , Modeling , Interest , Eres
CDI/MDM market trends and expert forecasts for 2008
2008-01-02 09:01:00 The customer data integration and master data management market continued to mature in 2007. Industry experts weigh in with what to expect in 2008 . More: continued here More About: Market , Trends , Market trends , Expert
2007 a year in review
2008-01-02 08:01:00 With 2008 fresh and before we all get ramped up and into full gear, I wanted to take a moment to think back over 2007. More: continued here More About: Review , Year , Year in Review
Share User-Defined Functions in Message Mappings of PI 7.1
2008-01-02 08:01:00 In PI 7.0 and XI 3.0, one of the most often requested features (or complaints) is the capability (or lack of) to share user-defined functions (UDFs) across multiple message mappings. As a result, we often had to duplicate the code of frequently used UDFs to multiple message mappings. This feature is now available with PI 7.1. The only restriction is that the library containing the UDFs has to be in the same Software Component Version (SWCV) as the message mapping. Therefore, if we wish to share the library in more than 1 SWCV, then we will need to create dependencies in the System Landscape Directory (SLD). In this blog, I will discuss how to created and use UDFs that can be shared with multiple message mappings. More: continued here More About: Functions , Message , User , Share , Defined
Import SQL Table’s Metadata in PI 7.1
2008-01-02 08:01:00 In PI 7.0 and XI 3.0, we have been able to import the metadata from RFCs and IDOCs from SAP. Many times, we wish we can also import metadata from SQL tables we wish to access also. This will eliminate a lot of typing and typo-mistakes. This feature is now available with PI 7.1. The only requirement is that we have to have a JDBC receiver communication channel. More: continued here More About: Table , Import , Metadata
Steps to Create Commission for Agent in sap sd
2008-01-01 23:01:00 Steps to Create Commission for Agent in sap sd More: continued here More About: Steps , Missi
sap sd Billing Spilt by Item Category
2008-01-01 23:01:00 sap sd Billing Spilt by Item Category More: continued here
Billing cannot be Release to Accounting in sap sd
2008-01-01 23:01:00 Billing cannot be Release to Accounting in sap sd More: continued here More About: Billing
SAP Customizing Picking Output
2008-01-01 23:01:00 SAP Customizing Picking Output More: continued here
Prepaid process possible in sap sd
2008-01-01 23:01:00 Prepaid process possible in sap sd More: continued here More About: Prepaid , Process , Prep
Default Start Variant for VF04 in sap sd
2008-01-01 22:01:00 Default Start Variant for VF04 in sap sd More: continued here
sap sd Customer discounts on effort only
2008-01-01 22:01:00 sap sd Customer discounts on effort only More: continued here More About: Discounts
Settlement Down payment with Installment payment Term (Scenario) in sap sd
2008-01-01 22:01:00 Settlement Down payment with Installment payment Term (Scenario ) in sap sd More: continued here More About: Payment , Settlement
Sending a billing document by e-mail in sap sd
2008-01-01 22:01:00 Sending a billing document by e-mail in sap sd More: continued here More About: Mail , E-Mail , Document , Billing , Sending
Billing Plan for Milestone Billing in sap sd
2008-01-01 21:01:00 Billing Plan for Milestone Billing in sap sd More: continued here Powered by SmartRSS More About: Billing
Free Download SAP ABAP IDOC Interface Technology Programming Guide pdf book
2007-12-31 06:12:00 Download here More: continued here More About: Programming , Technology , Download , Free , Book
Free Download SAP ABAP IDOC Interface Technology Programming Guide pdf book
More articles from this author:2007-12-31 06:12:00 Download here More: continued here More About: Programming , Technology , Download , Free , Book 1, 2, 3, 4, 5, 6, 7 |



