Issue while modifying entries in custom infotype after enhancement.

Hi All ,
I have enhanced custom Infotype (Added 2 new fields).
After enhancement, I am facing one issue while updating infotype through FM HR_INFOTYPE_OPERATION.
Issue is that I am not able to update/modify records through FM HR_INFOTYPE_OPERATION.
RETURN parameter of FM comes empty indicating no errors but actual records in database table are not updated. I debugged FM and found that SAVE button on PA30 screen is disabled.
Anyone knows reason for above proble and also please help me in solving issue.
Regards,
Jigar Thakkar.

Thanks for your response.
Yes i am able to update IT9201 through PA30 but not with FM HR_INFOTYPE_OPERATION. Also I have activated PXXXX structure through PM01.
While debugging FM HR_INFOTYPE_OPERATION i saw that SAVE button is disabled and processing stops there.
Regards,
Jigar.

Similar Messages

  • Delete entries from custom infotype overview screen

    Hi
    I have the requirement to delete few fields from overview screen(Screen 3000) from my custom infotype.
    Can I go to screen 3000, and CUT (delete) the fields which are not required? or any other procedure?
    Did anyone get similar requirement?
    Please help me in this regard.
    Thanks in advance.

    HI
    I tried hiding it with the help of code.
    Still not able to achieve the result.
    THe below is the code what I am using.
    Please check it and suggest me.
    if psyst-ioper EQ 'LIS0' or
        psyst-ioper EQ 'LIS1' or
        psyst-ioper EQ 'LIS9' .
         loop at SCREEN.
      if screen-name EQ '*P9009-ZWCADM' or screen-name = 'P9009-ZWCADM'.
        screen-active = 0.
        endif.
        MODIFY SCREEN.
      endloop.
      endif.
    Still able to see the fields on the screen.Not being hidden.

  • Issue while creating a multiline custom settype

    Hi,
    I have encountered a strange problem recently when creating custom set types. When a multi line custom set type is created (i.e. one of the atttributes assigned to the set type is set as key), I have found that out of all function modules that get generated, one function module with final suffix MAINTRD does not get generated. Due to this, when this custom settype is assigned to a product category(say CAT1) in the category hierarchy, and I try to open a product in transaction commpr01 that belongs to product category CAT1, it results in a dump. The dump occurs because it tries to call the function module with suffix MAINTRD dynamically but that does not exist.
    I have also found that if the settype is single-line (i.e. no attribute of the settype is set as key), in that case this function module is generated correctly.
    Please suggest why this happens and how can this be solved?
    Regards,
    Shiromani

    Hello Shiromani,
    This issue needs to be checked by AP-MD-PRO experts.
    Without debugging it is very difficult to find the root cause of the issue.
    Kindly raise a customer message in component AP-MD-PRO , detailing about the issue.
    Also provided step by step details to reproduce the issue and the connection details.
    Best Regards,
    Shanthala Kudva.

  • Creation of New fast entry for custom infotype

    Hi all, I need to create new fast entry form my custom 9010 inft.
    What I need to do,? How to create screen for input and how to assign it to transaction PA70.
    Change some modules or what?
    Kind regards.

    to create a new infotype for personnel administration (PA) use transaction PM01.

  • Lock Objects Problem while updating entries in custom table

    Hi Friends,
    Iam updating a custom table ztable from internal table entries.
    ie : Modify ZTABLE from table ITAB.
    Now the entries are updating and inserting perfectly..
    But my problem is i need to use lock objects before doing this..
    I have created a lock obect EZTABLE with all th ekey fields of the table.. ie : it has 2 key fields
    item & matnr .
    Now how to use lock objects here.. do i need to loop the internal table and use enque & deque function module each and every time in loop or use it out side the loop..
    Can any one explain me this..
    Regards,
    Kumar

    hi kumar,
    **check if the equipment is already locked by user, if yes, trigger a mail
                CALL FUNCTION 'ENQUEUE_EIEQUI'
                 EXPORTING
                MODE_EQUI            = 'E'
                MANDT                = SY-MANDT
                   equnr                = lv_equi_temp
                X_EQUNR              = ' '
                _SCOPE               = '2'
                _WAIT                = ' '
                _COLLECT             = ' '
                 EXCEPTIONS
                   foreign_lock         = 1
                   system_failure       = 2
                   OTHERS               = 3.
                IF sy-subrc <> 0.
                  lv_subrc1 =  sy-subrc.
    MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
            WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
                ELSE.
                  CALL FUNCTION 'DEQUEUE_EIEQUI'
                   EXPORTING
                MODE_EQUI       = 'E'
                MANDT           = SY-MANDT
                     equnr           =  lv_equi_temp
                X_EQUNR         = ' '
                _SCOPE          = '3'
                _SYNCHRON       = ' '
                _COLLECT        = ' '
                ENDIF.
    try like this to check if the object is locked....
    u can also use
    call function 'ENQUEUE,.
    do the needful changes update the database then commit work
    then call function 'DEQUEUE'
    hope this helps,
    tanmaya

  • Namespace issue while modifying request object

    Hi,
    This question is about task flow created from BPM worklist. I am updating the request using iterator binding and adding new nodes in the list. I need to get this updated request object back to BPEL. When the object is returned back to BPEL, the new nodes added from ADF don't have the namespace prefixed with the tags. This is creating issue in BPEL. Jdev version 11.1.1.4.0
    Is there any way in BPEL while copying / transforming the data, force to keep target variable's namespace? There is another issue where in source namespace is getting copied to target list.
    Thanks
    Ashwini

    Hi,
    You can use a xslt transformation in bpel to get the data from adf back to your namespace before you add the nodes in the list...
    There's a xslt sample here...
    http://stackoverflow.com/questions/3463943/changing-namespace-for-xml-file-in-xsl-translation
    Cheers,
    Vlad

  • BPM Task payload namespace issue while modifying from ADF UI

    Hi,
    In my BPM process, I have the below tasks.
    1. Input task - user input form
    2. Review task - to review the user input values
    I have created the UI for the above tasks through Auto-generate forms.
    Before invoking Input task, I have created a transformation to initailize the payload elements, so that in the UI these field elements will be become editable.
    I have an ADF table which is used to insert account details elements which is initialized in the transformation with namespace.
    <ns0:bankAccountsType>
    <ns0:registrationNumber></ns0:registrationNumber>
    <ns0:accountNumber></ns0:accountNumber>
    <ns0:bankName></ns0:bankName>
    </ns0:bankAccountsType>
    I am using the createInsert operation of the ADF command button to insert records for these table in UI. The row is getting inserted with values and clicked "Approve" to go to the Review task.
    Now if i check the flow trace for this instance in EM console. ie "Review Task - Instance entered the activity"
    The payload elements for this account types is coming namespace for first record (becoz the row is intialized in BPM transformation) and the second & third record is not showing namespace.
    <ns0:bankAccountsType>
    <ns0:registrationNumber>111111111111111</ns0:registrationNumber>
    <ns0:accountNumber>1111111111111111</ns0:accountNumber>
    <ns0:bankName>qqqq</ns0:bankName>
    </ns0:bankAccountsType>     
    <bankAccountsType>
                   <registrationNumber>222222222222</registrationNumber>
                   <accountNumber>222222222222</accountNumber>
                   <bankName>www</bankName>
              </bankAccountsType>
              <bankAccountsType>
                   <registrationNumber>3333333333</registrationNumber>
                   <accountNumber>3333333333</accountNumber>
                   <bankName>sas</bankName>
              </bankAccountsType>
    Is there any way ADF can keep the namespace while adding new items?
    Jdeveloper
    Studio Edition Version 11.1.1.5.0
    Build JDEVADF_11.1.1.5.0_GENERIC_110409.0025.6013
    Thanks in advance.
    Regards,
    Murali.S
    Edited by: 1006338 on 16 May, 2013 5:18 AM
    Edited by: 1006338 on 16 May, 2013 5:20 AM

    Before invoking Input task, I have created a transformation to initailize the payload elements, so that in the UI these field elements will be become editable.
    I have an ADF table which is used to insert account details elements which is initialized in the transformation with namespace.You can simple use a ADF form to do this. Create ADF editable input fields in a panelFormLayout and wehn user enters values and clicks ona button .. pass those values to BPM payload.
    See - http://andrejusb.blogspot.com/2010/10/initializing-oracle-bpm-11g-process.html

  • Runtime error while updating entries of infotype usin HR_INFOTYPE_OPERATION

    Hi,
    I uploading entries of customized infotype using HR_INFOTYPE_OPERATION function module.
    It is giving me run-time error as,
    ShrtText
        An exception that could not be caught occurred.
    What happened?
        The exception 'CX_HRPA_VIOLATED_PRECONDITION' was raised but was not caught at
         any stage in the
        call hierarchy.
        Since exceptions represent error situations, and since the system could
        not react adequately to this error, the current program,
         'CL_HRPA_INFOTYPE_FACTORY======CP', had to
        be terminated.

    Hi,
    Refer to this link..Re: CX_HRPA_VIOLATED_PRECONDITION using HR_INFOTYPE_OPERATION to insert rec

  • Unable to delete last entry in Custom table

    Hi,
    I have one custom table which allows only some specific entries to be maintained in the table.I have used a standard table as a check table for dis.I found no issue while maintaining entries in the table.But when i try to delete the last entry in the table i get the message "No entry exist".Long textNo entries were found when importing data from the database.
    Kindly help.

    Hi,
    If it is not possible through table maintainence then write a small Z program to delete the entries in devlopment system and then if then if you want you can transfer those to other systems.
    delete from ZTABLE where {give your condition for the last record}.
    Regards,
    Sandipan

  • Update Termination Error while modifying PO in ME22n

    Hi All,
    I am facing one problem,while modifying the PO using ME22n.After modifying the PO when I save it ,Express Document "update was terminated" error comes.
    Can anybody please guide me on this, why it is happening .It's very urgent.
    Thanks in advance.

    Hi
    Check the following link:
    http://www.sapfans.com/forums/viewtopic.php?p=822485&sid=253f8b02796c0b390a5180b3d1a86661
    Though not relevant for PO......the basics are same.
    Regards
    Aravind
    Assign points if useful

  • Problem while modifying searches in Imaging 11.1.1.5

    Hi
    I am facing serious issues while modifying searches in IPM.
    Initially while creating applications, and uploading data in those applications, the fields were not added in sequence.
    So we re-ordered the sequence from database and it worked fine.
    But now because of re-ordering the search results column have also been reordered(Result Formatting) in Search Creation.
    While modifying i am facing following error:
    2012-03-06T10:14:27.967-10:00] [IPM_server1] [ERROR] [] [oracle.imaging.axf] [tid: [ACTIVE].ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)'] [userId: weblogic] [ecid: f5c1f5acbf0bb7a6:2d91bb50:135e98f9a52:-8000-00000000000000d7,0] [APP: imaging] ##### Error ID is [e6b7913a-ab37-4ba3-9960-2e46a212f241]
    [2012-03-06T10:14:27.967-10:00] [IPM_server1] [ERROR] [] [oracle.imaging.axf] [tid: [ACTIVE].ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)'] [userId: weblogic] [ecid: f5c1f5acbf0bb7a6:2d91bb50:135e98f9a52:-8000-00000000000000d7,0] [APP: imaging] ##### Error was [java.lang.NullPointerException][[
    javax.faces.el.EvaluationException: java.lang.NullPointerException
         at org.apache.myfaces.trinidadinternal.taglib.util.MethodExpressionMethodBinding.invoke(MethodExpressionMethodBinding.java:58)
         at org.apache.myfaces.trinidad.component.UIXComponentBase.broadcastToMethodBinding(UIXComponentBase.java:1256)
         at org.apache.myfaces.trinidad.component.UIXCommand.broadcast(UIXCommand.java:183)
         at oracle.adf.view.rich.component.fragment.UIXInclude.broadcast(UIXInclude.java:102)
         at oracle.adf.view.rich.component.fragment.ContextSwitchingComponent$1.run(ContextSwitchingComponent.java:92)
         at oracle.adf.view.rich.component.fragment.ContextSwitchingComponent._processPhase(ContextSwitchingComponent.java:361)
         at oracle.adf.view.rich.component.fragment.ContextSwitchingComponent.broadcast(ContextSwitchingComponent.java:96)
         at oracle.adf.view.rich.component.fragment.UIXInclude.broadcast(UIXInclude.java:96)
         at oracle.adf.view.rich.component.fragment.UIXRegion.broadcast(UIXRegion.java:148)
         at oracle.adf.view.rich.component.fragment.ContextSwitchingComponent$1.run(ContextSwitchingComponent.java:92)
         at oracle.adf.view.rich.component.fragment.ContextSwitchingComponent._processPhase(ContextSwitchingComponent.java:361)
         at oracle.adf.view.rich.component.fragment.ContextSwitchingComponent.broadcast(ContextSwitchingComponent.java:96)
         at oracle.adf.view.rich.component.fragment.UIXInclude.broadcast(UIXInclude.java:102)
         at oracle.adf.view.rich.component.fragment.ContextSwitchingComponent$1.run(ContextSwitchingComponent.java:92)
         at oracle.adf.view.rich.component.fragment.ContextSwitchingComponent._processPhase(ContextSwitchingComponent.java:361)
         at oracle.adf.view.rich.component.fragment.ContextSwitchingComponent.broadcast(ContextSwitchingComponent.java:96)
         at oracle.adf.view.rich.component.fragment.UIXInclude.broadcast(UIXInclude.java:96)
         at oracle.adfinternal.view.faces.lifecycle.LifecycleImpl.broadcastEvents(LifecycleImpl.java:902)
         at oracle.adfinternal.view.faces.lifecycle.LifecycleImpl._executePhase(LifecycleImpl.java:313)
         at oracle.adfinternal.view.faces.lifecycle.LifecycleImpl.execute(LifecycleImpl.java:186)
         at javax.faces.webapp.FacesServlet.service(FacesServlet.java:265)
         at weblogic.servlet.internal.StubSecurityHelper$ServletServiceAction.run(StubSecurityHelper.java:227)
         at weblogic.servlet.internal.StubSecurityHelper.invokeServlet(StubSecurityHelper.java:125)
         at weblogic.servlet.internal.ServletStubImpl.execute(ServletStubImpl.java:300)
         at weblogic.servlet.internal.TailFilter.doFilter(TailFilter.java:26)
         at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:56)
         at oracle.help.web.rich.OHWFilter.doFilter(Unknown Source)
         at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:56)
         at oracle.adf.model.servlet.ADFBindingFilter.doFilter(ADFBindingFilter.java:205)
         at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:56)
         at oracle.adfinternal.view.faces.webapp.rich.RegistrationFilter.doFilter(RegistrationFilter.java:106)
         at org.apache.myfaces.trinidadinternal.webapp.TrinidadFilterImpl$FilterListChain.doFilter(TrinidadFilterImpl.java:446)
         at oracle.adfinternal.view.faces.activedata.AdsFilter.doFilter(AdsFilter.java:60)
         at org.apache.myfaces.trinidadinternal.webapp.TrinidadFilterImpl$FilterListChain.doFilter(TrinidadFilterImpl.java:446)
         at org.apache.myfaces.trinidadinternal.webapp.TrinidadFilterImpl._doFilterImpl(TrinidadFilterImpl.java:271)
         at org.apache.myfaces.trinidadinternal.webapp.TrinidadFilterImpl.doFilter(TrinidadFilterImpl.java:177)
         at org.apache.myfaces.trinidad.webapp.TrinidadFilter.doFilter(TrinidadFilter.java:92)
         at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:56)
         at oracle.imaging.ui.model.filter.ImagingLoginFilter.doFilter(ImagingLoginFilter.java:122)
         at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:56)
         at oracle.security.jps.ee.http.JpsAbsFilter$1.run(JpsAbsFilter.java:111)
         at java.security.AccessController.doPrivileged(Native Method)
         at oracle.security.jps.util.JpsSubject.doAsPrivileged(JpsSubject.java:313)
         at oracle.security.jps.ee.util.JpsPlatformUtil.runJaasMode(JpsPlatformUtil.java:413)
         at oracle.security.jps.ee.http.JpsAbsFilter.runJaasMode(JpsAbsFilter.java:94)
         at oracle.security.jps.ee.http.JpsAbsFilter.doFilter(JpsAbsFilter.java:161)
         at oracle.security.jps.ee.http.JpsFilter.doFilter(JpsFilter.java:71)
         at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:56)
         at oracle.dms.servlet.DMSServletFilter.doFilter(DMSServletFilter.java:136)
         at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:56)
         at weblogic.servlet.internal.RequestEventsFilter.doFilter(RequestEventsFilter.java:27)
         at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:56)
         at weblogic.servlet.internal.WebAppServletContext$ServletInvocationAction.wrapRun(WebAppServletContext.java:3715)
         at weblogic.servlet.internal.WebAppServletContext$ServletInvocationAction.run(WebAppServletContext.java:3681)
         at weblogic.security.acl.internal.AuthenticatedSubject.doAs(AuthenticatedSubject.java:321)
         at weblogic.security.service.SecurityManager.runAs(SecurityManager.java:120)
         at weblogic.servlet.internal.WebAppServletContext.securedExecute(WebAppServletContext.java:2277)
         at weblogic.servlet.internal.WebAppServletContext.execute(WebAppServletContext.java:2183)
         at weblogic.servlet.internal.ServletRequestImpl.run(ServletRequestImpl.java:1454)
         at weblogic.work.ExecuteThread.execute(ExecuteThread.java:209)
         at weblogic.work.ExecuteThread.run(ExecuteThread.java:178)
    Caused by: java.lang.NullPointerException
         at oracle.imaging.validation.PersistedSearchValidator$SearchParameterValidator.validateCondition(PersistedSearchValidator.java:245)
         at oracle.imaging.validation.PersistedSearchValidator$SearchParameterValidator.validateTree(PersistedSearchValidator.java:205)
         at oracle.imaging.validation.PersistedSearchValidator$SearchParameterValidator.validateTree(PersistedSearchValidator.java:209)
         at oracle.imaging.validation.PersistedSearchValidator$SearchParameterValidator.validateTree(PersistedSearchValidator.java:210)
         at oracle.imaging.validation.PersistedSearchValidator$SearchParameterValidator.validateTree(PersistedSearchValidator.java:210)
         at oracle.imaging.validation.PersistedSearchValidator$SearchParameterValidator.validateTree(PersistedSearchValidator.java:210)
         at oracle.imaging.validation.PersistedSearchValidator$SearchParameterValidator.validateTree(PersistedSearchValidator.java:210)
         at oracle.imaging.validation.PersistedSearchValidator$SearchParameterValidator.validateTree(PersistedSearchValidator.java:210)
         at oracle.imaging.validation.PersistedSearchValidator$SearchParameterValidator.validateTree(PersistedSearchValidator.java:210)
         at oracle.imaging.validation.PersistedSearchValidator$SearchParameterValidator.validateTree(PersistedSearchValidator.java:210)
         at oracle.imaging.validation.PersistedSearchValidator$SearchParameterValidator.validateTree(PersistedSearchValidator.java:210)
         at oracle.imaging.validation.PersistedSearchValidator$SearchParameterValidator.validateTree(PersistedSearchValidator.java:210)
         at oracle.imaging.validation.PersistedSearchValidator$SearchParameterValidator.validateTree(PersistedSearchValidator.java:210)
         at oracle.imaging.validation.PersistedSearchValidator$SearchParameterValidator.validateTree(PersistedSearchValidator.java:210)
         at oracle.imaging.validation.PersistedSearchValidator$SearchParameterValidator.validateTree(PersistedSearchValidator.java:210)
         at oracle.imaging.validation.PersistedSearchValidator$SearchParameterValidator.validateTree(PersistedSearchValidator.java:210)
         at oracle.imaging.validation.PersistedSearchValidator$SearchParameterValidator.validateTree(PersistedSearchValidator.java:210)
         at oracle.imaging.validation.PersistedSearchValidator$SearchParameterValidator.validateTree(PersistedSearchValidator.java:210)
         at oracle.imaging.validation.PersistedSearchValidator$SearchParameterValidator.validateTree(PersistedSearchValidator.java:210)
         at oracle.imaging.validation.PersistedSearchValidator$SearchParameterValidator.validateTree(PersistedSearchValidator.java:210)
         at oracle.imaging.validation.PersistedSearchValidator$SearchParameterValidator.validateTree(PersistedSearchValidator.java:210)
         at oracle.imaging.validation.PersistedSearchValidator$SearchParameterValidator.validate(PersistedSearchValidator.java:188)
         at oracle.imaging.validation.PersistedSearchValidator$SearchParameterValidator.validate(PersistedSearchValidator.java:161)
         at oracle.imaging.validation.Validator.validate(Validator.java:102)
         at oracle.imaging.validation.PersistedSearchValidator.validate(PersistedSearchValidator.java:404)
         at oracle.imaging.validation.PersistedSearchValidator.validate(PersistedSearchValidator.java:23)
         at oracle.imaging.validation.Validator.validate(Validator.java:102)
         at oracle.imaging.search.Validation.validateSearch(Validation.java:174)
         at oracle.imaging.search.SearchServiceImpl.modifySearch(SearchServiceImpl.java:453)
         at oracle.imaging.ui.search.SearchBuilderBean.commitTrain(SearchBuilderBean.java:342)
         at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
         at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
         at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
         at java.lang.reflect.Method.invoke(Method.java:597)
         at com.sun.el.parser.AstValue.invoke(Unknown Source)
         at com.sun.el.MethodExpressionImpl.invoke(Unknown Source)
         at org.apache.myfaces.trinidadinternal.taglib.util.MethodExpressionMethodBinding.invoke(MethodExpressionMethodBinding.java:53)
         ... 60 more
    [2012-03-06T10:14:28.124-10:00] [IPM_server1] [WARNING] [] [oracle.adf.view.rich.component.fragment.UIXRegion] [tid: [ACTIVE].ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)'] [userId: weblogic] [ecid: f5c1f5acbf0bb7a6:2d91bb50:135e98f9a52:-8000-00000000000000d9,0] [APP: imaging] [[
    java.lang.IllegalStateException: The expression "#{bindings.preferencesedit1.regionModel}" (that was specified for the RegionModel "value" attribute of the region component with id "prefTf") evaluated to null.
    This is typically due to an error in the configuration of the objects referenced by this expression.
    If it helps, the expression "#{bindings.preferencesedit1}" evaluates to "null".
    If it helps, the expression "#{bindings}" evaluates to "null". Now using an empty RegionModel instead.
         at oracle.adf.view.rich.component.fragment.UIXRegion.getRegionModel(UIXRegion.java:450)
         at oracle.adfinternal.view.faces.taglib.region.RegionTag.doStartTag(RegionTag.java:109)
         at jsp_servlet._pagefragments.__header_jsff._jspx___tag48(__header_jsff.java:2260)
         at jsp_servlet._pagefragments.__header_jsff._jspx___tag47(__header_jsff.java:2227)
         at jsp_servlet._pagefragments.__header_jsff._jspx___tag45(__header_jsff.java:2139)
         at jsp_servlet._pagefragments.__header_jsff._jspx___tag44(__header_jsff.java:2085)
         at jsp_servlet._pagefragments.__header_jsff._jspx___tag43(__header_jsff.java:2030)
         at jsp_servlet._pagefragments.__header_jsff._jspx___tag42(__header_jsff.java:1980)
         at jsp_servlet._pagefragments.__header_jsff._jspService(__header_jsff.java:70)
         at weblogic.servlet.jsp.JspBase.service(JspBase.java:34)
         at weblogic.servlet.internal.StubSecurityHelper$ServletServiceAction.run(StubSecurityHelper.java:227)
         at weblogic.servlet.internal.StubSecurityHelper.invokeServlet(StubSecurityHelper.java:125)
         at weblogic.servlet.internal.ServletStubImpl.execute(ServletStubImpl.java:300)
         at weblogic.servlet.internal.ServletStubImpl.onAddToMapException(ServletStubImpl.java:416)
         at weblogic.servlet.internal.ServletStubImpl.execute(ServletStubImpl.java:326)
         at weblogic.servlet.internal.TailFilter.doFilter(TailFilter.java:26)
         at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:56)
         at oracle.security.jps.ee.http.JpsAbsFilter$1.run(JpsAbsFilter.java:111)
         at java.security.AccessController.doPrivileged(Native Method)
         at oracle.security.jps.util.JpsSubject.doAsPrivileged(JpsSubject.java:313)
         at oracle.security.jps.ee.util.JpsPlatformUtil.runJaasMode(JpsPlatformUtil.java:413)
         at oracle.security.jps.ee.http.JpsAbsFilter.runJaasMode(JpsAbsFilter.java:94)
         at oracle.security.jps.ee.http.JpsAbsFilter.doFilter(JpsAbsFilter.java:161)
         at oracle.security.jps.ee.http.JpsFilter.doFilter(JpsFilter.java:71)
         at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:56)
         at weblogic.servlet.internal.RequestDispatcherImpl.invokeServlet(RequestDispatcherImpl.java:524)
         at weblogic.servlet.internal.RequestDispatcherImpl.include(RequestDispatcherImpl.java:444)
         at weblogic.servlet.jsp.PageContextImpl.include(PageContextImpl.java:163)
         at jsp_servlet._templates.__axftablesstemplate_jspx._jspService(__axftablesstemplate_jspx.java:234)
         at weblogic.servlet.jsp.JspBase.service(JspBase.java:34)
         at weblogic.servlet.internal.StubSecurityHelper$ServletServiceAction.run(StubSecurityHelper.java:227)
         at weblogic.servlet.internal.StubSecurityHelper.invokeServlet(StubSecurityHelper.java:125)
         at weblogic.servlet.internal.ServletStubImpl.execute(ServletStubImpl.java:300)
         at weblogic.servlet.internal.ServletStubImpl.onAddToMapException(ServletStubImpl.java:416)
         at weblogic.servlet.internal.ServletStubImpl.execute(ServletStubImpl.java:326)
         at weblogic.servlet.internal.TailFilter.doFilter(TailFilter.java:26)
         at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:56)
         at oracle.security.jps.ee.http.JpsAbsFilter$1.run(JpsAbsFilter.java:111)
         at java.security.AccessController.doPrivileged(Native Method)
         at oracle.security.jps.util.JpsSubject.doAsPrivileged(JpsSubject.java:313)
         at oracle.security.jps.ee.util.JpsPlatformUtil.runJaasMode(JpsPlatformUtil.java:413)
         at oracle.security.jps.ee.http.JpsAbsFilter.runJaasMode(JpsAbsFilter.java:94)
         at oracle.security.jps.ee.http.JpsAbsFilter.doFilter(JpsAbsFilter.java:161)
         at oracle.security.jps.ee.http.JpsFilter.doFilter(JpsFilter.java:71)
         at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:56)
         at weblogic.servlet.internal.RequestDispatcherImpl.invokeServlet(RequestDispatcherImpl.java:524)
         at weblogic.servlet.internal.RequestDispatcherImpl.include(RequestDispatcherImpl.java:444)
         at weblogic.servlet.jsp.PageContextImpl.include(PageContextImpl.java:163)
         at weblogic.servlet.jsp.PageContextImpl.include(PageContextImpl.java:184)
         at oracle.adfinternal.view.faces.taglib.region.IncludeTag.__include(IncludeTag.java:442)
         at oracle.adfinternal.view.faces.taglib.region.IncludeTag.doEndTag(IncludeTag.java:232)
         at oracle.adfinternal.view.faces.taglib.region.PageTemplateTag.doEndTag(PageTemplateTag.java:143)
         at jsp_servlet._message.__error_jspx._jspx___tag2(__error_jspx.java:217)
         at jsp_servlet._message.__error_jspx._jspx___tag1(__error_jspx.java:156)
         at jsp_servlet._message.__error_jspx._jspx___tag0(__error_jspx.java:104)
         at jsp_servlet._message.__error_jspx._jspService(__error_jspx.java:65)
         at weblogic.servlet.jsp.JspBase.service(JspBase.java:34)
         at weblogic.servlet.internal.StubSecurityHelper$ServletServiceAction.run(StubSecurityHelper.java:227)
         at weblogic.servlet.internal.StubSecurityHelper.invokeServlet(StubSecurityHelper.java:125)
         at weblogic.servlet.internal.ServletStubImpl.execute(ServletStubImpl.java:300)
         at weblogic.servlet.internal.ServletStubImpl.onAddToMapException(ServletStubImpl.java:416)
         at weblogic.servlet.internal.ServletStubImpl.execute(ServletStubImpl.java:326)
         at weblogic.servlet.internal.ServletStubImpl.execute(ServletStubImpl.java:183)
         at weblogic.servlet.internal.RequestDispatcherImpl.invokeServlet(RequestDispatcherImpl.java:523)
         at weblogic.servlet.internal.RequestDispatcherImpl.forward(RequestDispatcherImpl.java:253)
         at com.sun.faces.context.ExternalContextImpl.dispatch(ExternalContextImpl.java:410)
         at org.apache.myfaces.trinidad.context.ExternalContextDecorator.dispatch(ExternalContextDecorator.java:44)
         at org.apache.myfaces.trinidad.context.ExternalContextDecorator.dispatch(ExternalContextDecorator.java:44)
         at oracle.adfinternal.view.faces.config.rich.RecordRequestAttributesDuringDispatch.dispatch(RecordRequestAttributesDuringDispatch.java:44)
         at org.apache.myfaces.trinidad.context.ExternalContextDecorator.dispatch(ExternalContextDecorator.java:44)
         at org.apache.myfaces.trinidad.context.ExternalContextDecorator.dispatch(ExternalContextDecorator.java:44)
         at org.apache.myfaces.trinidad.context.ExternalContextDecorator.dispatch(ExternalContextDecorator.java:44)
         at org.apache.myfaces.trinidadinternal.context.FacesContextFactoryImpl$OverrideDispatch.dispatch(FacesContextFactoryImpl.java:267)
         at com.sun.faces.application.ViewHandlerImpl.executePageToBuildView(ViewHandlerImpl.java:469)
         at com.sun.faces.application.ViewHandlerImpl.renderView(ViewHandlerImpl.java:140)
         at javax.faces.application.ViewHandlerWrapper.renderView(ViewHandlerWrapper.java:189)
         at org.apache.myfaces.trinidadinternal.application.ViewHandlerImpl.renderView(ViewHandlerImpl.java:193)
         at oracle.adfinternal.view.faces.lifecycle.LifecycleImpl._renderResponse(LifecycleImpl.java:800)
         at oracle.adfinternal.view.faces.lifecycle.LifecycleImpl._executePhase(LifecycleImpl.java:294)
         at oracle.adfinternal.view.faces.lifecycle.LifecycleImpl.render(LifecycleImpl.java:214)
         at javax.faces.webapp.FacesServlet.service(FacesServlet.java:266)
         at weblogic.servlet.internal.StubSecurityHelper$ServletServiceAction.run(StubSecurityHelper.java:227)
         at weblogic.servlet.internal.StubSecurityHelper.invokeServlet(StubSecurityHelper.java:125)
         at weblogic.servlet.internal.ServletStubImpl.execute(ServletStubImpl.java:300)
         at weblogic.servlet.internal.TailFilter.doFilter(TailFilter.java:26)
         at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:56)
         at oracle.help.web.rich.OHWFilter.doFilter(Unknown Source)
         at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:56)
         at oracle.adf.model.servlet.ADFBindingFilter.doFilter(ADFBindingFilter.java:205)
         at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:56)
         at oracle.adfinternal.view.faces.webapp.rich.RegistrationFilter.doFilter(RegistrationFilter.java:106)
         at org.apache.myfaces.trinidadinternal.webapp.TrinidadFilterImpl$FilterListChain.doFilter(TrinidadFilterImpl.java:446)
         at oracle.adfinternal.view.faces.activedata.AdsFilter.doFilter(AdsFilter.java:60)
         at org.apache.myfaces.trinidadinternal.webapp.TrinidadFilterImpl$FilterListChain.doFilter(TrinidadFilterImpl.java:446)
         at org.apache.myfaces.trinidadinternal.webapp.TrinidadFilterImpl._doFilterImpl(TrinidadFilterImpl.java:271)
         at org.apache.myfaces.trinidadinternal.webapp.TrinidadFilterImpl.doFilter(TrinidadFilterImpl.java:177)
         at org.apache.myfaces.trinidad.webapp.TrinidadFilter.doFilter(TrinidadFilter.java:92)
         at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:56)
         at oracle.imaging.ui.model.filter.ImagingLoginFilter.doFilter(ImagingLoginFilter.java:122)
         at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:56)
         at oracle.security.jps.ee.http.JpsAbsFilter$1.run(JpsAbsFilter.java:111)
         at java.security.AccessController.doPrivileged(Native Method)
         at oracle.security.jps.util.JpsSubject.doAsPrivileged(JpsSubject.java:313)
         at oracle.security.jps.ee.util.JpsPlatformUtil.runJaasMode(JpsPlatformUtil.java:413)
         at oracle.security.jps.ee.http.JpsAbsFilter.runJaasMode(JpsAbsFilter.java:94)
         at oracle.security.jps.ee.http.JpsAbsFilter.doFilter(JpsAbsFilter.java:161)
         at oracle.security.jps.ee.http.JpsFilter.doFilter(JpsFilter.java:71)
         at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:56)
         at oracle.dms.servlet.DMSServletFilter.doFilter(DMSServletFilter.java:136)
         at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:56)
         at weblogic.servlet.internal.RequestEventsFilter.doFilter(RequestEventsFilter.java:27)
         at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:56)
         at weblogic.servlet.internal.WebAppServletContext$ServletInvocationAction.wrapRun(WebAppServletContext.java:3715)
         at weblogic.servlet.internal.WebAppServletContext$ServletInvocationAction.run(WebAppServletContext.java:3681)
         at weblogic.security.acl.internal.AuthenticatedSubject.doAs(AuthenticatedSubject.java:321)
         at weblogic.security.service.SecurityManager.runAs(SecurityManager.java:120)
         at weblogic.servlet.internal.WebAppServletContext.securedExecute(WebAppServletContext.java:2277)
         at weblogic.servlet.internal.WebAppServletContext.execute(WebAppServletContext.java:2183)
         at weblogic.servlet.internal.ServletRequestImpl.run(ServletRequestImpl.java:1454)
         at weblogic.work.ExecuteThread.execute(ExecuteThread.java:209)
         at weblogic.work.ExecuteThread.run(ExecuteThread.java:178)
    I will highly appreciate if someone could help me on this, the UAT is in process.
    Thanks and Regards
    ACM

    Hi Abhinav,
    Have you applied any patches for your PS4 instance as yet ?....Also do check the AXF logs and this might give a clue on command that is being executed.
    You could paste the mapped AXF log as well
    Edited by: Aditya on Mar 12, 2012 11:41 PM

  • Error while editing an automaticlly populated record of  a custom infotype

    hi,
    a query in HR ABAP.
    i have created a custom Infotype to store the CTC details of an employee. this custom IT needs to get the records auto populated, when they are created in Infotype 0008.
    i have used the exit. EXIT_SAPFP50M_002  inside which  an include program is written  :ZXPADU02
    using this, the records made to get create automatically in the custom IT.
    but when we try to modify or delete those records thru the tcode PA30,
    it does not allow to do so and throws a standard error message. as  below.
    Specified subtype is invalid
    Message no. PG088
    please help me out to fix this issue.

    the exact point of the std error is,
    i do the folowing steps.
    1)_ for auto creating a record in custom IT Pa**** , i goto transaction, PA30, create record in IT 0008 with a basic Pay., click on save.
    on saving , the EXIT_SAPFP50M_002 is called where i ve written a Z inlcude Program, which inserts the record in custom IT PA****.  this is successful.
    2) when i try to change or delete the same record which i ve created as above, through the Tcode PA30 for custom IT, PA
    ****, i get the error.
    hope the problem is clearly mentioned

  • Custom infotype creation issue

    Hi Experts,
    I have a requirement to create a custom infotype based on certain conditions. But there is a problem while saving data in the infotype. The infotype is populated from another infotype automatically through dynamic actions.
    But while saving the data for the first time it happens as per the requirements and data gets saved properly.
    But when the data is saved for the second time for the same pernr , the previous data is over written even though the new record starts with a different begin data.Also i have created the infotype with time constraint '1'.
    can you please let me know if i am missing anything while creating or is this a logic issue .? all the logic has been coded in the flow logic part of the screen.
    also if i dont save the data in the infotype it does not pop up any message like 'data not saved' which usually happens with every infotype. Please clarify me on this as well...
    Thanks,
    Raj Thilak.

    Hi,
    Check the logic how it is updating the custom infotype . I think it is nothing to do with creation of custom info type
    Regards
    Krishna

  • Error while creating a query for my custom infotype

    Hi,
    I have created a custom infotype with fields currency amount and currency field .
    While I am creating a query for it its giving an error
    Message no. AQ_AD_HOC221 Error when generating the report(see long text )
    I tried to execute the standard program RPUMS40CCI but still I am facing same error .
    I have also maintained table T777i for my infotype but still problem exists.
    Please help.
    P

    Hi
    Check in PM01

  • Validation Issue in Custom Infotype

    I have Copied an Infotype from 0582 . so it created an custom database table PA9***. After final completion  during testing the user are creating the records and saved and it is working fine till now. The Problem is when users try to change the same Record that is just created , the information is not getting updated , the system also gives an information message 'No Changes Found' inspite of obvious changes. I Verified the information from both data base table and end user screen, it is not getting updated in neither of the Places. Please Help. any Further Information needed ask Me.

    Hi Shanthi,
    I am having the same problem.
    I had created a custom infotype ,But when I try to view it through PA30 in Display mode.
    the fields are still enabled.
    Whereas , in create mode, its working fine.
    Please guide me the steps to disable the fields in Display mode in PA30.
    Thanks
    Kanupriya.

Maybe you are looking for