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

Similar Messages

  • 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 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

  • 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.

  • 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 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.

  • CO Object Assignment Error while posting Down Payment Request

    User is raising a Down Payment Request for the purchase of an Asset  through a Purchasing Document. This Asset Master has got the cost center and WBS Element assigned in it.
    System while saving the DP Request is throwing an error that “CO Account Assignments has different Profit Centers”
    I have also checked the cost center master but the profit center assigned there is correct only. Should I check the OKB9 settings ? If yes, for which GL Account do I need to check ? Where else can I check the CO Object Assignments for profit centers ?
    Requirement is critical. Please help.
    Thank you
    Ravi
    9849393564

    Hi,
    Good evening and greetings,
    Please have a look in GGB1 (Profit Centre Substitution), there may be some rule which is overriding the OKB9.
    Please reward points if found useful.
    Thanking you,
    With kindest regards,
    Ramesh Padmanabhan

  • Error while saving the Sales Order

    Hi experts,
        i am getting a runtime error while saving a sales order stating: SAPSQL_EMPTY_TABNAME. It says the field T681-KOTAB could be empty. I would give in more inputs. Someone plz help.
    Thanks.

    I would expect that KOTN521 would be a Database table defined in the ABAP Dictionary that relates to the condition implemented in 521 for the usage specified in that record.
    You should be able to go into the info system, SE84, and search under ABAP Dictionary / Database Tables to see what KOTN521 is.
    Also, since the only Keys to T681 are KVEWE and KOTABNR, and there are two KOTABNR entries with a value of 521, then there must be two different usages (KVEWE) associated with that table.
    If you see what they are, you can check to see what the usages represent.   Based on a lookup, it appears that a usage of N is for Free Goods, A is for Pricing etc.   In our system, we only have A entries.
    What are the usages for the 521 entries?  Do they relate to Free Goods/Pricing???
    Does the table KOTN521 exist in the ABAP Dictionary?
    Answering these questions may get you closer to the answer.
    Can you compare the values in these entries to what you have in different SIDs?
    Is this problem happening in Production, or is it still in a development or Quality Assurance client?
    If it is still in development or Q, then it may be that a recent customization change was made.
    Compare the entries across your systems, if possible.
    Good luck
    Brian

  • Error while saving date value in Java dictionary

    Hello Everybody,
    I got following error while saving date value in one of the fields of the Java table.
    Internal error occured in submit request: Error in method updateRequestContact : The object of type java.sql.Date with the value '2005-12-04 08:00:00.0' assigned to host variable 9 is not normalized. It must not contain time components in the time zone running the virtual machine.
    I can't find why it is taking time value in the date object.
    This value is coming from the RFC as a date value, and I am saving this value in Java dictionary table.
    Same code for this was working fine earlier. But, now suddenly it gives error like this.
    Even if I provide date on the screen from webdynpro application, this date value can't save in the Java dictionary and gives same error.
    What should be the problem behind this?
    Regards,
    Bhavik

    Hi Satyajit,
    I am getting date value from the screen of the webdynpro application from date picker control and passing this value in Java dictionary.
    More Information:
    I have dat value in the Date object: <b>target_date</b>
    But Now I have made new Date object as following:
    Date target_Date1 = new Date(target_date.getYear(),target_date.getMonth(),target_date.getDate());
    Then I am passing this object to Java dictionary. Still it gives same error.
    Then I have changed code as following:
              int l_year;
              int l_month;
              int l_days;
              l_year = target_Date.getYear();
              l_month = target_Date.getMonth();
              l_days = target_Date.getDate();
         Date target_Date1 = new Date(l_year,l_month,l_days);
    Now it works for me.
    But I guess this is not the perment solution. It looks very strange. I have used so many date objects at various palces. So, this solution is not the final for me.
    I want to findout the main cause of it.
    One more thing: This code was working for a mornth or two. But, now suddenly it is giving this error.
    Please help me if anybody knows.
    Regards,
    Bhavik

  • Error while saving list workflow in sharepoint designer 2013

    Hi,
       I am trying to create custom workflow using sharepoint workflow 2013 at client side.While i am saving this,it thowas error-"Server side activities have been updated.you need to restart  sharepoint designer to use the updated version
    of activites"
    I have installed 32-bit sharepoint designer 2013 in my system and i have no access to server.
    I have also followed the solution  and deleted the contents in the below location.
    <user profile>\appdata\roaming\microsoft\SharePoint Designer\ProxyAssemblyCache
    <user profile>\appdata\local\microsoft\websitecache\<sitename>
    Please help to solve the error.
    Thank you

    You need to install updated version of SharePoint designer.
    http://social.msdn.microsoft.com/Forums/sharepoint/en-US/f255f4b4-1828-4ccb-983a-5efbf0e020ae/sharepoint-designer-2013-server-side-activties-have-been-updated-prompt?forum=sharepointcustomization
    Try below:
    http://stackoverflow.com/questions/19652391/error-while-saving-a-workflow-via-sharepoint-designer-server-side-activities-ha

  • Error while saving the documents in Transactions MIRO,VA02, VA01, ects

    Hi SAP Gurus,
    i am geting an popup error while saving or after changing the documents in MIRO VA01, VA02 transactions..
    The error is  * " Condition Table Missing : Access JST1 60 ( Pricing Taxes ) " *
    can u please help me out.
    Regards
    Kumar m

    Hi,
    Found a note explaining the significance of these errors.
    It says:
    "NZE-28862: SSL connection failed
    Cause: This error occurred because the peer closed the connection.
    Action: Enable Oracle Net tracing on both sides and examine the trace output. Contact Oracle Customer support with the trace output."
    For further details you may refer the Note: 244527.1 - Explanation of "SSL call to NZ function nzos_Handshake failed" error codes
    Thanks & Regards,
    Sindhiya V.

  • Error while saving Long Texts

    Hello
    We are using SRM7 Extended classic scenario.
    We don't use shopping carts, rather create POs directly in SRM which will be transferred to ECC as per the standard.
    Error:
    I am getting an error "Error while saving Long Texts" during my PO creation. I get this message in a small pop-up screen. As soon as i click ok or close the pop up screen it kicks me out of the PO creation screen back into the main SRM screen.
    When:
    During the PO Creation
    Any specific situation:
    Yes, only for Material POs
    This is happening when I am creating the PO with a Material code. I can create free text PO without any issues.
    This is a standard message and the message number is 022.
    Thaks for the help guys.

    Hi,
    To confirm can you check commeting "getOADBTransaction().commit();" gives any error message?
    If yes then you can try the following option:
    Have you checked whether the "/" is changed to "\" in the dbc file?
    In the following two entries the slash has to be made as shown below:
    APPS_JDBC_URL=jdbc\:oracle\:thin\:@(DESCRIPTION\=(ADDRESS_LIST\=(LOAD_BALANCE\=YES)(FAILOVER\=YES)(ADDRESS\=(PROTOCOL\=tcp)(HOST\=10.100.503.6)(PORT\=1521)))(CONNECT_DATA\=(SERVICE_NAME\=VIS)))
    JDBC\:processEscapes=true
    Thanks and Regards,
    Lacman

  • 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 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 skills in Career and Job Subarea regd ESS

    HI Experts,
    I am workin with ESS and it is configured.
    There is an error while saving the SKILLS in Career and Job  I am getting an error
    Important primary table entries are missing in table OBJS -> no tran, error
    I am pure portal guy and no idea on Backend tables
    Any solutionsfor this issue will be awarded
    Thanks
    Mayu

    HI all
    This si the actual error I am getting
    com.sap.tc.webdynpro.modelimpl.dynamicrfc.WDDynamicRFCExecuteException:      Important primary table entries are missing in table OBJS -> no tran, error key: RFC_ERROR_SYSTEM_FAILURE
         at com.sap.tc.webdynpro.modelimpl.dynamicrfc.DynamicRFCModelClassExecutable.execute(DynamicRFCModelClassExecutable.java:101)
         at com.sap.xss.hr.skl.FcSklBusinessLogic.saveProfile(FcSklBusinessLogic.java:240)
         at com.sap.xss.hr.skl.wdp.InternalFcSklBusinessLogic.saveProfile(InternalFcSklBusinessLogic.java:715)
         at com.sap.xss.hr.skl.FcSklBusinessLogicInterface.saveProfile(FcSklBusinessLogicInterface.java:136)
         at com.sap.xss.hr.skl.wdp.InternalFcSklBusinessLogicInterface.saveProfile(InternalFcSklBusinessLogicInterface.java:382)
         at com.sap.xss.hr.skl.wdp.InternalFcSklBusinessLogicInterface$External.saveProfile(InternalFcSklBusinessLogicInterface.java:474)
         at com.sap.xss.hr.skl.review.VcSklReviewNavigation.Save(VcSklReviewNavigation.java:222)
         at com.sap.xss.hr.skl.review.wdp.InternalVcSklReviewNavigation.Save(InternalVcSklReviewNavigation.java:163)
         at com.sap.xss.hr.skl.review.ReviewNavigation.onActiononSave(ReviewNavigation.java:163)
         at com.sap.xss.hr.skl.review.wdp.InternalReviewNavigation.wdInvokeEventHandler(InternalReviewNavigation.java:166)
         at com.sap.tc.webdynpro.progmodel.generation.DelegatingView.invokeEventHandler(DelegatingView.java:87)
         at com.sap.tc.webdynpro.progmodel.controller.Action.fire(Action.java:67)
         at com.sap.tc.webdynpro.clientserver.window.WindowPhaseModel.doHandleActionEvent(WindowPhaseModel.java:420)
         at com.sap.tc.webdynpro.clientserver.window.WindowPhaseModel.processRequest(WindowPhaseModel.java:132)
         at com.sap.tc.webdynpro.clientserver.window.WebDynproWindow.processRequest(WebDynproWindow.java:335)
         at com.sap.tc.webdynpro.clientserver.cal.AbstractClient.executeTasks(AbstractClient.java:143)
         at com.sap.tc.webdynpro.clientserver.session.ApplicationSession.doProcessing(ApplicationSession.java:332)
         at com.sap.tc.webdynpro.clientserver.session.ClientSession.doApplicationProcessingPortal(ClientSession.java:761)
         at com.sap.tc.webdynpro.clientserver.session.ClientSession.doApplicationProcessing(ClientSession.java:696)
         at com.sap.tc.webdynpro.clientserver.session.ClientSession.doProcessing(ClientSession.java:253)
         at com.sap.tc.webdynpro.clientserver.session.RequestManager.doProcessing(RequestManager.java:149)
         at com.sap.tc.webdynpro.clientserver.session.core.ApplicationHandle.doProcessing(ApplicationHandle.java:73)
         at com.sap.tc.webdynpro.portal.pb.impl.AbstractApplicationProxy.sendDataAndProcessActionInternal(AbstractApplicationProxy.java:869)
         at com.sap.tc.webdynpro.portal.pb.impl.localwd.LocalApplicationProxy.sendDataAndProcessAction(LocalApplicationProxy.java:77)
         at com.sap.portal.pb.PageBuilder.updateApplications(PageBuilder.java:1356)
         at com.sap.portal.pb.PageBuilder.SendDataAndProcessAction(PageBuilder.java:327)
         at com.sap.portal.pb.PageBuilder$1.doPhase(PageBuilder.java:869)
         at com.sap.tc.webdynpro.clientserver.window.WindowPhaseModel.processPhaseListener(WindowPhaseModel.java:755)
         at com.sap.tc.webdynpro.clientserver.window.WindowPhaseModel.doPortalDispatch(WindowPhaseModel.java:717)
         at com.sap.tc.webdynpro.clientserver.window.WindowPhaseModel.processRequest(WindowPhaseModel.java:136)
         at com.sap.tc.webdynpro.clientserver.window.WebDynproWindow.processRequest(WebDynproWindow.java:335)
         at com.sap.tc.webdynpro.clientserver.cal.AbstractClient.executeTasks(AbstractClient.java:143)
         at com.sap.tc.webdynpro.clientserver.session.ApplicationSession.doProcessing(ApplicationSession.java:332)
         at com.sap.tc.webdynpro.clientserver.session.ClientSession.doApplicationProcessingStandalone(ClientSession.java:741)
         at com.sap.tc.webdynpro.clientserver.session.ClientSession.doApplicationProcessing(ClientSession.java:694)
         at com.sap.tc.webdynpro.clientserver.session.ClientSession.doProcessing(ClientSession.java:253)
         at com.sap.tc.webdynpro.clientserver.session.RequestManager.doProcessing(RequestManager.java:149)
         at com.sap.tc.webdynpro.serverimpl.defaultimpl.DispatcherServlet.doContent(DispatcherServlet.java:62)
         at com.sap.tc.webdynpro.serverimpl.defaultimpl.DispatcherServlet.doPost(DispatcherServlet.java:53)
         at javax.servlet.http.HttpServlet.service(HttpServlet.java:760)
         at javax.servlet.http.HttpServlet.service(HttpServlet.java:853)
         at com.sap.engine.services.servlets_jsp.server.HttpHandlerImpl.runServlet(HttpHandlerImpl.java:401)
         at com.sap.engine.services.servlets_jsp.server.HttpHandlerImpl.handleRequest(HttpHandlerImpl.java:266)
         at com.sap.engine.services.httpserver.server.RequestAnalizer.startServlet(RequestAnalizer.java:386)
         at com.sap.engine.services.httpserver.server.RequestAnalizer.startServlet(RequestAnalizer.java:364)
         at com.sap.engine.services.httpserver.server.RequestAnalizer.invokeWebContainer(RequestAnalizer.java:1039)
         at com.sap.engine.services.httpserver.server.RequestAnalizer.handle(RequestAnalizer.java:265)
         at com.sap.engine.services.httpserver.server.Client.handle(Client.java:95)
         at com.sap.engine.services.httpserver.server.Processor.request(Processor.java:175)
         at com.sap.engine.core.service630.context.cluster.session.ApplicationSessionMessageListener.process(ApplicationSessionMessageListener.java:33)
         at com.sap.engine.core.cluster.impl6.session.MessageRunner.run(MessageRunner.java:41)
         at com.sap.engine.core.thread.impl3.ActionObject.run(ActionObject.java:37)
         at java.security.AccessController.doPrivileged(Native Method)
         at com.sap.engine.core.thread.impl3.SingleThread.execute(SingleThread.java:104)
         at com.sap.engine.core.thread.impl3.SingleThread.run(SingleThread.java:176)
    Caused by: com.sap.aii.proxy.framework.core.BaseProxyException:      Important primary table entries are missing in table OBJS -> no tran, error key: RFC_ERROR_SYSTEM_FAILURE
         at com.sap.aii.proxy.framework.core.AbstractProxy.send$(AbstractProxy.java:150)
         at com.sap.xss.hr.skl.model.Skills.xss_Skl_Save_Profile(Skills.java:524)
         at com.sap.xss.hr.skl.model.Xss_Skl_Save_Profile_Input.doExecute(Xss_Skl_Save_Profile_Input.java:137)
         at com.sap.tc.webdynpro.modelimpl.dynamicrfc.DynamicRFCModelClassExecutable.execute(DynamicRFCModelClassExecutable.java:92)
         ... 54 more
    Please guide me
    Thanks
    MAyu

Maybe you are looking for

  • How to get table code of a lookup table?

    I have the lookup field name in the main table. How can I get the table code of the lookup table with MDM Java API? Thanks:-)

  • Trying to figure out how to get custom quiz concept to work

    OK so I've been trying to get this concept to work in CP4. I have simulation quiz questions that gives the user 2 attempts to answer the quiz. The one hitch is that if the user get the question wrong the first time it gives them an "incorrect try aga

  • Error during BAPI_PO_CREATE1

    Hi Friends, During the execution on BAPI_PO_CREATE1 I am getting the following error. Message Class: BAPI Message No. 000000 Message Variable: PurchaseOrder Parameter Name: POHEADER Message Type: E Please Guide me for the solution. Regards, Krishan R

  • HDV Sequence Option Missing

    I recently reformatted my computer and re-installed Adobe Premiere CS5. When starting a new project, I use to have the HDV sequence option but when I reinstalled, I noticed that it was missing, along with a few other options. I tried re-installing Pr

  • Changing or deleting priority of a message

    Is there any way to remove the priority exclamations from an incoming message? I have people that always send me messages from exchange marked as high priority and when I sort my flag these always come up. Is there not any way to remove or change the