Unable to find conditions in item level of STO PO

Hi All ,
The user raised Stock transfer PO(UB) between plant Xand Y in same company code  , doc type UB
assigned to pricing schema XYZ.. in customizing . However conditions and pricing procedure are not picking in PO item .
Please help us.
Regards,
Amar

Hi,
Please check the settings in 'Define Condition control at plant level' in the path IMG-MM-Purchasing-Conditions.
Here, if you have maintained '+' against your plant then it is mandatory to create Inforecords specific to the plant....which you may not have created in your case as it is transfer within the same plant.
This may be the reason why the conditions are not getting reflected......just see if you can blank that field in the above setting and test the PO creation.
I hope the other configs (in particular the 'Determination of calculation schema in purchasing') are all properly done and defined.
Regards,

Similar Messages

  • Sales order: How to add pricing conditions at item level in BDC of VA01

    Hello Experts,
    Am writing BDC for sales order, in this process I need to add ITEM PRICING CONDITIONS, so, am selecting item and pressing the DOLLAR symbol button and am adding the conditions by pressing PLUS button in loop!! but am getting this erorr- Field KOMV-KMEIN (2) is not an input field!! when I execute it in we19-BACK GROUND only!! if I execute the same CODE IN we19-Fore ground, I dont have any issue!!  I checked this SDN (field status in config), Google, but did not helped me!
    Pls. let  me know is there any other way to add conditions at item level in VA01 in BDC code?
    THank you

    Hi,
    It is happening because the second row of the item level data screen is becoming display only. Please check whether In foreground mode you are pressing an extra enter to give data in the second row of the item level data after giving data in the first row and in BDC recording you have not recorded that 'Enter'.
    Regards,
    Gargi

  • Double PR00 condition at item level in the IC

    Hello SAP Gurus,
    I need your help with this issue.
    Scenario: I enter the Interaction Center UI and start creating a sales order with "MXN" as the currency at header level, I enter a product in "USD" and price is not calculated automatically and has to be enter manually.
    When going into the item details two identical price conditions appear:
    PR00 - ....... - USD (blank)
    PR00 - 1.34 - USD (the price I entered at header level)
    I tried to get rid-off one but ít wont let me,a messages is generated: "Cannot erase condition, it´s mandatory".
    I´ve also tried matching the header and item level currency but the same thing happens; the price is enter manually and two PR00 conditions are created.
    This cannot be left like this since it generates errors at the invoicing stage.
    Your help will be trully appreciated.
    Thanks.
    May
    PS.  I am working in the Interaction Center UI / ERP Order / CRM 7.0

    Found the reason and solution for this error in my situation, which has to do with how the prices are assigned to the material.
    The prices for the materials are maintain in a List of Prices per volume uploaded in ECC.  This list has serveral volumen scales, and each scale has a different price (Logic: as the volume increases, the price decreases).  The issue here is that the initial scale for some materials was to set to high and sales orders were being created with quantities under that scale, as a consequence the price was not calculated automatically because it didnt fell under any scale and the by manually entering the PR00 condition, somehow it would create an extra could not be erase.
    Example:
    - Material: ABCD
    - List of Prices per volume for ABCD: Scale 1) 1000KG - 1499KG -> 2.50 USD  /  Scale 2)1500KG - 1999KG -> 2.44 USD  /  Scale 3) 2000KG - 2499KG -> 2.38USD
    - Sales Order: Material ABCD / Qty order: 550KG = MISSING PR00 MANDATORY CONDITION
    - Reason: QTY 550 KG is out of scale
    The solution proposed, was to review the scales and if sales orders are being created in lower quantities, they need to set a low volumen for the initial scale.

  • Urgent: Change custom conditions on item level

    Hi experts,
    could you please tell me how you resolve this issue, its very urgent? I´m facing the promblem that my condition type doesn´t get changed! I want only to change KBETR at item level. After CRM_ORDER_SAVE is called I can see, that order got saved, but nothing happens
    Please help me out! I think there is not a lot which has to be change. Here is my Coding:
    parameters: lv_head type crmt_object_guid default '...'.
    parameters: lv_item type crmt_object_guid default '...'.
    parameters: lv_kbetr type prct_cond_rate default '12'.
    insert lv_head into table lt_guid.
    insert lv_item into table lt_item.
    call function 'CRM_ORDER_READ'
       exporting
         it_header_guid                    = lt_guid
         it_item_guid                      = lt_item
       importing
         et_pridoc                         = lt_pridoc
         et_pricing_i                      = lt_pricing_i
    * CHANGING
    *   CV_LOG_HANDLE                     =
      exceptions
        document_not_found                = 1
        error_occurred                    = 2
        document_locked                   = 3
        no_change_authority               = 4
        no_display_authority              = 5
        no_change_allowed                 = 6
        others                            = 7.
    if sy-subrc <> 0 and lt_pridoc is not initial.
       write: / 'ERROR'.
       exit.
    endif.
    read table lt_pridoc index 1 into ls_pridoc.
    if sy-subrc <> 0.
       write: / 'ERROR'.
       exit.
    endif.
    read table ls_pridoc-pric_cond into ls_cond with key kschl = 'Z002'.
    if sy-subrc <> 0.
       write: / 'ERROR'.
       exit.
    endif.
    ls_input-ref_guid   = lv_item.
    ls_input-ref_kind   = 'B'.
    ls_input-objectname = 'PRIDOC'.
    ls_input_fn-fieldname = 'WAERS'.
    insert ls_input_fn into table ls_input-field_names.
    ls_input_fn-fieldname = 'KBETR'.
    insert ls_input_fn into table ls_input-field_names.
    *ls_input_fn-fieldname = 'ACTIVATE'.
    *insert ls_input_fn into table ls_input-field_names.
    insert ls_input into table lt_input.
    ls_pricom-ref_guid   = lv_head.
    ls_pricom-ref_kind   = 'B'.
    ls_pricom-pric_cond[] = ls_pridoc-pric_cond[].
    move-corresponding ls_cond to ls_cond_chg.
    ls_cond_chg-waers = 'EUR'.
    ls_cond_chg-kbetr = lv_kbetr.
    insert ls_cond_chg into table ls_pricom-cond_change.
    append ls_pricom to lt_pricom.
    call function 'CRM_ORDER_MAINTAIN'
       exporting
         it_pridoc         = lt_pricom
       changing
        ct_orderadm_h     = lt_header
         ct_input_fields   = lt_input
       exceptions
         error_occurred    = 1
         document_locked   = 2
         no_change_allowed = 3
         no_authority      = 4
         others            = 5.
    if sy-subrc <> 0.
       exit.
    endif.
    call function 'CRM_ORDER_SAVE'
       exporting
         it_objects_to_save   = lt_guid
       importing
         et_saved_objects     = lt_saved
    *   ET_EXCEPTION         =
    *   ET_OBJECTS_NOT_SAVED =
       exceptions
         document_not_saved   = 1
         others               = 2.
    if sy-subrc eq 0.
       commit work and wait.
    else.
       rollback work.
    endif.
    Best Regards
    Tanja

    Hi Tanja,
    I am probably not the right person for code but please review below listed former threads which should be helpful:
    http://forums.sdn.sap.com/thread.jspa?threadID=661004
    http://forums.sdn.sap.com/thread.jspa?threadID=596313
    http://forums.sdn.sap.com/thread.jspa?threadID=186588
    Best regards - Christophe

  • SIM Error - Unable to find screen - Create Item Ticket and Signer error

    Hi,
    When I bring up the SIM application from Eclipse, everything works normally.
    But I navigate to ITEM TICKET SCREEN, and here when i click on Create , to create an Item Ticket,
    ideally It should open the Item Ticket Detail Screen,
    instead it throws an error,
    2013-01-14 11:30:16,855 ERROR [AWT-EventQueue-1][application.NavigationManager] Unable to find screen: oracle.retail.sim.shared.swing.itemticket.ItemTicketDetailScreen
    and the screen is not opened, it just maintains the current screen which is ITEM TICKET LIST SCREEN,
    but this is present in Navigation.xml screen and then i am able to find it in one for the project folders,
    Any idea why exactly I am getting this issue, any way to make it work fine.
    it was working sometime back, and i dont think any change regarding this has been made.
    sim version :13.2
    in a totally un-realted scenario (that's what I think, there is one more class "NEWRetailItemSearchProcessor", for this I get an exception,
    signer information does not match signer information of other classes in the same package
    I have two questions,
    1. Is it because of the signer Issue, I am getting the other error -"*Unable to find screen: oracle.retail.sim.shared.swing.itemticket.ItemTicketDetailScreen*"
    2. How do I resolve the signer issue,
    it says,
    class "oracle.retail.sim.closed.simclient.editor.NEWRetailItemSearchProcessor"'s signer information does not match signer information of other classes in the same package
    but in this package "oracle.retail.sim.closed.simclient.editor" -- there is no other class except the one mentioned NEWRetailItemSearchProcessor
    2013-01-14 11:30:16,855 ERROR [AWT-EventQueue-1][application.NavigationManager] Unable to find screen: oracle.retail.sim.shared.swing.itemticket.ItemTicketDetailScreen
    2013-01-14 11:30:16,855 ERROR [AWT-EventQueue-1][application.NavigationManager] java.lang.SecurityException: class "oracle.retail.sim.closed.simclient.editor.NEWRetailItemSearchProcessor"'s signer information does not match signer information of other classes in the same package
         at java.lang.ClassLoader.checkCerts(ClassLoader.java:776)
         at java.lang.ClassLoader.preDefineClass(ClassLoader.java:488)
         at java.lang.ClassLoader.defineClass(ClassLoader.java:615)
         at java.security.SecureClassLoader.defineClass(SecureClassLoader.java:124)
         at java.net.URLClassLoader.defineClass(URLClassLoader.java:260)
         at java.net.URLClassLoader.access$100(URLClassLoader.java:56)
         at java.net.URLClassLoader$1.run(URLClassLoader.java:195)
         at java.security.AccessController.doPrivileged(Native Method)
         at java.net.URLClassLoader.findClass(URLClassLoader.java:188)
         at java.lang.ClassLoader.loadClass(ClassLoader.java:307)
         at sun.misc.Launcher$AppClassLoader.loadClass(Launcher.java:268)
         at java.lang.ClassLoader.loadClass(ClassLoader.java:252)
         at java.lang.ClassLoader.loadClassInternal(ClassLoader.java:320)
         at oracle.retail.sim.shared.swing.itemticket.ItemTicketDetailPanel.initializeScreen(ItemTicketDetailPanel.java:136)
         at oracle.retail.sim.shared.swing.itemticket.ItemTicketDetailPanel.<init>(ItemTicketDetailPanel.java:116)
         at oracle.retail.sim.shared.swing.itemticket.ItemTicketDetailScreen.<init>(ItemTicketDetailScreen.java:16)
         at sun.reflect.NativeConstructorAccessorImpl.newInstance0(Native Method)
         at sun.reflect.NativeConstructorAccessorImpl.newInstance(NativeConstructorAccessorImpl.java:39)
         at sun.reflect.DelegatingConstructorAccessorImpl.newInstance(DelegatingConstructorAccessorImpl.java:27)
         at java.lang.reflect.Constructor.newInstance(Constructor.java:501)
         at java.lang.Class.newInstance0(Class.java:350)
         at java.lang.Class.newInstance(Class.java:303)
         at oracle.retail.sim.closed.application.NavigationManager.createScreen(NavigationManager.java:166)
         at oracle.retail.sim.closed.application.NavigationManager.startScreen(NavigationManager.java:183)
         at oracle.retail.sim.closed.application.NavigationManager.navigate(NavigationManager.java:78)
         at oracle.retail.sim.closed.application.SimplifiedApplicationFrame.navigate(SimplifiedApplicationFrame.java:221)
         at oracle.retail.sim.closed.application.SimplifiedApplicationFrame.actionPerformed(SimplifiedApplicationFrame.java:211)
         at javax.swing.AbstractButton.fireActionPerformed(AbstractButton.java:1849)
         at javax.swing.AbstractButton$Handler.actionPerformed(AbstractButton.java:2169)
         at javax.swing.DefaultButtonModel.fireActionPerformed(DefaultButtonModel.java:420)
         at javax.swing.DefaultButtonModel.setPressed(DefaultButtonModel.java:258)
         at javax.swing.plaf.basic.BasicButtonListener.mouseReleased(BasicButtonListener.java:236)
         at java.awt.AWTEventMulticaster.mouseReleased(AWTEventMulticaster.java:231)
         at java.awt.Component.processMouseEvent(Component.java:5517)
         at javax.swing.JComponent.processMouseEvent(JComponent.java:3129)
         at java.awt.Component.processEvent(Component.java:5282)
         at java.awt.Container.processEvent(Container.java:1966)
         at java.awt.Component.dispatchEventImpl(Component.java:3984)
         at java.awt.Container.dispatchEventImpl(Container.java:2024)
         at java.awt.Component.dispatchEvent(Component.java:3819)
         at java.awt.LightweightDispatcher.retargetMouseEvent(Container.java:4212)
         at java.awt.LightweightDispatcher.processMouseEvent(Container.java:3892)
         at java.awt.LightweightDispatcher.dispatchEvent(Container.java:3822)
         at java.awt.Container.dispatchEventImpl(Container.java:2010)
         at java.awt.Window.dispatchEventImpl(Window.java:1791)
         at java.awt.Component.dispatchEvent(Component.java:3819)
         at java.awt.EventQueue.dispatchEvent(EventQueue.java:463)
         at oracle.retail.sim.closed.swing.event.HotKeyEventQueue.dispatchEvent(HotKeyEventQueue.java:34)
         at java.awt.EventDispatchThread.pumpOneEventForHierarchy(EventDispatchThread.java:242)
         at java.awt.EventDispatchThread.pumpEventsForHierarchy(EventDispatchThread.java:163)
         at java.awt.EventDispatchThread.pumpEvents(EventDispatchThread.java:157)
         at java.awt.EventDispatchThread.pumpEvents(EventDispatchThread.java:149)
         at java.awt.EventDispatchThread.run(EventDispatchThread.java:110)
    Edited by: 924506 on 14 Jan, 2013 3:53 AM

    to fix the signer issue
    1) open the jar which contains required class file( i mean the one which gets called when u click on item tick button)
    in winrar software
    2) and remove below files
    manifest.mf and mykey.sf or somthing.sf
    then resign your jar and deploy it.
    i hop this would work fine.
    some time what happen when we sign the jar it does not removes old sign instead removing it enter one more entry in that file
    hence it has two entry.
    its better to follow above steps.

  • Authorization scheme for display/read only conditions on item level

    Hi All,
    I have question. I want to use an authorization scheme to manage if users with a certain role have the permission to either update an item or have the persmission to only see the item or that they don't have permission to see it at all.
    So, the input for the scheme would be: 1. user role 2. the current page 3. the current item.
    The output would be: 0 (update) 1 (read only) 2 (not displayed).
    I think I can manage that.
    And I can attach this schema to the items.
    So far so good.
    But how can I make it so that the 0,1 and the 2 will actually do what they need to do?
    I have been thinking about making a function like GET_AUTHORISATON(ROLE,PAGE,ITEM) output: 0,1,2 but I still can't figure out how to connect this with the functionality I want to achieve.
    Can somebody give me a hint?
    Andre

    Thanks Hari,
    Thanks, it works, almost, but what if items are mandatory on a page, but not always mandatory?
    If a user has a certain role, some fields are manadatory, otherwise not.
    Again, a function would do the trick as far as the input and output information
    something like IS_MANDATORY(USER_ROLE, CURRENT_PAGE, CURRENT_ITEM) but how can I make it work?
    I guess a PL/SQL validation like:
    IF IS_MANDATORY(USER_ROLE, CURRENT_PAGE, CURRENT_ITEM) THEN ITEM IS NOT NULL
    END IF;
    Andre
    PS: personally I think item level security is not something you wish to implement in your system. I prefer different screens for different roles.
    Far more straightforeward. Easy for maintenance. When something disfunctions, it's far more easy to pinpoint the location of the cause.

  • Unable to update Sales order item level prices after invoice is created

    Dear All ,
    I have the following issue .
    When the sales order was created Z001 price was populated based on the condition record and  the order was in complete status  Then we created delivery and  invoice , the invoice had the same price as that of sales orders.
    Due to some code change related to pricing condition type - Z001 the prices in the sales order is changed to "ZERO" , when the sales order is opened in VA02 .
    We now corrected the code related to condition type - Z001  and now need to get back the on the line items . I wanted to Update prices by clicking on icon " Update" in the line item condition tab . I am not able to do it as the update icon is grayed out.
    Can any one help me with ideas for  fixing this issue  or any SAP utility  program .
    Looking forward to your help .
    Thanks and regards
    Veera

    Hi
    Without reversing invoice we can't update price and this is standard bevaior which is logical too. For your scenario I am wondering why would you want to change price for a line item or order which is alrady invoiced and posted to FI. What difference would it make to change price in sale order when this has already been posted in FI?
    Thank$

  • Shipment cost - condition type item level

    hey all ,
    i have in 1 pricing procedure 4 condition types .
    3 of them at delivery level and 1 at shipment level .
    i created a requirement that activate the delivery level condition (3 conditions) OR the shipment
    condition ( 1 condition ) .
    the shipment cost document calculates the fright correctly but even if the condition  ( 3 or 1 ) is disabled
    by the requirement the other tab is still showing.
    for example if i disable the 3 condition ( delivery ) i have 2 tabs ,
    1 at delivery with 3 condition disables and another tab with active shipment level condition .
    how do i get it to open with only 1 tab ?
    Best Regards
    ASA
    Edited by: ASA MOKED on May 25, 2009 7:46 PM

    Hi
    Try to change the value of calculat.type in the defition of the condition (for instance, with A instead of B).
    I hope this helps you
    Regards
    Eduardo

  • Unable to Find supply demand Item

    Hi All,
    While attempting to open a item from Inventory >On Hand> Item Supply Demand >
    I am getting the following error. Please assist me.
    Date falls outside the boundaries of the workday calendar
    Cause: The current date is outside the range of valid workdays. the date is either before the start of the workday calendar or after the end of the workday calendar.
    Thanks,
    JP
    Edited by: REDRO on Aug 11, 2010 5:22 AM

    Hi JP;
    What is your EBS version? Please check below which could be helpful for your issue:
    MSCPDCW ORA-20001 Dates Outside Calendar Boundaries in LOAD_SUPPLY [ID 287498.1]
    Internal Order When Import Display: No Workflow Has Assigned to This Transaction Type [ID 601659.1]
    Order Import for Internal Requisition Fails With Errors ORA-20001 and ORA-01403 [ID 164797.1]
    Order Import Concurrent Program Not Import Internal Orders Ora-20001 [ID 421406.1]
    Regard
    Helios

  • How MRP would behave? if Pegging is not enabled at item level

    Hi,
    How MRP would behave in the following conditions.
    Item Level Setup,
    1)No Pegging
    2)Soft Pegging
    3)Hard Pegging
    thank you in advance,

    Just to clarify, irrespective of how you set the pegging attribute, the plan will calculate the supply /demand for the item (provided it is a planned item.)
    If it is a "no pegging" item, you won't be able to drill down from a planned order to the demand that caused the planned order to be generated. Similarly, you cannot drill down from the demand to the planned order that satisfies the demand.
    The soft pegging attribute is used if you do not have/want project/task data to be considered during planning.
    The hard pegging is used if you segregate supplies by project/task and you do not want to use a supply meant for one project to satisfy demand for a different project (or a different planning group).
    Hope this helps,
    Sandeep Gandhi

  • Preferences for Item-Level Targeting

    Hey guys,
    It seems like I have seen some weird issues in the past with multi item-level targeting where a condition happens that causes all items to fail.  I do not use the "Stop processing items in extension on error" option either.  I am
    trying to replicate it, but sometimes it seems that if an item comes back as false that others then start failing.  I read everything in the document below, but maybe I missed something.  If I put 10 conditions into Item-Level processing and 9
    fail leaving a single one that targets a single computer.  Is there any other conditions that would cause that true Item-Level processing to abort?  Having trouble replicating the problem so maybe I was just imaging things.
    Thanks,
    Dan
    http://technet.microsoft.com/en-us/library/cc733022.aspx
    Dan Heim

    > something.  If I put 10 conditions into Item-Level processing and 9
    > fail leaving a single one that targets a single computer.  Is there any
    > other conditions that would cause that true Item-Level processing to
    > abort?
    AFAIK no. A screenshot of your ILT might be helpful - or a copy of the XML.
    Martin
    Mal ein
    GUTES Buch über GPOs lesen?
    NO THEY ARE NOT EVIL, if you know what you are doing:
    Good or bad GPOs?
    And if IT bothers me - coke bottle design refreshment :))

  • Unexpected error: unable to find item name at page or application level

    HI!
    I upgrade my application from apex 3.0 to 3.1
    I created a new page.
    When trying to insert a new row, on clicking "create", the page displays the error :
    Unexpected error: unable to find item name at page or application level
    This error didn't appear in apex 3.0
    What this error can be? Is it a bug of APEX 3.1?
    Thank you!

    I have seen this in combination with javascript. Recreating the item helped.
    Denes Kubicek
    http://deneskubicek.blogspot.com/
    http://www.opal-consulting.de/training
    http://htmldb.oracle.com/pls/otn/f?p=31517:1
    -------------------------------------------------------------------

  • BUG? "ERR-1002 Unable to find item ID..." on branch on upgrading 3.0 to 4.0

    I'm testing the waters prior to upgrading a customer application from APEX 3.0.0.00.20 to 4.0.2.00.07.
    The application has been exported from the APEX 3.0 environment on a 4.0 instance on a different server. Both databases are 10.2.0.4.0 EE.
    A on navigating&mdash;via a standard tab&mdash;to a page containing only conditional On Load: Before Header branches, the branches are failing with
    Unexpected error, unable to find item name at application or page level.
    Error: ERR-1002 Unable to find item ID for item "p810_status" in application "121". This is caused by the branch action having Set these items item names specified in lower case:
    p810_status,p810_read_onlyThe error is resolved by changing these item names to UPPER CASE.
    This is not a disaster. Using APEX views I can see that there are only a handful of branches specifying item names in lower case so it won't require major effort to fix this app when it's upgraded for real.
    However, (a) I am aware that there are other places in this app where item names are specified in lower case; and (b) I tend to type most of my development stuff in lower case, so I'd like clarification on this issue.
    <li>Is this a known issue? (Can't find any earlier mention of this on OTN, MOS or web)
    <li>Is this expected behaviour in APEX 4.x or a bug?
    <li>If a bug is it fixed in 4.1?
    <li>Is there a change in APEX 4.0 requiring branch item (and other?) references to be uppercase? If so, where is this documented?
    I notice that it works OK when the same item values are specified in the URL using lowercase item names.
    Bumped by: fac586 on 08-Mar-2012 15:51
    I noticed that APEX 4.0.2 has converted all branches to use the [now] late, lamented "Set value before branching" option. Is this significant? Obviously this won't occur if upgrading to 4.1.
    Edited by: fac586 on 12-Mar-2012 15:14

    Hi Lukx,
    Thank you for reporting this. You have hit upon an issue with this page, for which I have filed Oracle bug #11840642. To get around this in the meantime, you can see page specific changes by going to:
    1) The 'Page Definition' page for the page you want to see recent edits.
    2) Go to 'Utilities > History'. This will show you recent actions for components on the current page.
    Hope that helps and thanks again for catching this.
    Regards,
    Anthony.

  • Error ERR-1002 Unable to find item ID for item "" in application "11501"

    Hi All,
    I am new to Apex, still a beginner. Please need your help on this.
    We recently upgraded to Apex 4.1 from Apex 3.0. The database version is 10.2.0.4.
    I am getting this below error.
    Error ERR-1002 Unable to find item ID for item "" in application "11501".
    Unexpected error, unable to find item name at application or page level.
    This error specifically occurs when two sessions are opened from the same browser, and the same page is accessesed. This was not occuring before in 3.0.
    Thanks,
    Sarvesh

    Hi,
    i have the exact same problem and situation. (but i dont use Oracle Apps, only APEX).
    Migrated from APEX 2.2 to APEX 4.1
    Application is (unfortunately) used and opened in Internet Explorer with more than one session/tabs by users.
    In APEX2.2 this was working, in APEX4.1 i get the following error:
    Error ERR-1002 Unable to find item ID for item "" in application "111".
    Unexpected error, unable to find item name at application or page level.
    Technical Info (only visible for developers):
    is_internal_error: true
    apex_error_code: WWV_FLOW.FIND_ITEM_ID_ERR
    component.type: APEX_APPLICATION_AUTH
    component.id: 29961616743801399
    component.name: CUSTOM_LDAP
    error_backtrace:
    ----- PL/SQL Call Stack -----
    object line object
    handle number name
    0x1893e7410 676 package body APEX_040100.WWV_FLOW_ERROR
    0x1893e7410 1008 package body APEX_040100.WWV_FLOW_ERROR
    0x147cb1b58 742 package body APEX_040100.WWV_FLOW
    0x147cb1b58 4729 package body APEX_040100.WWV_FLOW
    0x147cb1b58 7094 package body APEX_040100.WWV_FLOW
    0x18a3e9208 247 procedure APEX_040100.F
    0x18ab6c258 31 anonymous block
    So i thought this is an issue with the authentication scheme (that was migrated, too). I dropped it and recreated it, but same problem.
    When i look to the URL after the re-login, it is:
    https://<server>/f?p=111:3:1139701000375375::::,4753713078141275:
    The strange thing is the part of ",4753713078141275:"
    What is APEX doing here?
    => i figured out that this is a Page Item ID. I have the hidden item P3_REPORT_TYPE which interal ID is 4753713078141275.
    I use the hidden item to conditionally display some regions on the page.
    Or is the problem before the comma, the "NULL" value ",47..." ?
    Can anyone help me or explain what is the problem here to get a solution?
    Thanks and regards,
    Matthias
    Edited by: matze on 24.05.2012 10:05
    Edited by: matze on 24.05.2012 10:30

  • ERR-1002 Unable to find item ID

    Hi. can any one help me to resolve this issue
    ERR-1002 Unable to find item ID for item "P801_LISTP801_NG_PO_NUMBER" in application "1000300".
    Unexpected error, unable to find item name at application or page level.

    Hi,
    That does not look like an Oracle error message (They usually start with ORA-)
    http://docs.oracle.com/cd/B19306_01/server.102/b14219/toc.htm
    Perhaps someone coded that inside some application?
    Anyway, if you believe it to be an Oracle exception should write just a little about the situation causing this, along with a stack trace.
    Regards
    Peter

Maybe you are looking for

  • How to refractor the name of a View Object ?

    I dont see how to change the name of view. It was refractor in the prior version.

  • How to call a RFC function from ABAP to external C/C++ system

    Hi Can some one describe me what are the steps that needs to be done to call a RFC function in external C++ system and to handle errors. Any previous experience,please share

  • SetVariable in IE6.0

    I'm using the following code in a javascript function to set variables in a SWF It works fine in IE7 and FF2 but variables are not being passed in IE6.0 - they show up as undefined. I spent several hours Googling for some enlightenment on this, check

  • Core dump with malloc

    Hello All, We are developing a multithreaded application on SunOS 5.8 using Forte C++ compiler. #0 0xff350a9c in malloc_unlocked () from /usr/lib/libmalloc.so.1 #1 0xff350940 in malloc () from /usr/lib/libmalloc.so.1 #2 0xff068514 in __1cDOSLMAPSubsc

  • Loading Language translations for Catalogs using LSMW

    I have hundreds of codes entered for a Catalog in English and I need to be able to load all the French translations for those codes.   Doing a translation by hand is simple by just clicking on the Translation selection in the Menu.  However, when I t