Error While saving new customer record,

Hi,
I have changed properties of the field PARTNER1 in the application crmm_account, to search for customer. The requirement is that account ID must have URL to ODC. I just copied same properties under Object link of BP_NAME1.
But after saving the settings, and running the application, I get the following error on the browser window:
<b>
Runtime Errors         SYSTEM_ON_COMMIT_INTERRUPTED
Date and Time          08.10.2007 11:35:53
Short text
     The COMMIT WORK processing must not be interrupted.
What happened?
     Error in the ABAP Application Program
     The current ABAP program "SAPLBUPA_MDM_PROXY" had to be terminated
      has
     come across a statement that unfortunately cannot be executed.</b>
Is it like what I am doing is wrong, or should I do it in some other way??
Points will be rewarded without fail
Regards,
Chinnu

Hi Amol,
One user faced the same issue on IT tool forum, check the link for solution.
http://sap.ittoolbox.com/groups/technical-functional/sap-crm/communication-error-with-the-external-tax-systemvertex_ms0018-909264
Hope it helps,
Regards,
MT

Similar Messages

  • Error while creating new customer(xd01)

    following error ocurred while crating new customer.It wasnt case when i created customer before for the S/Org....
    "Communication error with external tax system(Vertex_MS0018)"
    Msg No TAX_TXJCD864)
    Pls help..
    thanks
    Amol

    Hi Amol,
    One user faced the same issue on IT tool forum, check the link for solution.
    http://sap.ittoolbox.com/groups/technical-functional/sap-crm/communication-error-with-the-external-tax-systemvertex_ms0018-909264
    Hope it helps,
    Regards,
    MT

  • I am getting error while saving new WORKFLOW

    Dear All,
    Please help me for the following issue.
    I am trying to make new WORKFLOW but system gives a ERROR while saving from SWDD tcode.
    error is:
    System error: Function cancelled
    Message no. WD255
    Regards,
    Mukesh

    Hi Mukesh,
    You have to maintain the Prefix numbers in the system, in tcode SWU3 --> maintain definition environment --> Maintain prefix number --- > click on execute button.
    There, create a new value for your client(XXX) system to generate the workflow definition / task definition.
    Regards,
    Murali Krishna.

  • Error while saving new Version

    Hi,
    I am creating a new version in DRM by using Copy to New feature but I am getting an error while saving that version.
    The version gets created successfully but it does not allow me to save the same and gives the following error.
    Serve was unable to process request--->ORA-02291:Integreity constarint (MDM_SYS_C0047065)-violated - parent key not found
    Please help.

    Hi,
    I am creating a new version in DRM by using Copy to New feature but I am getting an error while saving that version.
    The version gets created successfully but it does not allow me to save the same and gives the following error.
    Serve was unable to process request--->ORA-02291:Integreity constarint (MDM_SYS_C0047065)-violated - parent key not found
    Please help.

  • Error While Saving into Customizing Request

    Dear Experts,
    I am getting an error message while trying to save any changes in 'Appraisal Catalog'.
    And when I am transporting it to QAS. no changes are seen (it is not transported)
    Please let me know how to rectify this error...
    Error Message: Table HRPAD605 is not part of the Customizing object  PDST  T
    Detailed Description of the error is:
    Message no. TK428
    Diagnosis
    Entries in table HRPAD605 cannot be edited in connection with customizing object PDST      T as table HRPAD605 does not belong to customizing object PDST      T, according to the object definition.
    System Response
    The function terminates.
    ProcedureCheck whether the entered objects and keys are correct.
    Then check in the Implementation Guide whether the object was created correctly.
    Correct the object definition or the entry for the Transport Organizer interface.

    There may be some saving problem.
    Please check out,  then after words, you have to transport the request by se10
    Regards,
    Jaya

  • Error while saving general customer data....Help needed...!!!

    Hi all,
    I am testing peoplesoft 9.0 version for an upgrade project. When i try to save the general customer information using Home>Customer>generalinformation . i got the following error. *"Invalid parameter 1 for function currentrownumber (2.116) TABLENAME.FIELDNAME.savePostChange*"* . this is custom people code in a custom table. plz help me to solve this.

    One reason could be that the blocks that you are trying to save are locked either through excel-addin or someone else might be updating the same combinations. I have encountered such issues earlier and got the same error. Check if there are any locks in essbase while you are saving the planning data.

  • Error while saving the custom list created in visual studio 2010

    Dear all,
    when I am saving the list; I am getting the following error. I do not know where this could be wrong.
    Any inputs will help. Now I am recreating a new list - thinking that the objects used in the earlier projects might conflict. Also few lists in the list tab - were throwing error of the same type - which is not functioning well.
    warm regards,
    sathya

    To give more information on the code
    Registration list
    //Reference this Feature's parent object, which is SPWeb in this case
    SPWeb currentWeb = properties.Feature.Parent as SPWeb;
    //Reference the lists we need to manipulate.
    SPList tList = currentWeb.Lists["TrainingTrainers"];
    SPList rList = currentWeb.Lists["TrainingRegistration"];
    //Reference the fields in the lists
    SPFieldCollection rFields = rList.Fields;
    SPFieldCollection tFields = tList.Fields;
    //changes to the Trainers List
    SPField fullNameField = tList.Fields["Full Name"];
    SPField emailAddressField = tList.Fields["E-mail Address"];
    SPField firstNameField = tList.Fields["First Name"];
    SPField lastNameField = tList.Fields["Last Name"];
    fullNameField.Required = true;
    emailAddressField.Required = true;
    firstNameField.Required = true;
    lastNameField.Required = true;
    fullNameField.Update();
    emailAddressField.Update();
    firstNameField.Update();
    lastNameField.Update();
    //Changes to the Registrations List
    //Change the Display Name of the Title Field
    SPField titleField = rFields["Title"];
    titleField.Title = "RegistrationID";
    titleField.Update();
    //Add additional fields as necessary
    rFields.Add("First Name", SPFieldType.Text, true);
    rFields.Add("Last Name", SPFieldType.Text, true);
    rFields.Add("E-mail Address", SPFieldType.Text, true);
    rFields.Add("Phone Number", SPFieldType.Text, false);
    rFields.Add("ClassID", SPFieldType.Text, false);
    rList.Update();
    //Make the ClassID column read-only because i will set this later
    SPField classIDField = rList.Fields["ClassID"];
    classIDField.ReadOnlyField = true;
    classIDField.Update();
    //Remove the Attachments column from the default view of the Trainers list
    SPView tDefaultView = tList.DefaultView;
    tDefaultView.ViewFields.Delete("Attachments");
    tDefaultView.Update();
    //Add new fields to the default view of the Registrations list
    SPView rDefaultView = rList.DefaultView;
    rDefaultView.ViewFields.Delete("Attachments");
    rDefaultView.ViewFields.Add("First Name");
    rDefaultView.ViewFields.Add("Last Name");
    rDefaultView.ViewFields.Add("E-mail Address");
    rDefaultView.ViewFields.Add("Phone Number");
    rDefaultView.Update();
    Classes list
    //Reference the newly created Classes list and perform the following
    //1. Set the display name of the "Title" column to "ClassID" and hide it from the New and Edit Forms
    //2. Make the "ClassID" column not required
    //3. Set the default value of the Registrations column to 0 and do not display it on the new form
    //4. Add the built-in "Start Date" and "End Date" columns
    //Reference the newly created classes list
    SPWeb currentWeb = properties.Feature.Parent as SPWeb;
    SPList classesList = currentWeb.Lists["Classes-List"];
    //Title column update
    SPField titleField = classesList.Fields["Title"];
    titleField.Required = false;
    titleField.ShowInNewForm = false;
    titleField.ShowInEditForm = false;
    titleField.Title = "ClassID";
    titleField.Update();
    //Registrations column updates
    SPField registrationField = classesList.Fields["Registrations"];
    registrationField.DefaultValue = "0";
    registrationField.ShowInNewForm = false;
    registrationField.Update();
    //Add the Start Date and End Date columns to the list, ensure they both display Date and Time, and add them to the default view of the list
    SPFieldDateTime startDate = currentWeb.Fields["Start Date"] as SPFieldDateTime;
    startDate.DisplayFormat = SPDateTimeFieldFormatType.DateTime;
    SPFieldDateTime endDate = currentWeb.Fields["End Date"] as SPFieldDateTime;
    endDate.DisplayFormat = SPDateTimeFieldFormatType.DateTime;
    classesList.Fields.Add(startDate);
    classesList.Fields.Add(endDate);
    SPView defaultView = classesList.DefaultView;
    defaultView.ViewFields.Add(startDate);
    defaultView.ViewFields.Add(endDate);
    defaultView.Update();
    classesList.Update();
    To my sense - when I add the classes list - the error pops up.
    the classid is tied to both these lists.

  • WCM Error while saving Project

    Hi,
    I am getting following error while saving new created project in cProject.
    Saving is not possible because the WFM Core data could not be adjusted
    Message no. PRP086
    Diagnosis
    When checking the project role or project role staffing, differences to the related WFM Core data were found. The project cannot be saved because the data cannot be adjusted. Possible causes for this include:
    The WFM Core is not installed locally. When working with the application, the WFM Core service is suddenly no longer available.
    The WFM Core configuration has been changed in Customizing.
    The WFM Core is only activated after projects have been created. During the automatic adjustment of data, it is determined that resources unknown in the WFM Core are assigned to existing project role staffing.
    When working with the application, an existing resource already assigned in the WFM Core is deleted.
    System Response
    The project cannot be saved.
    Procedure
    Contact the system administrator if the required resource is not known in the WFM Core. The project can be saved as soon as the resource is created.
    Let me know how to resolve this issue??
    Thanks in advance,
    Atul.

    hi Atul,
    Are you using WFD server for your resource planning in cProjects???
    If yes, you have to do settings in customizing for the same in Workforce deployment server under Resource Management in cProjects.
    If not, then do following settings to remove the error you are getting:
    1) SPRO -> Collaboration Projects -> Resource management-> Business Partner-> Set Up Integration of HR,
    Maintain following setting:
    Group     Sem. abbr     Value abbr     Description
    HRALX     HRAC     X     Activate HR Integration
    2) SPRO -> Collaboration Projects ->  Resource management Qualification Management->  Activate Qualification Search and Matchup Using WFM Core
    In this, deactivate the use of WFD Core for the qualification match up and the search by deleting the X under Value abbr. in the activity Activate Qualification Match up and Search Using WFM Core.
    Hope this will be helpful to you.
    Regards,
    Niraj Sikligar

  • Error while saving record "User:johndoe":     Error -14071

    I have added my augmented users from the AD server. When I select user and to apply a setting under Preferences I get this on attempting an "Apply", Error while saving record "User:johndoe":Error -14071. I'm authenticating to my LDAP not AD/All Domains.
    I have the server bound correctly to the AD server. Bound to AD, then promoted to OD master.
    Tried WGM from another Mac, same error.
    I recall my AD admin extending the ad schema last year for OS X 10.4.
    Thoughts? Thanks.

    Thanks David and Mabel, and all for the suggestions. I did go through "Leveraging Active..." prior to posting. I did try your method of canceling the authorization to WGM and viewing Directories. I would select a user from this method and try to apply something from MCX, but still got the -14070 error. Yes, I do have my client bound 1st OD, 2nd AD, with OD first on the search policy for the client.
    I though I had solved my issue by authenticating to WGM and LDAP. Then selecting Groups and the Members tab, I define an OD group and select that group. I can then click the "+" towards the right of the window. Then select my AD there which populates. I can add my AD groups or single users to my OD group. Then I'm able to apply MCX settings. But, no "blue" circle next to the group's silhouette. How is my method possibly incorrect?
    Also, at some point I unbound my client from AD and it seems the client is ok with getting AD info off my OD server. Example, my AD sharepoint mounts for PHD.
    But, I do have a pause of 20 secs. are more when logging into the client as well as accessing applications. Side effect of my method?

  • Error while saving record "john doe":     Error: -14140

    when changing a users preferences i try and save but it comes up with this error
    Error while saving record "john doe": Error: -14140
    and wont allow me to save
    any ideas?
    Many Thanks

    This thread might help you:
    http://www.afp548.com/forum/viewtopic.php?showtopic=16200
    This document is supposed to be very good as well:
    http://www.afp548.com/filemgmt_data/files/AD-OD-2.1.pdf

  • Error while Saving the report

    Hi,
    i have created some reports which are working fine,
    but now i am facing some errors while saving the files.
    Also the reports does show only one record while there are many records in the database.
    The error messages are as follows:
    REP-1051; Unable to save document to file ' F:\Database\Reports\report1.rdf '.
    REP-1070: Error while opening or saving a document.
    Please help me to find out the exact problem.
    Also tell me how can i show all the pages of Database records in a report( while one record on each page)

    As for the error while saving, you have only one possible thing to try. It it doesn't work, you're sunk.
    Assuming the report was not being newly created, i.e. that it was opened from a file on your system, then rename that file to something else (Report_001_OLD.rdf, for example). Then try to save it - Reports will think it is a new file to be saved rather than an existing file to be updated.
    Again, if that doesn't work, and if you do not have the auto-save option turned on, then you're sunk. You will have just lost all of the work you've put into that report.
    As you'll discover, Reports is not the most robust application ever written.

  • Error while saving Employee Billrates through OAF page

    Dear All,
    I am facing the below mentioned error while saving Employee Bill rates for any project through OAF interface. I have tried saving the same through FORMS interface and its getting saved. The Unique constraint on the error log is on the table PA_EMP_BILL_RATE_OVERRIDES and the column is EMP_BILL_RATE_OVERRIDE_ID and we have a sequence for generating Unique id. The sequence used is PA_EMP_BILL_RATE_OVERRIDES_S.
    Please note that the error only fires on insertion of new record in the table PA_EMP_BILL_RATE_OVERRIDES, on updation error doesn't fire.
    The Constraint definition on the table is :
    create unique index PA.PA_EMP_BILL_RATE_OVERRIDES_U2 on PA.PA_EMP_BILL_RATE_OVERRIDES (EMP_BILL_RATE_OVERRIDE_ID)
    ERROR : java.sql.SQLException: ORA-00001: unique constraint (PA.PA_EMP_BILL_RATE_OVERRIDES_U2) violated

    Dear All,
    I am facing the below mentioned error while saving Employee Bill rates for any project through OAF interface. I have tried saving the same through FORMS interface and its getting saved. The Unique constraint on the error log is on the table PA_EMP_BILL_RATE_OVERRIDES and the column is EMP_BILL_RATE_OVERRIDE_ID and we have a sequence for generating Unique id. The sequence used is PA_EMP_BILL_RATE_OVERRIDES_S.
    Please note that the error only fires on insertion of new record in the table PA_EMP_BILL_RATE_OVERRIDES, on updation error doesn't fire.
    The Constraint definition on the table is :
    create unique index PA.PA_EMP_BILL_RATE_OVERRIDES_U2 on PA.PA_EMP_BILL_RATE_OVERRIDES (EMP_BILL_RATE_OVERRIDE_ID)
    ERROR : java.sql.SQLException: ORA-00001: unique constraint (PA.PA_EMP_BILL_RATE_OVERRIDES_U2) violated

  • Error while saving config in MSY

    Hi,
    I am working on taking MSA 5.0 SP7 go-live. I am working in MDW. I posted a SDN post long back regarding the custom partner functions in MSA and got it resolved (followed the note 521871). I am trying to do the same in the PROD system and i am facing errors:
    -> When i goto Cross-Component Settings->Relationship Categoty-> click on NEW i am getting the errors:
      1. 'MTBLLFW-The attribute destination of the business object
          relation type is not valid'.
      2. 'MTBLLFW-the attribute source of the business object relation
          types is not valid'
    But it is allowing me to add an entry. When i save my customer entry i am getting the error :
      3. 'UI_CORE_SAVE_FAILED_STA-Errors while saving'.
    I ran the consolidated prefill for 5.0 and SP07. I followed the same procedure as i did in DEV. In DEV i never got these errors. I was able to create them in the first attempt.
    If anyone has any idea please let me know.
    Thanks in advance,
    Karuna.

    Hi,
    did you already check i.e. compare the customizing subscriptions for both DEV MDW and PROD MDW sites?
    Also you should check & compare the download monitor for CDB load in the CRM system(s).
    I assume sth is missing there (see also your other post).
    Regards,
    Wolfhard

  • Error While saving a iBot

    Hi All ,
    I am getting the below error while saving a iBot.
    Oracle BI Scheduler Error: [nQSError: 16001] ODBC error state: S1C00 code: 106 message: [Microsoft][ODBC Excel Driver]Optional feature not implemented . at stage of execute transaction command with data source: Procurement_Demo
    I am using xls as a datasource to create Repository. I have created scheduler tables for iBot in the same datasource.
    Can i not use XLS as a datasource for iBot?
    If i can use , what is the solution of this problem.
    Thanks in advance.
    -- Ashish

    Hi Vivek,
    Please close your SharePoint Designer application, clear/delete the cached files and folders under the following directories from your server installed SharePoint Designer, then check results again.
    <user profile>\appdata\roaming\microsoft\SharePoint Designer\ProxyAssemblyCache
    <user profile>\appdata\local\microsoft\websitecache\<sitename>
    http://www.andreasthumfart.com/2013/08/sharepoint-designer-2013-server-side-activities-have-been-updated/
    Thanks
    We are trying to better understand customer views on social support experience, so your participation in this
    interview project would be greatly appreciated if you have time.
    Thanks for helping make community forums a great place.

  • Error while creating new user in Oracle 11i EBS

    I am getting following error while creating new user. How solve this issue?
    “Unable to load java class % specified profile option SIGNON_PASSWORD_CUSTOM. Please verify that the class exists and that it implements the java interface oracle.apps.fnd.security.PasswordValidation”.

    Following is the text from Note for Custom Password Validation logic:
    Customers who wish to use their own password validation logic may do
      so by writing their own Java classes that implement the
      oracle.apps.fnd.security.PasswordValidation Java interface.  The
      interface requires 3 methods to be implemented:
      1) public boolean validate(String user, String password)
        - This method takes a username and password, and then returns true
      or false, indicating whether the user's password is valid or invalid,
      respectively.
      2) public String getErrorStackMessageName()
        - This method returns the name of the message to display when the
      user's password is deemed invalid (i.e., the validate() method returns
      false).
      3) public String getErrorStackApplicationName()
        - This method returns the application shortname for the
      aforementioned error message.
      After writing the Java class to perform customized password
      validation, the customer must then set the value of the profile option
      SIGNON_PASSWORD_CUSTOM to be the full name of the class.  If, for
      example, the name of the Java class is
      oracle.apps.fnd.security.AppsPasswordValidation, then the value of the
      SIGNON_PASSWORD_CUSTOM profile option must be
      oracle.apps.fnd.security.AppsPasswordValidation.  Note that AOL/J
      will attempt to load this class dynamically.  Hence it is necessary to
      make the class accessible by AOL/J.  This means that in Forms, the
      class must first be loaded into the database using the loadjava
      command.
    You will need to apply the following patches for 11.5.1:
       1344802
       1363919
       1472974
       1351004
       1377615
    You will need to apply the following patches for 11.5.2:
       1377615

Maybe you are looking for