Recent Activity

    To make a field in material master changeable only by those individuals identified with the responsibility of changing its value

    Solution overview:  A new authorization group will be added with standard SAP functionality. This Authorization Group will be assigned and linked to the appropriate business user’s security roles.  The Authorization Group will be set up so that when ...

    How to Easy... Save Smartform in PDF File

    This is a simple routine to save your smartform into a PDF file:" Local VarsDATA: lc_fm_name      TYPE rs38l_fnam,      ls_control_par  TYPE ssfctrlop,      ls_job_output   TYPE ssfcrescl,      lc_file         TYPE string,      lt_lines        TYPE T...

    How to Easy... Load an HTML Page into Internal Table

    here is a simple code to load an HTML page into a internal table: " Local Vars DATA: lo_client  TYPE REF TO if_http_client,       lc_url     TYPE string,       lc_content TYPE string,       lt_html    TYPE TABLE OF string. " Set html page to load lc_...

    Get Started on Design Thinking - Register for Free Design Thinking E-Learning Course

    Design Thinking is a relatively new approach to solving problems. In a nutshell, Design Thinking is the ability to combine empathy for the context of a problem, creativity in the generation of insights and solutions, and rationality to analyze and fi...

    A word about CALL 'SYSTEM'

    When you google "ABAP CALL SYSTEM" you find a lot of entries that show code like the following:DATA: command(255),      BEGIN OF tabl OCCURS 0,        line(255),      END OF tabl.      command = '...'.CALL 'SYSTEM' ID 'COMMAND' FIELD command         ...

    Royalty Calculation

    *&---------------------------------------------------------------------**& Report  Z_COPA_ROYALTY*& Description : Royalty development*&---------------------------------------------------------------------**&* Program Basis for royalty calculation*&* ...

    farihakazi by Active Contributor
    • 1466 Views
    • 0 Comments
    • 0 Likes

    Production Variance

    *&---------------------------------------------------------------------**& Report  Z_COPA_PROD_VARIANCE*&*&---------------------------------------------------------------------**& Description : Product variance report*& Date : 29.01.2013*& Developer ...

    farihakazi by Active Contributor
    • 1625 Views
    • 1 Comments
    • 0 Likes

    Best-practice about Security Advisory concerning Kernel related notes 1785761 and 1800603

    Note 1800603 was updated by note 2074889 in November 2014.Topics:IntroductionSecurity ContactUpdate Kernel according to notes 1785761 and 1800603 / 2074889Mitigation, workaround, best-practice for Kernel updateRFC Security in generalMessage Server se...

    Simple program to download excel in MHTML format from internal table

    Simple program to download excel in MHTML format from internal table ( ex: can be used in case of downloading icons,subtotals, coloring etc ). This program is just a sample created for my purpose,please do further research as required. The below code...

    SAP Continues Disrupting Itself

    As you might know I’m an enterprise architect working for an ISV that is a special expertise partner of SAP in insurance. For our business reliability and dependability is as important as innovation. We believe that HANA is a cornerstone for our IT s...

    ttrapp by SAP Mentor
    • 4163 Views
    • 13 Comments
    • 16 Likes

    Get Data From Two Tables in a report.

    here is a very simple example of getting data from two table in a report.*&---------------------------------------------------------------------**& Report  ZFIRAPJPSLEDGER2                                            **&                               ...

    Full-length message class and number information in Purchasing BAPIs return structure BAPIRETURN

    Sometimes when we use BAPI that has return structure type BAPIRETURN we get incomplete message information in field BAPIRETURN-CODEIt happens if the length of message class greater than 2For example if BAPI returns message 020 of message class MEPO t...