Short dumpt error when saving customer master

Dear all,
When I save customer master record, short dump error occur and error analysis as following:
Error analysis
    Short text of error message:
    Postprocessing Office not activated for synchronization process
    Long text of error message:
     Diagnosis
         The Postprocessing Office (PPO) is not activated for the selected
         synchronization process.
     System Response
         The system cannot create a PPO order.
     Procedure
         Inform your system administrator.
     Procedure for System Administration
         Activate the corresponding business process in Customizing for the
         Postprocessing Office under Activate Creation of Postprocessing
         Orders.
    Technical information about the message:
    Message class....... "MDS_PPO"
    Number.............. 010
    Variable 1.......... " "
    Variable 2.......... " "
    Variable 3.......... " "
    Variable 4.......... " "
Any one have same problem before? Please help me to solve this. Thank you very much
Best Regards
Phuong

I have never come across the error "Postprocessing Office not activated for synchronization process".
Anyway,  In IMG, navigate to Cross-Application Components --> General Application Functions --> Postprocessing Office --> Business Processes --> Activate creation of Postprocessing Orders.
There check whether the settings are in line with standard SAP requirements but not sure this will solve the issue.  Please update.
thanks
G. Lakshmipathi

Similar Messages

  • Error when saving custom Datasource on R/3

    Hi,
    I'm creating a transaction datasource using Extraction by Function Module.
    I've created & activated the required extract struct (using Tcode: SE11) and the function module.
    However after populating these 2 fields in the datasource screen, when i try to save the DS. I get the following error.
    Error message : Units field MEINS for field GWERT of DataSource Z_PURCH_SMI_DATA is hidden
    Here GWERT is the field of the structure used in DS definition and in it's property i've mentioned MARA.MEINS as reference fields (it is obligatory  else  error when activating structure).   
    The structure got activated successfully, but is giving problem in Datasource.
    Fyi, similar message is appearing for other fields of the structure.
    Any input would be appreciated.
    Regards,
    Nagendra.

    Hi there,
    In SE11 where you are creating View or table for Datasource, Just add MEINS field in that as new entry
    and for field GWERT in reference fields table, give this MEINS field and reference table should be same table/ View name where you are adding this field.
    Regards,
    Rajdeep Rane.

  • Error when activating the master data

    Hi
    I am getting the following error when activating the master data. when using IDOC as transfer method in transfer rules
    <b>Error while creating table 'EDISEGMENT' entry '/BIC/CIRB0CLASS_NUM_TEXT'</b>
    If anyone came across this kind of problem plz share the solution.
    Regards
    Annie

    Hi
    I solved the problem. AFter changing from PSA to IDOC, i just saved first and activated. it got activated. But thanks for the response.
    There are no short dumps in ST22
    Regards
    Annie

  • Read error when reading the master data of 0EMPLOYEE on demand, attribute 0

    Hello All,
    While loading data for HR data source 0HR_PA_OS_1 i am getting the below error message..
    Error 1 in update.
    Read error when reading the master data of 0EMPLOYEE on demand, attribute 0COMP_CODE
    Please let me know how can it be resolved.
    Regards
    Rohit Parti

    The problem occurs during data load from R/3. It was not occuring before. When I go to check the PSA contents I get a runtime error - GETWA_NOT_ASSIGNED.
    Error analysis                                                      
        You attempted to access an unassigned field symbol              
        (data segment 32821).                                                                               
    This error may occur if                                         
        - You address a typed field symbol before it has been set with  
          ASSIGN                                                        
        - You address a field symbol that pointed to the line of an     
          internal table that was deleted                               
        - You address a field symbol that was previously reset using    
          UNASSIGN or that pointed to a local field that no             
          longer exists                                                 
        - You address a global function interface, although the         
          respective function module is not active - that is, is        
          not in the list of active calls. The list of active calls     
          can be taken from this short dump.

  • Short dump error when using count(*)

    Hi Experts
    I am getting a short dump error when selecting the records >= current date - 30 see the coding and comment please correct the coding I want to know the ztable records it is important for command interface.
    I have 1402345 records available after deleting the records but as the memory is not enough it is giving short dump error
    select count(*) from ZINT_TABLE
    select count(*) from ZINT_MSGS
       select * from zint_data
                 nto table izint_d2 . "PACKAGE SIZE 20000
       where STATUS = 'OK' AND CREATED_ON >= w_date1.          " VALUE
    endselect.**
    report z_eslp_command_records.
    data: cnt type i.
    data: cnt2 type i.
    data: cnt3 type i.
    data: cnt4 type i.
    DATA:
         w_date1 like sy-datum .
    DATA:
         w_date2 like sy-datum.
    data: izint_msgs type table of zint_msgs.
    data: izint_data type table of zint_data.
    data: izint_m2 type table of zint_msgs.
    data: izint_d2 type table of zint_data.
    INITIALIZATION.
    w_date1 = sy-datum -  30.
    w_date2 = sy-datum -  30.
    select * from zint_data
                 into table izint_data PACKAGE SIZE 3000
                 where STATUS = 'OK' AND CREATED_ON <= w_date1.   " ZERO
    endselect.
    select * from zint_msgs
                 into table izint_msgs  PACKAGE SIZE 3000
                  where  CREATED_ON <= w_date2.              " ZERO
    endselect.
      select * from zint_data
                 into table izint_d2 PACKAGE SIZE 20000
       where STATUS = 'OK' AND CREATED_ON >= w_date1.          " VALUE
    endselect.
    select * from zint_msgs
                 into table izint_m2 PACKAGE SIZE 20000
      where CREATED_ON >= w_date2.                            " VALUE
      endselect.
    select * from zint_data
                into table izint_data2
    where STATUS = 'OK' AND CREATED_ON >= CONVERT(CHAR(8), GETDATE() - 30, 112)).
    ENDSELECT.
      select * from zint_msgs
                into table izint_msgs2
    where CREATED_ON >= CONVERT(CHAR(8), GETDATE() - 30, 112)).
    ENDSELECT.
    sort izint_data by created_on ascending.
    sort izint_msgs by created_on ascending.
    sort izint_d2 by created_on ascending.
    sort izint_m2 by created_on ascending.
    describe table izint_data lines cnt.
    describe table izint_msgs lines cnt2.
    describe table izint_d2 lines cnt3.
    describe table izint_m2 lines cnt4.
    write:/ ' Note: THE RECORDS COUNTED SHOULD SHOW ZERO ELSE THE SCRIPT FAILED TO RUN' color 3.
    skip.
    write:/ '1. Records counted in ZINT_DATA   <=current date - 30                   :' color 2,                        cnt color 4.
    write:/ '2. Records available in ZINT_DATA >=current date - 30                   'color 4,                   cnt3 color 4 .
    skip.
    write:/ '2. Records counted in ZINT_MSGS   <=current date - 30                   :' color 2                 ,                      cnt2 color 4.
    write:/ '4. Records available in ZINT_MSGS >=current date - 30                   'color 4  ,            cnt4 color 4 .
    TOP-OF-PAGE.
    WRITE:/55(60) ' WAGNERS INVESTMENT LIMITED  '.
    WRITE:/50(40) ' Command Interface Data' CENTERED .
      WRITE:/50(40) '----
    ' CENTERED .
      FORMAT INTENSIFIED ON.
      SKIP.
      "FORMAT COLOR COL_HEADING.
      ULINE.
      FORMAT COLOR 1.
    END-OF-PAGE.

    Answer

  • Error in saving customer information. Value for contact_point_purpose must be a value defined in lookup type CONTACT_POINT_PURPOSE.

    I was trying to create a text alert. I was calling following in jsp
    email.setContactPointPurpose(myLookUpCode); //say XXMY_SMS_SHIP
            PartyManager.createEmail(email, ApiConstant.CONTACT_POINT);
    Getting following exception:
    Error in saving customer information.
    Value for contact_point_purpose must be a value defined in lookup type CONTACT_POINT_PURPOSE.
    Error trace:
    oracle.apps.ibe.customer.CustomerException: Error in saving customer information. at oracle.apps.ibe.tcav2.Email.create(Email.java:187) at oracle.apps.ibe.tcav2.PartyManager.createEmail(PartyManager.java:116) at _oa__html._myfile__ibeMyFile._jspService(_myfile__ ibeMyFile.java:908) at oracle.jsp.runtime.HttpJsp.service(HttpJsp.java:119) at oracle.jsp.app.JspApplication.dispatchRequest(JspApplication.java:417) at oracle.jsp.JspServlet.doDispatch(JspServlet.java:267) at oracle.jsp.JspServlet.internalService(JspServlet.java:186) at oracle.jsp.JspServlet.service(JspServlet.java:156) at javax.servlet.http.HttpServlet.service(HttpServlet.java:588) at org.apache.jserv.JServConnection.processRequest(JServConnection.java:456) at org.apache.jserv.JServConnection.run(JServConnection.java:294) at java.lang.Thread.run(Thread.java:662) Caused by: oracle.apps.jtf.base.resources.FrameworkException: Value for contact_point_purpose must be a value defined in lookup type CONTACT_POINT_PURPOSE. at oracle.apps.jtf.util.ErrorStackUtil.getFrameworkException(ErrorStackUtil.java:104) at oracle.apps.jtf.util.ErrorStackUtil.getDBFrameworkException(ErrorStackUtil.java:141) at oracle.apps.ibe.tcav2.Email.create(Email.java:185) ... 11 more Error in saving customer information. oracle.apps.jtf.base.resources.FrameworkException: Value for contact_point_purpose must be a value defined in lookup type CONTACT_POINT_PURPOSE. at oracle.apps.jtf.util.ErrorStackUtil.getFrameworkException(ErrorStackUtil.java:104) at oracle.apps.jtf.util.ErrorStackUtil.getDBFrameworkException(ErrorStackUtil.java:141) at oracle.apps.ibe.tcav2.Email.create(Email.java:185) at oracle.apps.ibe.tcav2.PartyManager.createEmail(PartyManager.java:116) at _oa__html._myfile__ibeMyFile._jspService(_myfile__ ibeMyFile.java:908) at oracle.jsp.runtime.HttpJsp.service(HttpJsp.java:119) at oracle.jsp.app.JspApplication.dispatchRequest(JspApplication.java:417) at oracle.jsp.JspServlet.doDispatch(JspServlet.java:267) at oracle.jsp.JspServlet.internalService(JspServlet.java:186) at oracle.jsp.JspServlet.service(JspServlet.java:156) at javax.servlet.http.HttpServlet.service(HttpServlet.java:588) at org.apache.jserv.JServConnection.processRequest(JServConnection.java:456) at org.apache.jserv.JServConnection.run(JServConnection.java:294) at java.lang.Thread.run(Thread.java:662) Value for contact_point_purpose must be a value defined in lookup type CONTACT_POINT_PURPOSE.

    Tried this but it is giving the below error
    APP-FND-01242: Cannot read value from field PER_ASSIGNMENT_ID
    Cause: The field PER_ASSIGNMENT_ID could not be located or read.
    Action: This error is normally the result of an incorrectly-entered field name string in a trigger, or a field name string that does not uniquely specify a field in your form. Correct your trigger logic to precisely specify a valid field.

  • Error when saving

    Hello BW Experts,
    I am getting this error while saving a query in Bex.
    'The query could not saved due to a problem in transport'.
    I am actually creating a test query production. I am not sure why it is refering to the transport. From what i understand there is nothing to deal with transports.
    Anyone experienced a similar problem before.
    Suggestions appreciated.
    Thanks,
    BWer

    OSS NOTE 194051
    Symptom
    An error occurs when you save a query:
    Error when saving
    "The query could not be saved due to a problem in transport".
    Other terms
    Business Explorer, query, transport, save, R9 124
    Reason and Prerequisites
    There are 4 possible reasons for this problem:
    1. The BEx default transport request or the development class-dependent transport request is not maintained or released in the Administrator Workbench.
    2. The system is set to "cannot be changed". Refer to Note 337950 (as of 2.0b SP 11), which describes how query objects can be edited in systems that cannot be changed.
    3. You are not authorized to write to Workbench requests.
    4. The BEx default transport request or the development-class-dependent transport request in the Administrator Workbench has another target system than the query (the transport destination of the query is determined via the transport layer of the query's development class (as of 3.0: of the package)).
    The error only occurs for query objects which already have a development class, that means, which were already placed on a transport request.
    Solution
    Solution for Cause 1:
    a) Start the Administrator Workbench
    b) Choose 'Goto' to change to Transport connection
    c) Choose "Request BEx" or "BEx development classes" in the toolbar.
    d) Create a (new) request.
    e) All changes in the BEx are now written to this request.The end user is no longer confused by 'Transport' dialog boxes.
    Solution for Cause 2:
    See Note 337950
    Solution for Cause 3:
    Authorize user to write to Workbench requests.
    Solution for Cause 4:
    Create a request for each target system. Assign the request suiting the target system of the transport layer of the development class (of the package) to each development class (as of 3.0: to each package) used for BEX objects.
    If this does not change the situation, further information is useful for error analysis.
    Go to Transaktion SE16, Table RSZCOMPDIR. In field COMPID, select the technical name of your query. Read the COMPUID of your query.
    Go to SE37, function module rso_elem_get_related. Parameter I_IOBJNM is set to the COMPUID, and parameter I_OBJVERS (object version) is set to A. Only the export parameters E_T_OBJ_EXISTENTIAL and E_T_OBJ_DEPENDENT are of interest.
    These entries are then entered in function module rs_tr_objects_check_insert in import parameter I_T_TR_OBJECT. In this parameter, fill field PGMID fixed with 'R3TR' and field OBJECT fixed with 'ELEM'. Field OBJ_NAME is filled with the contents of field OBJNM from export parameters E_T_OBJ_EXISTENTIAL and E_T_OBJ_DEPENDENT. The other fields are not relevant.
    The export parameters of this function module are required for further error determination. Add this information to your OSS message. The table of messages E_T_MSG is important in particular.

  • Short dump error when extracting delta records from R/3

    I am working on BW 3.5 and I am facing some short dump error when extracting delta records from the r/3 to BW.
    Below is the error message
    Kindly do the needful ASAP.
    Job started
    Step 001 started (program SBIE0001, variant &0000000024277, user ID BWREMOTE)
    Asynchronous transmission of info IDoc 2 in task 0001 (0 parallel tasks)
    DATASOURCE = 0ISCM_PAYMENT_01
             Current Values for Selected Profile Parameters               *
    abap/heap_area_nondia......... 2000000000                              *
    abap/heap_area_total.......... 2000000000                              *
    abap/heaplimit................ 40000000                                *
    zcsa/installed_languages...... DE                                      *
    zcsa/system_language.......... E                                       *
    ztta/max_memreq_MB............ 2047                                    *
    ztta/roll_area................ 6500000                                 *
    ztta/roll_extension........... 2000000000                              *
    2,454 LUWs confirmed and 2,454 LUWs to be deleted with function module RSC2_QOUT_CONFIRM_DAT
    ABAP/4 processor: MESSAGE_TYPE_X
    Job cancelled

    Hi,
    I look at the transaction ST22 to see which type of error has given you. Take a look at the notes to correct the error.
    Another option is to look at OSS notes, because the error is giving you a standard extractor.
    Greetings,

  • Font licensing error when Saving?

    I use Illustrator CC and get a licensing error when saving designs with downloaded fonts.
    The designs look fine on my computer and fine when I open them from my drop box account.
    The problem comes when others open the design, the fonts change to Arial in most cases, which is causing design issues.
    This is even happening when the design is saved as a PDF.
    How do I solve this problem?
    Can I get licenced fonts?
    Where are they available?
    Many thanks for reading.

    You can have your other contacts download and install the same fonts
    or
    you can select all the text in your document and create outlines of the fonts, printers often ask for this option.
    or
    You can purcahse fonts from say Adobe and if I am not mistaken you can have those installed on five work stations, I do not know if you are allowed to consider a colleague as legal user of the fonts. And I do no recall if the number of seats for the fonts have changed but it used to be five seats. As I recall.
    or
    you can purcahse from My Fonts as well http://www.myfonts.com but again the other contacts ave to have the fonts installed as well check out how many seats for the fonts ypoouare entitled to and if that includes remoe sites for the seats.

  • Permission error when saving as pdf

    I am using 10.6.7 on a Mini and I get a error when saving a documetn as a PDF.  It says I don't have permission to save the file.

    Hi Arnis,
    I have also posted this separately.
    Following is the ditamap i am using to create the PDF. This has booktitle, front matter, toc, chapter and backmatter. I am able to generate a PDF (complete with title page, toc, chapter, backmatter, index) using fop 0.25. However, when I try to create a pdf in FM 9.0, I get only the chapter. How can get the others through FM 9.0. Please provide a solution.
    <?xml version="1.0" encoding="UTF-8"?>
    <!DOCTYPE bookmap PUBLIC "-//OASIS//DTD DITA BookMap//EN" "bookmap.dtd" [
    <!-- Begin Document Specific Declarations -->
    <?Fm Validation Off?>
    <!-- End Document Specific Declarations -->
    ]>
    <?Fm Condition DITA-Topicref Blue NO_OVERRIDE show?>
    <?Fm Condition FM8_SYSTEM_HIDEELEMENT AsIs NO_OVERRIDE hide?>
    <?Fm Condition FM8_TRACK_CHANGES_ADDED Forest%20Green SINGLE_UNDERLINE show?>
    <?Fm Condition FM8_TRACK_CHANGES_DELETED Red STRIKETHROUGH show?>
    <?Fm BoolCondExpr "" State 0?>
    <?Fm TrackChange Off PreviewState PREVIEW_OFF_TRACK_CHANGE?>
    <bookmap
        xmlns:ditaarch = "http://dita.oasis-open.org/architecture/2005/">
    <booktitle><mainbooktitle>Management</mainbooktitle>
    <booktitlealt>Version 4.0</booktitlealt>
    <booktitlealt></booktitlealt></booktitle>
    <frontmatter><notices></notices>
    <booklists><toc navtitle = "Contents"/></booklists>
    <preface id = "preface">
    <topicref navtitle = "Preface" href = "nm\concepts\nm_Preface.xml"
        type = "concept"><?Fm Condstart DITA-Topicref?><?Fm Condend DITA-Topicref?></topicref></preface></frontmatter>
    <chapter navtitle = "Management" href = "nm.ditamap"
        format = "ditamap" id = "chapter"><?Fm Condstart DITA-Topicref?><?Fm Condend DITA-Topicref?></chapter>
    <backmatter><booklists><indexlist navtitle = "Index"/></booklists></backmatter></bookmap>

  • OS 10.6.8, Macbook Pro 3.1 error when saving monitor calibration, cannot save.

    Macbook pro 3.1 OS 10.6.8, error when saving monitor calibration profile.  Tried to name new profile, or save as an older profile, still got error when attempting to save.

    Try a NVRAM reset, and then go through the monitor calibration again.
    Shut down your Mac.
    Locate the following keys on the keyboard: Command (⌘), Option, P, and R. You will need to hold these keys down simultaneously in step 4.
    Turn on the computer.
    Press and hold the Command-Option-P-R keys before the gray screen appears.
    Hold the keys down until the computer restarts and you hear the startup sound for the third time.
    Release the keys.

  • Error when saving an Outlook attachment eg. Word Doc after opening it.

    we made the group policy change which was giving an error when saving from opened attached files.
    But for 1 particular RDS user the error still seems to be occurring. i've tried the following,
    1. recreating outlook.
    2. recreating user profile.
     3. deleted the group policy history from the registry.
    4. tried removing outlook add-ins.
    your help would be really appreciated.
    kind regards

    Hi,
    What is the error? Does outlook crash? Would you please also detail the group policy change?
    We can try cleaning out the Temporary Outlook Files folder to check the result.
    We can refer to the following link for the detailed steps to locate and find the temp folder:
    http://www.howto-outlook.com/faq/securetemp.htm
    Then we need to use OutlookTempCleaner to clean the folder:
    http://www.howto-outlook.com/products/outlooktempcleaner.htm
    Please Note: Since the web site is not hosted by Microsoft, the link may change without notice. Microsoft does not guarantee the accuracy of this information.
    Regards,
    Melon Chen
    TechNet Community Support

  • Error when Saving Files  ID=-39

    We are using CS5 on iMac and get the following error when saving:
    Can't save preview, but all other information was saved successfully. The file ended unexpectedly. Try using a backup copy. ID = -39
    Generally after receiving this error the file is corrupt.
    What can we do?  Do you need more info?  I am not sure what to do with this error.

    Most probably that is your problem.
    Try if saving to your hard disk solves your problem.

  • Invalid image error when saving to pdf

    I keep getting an invalid image error when saving a MS Publisher file as a pdf. Can anyone help with solving this issue?

    You need to provide system and version info and explain how you actualyl produce the PDF. Unless you use the Acrobat PDF printer, I don't see how Adobe software would be involved in any of this, as recent versions of MS Office products can save PDFs natively...
    Mylenium

  • APP-AR-11526 ERROR WHEN SAVING ADJUSTMENT IN AR RECEIPTS FORM

    제품 : FIN_AR
    작성날짜 : 2003-04-25
    APP-AR-11526 ERROR WHEN SAVING ADJUSTMENT IN AR RECEIPTS FORM.
    ==============================================================
    PURPOSE
    Problem Description
    Receipt화면에서 Adjustment를 하고 Save버튼을 누를때,
    APP-AR-11526 arp_process_adjustment.insert adjustment exception ORA-20001
    위와 같은 에러 발생.
    Workaround
    select taxable_amount
    from RA_CUSTOMER_TRX_LINES_ALL
    where customer_trx_id = 문제가되는 transaction id
    and line_type='TAX';
    NULL
    Update RA_CUSTOMER_TRX_LINES_ALL
    set taxable_amount = transaction의 원래 금액
    where customer_trx_id = 문제가되는 transaction id
    and line_type='TAX';
    Solution Description
    RA_CUSTOMER_TRX_LINES_ALL의 taxable_amount값이 NULL인 경우,
    invoice 금액 adjustment시 오류가 발생한다.
    Reference Documents
    -------------------

    Pl see if MOS Doc 341469.1 (Adjustment Entry: APP-AR-96027: Tax accounting not defined for the tax code or tax location assigned to this invoice) can help.
    HTH
    Srini

Maybe you are looking for

  • CAn You Sync Two iPhones to the same iTunes Account?

    Has anyone been successful in syncing two iPhones to the same iTunes account. I am the main user of our Mac and my wife just uses it for email and internet browsing. Basically she uses my user account and therefore we share one contacts list, one cal

  • NO SOUND AFTER INSTALLING WINDOWS 8.1

    Hi, I'm hoping someone will be able to help.  My sister has a compaq 58 laptop and after installing windows 8.1, now has no sound.  The sound was there when 8.1 was installed but after logging off and logging back on again, the sound disappeared.  We

  • New version of iTunes has bug i.e. downloaded mp3 has very different title than original

    When I import the downloaded mp3 the title is very different and offensive words. What is up with this? thnx

  • Size of comment icon

    I would like to know how to change the size of the comment symbol. I don´t know what I did but the symbol (standard speech bubble) got much bigger than usual and I would like to get back to the original size.

  • Can't import images using iCloud on iPad and Mac

    Yes. I have followed the "easy" instructions of the Apple site for setting my up my icloud account and sign in with both devices. Yes I have seen every imaginable youtube video of how to's and followed the steps.  I am connected to the internet, sign