What are the standard functions in XI ?

What are the standard functions in XI ?

Hi,
The target field mapping is possible by using below typs of functions
1. Standard functions
2. Runtime procedure
3. User Defined functions
Standard functions are the APIs provided in Graphical mapping to process the values of the fields used for target field mapping.
Technically all these values are trated as string thus all standard functions expect strings as input argument and string as an export aurgument
Please find here with you more details about it at below link
http://help.sap.com/saphelp_nw04/helpdata/en/43/c4cdfc334824478090739c04c4a249/frameset.htm
2. Runtime procedure
http://help.sap.com/saphelp_nw04/helpdata/en/3d/24e15bf9d79243b45d49b13b03de8f/content.htm
3. User Defined functions
http://help.sap.com/saphelp_nw04/helpdata/en/22/e127f28b572243b4324879c6bf05a0/content.htm
Thanks
Swarup

Similar Messages

  • What are the standard Solutions available for Complaints Management in CRM?

    Dear all,
    What are the standard solutions available in SAP CRM to receive and process complaints through Customer Interaction Center.
    Our requirement is to receive and register complaints from contact center and process them by integrating back end ECC and BIW systems.
    As per my understanding we can not integrate ECC transactions in CASE Management while CASES are being created through Interaction Center.
    Please help me to map the following requirement successfully into SAP.
    How to register the complaint through Interaction Center?
    How this complaint information is communicated in back end ECC system?
    How to track the status and solution of the complaint available in back end ECC system?
    How the complaints are stored in ECC system?
    After creation of a complaint, can we trigger an automatic email on back end ECC system user with all complaint relevant data?
    Kindly help me to understand the process.
    Best regards,
    Raghu ram.

    You can analyse this [link |http://help.sap.com/saphelp_crm60/helpdata/en/68/691976cd2ef845a4e62437a82b67df/frameset.htm]for more information. Additionaly the tree hierarchy links contain some process flows where it explains you briefly the big picture of the process, in standard SAP CRM Complaint Manaagement Scenario.
    BR,
    Cenk Sezgin

  • What are the standard IDOC's available in IDES? where can i see in IDES?

    Dear All,
    Can any body let me know what are the standard IDOC's available in IDES? What is the path for the same?
    Thanks in advance for replies
    regards
    srikanth

    Hi,
    IDOCs are intermediatery Documents, we can check for IDOCS using Tcode
    WE01 : Create IDOC
    WE02 : Display IDOC
    WE19 : Reprocess IDOC
    etc
    Thanks
    Kalyan

  • What are the different functions used in sap script?

    Hi,
    What are the different functions used in sap script? What are the parameters used in each Function?
    Regards,
    Mahesh

    he print program is used to print forms. The program retieves the necesary data from datbase tables, defines the order of in which text elements are printed, chooses a form for printing and selects an output device and print options.
    Function modules in a printprogram:
    When you print a form you must used the staments OPEN_FORM and CLOSE_FORM. To combine forms into a single spool request use START_FORM and END_FORM.
    To print textelements in a form use WRITE_FORM. The order in which the textelements are printed, is determined by the order of the WRITE_FORM statements. Note: for printing lines in the body, you can also use the WRITE_FORM_LINES function module.
    To transfer control command to a form use CONTROL_FORM.
    Structure of a print program
    Read data
    Tables: xxx.
    SELECT *
    FROM xxx.
    Open form printing - Must be called before working with any of the other form function modules.
    Must be ended with function module CLOSE FORM
    call function 'OPEN_FORM'.....
    To begin several indentical forms containing different data within a single spool request, begin each form using START_FORM, and end it using END_FORM
    call funtion 'START_FORM'.....
    Write text elements to a window of the form
    call function 'WRITE_FORM'.....
    Ends spool request started with START_FORM
    call funtion 'END_FORM'.....
    Closes form printing
    call function 'CLOSE_FORM'...
    OPEN_FORM function
    Syntax:
    CALL FUNCTION 'OPEN_FORM'
    EXPORTING
      APPLICATION                       = 'TX'
      ARCHIVE_INDEX                     =
      ARCHIVE_PARAMS                    =
      DEVICE                            = 'PRINTER'
      DIALOG                            = 'X'
      FORM                              = ' '
      LANGUAGE                          = SY-LANGU
      OPTIONS                           =
      MAIL_SENDER                       =
      MAIL_RECIPIENT                    =
      MAIL_APPL_OBJECT                  =
      RAW_DATA_INTERFACE                = '*'
    IMPORTING
      LANGUAGE                          =
      NEW_ARCHIVE_PARAMS                =
      RESULT                            =
    EXCEPTIONS
      CANCELED                          = 1
      DEVICE                            = 2
      FORM                              = 3
      OPTIONS                           = 4
      UNCLOSED                          = 5
      MAIL_OPTIONS                      = 6
      ARCHIVE_ERROR                     = 7
      INVALID_FAX_NUMBER                = 8
      MORE_PARAMS_NEEDED_IN_BATCH       = 9
      SPOOL_ERROR                       = 10
      OTHERS                            = 11
    IF sy-subrc <> 0.
    MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
            WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
    ENDIF.
    Some important parameters:
    FORM      Name of the form
    DEVICE      
    PRINTER : Print output using spool
    TELEFAX: Fax output
    SCREEN: Output to screen
    OPTIONS      Used to control attrubutes for printing or faxing (Number of copies, immediate output....
    The input for the parameter is structure ITCPO.
    CLOSE_FORM function
    CALL FUNCTION 'CLOSE_FORM'
    IMPORTING
      RESULT                         =
      RDI_RESULT                     =
    TABLES
      OTFDATA                        =
    EXCEPTIONS
      UNOPENED                       = 1
      BAD_PAGEFORMAT_FOR_PRINT       = 2
      SEND_ERROR                     = 3
      SPOOL_ERROR                    = 4
      OTHERS                         = 5
    IF sy-subrc <> 0.
    MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
            WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
    ENDIF.
    Paramerters:
    RESULT      Returns status information and print/fax parameters after the form has been printed. RESULT is of structure ITCPP.
    WRITE_FORM function
    CALL FUNCTION 'WRITE_FORM'
    EXPORTING
      ELEMENT                        = ' '
      FUNCTION                       = 'SET'
      TYPE                           = 'BODY'
      WINDOW                         = 'MAIN'
    IMPORTING
      PENDING_LINES                  =
    EXCEPTIONS
      ELEMENT                        = 1
      FUNCTION                       = 2
      TYPE                           = 3
      UNOPENED                       = 4
      UNSTARTED                      = 5
      WINDOW                         = 6
      BAD_PAGEFORMAT_FOR_PRINT       = 7
      SPOOL_ERROR                    = 8
      OTHERS                         = 9
    IF sy-subrc <> 0.
    MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
            WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
    ENDIF.
    Some important parameters:
    ELEMENT      Specifies which textelement is printed
    WINDOW      Specifies which window is printed
    TYPE      Specifies the output area of the main window. This can be:
    TOP - Used for headers
    BODY
    BOTTOM - Used for footers
    FUNCTION      Specifies whether text is to be appended, replaced or added
    Example of how to use the WRITE_FORM function module together with a script.
    Form layout of the MAIN window
    /E INTRODUCTION
    Dear Customer
    /E ITEM_HEADER
    IH Carrier, Departure
    /E ITEM_LINE
    IL &SBOOK-CARRID&, &SPFLI-DEPTIME&
    /E CLOSING_REMARK
    The print program
    Writing INTRODUCTION
    CALL FUNCTION 'WRITE_FORM'
         EXPORTING
              ELEMENT                  = 'INTRODUCTION'
              FUNCTION                 = 'SET'
              TYPE                     = 'BODY'
              WINDOW                   = 'MAIN'
        EXCEPTIONS
             OTHERS                   = 8
    Writing ITEM_HEADER
    CALL FUNCTION 'WRITE_FORM'
         EXPORTING
              ELEMENT                  = 'ITEM_HEADER'
              FUNCTION                 = 'SET'
              TYPE                     = 'BODY'
              WINDOW                   = 'MAIN'
        EXCEPTIONS
             OTHERS                   = 8
    Set ITEM_HEADER into TOP area of main window for subsequent pages
    CALL FUNCTION 'WRITE_FORM'
         EXPORTING
              ELEMENT                  = 'ITEM_HEADER'
              FUNCTION                 = 'SET'
              TYPE                     = 'TOP'
              WINDOW                   = 'MAIN'
        EXCEPTIONS
             OTHERS                   = 8
    Write ITEM_LINE
    LOOP AT .....
       CALL FUNCTION 'WRITE_FORM'
            EXPORTING
                 ELEMENT               = 'ITEM_LINE'
                 FUNCTION              = 'SET'
                 TYPE                  = 'BODY'
                 WINDOW                = 'MAIN'
           EXCEPTIONS
                OTHERS                 = 8.
    ENDLOOP.
    Delete ITEM_HEADER from TOP area of main window
    CALL FUNCTION 'WRITE_FORM'
         EXPORTING
              ELEMENT                  = 'ITEM_HEADER'
              FUNCTION                 = 'DELETE'
              TYPE                     = 'TOP'
              WINDOW                   = 'MAIN'
        EXCEPTIONS
             OTHERS                    = 8
    Print CLOSING_REMARK
    CALL FUNCTION 'WRITE_FORM'
         EXPORTING
              ELEMENT                  = 'CLOSING_REMARK'
              FUNCTION                 = 'SET'
              TYPE                          = 'BODY'
              WINDOW                   = 'MAIN'
        EXCEPTIONS
             OTHERS                    = 8
    START_FORM function
    CALL FUNCTION 'START_FORM'
    EXPORTING
      ARCHIVE_INDEX          =
      FORM                   = ' '
      LANGUAGE               = ' '
      STARTPAGE              = ' '
      PROGRAM                = ' '
      MAIL_APPL_OBJECT       =
    IMPORTING
      LANGUAGE               =
    EXCEPTIONS
      FORM                   = 1
      FORMAT                 = 2
      UNENDED                = 3
      UNOPENED               = 4
      UNUSED                 = 5
      SPOOL_ERROR            = 6
      OTHERS                 = 7
    IF sy-subrc <> 0.
    MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
            WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
    ENDIF.
    END_FORM function
    CALL FUNCTION 'END_FORM'
    IMPORTING
      RESULT                         =
    EXCEPTIONS
      UNOPENED                       = 1
      BAD_PAGEFORMAT_FOR_PRINT       = 2
      SPOOL_ERROR                    = 3
      OTHERS                         = 4
    IF sy-subrc <> 0.
    MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
            WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
    ENDIF.
    CONTROL_FORM function
    The CONTROL_FORM function module alows you to create SapScript control statements from within an APAB program.
    Syntax:
    CALL FUNCTION 'CONTROL_FORM'
      EXPORTING
        command         =
    EXCEPTIONS
      UNOPENED        = 1
      UNSTARTED       = 2
      OTHERS          = 3
    IF sy-subrc <> 0.
    MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
            WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
    ENDIF.
    Example:
    Protecting the text element ITEM_LINE
    CALL FUNCTION 'CONTROL_FORM'
      EXPORTING
        COMMAND = 'PROTECT'.
    CALL FUNCTION 'WRITE_FORM'
      EXPORTING
        TEXELEMENT = 'ITEM_LINE'.
    CALL FUNCTION 'CONTROL_FORM'
      EXPORTING
        COMMAND = 'ENDPROTECT'.

  • What are the standard Application tool bars used in reports

    Hi All,
    What are the standard application tool bars used in the report/program?
    Thanks in advance
    Regards
    Chakri

    Hi,
    Goto SE41,
    Programs : SAPLKKBL
    Status : STANDARD
    Thanks,
    Best regards,
    Prashant

  • For Delivery Performance what are the standard report available n SAP?

    For Delivery Performance what are the standard report available n SAP?

    hi
    If you wanna know the SD report just go to SAP1 transaction code from easy access( it works only from easy access) and you will find entire reports available in SAP. Then select what is relevant to you. And as you asked any material on reports, so I have some good material on it and will surely send you tonight.
    And Some of the Standard reports in SD are given below check it out for convenient however always better to chek above told transaction code:
    Sales summary - VC/2
    Display Customer Hierarchy - VDH2
    Display Condition record report - V/I6
    Pricing Report - V/LD
    Create Net Price List - V_NL
    List customer material info - VD59
    List of sales order - VA05
    List of Billing documents - VF05
    Inquiries list - VA15
    Quotation List - VA25
    Incomplete Sales orders - V.02
    Backorders - V.15
    Outbound Delivery Monitor - VL06o
    Incomplete delivery - V_UC
    Customer Returns-Analysis - MC+A
    Customer Analysis- Sales - MC+E
    Customer Analysis- Cr. Memo - MC+I
    Deliveries-Due list - VL04
    Billing due list - VF04
    Incomplete Billing documents - MCV9
    Customer Analysis-Basic List - MCTA
    Material Analysis(SIS) - MCTC
    Sales org analysis - MCTE
    Sales org analysis-Invoiced sales - MC+2
    Material Analysis-Incoming orders - MC(E
    General- List of Outbound deliveries - VL06f
    Material Returns-Analysis - MC+M
    Material Analysis- Invoiced Sales - MC+Q
    Variant configuration Analysis - MC(B
    Sales org analysis-Incoming orders - MC(I
    Sales org analysis-Returns - MC+Y
    Sales office Analysis- Invoiced Sales - MC-E
    Sales office Analysis- Returns - MC-A
    Shipping point Analysis - MC(U
    Shipping point Analysis-Returns - MC-O
    Blocked orders - V.14
    Order Within time period - SD01
    Duplicate Sales orders in period - SDD1
    Display Delivery Changes - VL22
    These are all main standard reports as well I am again repeating that it's better to check all reports from above said transaction code.

  • What are the control functions of Suitability and setup type key in work center?

    Hi all,
    Can any1 plz tell me what is suitability and setup type key in workcenter default values tab?
    what are the functions controlled by these keys?

    Hello,
    Control Key in Defaut value keys screen is mainly for defining how the work center will be used in routings.
    Almost in all the PP we define same Control key to the work center as well in the routing.
    For example in work center control Key PP01 is used to define Routings/Internal proc. activities. When we go to the routing screen even if we do not see our components, work centers or control key we have to manually enter these details ans here control Key will remain the same as it was in Work center.
    No. of individual capacity defines how many machines are there of the same type in the work center. E.g if I have 5 CNC machines then I will make One work center and in capacity screen I will put 5 as No. of individual Capacity.
    Regards,
    Piyush

  • What are the standard bex analyzer reports available?

    hi all
    what are all the std reports available for fico? sd and mm?
    thanxs in advance
    regds
    hari

    Hi,
    This is the best way...and the simplest way....since it is a big question....just go Business content tab in RSA1 and there go to "query elements" option and cick on the option "select objects" this will give you all the standata BW queris based on all the BC cubes and it will not show self developed queries in you system.
    So fo MM reports go to...Infoarea "Supply Chain Management"-> "Inventory Management"....here you will see all the cubes related to MM and the reports nased on that.
    for FICO go to Infoarea FMCO Financial management and controlling.........
    Similarly you can find for SD.
    If you want to find the detailed information about all the queries .....you will have to search the help.sap.com witth the same name of the cubes and you will get various links explaining that.
    Thanks

  • What are the standard SAP reports in PP ?

    Hi PP Guru's,
    Please explain me the standard Reports available in PP with Tcode and  give me
    how to configure for the customer requirements incase if demanded by them a
    change is reqd? pl give few of them
    Thanx & regards,
    Vimalbalaji

    MATERIAL
    CREATE-GENERAL       MM01       IMMEDIETELY
                         MM11       SCHEDULE
    CHANGE               MM02       IMMEDIETELY
                         MM12       SCHEDULE
                         MM13       ACTIVATE
    FLAG FOR DELETION    MM06       IMMEDIETELY
                         MM16       SCHEDULE
    DISPLAY              MM03       DISPLAY CURRENT
                         MM19       DISPLAY AT KEY DATE
    DISPLAY CHANGES      MM04       ACTIVE CHANGES
                         MM14       SCHEDULE CHANGES
                         MM17       MASS MAINTENANCE
                         MMAM       CHANGE MATERIAL TYPE
    OTHER                MMBE       STOCK OVERVIEW
                         MMPV       CLOSE PERIOD
                         MMRV       ALLOW POSTING TO
                                    PREVIOUS PERIOD
                         MM50       INSTANT MATERIAL VIEW
                         MMSC       ENTER STORAGE LOCATIONS
                         MM60       MATERIAL LIST
    ARCHIVING(MATERIAL)  MM71       ARCHIVE/DELETE
                         MM72       DISPLAY ARCHIVE
    BILL OF MATERIAL (MATERIAL BOM)
                         CS01       CREATE
                         CS02       CHANGE
                         CS03       DISPLAY
    EXTRAS               CS28       ARCHIVING
                         CS20       MASS CHANGES
    EVALUATION/BOM       CS11       BOM MULTILEVEL
    EXPLOSION/MATERIAL   CS12       STRUCTURE MULTILEVEL
    BOM                  CS13       SUMMURISED BOM
    WORK CENTRES
                         CR01       CREATE
                         CR02       CHANGE
                         CR03       DISPLAY
                         CA85       REPLACE
    CAPACITY             CR11       CREATE
                         CR12       CHANGE
                         CR13       DISPLAY
    HIERARCHY            CR21       CREATE
                         CR22       CHANGE
                         CR23       DISPLAY
    LINE HIERARCHY       LDB1       CREATE
                         LDB2       CHANGE
                         LDB3       DISPLAY
    REPORTING            CR60       W/C INFORMATION SYSTEM
                         CR05       W/C LIST
                         CR06       COST CENTRE ASSIGNMENT
                         CR07       W/C CAPACITIES
                         CR08       W/C HIERARCHY
    WHERE USED           CA80       WORK CENTRE
                         CR15       CAPACITY
                         CR10       CHANGE DOCUMENTS
    EXTRAS               CR09       STD. TEXTS TASK LIST
                         CR41       ARCHIVING
    ROUTING
    STAD. ROUTING        CA01       CREATE
                         CA02       CHANGE
                         CA03       DISPLAY
    REF. OPERATION SETS  CA11       CREATE
                         CA12       CHANGE
                         CA13       DISPLAY
    RATE ROUTING         CA21       CREATE
                         CA22       CHANGE
                         CA23       DISPLAY
    REF. RATE ROUTING    CA31       CREATE
                         CA32       CHANGE
                         CA33       DISPLAY
    EXTRAS               CA85       REPLACE W/C
    MASS CHANGES         CA95       REPLACE REF. OP. SET
                         CA75       REPLACE PRT
    DELETE TASK LIST     CA99       WITH ARCHIVING
                         CA98       W/O ARCHIVING
    REPORTING            CA80       WORK CENTRE
    WHERE USED LIST      CA90       REF. OP. SETS
                         CA70       PRODUCTION RESORCE TOOLS
    COST CENTRE
                         OKKP       MAINTAIN CONTROLLING AREA
                         KS01       CREATE COST CENTRE
                         KZS2       CREATE COSTING SHEET
                         KA01       CREATE PRI. COST ELEMENT
                         KA06       CREATE SEC. COST ELEMENT
                         KL01       CREATE ACTIVITY TYPE
                         KP26       ACTIVITY TYPE/PRICE PLANNING
    SALES AND OPERATIONS PLANNING
    PRODUCT GROUP        MC84       CREATE
                         MC86       CHANGE
                         MC85       DISPLAY
    GRAPHIC              MC91       PRODUCT GROUP
                         MC92       OVERVIEW
    PLANNING             MC81       CREATE
    FOR PRODUCT GROUP    MC82       CHANGE
                         MC83       DISPLAY
                         MC75       TRANSFER PG TO PLANNING
    FOR MATERIAL         MC87       CREATE
                         MC88       CHANGE
                         MC89       DISPLAY
                         MC74       TRANSFER MATERIALS TO DM
                         MC9K       MATERIAL AVAILABILITY
    VERSION MANAGEMENT   MC78       COPY
                         MC80       DELETE
    FLEXIBLE PLANNING    MC93       CREATE
    PLANNING             MC94       CHANGE
                         MC95       DISPLAY
                         MC9K       MATERIAL AVAILABILITY
    TOOLS/PLANNING TYPE  MC8A       CREATE
    MACRO                MC8B       CHANGE
                         MC8C       DISPLAY
    EVENT                MC64       CREATE
                         MC65       CHANGE
                         MC66       DISPLAY
    ROUGH CUT PLANNING   MC35       CREATE
    PROFILE              MC36       CHANGE
                         MC37       DISPLAY
    ENVIRONMENT          MC90       TRANSFER MATERIALS TO DM
    ACTIVITY REQT.       KSPP       TRANSFER TO COST CENTRE
                         KSBL       COST CENTRE OLANNING REPORT
                         KSOP       TRANSFER TO ACTIVITY BASED COSTING
                         CPBL       PLANNING REPORT PROCESSES
                         MC9C       REPORTING
    SETTINGS             MC96       FORECAST PROFILE
    DISSAGGRIGATION      MC76       BREAKDOWN PG PLAN
                         MC77       DISPLAY PG PLAN
                         MC75       TRANSFER PG TO PLANNING
                         MC74       TRANSFER MATERIALS TO DM
    FORECASTING
    INDIVIDUAL FORECAST  MP30       EXECUTE
                         MP31       CHANGE
                         MP32       DISPLAY
    TOTAL FORECAST       MP38       EXECUTE
                         MP33       REPROCESS
                         MP39       PRINT
                         MPBT       EXECUTE BACKGROUND
                         MPDR       PRINT BACKGROUND
    DEMAND MANAGEMENT
    PIR                  MD61       CREATE
                         MD62       CHANGE
                         MD63       DISPLAY
                         MD65       REQTS. FOR SCINARIO
                         MD66       COPY SIMULATED DEPENDENT REQT.
                         MD70       COPY TOTAL FORE CAST
    EVALUATION           MD73       DISPLAY TOTAL REQT.
                         MD79       EXCELL INTERFACE
                         MD4C       ORDER REPORT
                         MD72       CHARECTERISTICS PLANNING
    CUSTOMER REQT.       MD81       CREATE
                         MD82       CHANGE
                         MD83       DISPLAY
    REPETITIVE MANUFACTURING
    MASTER DATA          C223       PRODUCTION VERTION
    PRODUCT COST PLANNING
    COSTING RUN          CKMATSEL   CREATE
    SELECTION LIST       CKMATCON   Edit
                         CK40N      EDIT COSTING RUN
    Check with below Link :
    https://www.sdn.sap.com/irj/sdn/wiki?path=/display/snippets/process%2border%2bstatus%2bmanagement
    Thanks
    Seshu

  • WHAT ARE THE UPDATED FUNCTION MODULES

    Hi Friends,
    Can anybody explain me about UPDATED FUNCTION MODULES (types of function modules)

    Hi
    Update Function Module
    Unlike transactions and executable programs, dialog modules do not start a new SAP LUW. Calls to update-task function modules from a dialog module use the same update key as the ones in the calling program. The result is that calls to update function modules from a dialog module are executed only if a COMMIT WORK statement occurs in the calling program.
    If you place a COMMIT WORK in a dialog module, it does commit changes to the database (for example, with UPDATE).However, it does not start the update task. The function modules are not actually executed until a COMMIT WORK statement occurs in the calling program.
    If you use dialog modules, try to avoid including calls to update function modules in subroutines called with PERFORM ON COMMIT. In general, any occurrence of PERFORM ON COMMIT(with or without update-task function calls) in a dialog module can be problematic.
    This is because dialog modules have their own roll area, which disappears when the module finishes. Consequently, all local data (including data used for parameter values when calling an update function module) disappears as soon as the commit in the main program is reached.
    If you must use this method in a dialog module (i.e. include the call to an update-task function in a subroutine), you must ensure that the values of the actual parameters still exist when the update-task function actually runs. To do this, you can store the required values with EXPORT TO MEMORY and then import them back into the main program (IMPORT FROM MEMORY) before the COMMIT WORK statement
    Creating Update Function Modules
    To create a function module, you first need to start the Function Builder. Choose Tools ® ABAP Workbench, Function Builder. For more information about creating function modules, refer to the ABAP Workbench Tools documentation.
    To be able to call a function module in an update work process, you must flag it in the Function Builder. When you create the function module, set the Process Type attribute to one of the following values:
    Update with immediate start
    Set this option for high priority ("V1") functions that run in a shared (SAP LUW). These functions can be restarted by the update task in case of errors.
    Update w. imm. start, no restart
    Set this option for high priority ("V1") functions that run in a shared (SAP LUW). These functions may not be restarted by the update task.
    Update with delayed start
    Set this option for low priority ("V2") functions that run in their own update transactions. These functions can be restarted by the update task in case of errors.
    To display the attributes screen in the Function Builder, choose Goto ® Administration.
    Defining the Interface
    Function modules that run in the update task have a limited interface:
    Result parameters or exceptions are not allowed since update-task function modules cannot report on their results.
    You must specify input parameters and tables with reference fields or reference structures defined in the ABAP Dictionary.
    http://help.sap.com/saphelp_nw70/helpdata/en/41/7af4daa79e11d1950f0000e82de14a/frameset.htm
    Regards,
    Harish

  • What are the standard reports in QM?

    Hi,
    I want to know the standard reports available in Quality Management?

    QA33   : Inspection Lot List 
                  Quality report against Inspection Lot - Results
    Hi , here is some useful QM report.
    QC55   : Quality Certificate List in Procurements
    MMBE : Material stock overview u2013 Quality / Unrestricted / Block etc.
    MB52   : Ware House stock & Valuation (Quality / Unrestricted / Block etc.)
    MB51   : Material document List
    CC04    : Display product Structure
    MCXC  : Material Analysis (Month wise)
    MCXI   : Material analysis
    MCXB  : Material inspection result analysis
    MCVA  : Vendor analysis u2013 material inspection lot wise
    MCOA  : Customer analysis u2013 m aterial inspection lot wise
    QGA2    : Inspection results day wise
    QS28     : List of Master Inspection Characteristics
    QS26     : MIC where used lists
    QS38     : List of Inspection methods
    QS36     : Inspection method where used lists.
    QS49     : Code Groups & Codes
    QS59     : Selected sets
    QM11    : Display Quality notification Lists
    QM19    : Multilevel Quality notification List
    MCXV   : Quality Notification analysis

  • What are  the Standard Software Components needed to devolop Portal DC?

    Dear all,
    I am trying to port the code from local portal project to
    DC Portal Project.
    i think i have to add dependencies in the 'Used DCS' in the DC Project for the Corresponding Build Path Entries(jars).
    But iam not getting the Standard Software Components where i will get the references for
    <classpathentry kind="var" path="<b>ECLIPSE_HOME/plugins/com.sap.ep.applicationDevelopment/prtapi.jar"/></b>    <classpathentry kind="var" path<b>="ECLIPSE_HOME/plugins/com.sap.ep.applicationDevelopment/prttest.jar"/></b>    <classpathentry kind="var" path<b>="ECLIPSE_HOME/plugins/com.sap.ep.applicationDevelopment/com.sap.portal.runtime.application.soap_api.jar"/></b>
    Please tell me the Software Components needed for Portal Development while Defining Track.
    regards,
    Biroj.

    I am assuming the following:
    SAP_BUILDT
    SAP_JTECHS
    SAP-JEE
    <OWN COMPONENT> (with as prerequisite SCs the above three)
    If you had found this out already, please post in this thread.
    Thanks,
    Jurjen

  • What are the Standard Process of SAP Plant Maintenance?

    Dear Experts,
    Let me know the Standard Process of SAP PM? Where i can get more details about them.
    Ashif Tadvi

    Hi,
    Hope the below links will be helpful for your requirement
    Overview of Plant Maintenance (PM) - Plant Maintenance (PM) - SAP Library
    Plant Maintenance (PM) - SAP Library
    Regards
    Varun.M

  • What are the standards to write info objects

    i appended one structure in BSEG table in r/3 for  data source 0FI_GL_4 and through that structure  i added some z fields to it . now in bw i have to create info objects for those fields .i created data source in which all fiels are populating correctly  only i have to  create new info objects for new fileds .i am very new to BI please tell me what standards to follow to create  info objects. and also tell me which field fell under char field catalog and which field under key field catalog
    i am giving the field names
    ZZFUNDNO  CHAR 8
    ZZGRPOLICY CHAR 15
    ZZAGENTNO CHAR 10
    ZZTRTYNO2 CHAR 12
      ZZCEDAMT CHAR 14
      ZZPLANCODE CHAR  6
    ZZAGENTID CHAR 10
      ZZFOAGNTNO CHAR 10
      ZZFOAGNTID CHAR 10
      ZZACCIDTYR CHAR 4
      ZZDESKCODE CHAR 8
      ZZORIGCOMP CHAR 6
      ZZORIGACCT CHAR 24
      ZZTRTYATR1 CHAR 22
      ZZTRTYATR2 CHAR 35
      ZZCLAIMNO CHAR 12
      ZZADMSYST CHAR 8
      ZZAPPROVER CHAR 8
      ZZOPERATOR CHAR 10
      ZZCHECKNO CHAR 10
      ZZCHCKDATE DATS 8
      ZZINVOICNO CHAR 12
    ZZVENDORS CHAR 12
      ZZVOUCHRNO CHAR 12
      ZZITEMID CHAR 5
      ZZPAYEE CHAR 20
      ZZEFTVDATE DATS 8
      ZZDESCR CHAR 22
      ZZSUBCODE CHAR 4
      please help me in this regard

    HI,
    for creating a Infoobject go through the following link.
    http://help.sap.com/saphelp_nw2004s/helpdata/en/80/1a63b3e07211d2acb80000e829fbfe/frameset.htm
    http://help.sap.com/saphelp_nw2004s/helpdata/en/80/1a63b3e07211d2acb80000e829fbfe/frameset.htm
    for your second doubt, the all fields you have mentioned here is Char and DAT data types. So all will be in Character field catelog.
    Since mostly keyfigures will have the following data types only.
        Amount, Number, Date, Quantity, Integer, Time.
    You can use DAT fields as keyfigures but you have to decide that.
    rgrds,
    v.sen.

  • What are the Standard Reports In Product Costing

    Hi,
    Can you please suggest me the the Necessary Standard Reports that can be suggest to the client in Product Costing?
    Please provide me the TCodes as well.Poings will be assigned.
    Thanks
    Sunitha

    Most of the report that are used at my client site are
    CK33                     -Compare Cost estimate.
    Ck13n                   - Display Cost Estimate
    S_ALR_87099930  - Results of costing run
    CKAPP01            -  Display Materials to be costed.
    CK80_99              - Cost Component Split.
    Ck88_99              -  Partner Cost Component Split.
    CK84_99             - Itemization.
    As we also handle Month end close we use
    KKAQ                   - Display WIP
    S_ALR_87013127  - Display variances

Maybe you are looking for

  • Multiple table of contents in document

    Hi there, I'm new in FM8. I recently received a document in FM8. The structure of the document is as follows: Every file of the document corresponds to a chapter. Each chapter contains a table of contents for its subheaders and paragraphs. Table of c

  • Can't get video from itunes to nano!

    Hi Everyone, I just purchased a new Nano (4th gen) and am very frustrated (may take it back) becuase I can't seem to get video (mp4 and/or m4v format) to load onto my nano. I have used Handbrake to convert from ISO to mp4 and can successfully get the

  • Wired mac using Express as client for Snow base?

    Hello All, Is it possible to plug a non-Airport Mac into the Ethernet port of the Express and essentially use it as a client for an existing older Airport network (Snow base station)?

  • Question about SLM2008

    I got three domain on the same network. Trying to set up a vlan to split all the computers to respective domain. This is my setup i got 5 static IPS. The respective IP runs to a wireless router which then runs to a server and to the SLM2008 router. N

  • Transferring images from Elements 8 to Elements 12 and keeping album organisation

    I upgraded from Elements 8 to Elements 12 early in 2014. How do I transfer all my E8 images in their proper category and album organisation into E12? (I cannot see them in E12). How do I stop E8 loading when I plug in a camera or card? Can I safely u