Error in Personnel Information

Dear Friends
I'm getting a issue in production system where all users are unable to access their Personnel Information screens. Earlier the Issue was
ST22 Dump:
"ASSERTION_FAILED" " "                                                                        |
|    "CL_HRPA_PERNR_INFTY_XSS=======CP" or "CL_HRPA_PERNR_INFTY_XSS=======CM00Q"                   |
|    "CHECK_USECASE_WITH_CONSTRAINT"                                               
Program:
V_T7XSSPERSUBTYP:
Earlier the config was:
later changed to
now I'm able to access the Personnel Information screens but when I try to edit them then I'm getting the following error
HRPAD Config:
HRESS_CC_PER_CONFIG:
HRESS_CC_PER_OVP:
ST22 DUMP:
ERROR ANALYSIS:
An exception occurred which is explained in detail below.
The exception, which is assigned to class 'CX_CRM_GENIL_MODEL_ERROR2', was not
  caught and
therefore caused a runtime error.
The reason for the exception is:
'IT0002_46' is not a subobject of 'IT0002_NN'.
"UNCAUGHT_EXCEPTION" "CX_CRM_GENIL_MODEL_ERROR2"
"CL_CRM_GENIL_CONTAINER_OBJECT=CP" or "CL_CRM_GENIL_CONTAINER_OBJECT=CM003"
"IF_GENIL_CONTAINER_OBJECT~ADD_CHILD"
PROGRAM:
method IF_GENIL_CONTAINER_OBJECT~ADD_CHILD .
   data: LS_CONT_OBJ        type CRMT_GENIL_CONT_OBJ_HDR,
         LS_RELATION        type CRMT_GENIL_CONT_RELATION,
         LV_CHILD_DATA_REF  type ref to CRMT_GENIL_CONT_OBJ_HDR,
         LV_CHILD           type ref to CL_CRM_GENIL_CONTAINER_OBJECT,
         LV_CHILD_ID        type CRMT_GENIL_OBJECT_ID,
         LV_TYPE_DESCR      type ref to CL_ABAP_TYPEDESCR,
         LV_TEXT            type CHAR255,
         LV_NEW_OBJECT      type ABAP_BOOL value ABAP_FALSE,
         LV_CURRENT_CHILD   type ref to CL_CRM_GENIL_CONTAINER_OBJECT,
         LS_RELATION_DETAIL type CRMT_RELATION_DETAIL,
         LS_CHILD_PROPS     type CRMT_OBJ_PROPERTIES_DATA.
   field-symbols: <REL>     type CRMT_GENIL_CONT_RELATION,
                  <ENTRY>   type ref to IF_GENIL_CONTAINER_OBJECT.
   LS_RELATION_DETAIL = OBJECT_MODEL->GET_RELATION( IV_NAMESPACE     = ME->DATA_REF->NAMESPACE
                                                    IV_RELATION_NAME = IV_RELATION_NAME ).
* check model compliantness of given relation
   if LS_RELATION_DETAIL-OBJECT_A ne ME->DATA_REF->OBJECT_NAME and
      OBJECT_MODEL->IS_SUBOBJECT_OF( IV_NAMESPACE   = ME->DATA_REF->NAMESPACE
                                     IV_OBJECT_NAME = ME->DATA_REF->OBJECT_NAME
                                     IV_SUPER_NAME  = LS_RELATION_DETAIL-OBJECT_A ) ne ABAP_TRUE.
     LV_TEXT = TEXT-001.
     replace '&1' in LV_TEXT with IV_RELATION_NAME.
     replace '&2' in LV_TEXT with ME->DATA_REF->OBJECT_NAME.
     raise exception type CX_CRM_GENIL_MODEL_ERROR
       exporting
         TEXT = LV_TEXT.
   endif.
* Assign own namespace to child
   LS_CONT_OBJ-NAMESPACE = ME->DATA_REF->NAMESPACE.
* derive target object type from model
   LS_CONT_OBJ-OBJECT_NAME = LS_RELATION_DETAIL-OBJECT_B.
   LS_CHILD_PROPS = OBJECT_MODEL->GET_OBJECT_PROPERTIES( IV_NAMESPACE   = LS_CONT_OBJ-NAMESPACE
                                                         IV_OBJECT_NAME = LS_CONT_OBJ-OBJECT_NAME ).
* determine actual target object in case of polymorph relations
   if LS_CHILD_PROPS-OBJECT_KIND = IF_GENIL_OBJ_MODEL=>ABSTRACT_OBJECT.
     if IV_CHILD_NAME is not initial.
       if OBJECT_MODEL->IS_SUBOBJECT_OF( IV_NAMESPACE   = ME->DATA_REF->NAMESPACE
                                         IV_OBJECT_NAME = IV_CHILD_NAME
                                         IV_SUPER_NAME  = LS_CONT_OBJ-OBJECT_NAME ) = ABAP_TRUE.
         if LS_CONT_OBJ-OBJECT_NAME ne IV_CHILD_NAME.
           LS_CONT_OBJ-OBJECT_NAME = IV_CHILD_NAME.
*         Actual target object changed -> determine properties again!
           LS_CHILD_PROPS = OBJECT_MODEL->GET_OBJECT_PROPERTIES( IV_NAMESPACE   = LS_CONT_OBJ-NAMESPACE
                                                                 IV_OBJECT_NAME = LS_CONT_OBJ-OBJECT_NAME ).
         endif.
       else.
         raise exception type CX_CRM_GENIL_MODEL_ERROR2
           exporting
             TEXTID = CX_CRM_GENIL_MODEL_ERROR2=>INVALID_SUBOBJECT
             TEXT   = |{ IV_CHILD_NAME }|
             TEXT2  = |{ LS_CONT_OBJ-OBJECT_NAME }|.
       endif.
     elseif IV_HANDLE_FLAG = ABAP_FALSE.
       raise exception type CX_CRM_GENIL_INCORRECT_IMPL
         exporting
           TEXTID = CX_CRM_GENIL_INCORRECT_IMPL=>MISSING_ACTUAL_TYPE.
     else.
*     Handle Flag set -> Child is created as placeholder -> accept abstract type!
       LS_CONT_OBJ-DELTA_FLAG = IF_GENIL_CONT_SIMPLE_OBJECT=>DELTA_ABSTRACT.
     endif.
   endif.
   LS_CONT_OBJ-ATTR_REQUESTED = IV_ATTR_REQ.
* delete/modify-allowed properties are not yet determined
   LS_CONT_OBJ-DELETE_ALLOWED = IF_GENIL_NULLABLE_BOOLEAN=>NULL.
   LS_CONT_OBJ-MODIFY_ALLOWED = IF_GENIL_NULLABLE_BOOLEAN=>NULL.
* child inherits group_number of parent
   LS_CONT_OBJ-GROUP_NUMBER = ME->DATA_REF->GROUP_NUMBER.
   ME->ADD_CHILD_INTERNAL( exporting IS_RELATION_DETAIL = LS_RELATION_DETAIL
                                     IS_CHILD_PROPS     = LS_CHILD_PROPS
                                     IS_CHILD_ENTRY     = LS_CONT_OBJ
                                     IS_CHILD_KEY       = IS_CHILD_KEY
                                     IV_HANDLE_FLAG     = IV_HANDLE_FLAG
                                     IV_KEY_IS_ID       = IV_KEY_IS_ID
                                     IV_SUPPRESS_EVENT  = IV_SUPPRESS_EVENT
                           importing EV_RESULT          = RV_RESULT ).
endmethod. 
Note: I've thoroughly compared & checked the Dev & Prd system and moved all the transport requests. I don't get this issue in development system. It's only in production system.
Kindly provide me your valuable Inputs, as this is very critical issue.
Cheers
Pradyp

Dear Jwala
Thanks for your prompt reply, I've solved this Issue by my own. The reason behind this Issue is that the system was unable to pick the version ID numbers with View Indicators with programs & it need to be updated in table V_T582V as it was missing for me in Production system.
as the version number will be a base for the UI Conversion Class to show the screens.
So, I'm closing this thread, Kindly don't mind as I'm making this correct answer on my own to close the thread. Even though It's against ROE, I want that all peers to know the exact solution.
Cheers
Pradyp

Similar Messages

  • Error in Personnel Information- Country/Structure do not match application

    Hi Experts
    I am on ECC 6.0 and on SP level SAPKE60027. Using ESS webdynpro applications for Saudi Arabia. While using Personnel Information Area and under this using any sub area like address, personnel data etc I am getting the following error:
    *Critical Error*
    *A critical error has occured. Processing of the service had to be terminated. Unsaved data has been lost.*
    *Please contact your system administrator.*
    *Country/Structure do not match application country*
    Plz help me in this regard to solve this issue.
    Thanks
    Sheetal Gupta

    go to su3 and chk wht is ur MOL  key
    it must be you country key

  • ESS: personnel information 500 internal service error

    Under "personnel information"menu in ESS,there are severl sub-menu ,for example:ddress, bank information, Familly member, person data.
    When try to open any of the sub-menu, there is a 500 inernal service error . the details pls see the below message.Our SAP
    release is ECC 5.0 and portal release is 7.0 sp11. Did anyone meet the same issue before or who would give me some good points? thanks.
    The initial exception that caused the request to fail, was:
       com.sap.tc.webdynpro.progmodel.context.ContextConfigurationException: DataNodeInfo(FcPersInfo.InitPernr.InitPernrOutput.Subtypes): structure field Default_Begda not found
        at com.sap.tc.webdynpro.progmodel.context.DataAttributeInfo.init(DataAttributeInfo.java:299)
        at com.sap.tc.webdynpro.progmodel.context.NodeInfo.initUnmappedAttributes(NodeInfo.java:687)
        at com.sap.tc.webdynpro.progmodel.context.DataNodeInfo.doInit(DataNodeInfo.java:238)
        at com.sap.tc.webdynpro.progmodel.context.NodeInfo.init(NodeInfo.java:671)
        at com.sap.tc.webdynpro.progmodel.context.NodeInfo.init(NodeInfo.java:674)
        ... 49 more

    thanks Barin.
    according to the indicated thing in the note in step 2, it would have to update the structure HRXSS_PER_SUPPLD_SUBTY_INFO in order to add Default_Begda component, but that structure does not exists.
    I suposse that the problem is about the compatibility between the EP and backend version.
    My backend is ECC 5.0 whit this components:
    SAP_BASIS     640     0016     SAPKB64016     Sistema Base SAP
    SAP_ABA     640     0016     SAPKA64016     Componente multiaplicaciones
    SAP_HR     500     0005     SAPKE50005     Gestión de Recursos Humanos
    And I using EP 7.0 - 2004s SP11 like ESS frontend.
    Any suggestion about this ?
    thanks in advance

  • Error in Personnel Data iview

    Hi All,
    Personnel Information
    Critical Error
    A critical error has occured. Processing of the service had to be terminated. Unsaved data has been lost.
    Please contact your system administrator.
    failed to create or init instance of model 'com.sap.xss.hr.per.in.pdata.model.HRXSS_PER_P0002_IN' in scope APPLICATION_SCOPE with instanceId 'null'
    Caused by: com.sap.tc.webdynpro.progmodel.model.api.WDModelException: failed to create instance of model 'com.sap.xss.hr.per.in.pdata.model.HRXSS_PER_P0002_IN'
    at com.sap.tc.webdynpro.progmodel.model.api.WDModelFactory.getNewModelInstance(WDModelFactory.java:392)
    at com.sap.tc.webdynpro.progmodel.model.api.WDModelFactory.getOrCreateModelInstanceFromScopeMaintainer(WDModelFactory.java:329)
    ... 65 more
    Caused by: com.sap.tc.webdynpro.services.exceptions.WDRuntimeException: no jcoMetadata found for RFC function 'HRXSS_PER_GET_F4_P0002_IN'! Please verify, that your model is consistent with the ABAP backend: 'EC6'.
    It's very urgent
    This HRXSS_PER_GET_F4_P0002_IN function module is not wxist in the backnd system.
    How to Resolve this error ?
    Thanks and Regards
    Phanikumar

    Hi,
    I am not very much sure about this.
    Are u calling a BAPi from WD application?
    If yes then the error seems to be that : JCOs metadata is not available.
    Please check that ur JCO definitions in portal and make sure the name in Portal and the name u defined in WD application are same( case  sensitive).
    Also TEST JCO in Portal.
    Please revert back with current status and explain ur problem a bit more.
    Regards,
    Sumit

  • Update personnel information through tcode PA40

    Any bapi or function module to update personnel information through tcode PA40

    Hi,
    You can Use Function Module "HR_MAINTAIN_MASTERDATA".
    Functionality
    This function module enables you to maintain master data for employees and applicants. You can enter field names and contents in the 'proposed values' table. This will then be transferred to the corresponding infotypes. The same validation checks take place as would in the individual maintenance screens for the infotypes. You can enter as much data as you like. You can enter several records or infotypes at once. You are responsible for making sure that the data is consistent. If necessary, the module returns an error message. The error messages are the same as the those which appear in the dialog, in other words, the individual maintenance screen error messages are transferred rather than interpreted by this module.
    Regards,
    Ajay Jangid

  • Weird message in iCal "Error Locating Account Information"

    Hi,
    I've a problem syncing iCal with Google calendar.
    It works in the beginning very well, but sometimes I receive the message:
    Error Locating Account Information
    Request encountered an unexpected error (domain CalDAV No Calendar Home Error / code 1).
    And the calendar stops syncing.
    What is this message ? Why works well and then, suddenly, stops ?(without change any setting)
    Mac OS X - 10.6.7
    iCal 4.0.4 
    Thanks

    Greetings,
    That is an error message coming back from the Google CalDAV server when iCal requests an update of your calendars.
    1.) First make a backup of your calendars by clicking on each one, one at a time and going to File > Export > Export and then saving the files somewhere for safekeeping.
    2.) Delete the Google account from iCal > Preferences > Accounts
    3.) Remove the following to the trash and restart your computer:
    Home > Library > Caches > com.apple.ical and / or "ical"
    Home > Library > Calendars > Calendar Cache, Cache, Cache 1, 2, 3, etc. (Do not remove Sync Cache or Theme Cache)
    Home > Library > Preferences > com.apple.ical (There may be more than one of these. Remove them all.)
    4.) Launch iCal and then go to iCal > Preferences > Accounts and re-add your Google account being very careful to type in the user name and password correctly.
    See if that helps.

  • Error: "The document information panel was unable to load"

    Hello,
    I have created a custom document content type that uses a specified word template for a sharepoint document library for contracts and offers, and added a few custom columns in the document library as well. The word template launches succesfully when creating a new item in the document library, but the problem arises when I add custom columns to the word template content type. When the document loads in Word, I get the following error: "The Document Information Panel was unable to load. The document will continue to open. For more information, contact your system administrator." And in details:
    "Document Information Panel cannot create a new, blank form.
    Document Information Panel cannot open the form. To fix this problem, contact your system administrator.
    Form template: http://servername/sitename/proppanel.xsn
    The following DataObject either cannot be created or cannot be initialized: list_033AA217-8906-447E-A604-A300F51D4030
    Document Information Panel cannot add the following object to the DataObjects collection: list_033AA217-8906-447E-A604-A300F51D4030
    list_033AA217-8906-447E-A604-A300F51D4030 could not be added to the DataObjects collection.
    The following item already exists in the collection: list_033AA217-8906-447E-A604-A300F51D4030"
    Interestingly enough, I have two web applications running on the same server that I have tried to implement this on, and on the other it works flawlessly, meaning that the Document Information Panel launches successfully and I can edit the columns associated with that content type and store the values in a document library. I have also tried to save the DIP template from the working web application and use it as the default DIP template on the other application, but that doesn't work either.
    I have also tried to browse through all options and configurations in the application settings in CA and SSP, but to no avail. Any suggestions about what might be causing this problem or how to fix it would be greatly appreciated.
    - Sebastian Eriksson

    Hi All,
    I have the same problem with my DIP in already two of my document libraries. Please see below:
    Document Information Panel cannot create a new, blank form.
    Document Information Panel cannot open the form. To fix this problem, contact your system administrator.
    Form template: http://servername/sitename/proppanel.xsn
    The following DataObject either cannot be created or cannot be initialized: list_295E77CD-1C08-4DDC-A188-F86107F9BF60
    Document Information Panel cannot add the following object to the DataObjects collection: list_295E77CD-1C08-4DDC-A188-F86107F9BF60
    list_295E77CD-1C08-4DDC-A188-F86107F9BF60 could not be added to the DataObjects collection.
    The following item already exists in the collection: list_295E77CD-1C08-4DDC-A188-F86107F9BF60
    I have made the same thing that Kirikou has suggested and I was able to recreate the broken library. The problem is that Kirikou's way has failed on my Share Point staging installation:
    [COMException (0x80020009): Exception occurred. (Exception from HRESULT: 0x80020009 (DISP_E_EXCEPTION))]
       Microsoft.SharePoint.Library.SPRequestInternalClass.RenderViewAsHtml(String bstrUrl, String bstrListName, String bstrViewID, String bstrViewXml, String bstrQualifier, ISPDataCallback pDataCallback, Boolean& pbSharedList) +0
       Microsoft.SharePoint.Library.SPRequest.RenderViewAsHtml(String bstrUrl, String bstrListName, String bstrViewID, String bstrViewXml, String bstrQualifier, ISPDataCallback pDataCallback, Boolean& pbSharedList) +125
    [SPException: Exception occurred. (Exception from HRESULT: 0x80020009 (DISP_E_EXCEPTION))]
       Microsoft.SharePoint.Library.SPRequest.RenderViewAsHtml(String bstrUrl, String bstrListName, String bstrViewID, String bstrViewXml, String bstrQualifier, ISPDataCallback pDataCallback, Boolean& pbSharedList) +166
       Microsoft.SharePoint.WebPartPages.ListViewWebPart.RenderView() +4239
       Microsoft.SharePoint.WebPartPages.ListViewWebPart.EnsureData(Int32 token) +658
       Microsoft.SharePoint.WebPartPages.SharePointDataProvider.Execute() +254
       Microsoft.SharePoint.WebPartPages.SPWebPartManager.ActivateV2ConnectionsAndSharePointDataFetch() +139
       Microsoft.SharePoint.WebPartPages.SPWebPartManager.ActivateConnections() +85
       System.Web.UI.WebControls.WebParts.WebPartManager.OnPageLoadComplete(Object sender, EventArgs e) +52
       System.EventHandler.Invoke(Object sender, EventArgs e) +0
       System.Web.UI.Page.OnLoadComplete(EventArgs e) +2063076
       System.Web.UI.Page.ProcessRequestMain(Boolean includeStagesBeforeAsyncPoint, Boolean includeStagesAfterAsyncPoint) +1875
    I will be very appreciated if somebody knows what is the reason for this problem.
    Best regards,
    Yordan Nikolov

  • Error getting drill information in OBIEE 11.1.1.5

    Guru's,
    in OBIEE 11.1.1.5 I created a simple report with 3 columns: the year column from a time dimension table, a measure from a fact table and column from another dimension table. The report shows the results as expected. But when I try to drill down on a year I get the following error:
    Error getting drill information: SELECT "Time"."Cal Year" saw_0, "Requests"."Time"."Cal Half Name" saw_1, "Facts"."Requests" saw_2, "Merchant"."Merchantname" saw_3, DESCRIPTOR_IDOF("Requests"."Merchant"."Merchantname") saw_4 FROM "Requests" WHERE "Requests"."Time"."Cal Year" = 2010 =
    Error Details
    Error Codes: YQCO4T56:OPR4ONWY:U9IM8TAC:OI2DL65P
    Location: saw.views.evc.activate, saw.httpserver.processrequest, saw.rpc.server.responder, saw.rpc.server, saw.rpc.server.handleConnection, saw.rpc.server.dispatch, saw.threadpool, saw.threadpool, saw.threads
    Odbc driver returned an error (SQLExecDirectW).
    +State: HY000. Code: 10058. [NQODBC] [SQL_STATE: HY000] [nQSError: 10058] A general error has occurred. [nQSError: 43113] Message returned from OBIS. [nQSError: 27002] Near <=>: Syntax error [nQSError: 26012] . (HY000)+
    +SQL Issued: {call NQSGetLevelDrillability('SELECT "Time"."Cal Year" saw_0, "Requests"."Time"."Cal Half Name" saw_1, "Facts"."Requests" saw_2, "Merchant"."Merchantname" saw_3, DESCRIPTOR_IDOF("Requests"."Merchant"."Merchantname") saw_4 FROM "Requests" WHERE "Requests"."Time"."Cal Year" = 2010 = ')}+
    It also creates an empty filter condition when drilling down: *sawx:exprsawx:comparisonequal is equal to / is in  [missing value]      [Edit Filter]*
    Also notice the extra equal sign in the generated query which is causing the problem.
    The time hierarchy is set up correctly in the repository (with keys on the levels, etc.) and no preferred drillpath or anything special.
    If you have any hint or solution for this problem please let me know.
    Kind regards,
    Quinten

    I found out this occurs when you have 'double column' columns (columns with a Descriptor ID set in the repository) in your report. When you try to drill down on any dimension you will get this error. I reproduced this on the Sample App installation. This seems like a bug.

  • B2B-50079 Transport error: To Transport Informations Not found

    Hi,
    I'm trying an outbound scenario in b2b using ebXML. When i tried to test, 3 messages for a single instance can be seen.
    1.A message entry with correct document type which converts custom format to ebXML format and the status is in "MSG_WAIT_ACK" for some time. (sender and receiver are correct)
    2. A message entry with document type acknowledgement is seen with status "MSG_ERROR". (sender and receiver both are same - means the host TP)
    3. A message entry with no document type and status as "MSG_ERROR". (sender and receiver both are same - means the host TP)
    Later, the original message entry state changes from "MSG_WAIT_ACK" to "MSG_ERROR" since the retry for acknowledgement is over.
    What is the mistake I'm doing here? Please help me to resolve this.
    Below is the details of the acknowledgement message.
    Id     7F0000011392F6F4E0B0000050F6DB1A
    Message Id     7F0000011392F6F4E040000050F6DB15
    Refer To Message     Refer To Message
    Sender Type     Name
    Sender Value     OracleServices
    Receiver Type     Name
    Receiver Value     MarketInc
    Sender     MarketInc
    Receiver     MarketInc
    Agreement Id     
    Agreement     
    Document Type     Acknowledgement
    Document Protocol     
    Document Version     
    Message Type     ACK
    Direction     OUTBOUND
    State     MSG_ERROR
    Acknowledgement Mode     ASYNC
    Response Mode     NONE
    Send Time Stamp     08/16/2012 06:06:27 PM
    Receive Time Stamp     08/16/2012 06:06:27 PM
    Document Retry Interval(Channel)     0
    Document Remaining Retry(Channel)     0
    Document Retry Interval(Agreement)     0
    Document Remaining Retry(Agreement)     0
    Native Message Size     
    Translated Message Size     
    Business Action Name     MessageError
    Business Transaction Name     
    Xpath Name1     
    Xpath Value1     
    Xpath Expression1     
    Xpath Name2     
    Xpath Value2     
    Xpath Expression2     
    Xpath Name3     
    Xpath Value3     
    Xpath Expression3     
    Correlation From XPath Name     
    Correlation From XPath Value     
    Correlation From XPath Expression     
    Correlation To XPath Name     
    Correlation To XPath Value     
    Correlation To XPath Expression     
    Wire Message     Wire Message
    Application Message     Application Message
    Payload Storage     Payload Storage
    Attachment     Attachment
    Label     
    Collaboration Id     @7F0000011392F6F4D350000050F6DB09
    Collabration Name     
    Collabration Version     
    Business Action Name     MessageError
    Exchange Protocol Name     ebMS
    Exchange Protocol Version     2.0
    Interchange Control Number     
    Group Control Number     
    Transaction Set Control Number     
    Error Code     B2B-50079
    Error Description     Machine Info: (localhost.localdomain) Transport error: To Transport Informations Not found
    Error Level     ERROR_LEVEL_COLLABORATION
    Error Severity     ERROR
    Error Text     Transport error: To Transport Informations Not found

    Have you created a channel in remote trading partner profile? If yes, have you included the channel in the agreement? If yes, then save validate and deploy the agreement again. Make sure that URL in ebMS channel is not pointing to same B2B host.
    You may refer -
    http://www.oracle.com/technetwork/middleware/soasuite/b2b-tu003-ebxml-134605.pdf
    Regards,
    Anuj
    Edited by: Anuj Dwivedi on Aug 17, 2012 2:44 PM

  • How to add an customized HR infotype in personnel information on ESS

    Dear Experts,
    I am trying to add a customized HR infotype in personnel information on ESS.  Could you pls provide me some solution or references document. Thanks
    Daniel

    Daniel,
    check this(may give some hint)
    https://www.sdn.sap.com/irj/scn/wiki?path=/display/profile/essPersonalInformationUIenhancementwithoutmodification
    Changing an input field's appearance to Optional in an ESS WD Java scenario
    you need to modify the HomePage framework to include link in ESS for custom infotype.search for chris solomon's blogs in sdn
    Thanks
    Bala Duvvuri

  • Error getting drill information

    Any ideas what this error means? I just have a report showing the day date and a count metric with a filter stating date>current_date (variable). The variable works fine.
    Error getting drill information: SELECT "- Flight Date"."Flown Calendar Date" saw_0, "- Coupon"."Coupons Sold" saw_1 FROM Core WHERE "- Flight Date"."Flown Calendar Date" >= VALUEOF(current_date)
    Error Details
    Error Codes: YQCO4T56:OPR4ONWY:U9IM8TAC:OI2DL65P
    Odbc driver returned an error (SQLExecDirectW).
    State: HY000. Code: 10058. [NQODBC] [SQL_STATE: HY000] [nQSError: 10058] A general error has occurred. [nQSError: 27002] Near <current_date>: Syntax error [nQSError: 26012] . (HY000)
    SQL Issued: {call NQSGetLevelDrillability('SELECT "- Flight Date"."Flown Calendar Date" saw_0, "- Coupon"."Coupons Sold" saw_1 FROM Core WHERE "- Flight Date"."Flown Calendar Date" >= VALUEOF(current_date)')}
    Thanks,
    Kath

    I have the same exact problem, and would like a solution as well.
    Sorry for the dutch errorcode text.
    Fout bij het ophalen van gegevens bij zoeken op lager niveau: SELECT "dim - Datum".Datum saw_0 FROM InkoopMonitorDemo
    Foutdetails
    Foutcodes: YQCO4T56:OPR4ONWY:U9IM8TAC:OI2DL65P
    ODBC-driver heeft een fout teruggegeven (SQLExecDirectW).
    Toestand: HY000. Code: 10058. [NQODBC] [SQL_STATE: HY000] [nQSError: 10058] A general error has occurred. [nQSError: 27005] Unresolved column: "dim - Datum"."Datum". (HY000)
    SQL-opdracht: {call NQSGetLevelDrillability('SELECT "dim - Datum".Datum saw_0 FROM InkoopMonitorDemo')}

  • Error in personnel number and transfer

    Hi experts!
    I need to run pre program DME: Transfer. The employee has the number 4 and the company code is BP01.
    It shows me an Error:
    Error in personnel number and transfer number     00000004 01
    There is no entry in table for key:        T012K BP01 AR01 GIRO1
    Error in personnel number and transfer number     00000004 01
    There is no entry in table for key:        T012 BP01 AR01
    I checked the T012 and I set the bank 01, but I can´t get into the T012K.
    What does this error number refer to?

    Hi carolina,
    Go to SM31 and try maintaining V_T012K_CORE, V_T012K_D, V_T012K_W.
    This is because the table T012K can only be maintained through restricted views.
    Regards,
    Dilek
    Edited by: Dilek Ersoz on Jan 26, 2009 12:54 PM

  • Trying to buy, get "We're sorry, we have encountered an error processing this information. Please try submitting again later, or try using a different web browser. If the problem persists, please contact customer support."

    trying to buy, get "We're sorry, we have encountered an error processing this information. Please try submitting again later, or try using a different web browser. If the problem persists, please contact customer support."

    Moving this discussion to the Adobe Creative Cloud forum.
    Cock please try a different web browser.  If you continue to face difficulties then you can contact our support team directly at Get help with orders, refunds, and exchanges.

  • Error: Inconsistent currency information J2I8

    Hi Experts,
    We are capturing the balance 50 % credit on capital goods using T-code J2I8 we are getting below error
    Inconsistent currency information
    Message no. F5725
    Diagnosis
    Company code '6202' has currency type '10'. This currency type has the currency key 'INR' in the financial accounting application.
    The same currency type is conveyed to financial accounting across the accounting interface with currency key 'JPY'
    System Response
    Currency data conveyed with this key cannot be processed in the financial accounting module.
    Procedure
    This is a system error in the calling application.
    Currency type '10' in company code '6202' must have currency key 'JPY' when the data is transmitted
    Regards
    VR

    Hi,
    Have you maintained the settings properly in OB08? Please check with the proper currency type.
    Regards,
    Phani Varma

  • Error messages or information for the invalidation of those procedures

    Hello expert:
    I have a few procedure invalidated . in principle , those procedures should be validated automatically when they are called somewhere. but they don't, that means there are some error blocking them validated. please where I can find out corresponding error messages or information for the invalidation of those procedures.
    Many Thanks.

    CREATE TABLE t
    AS
       SELECT 1 id FROM DUAL;
    CREATE OR REPLACE PROCEDURE my_procedure
    AS
       v_id   t.id%TYPE;
    BEGIN
       SELECT id INTO v_id FROM t;
    END;
    CREATE OR REPLACE PROCEDURE my_proc2
    AS
    BEGIN
       my_procedure;
    END;
    exec my_proc2;
    DROP TABLE t;
    ALTER PROCEDURE   dsamstrc.my_proc2
       COMPILE;
    SELECT *
      FROM SYS.USER_ERRORS
    WHERE NAME = 'MY_PROC2'
           OR NAME IN (SELECT REFERENCED_NAME
                         FROM dba_dependencies
                        WHERE NAME = 'MY_PROC2');
    NAME     TYPE     SEQUENCE     LINE     POSITION     TEXT     ATTRIBUTE     MESSAGE_NUMBER
    MY_PROCEDURE     PROCEDURE     4     4     2     PL/SQL: SQL Statement ignored     ERROR     0
    MY_PROCEDURE     PROCEDURE     3     4     27     PL/SQL: ORA-00942: table or view does not exist     ERROR     0
    MY_PROCEDURE     PROCEDURE     2     2     10     PL/SQL: Item ignored     ERROR     0
    MY_PROCEDURE     PROCEDURE     1     2     10     PLS-00201: identifier 'T.ID' must be declared     ERROR     201
    MY_PROC2     PROCEDURE     2     3     5     PL/SQL: Statement ignored     ERROR     0
    MY_PROC2     PROCEDURE     1     3     5     PLS-00905: object DSAMSTRC.MY_PROCEDURE is invalid     ERROR     905wonder if something like this would work if the dependencies were more than 2 deep.
    SELECT distinct *
      FROM SYS.USER_ERRORS
    WHERE NAME in
           (SELECT name
            FROM dba_dependencies
    connect by nocycle  name =  prior  referenced_name
    start with NAME = 'MY_PROC2')
    order by name;Edited by: pollywog on Apr 4, 2011 2:49 PM

Maybe you are looking for