Unable to assign Item to INV Organisation

Hi
I was not able to assign my Item in the Item Master window to child Organisation.
The Assign Organisation function in the tools menu is freezed.
When i get thyrough the Organisation assinment icon,the Inventory Orgs are not available in the list.
Help me out in this regard.
Regards
Deepak
l

Hi Deepak,
May be your inventory organization setup is wrong. Check for the inventory organizations, in the organization parameters the Item Mater Organization field.
Do you have the same master organization in which you are defining/
please let me know.
Regards,
Jagan

Similar Messages

  • Unable to assign item category product in SAP CRM

    when i am creating product(Material) i was unable to assign item category to Product.
    In products, My Item Category (Which is created ) is not loading in Item Category Assignment block.
    Plz give me appropriate Solution, Any Help will be highly appreciable

    Hello Ravi,
    CRM-specific questions can be posted on the http://scn.sap.com/community/crm Space, so the CRM specialists can note your question earlier.
    Perhaps you can try to post this question there too.
    Best regards,
    Laszlo

  • How to determine value of PO account assignment item

    G'Day,
    Simple question: I'm after a cost breakdown of a PO at account assignment level. For this I need to determine the value of an account assignment item in a consistent manner. e.g. if a PO item has an account assignment split across multiple cost centers then I need the value against each cost center. Very straightforward in theory, however in practice the value field in EKKN is not always filled. Some account assignment categories use percentages, others use quantities and others use values or combinations thereof.
    I can code this quite easily, but the examples I've seen for different account assignment categories are a bit too random for my liking. I don't know if I will catch every option so I would prefer some SAP function module or something similar, which I have thus far been unable to find. Does anyone have a method using standard SAP?
    Input appreciated,
    Mike

    Dear Mike,
    Try report ME2K with Cost center using *, account assignment K, plant and posting date restrictions.
    This report will give you the purchasing document - cost center wise quantity distribution details (irrespective of either Quantity or Percentage distribution in Purchase order).
    Only part missing is - in this report you will get ordered price / per unit and cost center wise allotted quantity, the value (Price per unig X cost center wise allotted qty) you didnt get. This can get if the data transferred to excel.
    I hope this will help the requirement.
    Regards,
    Syed Hussain.

  • GRC 10 EAM - Unable to assign Firefighter roles to owners

    Greetings SAP gurus,
    I am currently on a new GRC 10 installation and having issues with the Emergency Access Management (EAM) component previously known as FireFighter or SPM.  Note: We are trying to implement the Firefighter ''Role-Based" Approach.
    Issue: We are unable to assign EAM roles to owners within NWBC. Click on 'Assign owners to Firefigher ID's and provision Firefighter ID's to firefighters' via the Access Management Tab within NWBC, option Superuser Assignment. Click on Assign.  We are able to find the owners, but when I search for roles to assign, I get the error, 'No records found for the search criteria entered''.
    We are on SP7.
    Items completed:
    1) All post installation tasks were completed correctly, i.e. BC sets activated, connector groups created and working.
    2) EAM roles created on target system and imported via BRM.
    3) EAM role properties edited for "Firefighting' usage in BRM, role owners defined, functional areas defined, business process and sub process areas defined.
    4) Access control owners (i.e. role owners and controllers) defined.
    5) The ID being used for configuration is currently assigned all GRC_NWBC roles available.
    6) The connector groups are working fine and we are using for the Access risk Analysis component which is working fine.
    7) The post EAM configuration steps has been completed.
    Has anyone else experienced a similar issue?  I look forward to your responses.
    Rgds,
    Prevlin Moodley

    Hello Prevlin,
    Are you using a FF role owner for the assignment. This might be helpful:
    [Note 1289579 - Firefighter Owner additional authorization for Role based FF|https://service.sap.com/sap/support/notes/1289579]
    Cheers,
    Diego.

  • ERR-1002 Unable to find item ID for item "FB_FLOP4150_" in application 4000

    I transferred my APEX Application from 11gRel1 on 10gRel2:
    I exported my APEX Application from 11g (APEX 3.1.1.00.09) XDB:
    Home -> Application Builder -> Application 101 -> Export Application
    File Format - UNIX
    File Character Set: Unicode UTF-8
    I imported new APEX Application to 10gRel2 (APEX 3.1.1.00.09) Apache:
    Home -> Application Builder -> Import Application
    File Character Set: Unicode UTF-8
    auto assign ID for Application (new ID - 101)
    after opening the page to 10gRel2 get:
    ERR-1002 Unable to find item ID for item "FB_FLOP4150_GOTO_PAGE" in application 4000
    Help please!

    DAD config - NLS LANG.....

  • Error: ERR-1002 Unable to find item ID for item "APP_SESSION"

    Hello all,
    I created an application for faculty in HTMLDB 1.6.
    To get to the application faculty members log into a different website, and then follow a link to my application. The link re-directs them to a public page which pulls their unique ID from a cookie stored by the first website. After their ID is found they are automatically logged in, or if the ID is not present they are redirected to the main login page.
    A few faculty members have tested the automatic login with success. One member, though, followed the same steps, but when he clicked on the link and was re-directed to the application he recieved an error "error: ERR-1002 Unable to find item ID for item 'APP_SESSION'."
    As for the code, the code first retrieves the cookie and gets the ID from it. The variable term_id is then set to the correct term value. This term value depends on what term was selected from the previous application. The term value may or may not be null (they are not required to select a term prior to being re-directed). If it is null, the faculty member is brought to a term selection page. If it is not null, the faculty member skips this step and moves on to the next page. These steps are known to work properly.
    This plsql code follows directly after, which should login the user and either redirect him/her to the term select page if the term value is null, or the main page if there is a term value present:
    IF term_id IS NOT NULL THEN
    wwv_flow_custom_auth_std.login(
    P_UNAME => faculty_id,
    P_PASSWORD => faculty_password,
    P_SESSION_ID => v('APP_SESSION'),
    P_FLOW_PAGE => :APP_ID||':MAIN_PAGE:'||:APP_SESSION||'::::TERM_ID:'||term_id
    ELSE
    wwv_flow_custom_auth_std.login(
    P_UNAME => faculty_id,
    P_PASSWORD => faculty_password,
    P_SESSION_ID => v('APP_SESSION'),
    P_FLOW_PAGE => :APP_ID||':TERM_SELECT_PAGE:'||:APP_SESSION
    END IF;
    owa_util.redirect_url('f?p=FACULTY_APP:LOGIN:&SESSION_ID.');
    The last part redirects them to the login page if all else fails
    Any idea why one faculty member would receive the message "error: ERR-1002 Unable to find item ID for item 'APP_SESSION'" while others would not?
    *NOTE: All variable and alias names here are not the actual names within the application.                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       

    Ah, i see. I thought you only had to use v('APP_SESSION') in the login function while assigned the value of P_SESSION_ID, but I was wrong.
    Thanks a lot Scott! It works perfectly now.
    Tim

  • Unable to Assign Service Profile and Response Profiles to Service contract

    Hi All,
    I am creating a new Service contract but unable to assign service and response profile in the Item details of a service contract.
    The serice and response profiles are in display mode they are greyed out.
    any ideas...
    Regards,
    Raj.

    Hello, please ignore I've replied to the wrong posting.
    Cheers
    Message was edited by: Andrey Bondarev
    Message was edited by: Andrey Bondarev

  • Buyer unable to assign vendor during completion

    Hi  experts,
    We are on SRM 7 ECS , support pack SAPKIBKV08.We are using process
    controlled workflow.
    We are using completion workflow . During completion workflow , the
    buyer receives the shopping cart but is unable to assign any vendor to
    any shopping cart line item. Please advise .
    Rgds
    Sumendra Singh

    Hi,
    Use t.code;XK02,
    Enter Vendor, Company Code & Purchase Organization
    Now select “purchasing data” check box in purchasing organization data tab & press enter
    In new screen click “Alternative Data”
    System will ask”do you want to create dif data” & click “Yes”
    In next screen enter your “plant” and select check box of “purchasing data” in alternative data tab& save.
    In this way u can assign ur plant to vendor.
    Regards,
    Biju K

  • ARCHIV_PROCESS_RFCINPUT -unable to assign an agent

    Hello all,
    I would like to be able to assign a fax document to an agent via early archiving (Archivelink). I have implemented the rfc ARCHIV_PROCESS_RFCINPUT successfully but I am unable to assign an agent. The workitem does not show in any users Business Workplace Inbox but I am able to find the Work Item by executing SWI2_FREQ. When I find the Work Item, I am not able to execute the task - the only button I have availabe to me is the Workflow log.
    The Workflow log indicates that this task is a general task and can be executed by all users.
    Any assistance would be greatly appeciated...
    Message was edited by: Maridali Gonzalez

    Hi Maridali,
    I think this is not an ArchiveLink issue rather than a workflow issue.
    1. Check if both the workflow and the workitem is a general task and not only one of them.
    2. Refresh the agent assignment in the workflow inbox.
    Best regards
    Torsten

  • Unable to delete items from recycle bin

    Unable to delete items from my trash, it starts to delete then stops along the way, when i open the trash, its still sat there.

    Relaunch the Finder, then from the Finder menu bar, select
    Finder ▹ Preferences ▹ Advanced
    and uncheck the box marked Empty Trash securely. Hold down the option key and try again to empty the Trash.

  • ASA 5505 Unable to assign ip to DMZ vlan interface

    hi all,
    I have ASA  5505 with base license.
    I created 3rd  vlan on it.it was created.
    but i am unable to assign IP to it.
    i assign ip address it takes it.
    But when i do sh int ip brief it does not show any ip.
    ciscoasa# sh int ip brief
    Interface                  IP-Address      OK? Method Status                Prot
    ocol
    Ethernet0/0                unassigned      YES unset  up                    up
    Ethernet0/1                unassigned      YES unset  up                    up
    Ethernet0/2                unassigned      YES unset  up                    up
    Ethernet0/3                unassigned      YES unset  administratively down down
    Ethernet0/4                unassigned      YES unset  administratively down down
    Ethernet0/5                unassigned      YES unset  administratively down down
    Ethernet0/6                unassigned      YES unset  administratively down down
    Ethernet0/7                unassigned      YES unset  administratively down down
    Internal-Data0/0           unassigned      YES unset  up                    up
    Internal-Data0/1           unassigned      YES unset  up                    up
    Vlan1                      192.168.1.1     YES CONFIG up                    up
    Vlan2                      192.168.11.2    YES CONFIG up                    up
    Vlan3                      unassigned      YES manual up                    up*************************************************************
    Virtual0                   127.0.0.1       YES unset  up                    up
    ciscoasa# config t
    ciscoasa(config)# int vlan 3
    ciscoasa(config-if)# ip ad
    ciscoasa(config-if)# ip address 192.168.12.2 255.255.255.0
    ciscoasa(config-if)# end
    ciscoasa# wr mem
    Building configuration...
    Cryptochecksum: 808baaba ced2a226 07cfb41f 9f6ec4f8
    4608 bytes copied in 1.630 secs (4608 bytes/sec)
    [OK]
    ciscoasa# sh int ip brief
    Interface                  IP-Address      OK? Method Status                Prot
    ocol
    Ethernet0/0                unassigned      YES unset  up                    up
    Ethernet0/1                unassigned      YES unset  up                    up
    Ethernet0/2                unassigned      YES unset  up                    up
    Ethernet0/3                unassigned      YES unset  administratively down down
    Ethernet0/4                unassigned      YES unset  administratively down down
    Ethernet0/5                unassigned      YES unset  administratively down down
    Ethernet0/6                unassigned      YES unset  administratively down down
    Ethernet0/7                unassigned      YES unset  administratively down down
    Internal-Data0/0           unassigned      YES unset  up                    up
    Internal-Data0/1           unassigned      YES unset  up                    up
    Vlan1                      192.168.1.1     YES CONFIG up                    up
    Vlan2                      192.168.11.2    YES CONFIG up                    up
    Vlan3                      unassigned      YES manual up                    up
    Virtual0                   127.0.0.1       YES unset  up                    up
    ciscoasa# sh ver
    Cisco Adaptive Security Appliance Software Version 8.2(5)
    Device Manager Version 6.4(9)
    Compiled on Fri 20-May-11 16:00 by builders
    System image file is "disk0:/asa825-k8.bin"
    Config file at boot was "startup-config"
    ciscoasa up 3 days 17 hours
    Hardware:   ASA5505, 256 MB RAM, CPU Geode 500 MHz
    Internal ATA Compact Flash, 128MB
    BIOS Flash M50FW080 @ 0xffe00000, 1024KB
    Encryption hardware device : Cisco ASA-5505 on-board accelerator (revision 0x0)
                                 Boot microcode   : CN1000-MC-BOOT-2.00
                                 SSL/IKE microcode: CNLite-MC-SSLm-PLUS-2.03
                                 IPSec microcode  : CNlite-MC-IPSECm-MAIN-2.05
    0: Int: Internal-Data0/0    : address is 001d.a24d.ed0e, irq 11
    1: Ext: Ethernet0/0         : address is 001d.a24d.ed06, irq 255
    2: Ext: Ethernet0/1         : address is 001d.a24d.ed07, irq 255
    3: Ext: Ethernet0/2         : address is 001d.a24d.ed08, irq 255
    4: Ext: Ethernet0/3         : address is 001d.a24d.ed09, irq 255
    5: Ext: Ethernet0/4         : address is 001d.a24d.ed0a, irq 255
    6: Ext: Ethernet0/5         : address is 001d.a24d.ed0b, irq 255
    7: Ext: Ethernet0/6         : address is 001d.a24d.ed0c, irq 255
    8: Ext: Ethernet0/7         : address is 001d.a24d.ed0d, irq 255
    9: Int: Internal-Data0/1    : address is 0000.0003.0002, irq 255
    10: Int: Not used            : irq 255
    11: Int: Not used            : irq 255
    Licensed features for this platform:
    Maximum Physical Interfaces    : 8
    VLANs                          : 3, DMZ Restricted
    Inside Hosts                   : Unlimited
    Failover                       : Disabled
    VPN-DES                        : Enabled
    VPN-3DES-AES                   : Enabled
    SSL VPN Peers                  : 2
    Total VPN Peers                : 10
    Dual ISPs                      : Disabled
    VLAN Trunk Ports               : 0
    Shared License                 : Disabled
    AnyConnect for Mobile          : Disabled
    AnyConnect for Cisco VPN Phone : Disabled
    AnyConnect Essentials          : Disabled
    Advanced Endpoint Assessment   : Disabled
    UC Phone Proxy Sessions        : 2
    <--- More --->
    Need to know does this License support IP  to 3rd vlan ?
    Thanks
    Mahesh

    Hi Julio,
    I tried to config namef if but here is result
    ciscoasa# sh run int vlan 3
    interface Vlan3
    description DMZ  to 3550 New Switch
    no nameif
    security-level 50
    ip address 192.168.12.2 255.255.255.0
    ciscoasa# config t
    ciscoasa(config)# int vlan 3
    ciscoasa(config-if)# name
    ciscoasa(config-if)# namei
    ciscoasa(config-if)# nameif DMZ
    ERROR: This license does not allow configuring more than 2 interfaces with
    nameif and without a "no forward" command on this interface or on 1 interface(s)
    with nameif already configured.

  • System Center Virtual Machine Manager SC VMM 2012 SP1 Installation fails: Unable to assign the name NO_PARAM to this host because this name is already in use.

    I'm trying to install VMM 2012 SP1 on a Windows Server 2012 machine and it fails with this error,
    the scenario is as follows,
    Old database (from 2012 RTM) exists on remote SQL 2012 SP1 server
    Server was 2008 R2 SP1 so I decided to make a fresh installation of 2012 with the same name
    installed ADK
    specific error: 01:42:13:VMMPostinstallProcessor threw an exception: Threw Exception.Type: Microsoft.VirtualManager.Setup.Exceptions.BackEndErrorException, Exception.Message: Unable to assign the name NO_PARAM to this host because this name is already in
    use.
    please help

    I had a similar problem today when upgrading from SCVMM 2012 RTM to SCVMM 2012 SP1 RTM. To re-create the issue you describe originally you can actually just uninstall SCVMM 2012 SP1 RTM with "retain data" option and re-install the software on the same
    computer (with the same name of course), attaching it to the retained DB. If you change the SCVMM server name I believe it will make some things go wrong after your install, like missing VM template passwords for example as the data gets encrypted in
    the DB. Maybe it didn't but I didn't risk it. I definitely know if you change service accounts on a scenario like this you will be without the encrypted DB data which isn't much fun. To avoid changing the computer name, if you look in the setup log
    files in %systemdrive%\ProgramData\VMMLogs\, specifically the SetupWizard.log file. You will see details on it failing because the same computer name is in the DB table "dbo.tbl_ADHC_AgentServer" and until it is removed from that table I wasn't able to get
    the install to complete at all. The error in my logs looked something like this "InnerException.Type: System.Data.SqlClient.SqlException, InnerException.Message: Violation of UNIQUE KEY constraint 'unique_ADHC_AgentServer_ComputerName'. Cannot insert duplicate
    key in object 'dbo.tbl_ADHC_AgentServer'. The duplicate key value is (computername.is.writtenhere). The statement has been terminated." In the row data in the DB it also seems to suggest that the computer name had "Virtual Machine Manager Library Files" on
    it which is strange since I always remove the local SCVMM server as a library server after I install it and use an off box library server.

  • SCVMM Unable to assign the subnet because it overlaps an existing one

    Hello,
    We are using SCVMM to manage an Hyper-V cluster (2012 R2).
    When we tried to create a new VLAN we got the following error:
    Error (13638)
    Unable to assign the subnet 172.22.172.128/25 because it overlaps with an existing subnet.
    Recommended Action
    Specify a non-overlapping subnet, and then try the operation again.
    After revising the rest of subnets we haven't found any overlaps.
    We have another VLAN defined with 172.22.172.0/25
    I've checked with a CIDR calculator and the IP Range is not overlapped.
    How can we define both VLANs with their corresponding Subnets?
    Regards

    Hi Pep,
    Have you tried a different range just to check there is not something overlapping that's been missed?
    I have a single C class range I then subnet up further in our SCVMM deployment depending type of VM with no issues. With associated IP Pools sat on top. In fact I have just added your two ranges with two different VLANs with no issues. 
    The 255.255.255.128 or /25 subnet breaks your IP range up into 0-127 and 128 to 255 as expected. There is no difference to this and further sub netting a B or C class range for a normal enterprise deployment. Granted its not a default class and
    will give you two different subnets but that's correct behaviour and shouldn't be an issue in SCVMM assigning each as a separate VLAN.
    Kind Regards
    Michael Coutanche
    Blog:   
    Twitter:   LinkedIn:
    Note: Posts are provided “AS IS” without warranty of any kind, either expressed or implied, including but not limited to the implied warranties of merchantability and/or fitness for a particular purpose.

  • Unable to assign the Ivews to Workset

    Hi Everyone,
    I am currently facing an issue in content admin,
    I am unable to Assign the IVIEW to the workset ....
    I open workset and then clicked on the iview and i find no option for assigning the iview to workset.
    I tried out various options but couldn't add the iview to workset ..Please let me know whether something is missing here...
    Regards,
    Raj

    Hi Kandara,
    Please check the following posiibilities:
    1. Check for Read and Write permissions for the workset you need to assign the ivew.
    2.Also check your browser version if it is IE 7.
    3. Also i think that you might have locked some object ,to unlock them go to system admin-monitoringunlock objects---go and select the object which is locked and after that press unlock so that the objects are unlocked now.
    4. Please check whether you have opened the workset you need to asssign the ivew in property editor otherwise you will not be able to see any option .
    After checking the above all possibilities try to right click on the ivew and then u will find teh option for adding to workset their you can select any one of them copy or delta link .
    Hope this will help you if you face any furthe problem plz revert.
    Regards
    Pooja

  • Error ERR-1802 Unable to find item

    I was using HTML DB to execute a query. The region expected an item and based on
    that item to retrieve a Clob and output to the GUI. Here is the PL/SQL code:
    begin
    if :P11_X_ID is null then
    return;
    end if;
    for x in (
    select column_value
    from table( query_cfile( cursor( select theClob from demo where id =
    TO_NUMBER(:P11_X_ID) )
    ) ))loop
    htp.prn(x.column_value);
    end loop;
    end;
    When I first time ran a page I was able to get the page back without any issue;
    however when I entered the second ID, I got "Error ERR-1802 Unable to find item
    id "187846523855309166"
    OK
    Unexpected error". Then I tried running the same page on different browser
    (switch from firefox to IE ) and entered the second ID I was able to get the
    page back. The same problem happened for the second browser, that is, if I
    entered another ID to search, I got the same error.
    And I turned on the trace using p_trace=YES
    grep -in err stra_ora_10201.trc
    83: error_template,
    205: where parameter in ('NLS_LANGUAGE', 'NLS_TERRITORY',
    'NLS_SORT')
    221:alter session set NLS_TERRITORY = "AMERICA"
    600: process_error_message,
    634: process_error_message,
    873:ERROR #34:err=1 tim=2122883685
    968: value="wwv_flow.find_item_err2"
    979: value="wwv_flow.unexpected_err"
    1038:select error_page_template
    1102: value="wwv_flow.err"
    1113: value="wwv_flow.err"
    1304: value="wwv_flow.find_item_err2"
    1315: value="wwv_flow.unexpected_err"
    1358: value="wwv_flow.err"
    1369: value="wwv_flow.err"
    1549: value="wwv_flow.find_item_err2"
    1560: value="wwv_flow.unexpected_err"
    1603: value="wwv_flow.err"
    1614: value="wwv_flow.err"
    1818:ERROR #34:err=1 tim=2122883705
    1874: value="wwv_flow.find_item_err2"
    1885: value="wwv_flow.unexpected_err"
    1928: value="wwv_flow.err"
    1939: value="wwv_flow.err"
    2143:ERROR #34:err=1 tim=2122883713
    2199: value="wwv_flow.find_item_err2"
    2210: value="wwv_flow.unexpected_err"
    2253: value="wwv_flow.err"
    2264: value="wwv_flow.err"
    2757: error_template,
    2879: where parameter in ('NLS_LANGUAGE', 'NLS_TERRITORY',
    'NLS_SORT')
    2895:alter session set NLS_TERRITORY = "AMERICA"
    3274: process_error_message,
    3308: process_error_message,
    3575: error_message,
    3582: nvl(error_display_location,'ON_ERROR_PAGE')
    error_display_location
    3640: value="wwv_flow.no_page_to_branch_err"
    Since the error happened on Cursor #34, here I retrieved the #34 from the trace
    file:
    =====================
    PARSING IN CURSOR #34 len=461 dep=1 uid=63 oct=2 lid=63 tim=1069307285981395
    hv=698873200 ad='5bdf916c'
    INSERT into wwv_flow_data (
    flow_instance,
    item_id,
    item_element_id,
    item_name,
    name_length,
    item_value,
    session_state_status,
    flow_id
    ) values (
    :b6,
    :b5,
    :b4,
    :b3,
    length(:b3),
    :b2,
    'I',
    :b1)
    END OF STMT
    PARSE #34:c=0,e=132,p=0,cr=0,cu=0,mis=0,r=0,dep=1,og=4,tim=1069307285981373
    BINDS #34:
    bind 0: dty=2 mxl=22(21) mal=00 scl=00 pre=00 oacflg=03 oacfl2=1 size=24
    offset=0
    bfp=4063ffe8 bln=22 avl=11 flg=05
    value=3707546874081609208
    bind 1: dty=2 mxl=22(21) mal=00 scl=00 pre=00 oacflg=13 oacfl2=1 size=24
    offset=0
    bfp=0ae3d23c bln=22 avl=09 flg=09
    value=1486322312855973
    bind 2: dty=2 mxl=22(21) mal=00 scl=00 pre=00 oacflg=13 oacfl2=1 size=24
    offset=0
    bfp=0ae3e0d0 bln=22 avl=02 flg=09
    value=1
    bind 3: dty=1 mxl=32(08) mal=00 scl=00 pre=00 oacflg=13 oacfl2=1 size=32
    offset=0
    bfp=0ae3e13c bln=32 avl=08 flg=09
    value="P11_X_ID"
    bind 4: dty=1 mxl=32(08) mal=00 scl=00 pre=00 oacflg=13 oacfl2=1 size=32
    offset=0
    bfp=0ae3e13c bln=32 avl=08 flg=09
    value="P11_X_ID"
    bind 5: dty=1 mxl=128(02) mal=00 scl=00 pre=00 oacflg=13 oacfl2=1 size=128
    offset=0
    bfp=0adbb4e0 bln=128 avl=02 flg=09
    value="57"
    bind 6: dty=2 mxl=22(21) mal=00 scl=00 pre=00 oacflg=03 oacfl2=1 size=24
    offset=0
    bfp=4063ffc4 bln=22 avl=03 flg=05
    value=105
    =====================
    PARSING IN CURSOR #35 len=119 dep=2 uid=0 oct=3 lid=0 tim=1069307285985274
    hv=3286148528 ad='5bfee648'
    select c.name, u.name from con$ c, cdef$ cd, user$ u where c.con# = cd.con# and
    cd.enabled = :1 and c.owner# = u.user#
    END OF STMT
    PARSE #35:c=0,e=176,p=0,cr=0,cu=0,mis=0,r=0,dep=2,og=4,tim=1069307285985249
    BINDS #35:
    bind 0: dty=2 mxl=22(22) mal=00 scl=00 pre=00 oacflg=08 oacfl2=1 size=24
    offset=0
    bfp=407975e0 bln=22 avl=04 flg=05
    value=32720
    EXEC #35:c=0,e=514,p=0,cr=0,cu=0,mis=0,r=0,dep=2,og=4,tim=1069307285986292
    FETCH #35:c=0,e=88,p=0,cr=2,cu=0,mis=0,r=0,dep=2,og=4,tim=1069307285986517
    STAT #35 id=1 cnt=0 pid=0 pos=1 obj=0 op='NESTED LOOPS (cr=2 r=0 w=0 time=78
    us)'
    STAT #35 id=2 cnt=0 pid=1 pos=1 obj=0 op='NESTED LOOPS (cr=2 r=0 w=0 time=74
    us)'
    STAT #35 id=3 cnt=0 pid=2 pos=1 obj=31 op='TABLE ACCESS BY INDEX ROWID CDEF$
    (cr=2 r=0 w=0 time=70 us)'
    STAT #35 id=4 cnt=0 pid=3 pos=1 obj=53 op='INDEX RANGE SCAN I_CDEF4 (cr=2 r=0
    w=0 time=62 us)'
    STAT #35 id=5 cnt=0 pid=2 pos=2 obj=28 op='TABLE ACCESS BY INDEX ROWID CON$
    (cr=0 r=0 w=0 time=0 us)'
    STAT #35 id=6 cnt=0 pid=5 pos=1 obj=49 op='INDEX UNIQUE SCAN I_CON2 (cr=0 r=0
    w=0 time=0 us)'
    STAT #35 id=7 cnt=0 pid=1 pos=2 obj=22 op='TABLE ACCESS CLUSTER USER$ (cr=0 r=0
    w=0 time=0 us)'
    STAT #35 id=8 cnt=0 pid=7 pos=1 obj=11 op='INDEX UNIQUE SCAN I_USER# (cr=0 r=0
    w=0 time=0 us)'
    =====================
    PARSING IN CURSOR #35 len=84 dep=2 uid=0 oct=3 lid=0 tim=1069307285988552
    hv=2458412332 ad='5b779008'
    select o.name, u.name from obj$ o, user$ u where o.obj# = :1 and o.owner# =
    u.user#
    END OF STMT
    PARSE #35:c=0,e=142,p=0,cr=0,cu=0,mis=0,r=0,dep=2,og=4,tim=1069307285988532
    BINDS #35:
    bind 0: dty=2 mxl=22(22) mal=00 scl=00 pre=00 oacflg=08 oacfl2=1 size=24
    offset=0
    bfp=407975e0 bln=22 avl=04 flg=05
    value=32720
    EXEC #35:c=0,e=431,p=0,cr=0,cu=0,mis=0,r=0,dep=2,og=4,tim=1069307285989485
    FETCH #35:c=0,e=187,p=0,cr=5,cu=0,mis=0,r=1,dep=2,og=4,tim=1069307285989805
    STAT #35 id=1 cnt=1 pid=0 pos=1 obj=0 op='NESTED LOOPS (cr=5 r=0 w=0 time=169
    us)'
    STAT #35 id=2 cnt=1 pid=1 pos=1 obj=18 op='TABLE ACCESS BY INDEX ROWID OBJ$
    (cr=3 r=0 w=0 time=74 us)'
    STAT #35 id=3 cnt=1 pid=2 pos=1 obj=36 op='INDEX UNIQUE SCAN I_OBJ1 (cr=2 r=0
    w=0 time=37 us)'
    STAT #35 id=4 cnt=1 pid=1 pos=2 obj=22 op='TABLE ACCESS CLUSTER USER$ (cr=2 r=0
    w=0 time=75 us)'
    STAT #35 id=5 cnt=1 pid=4 pos=1 obj=11 op='INDEX UNIQUE SCAN I_USER# (cr=1 r=0
    w=0 time=16 us)'
    EXEC #34:c=0,e=8619,p=0,cr=8,cu=10,mis=0,r=0,dep=1,og=4,tim=1069307285991108
    ERROR #34:err=1 tim=2122883685
    =====================
    Here is the version:
    SQL> select * from v$version;
    BANNER
    Oracle9i Enterprise Edition Release 9.2.0.4.0 - Production
    PL/SQL Release 9.2.0.4.0 - Production
    CORE 9.2.0.3.0 Production
    TNS for Linux: Version 9.2.0.4.0 - Production
    NLSRTL Version 9.2.0.4.0 - Production
    My page is very simple, it contains one region, one item, one
    button (click to search).
    Would you please advise what next step should be?
    Thanks in advance,

    SQL> desc demo;
    Name Null? Type
    ID NOT NULL NUMBER(38)
    THECLOB CLOB
    The query just took the CLOB content and divided it into table of varchar2(4000) base on chr(10). The query worked well in PL/SQL when I replaced htp with dbms_output.
    The branching was the default one, "Redirect To Page 11 (the same page)". I only created one region, one item and one button. That branching was automatically created.
    Below was the output when I turned on the debug mode.
    0.00: A C C E P T: Request=""
    0.01: Fetch flow info
    0.01: alter session set nls_language="AMERICAN"
    0.02: alter session set nls_territory="AMERICA"
    0.02: ...Setting NLS Decimal separator="."
    0.02: Fetch session state from database
    0.03: ...Check instance 936431675924660583 owner
    0.03: ...Fetch iconbar, page, computation, process, ...
    0.03: Fetch session header information
    0.03: ...fetch page attributes: f105, p11
    0.04: ...Check security schemes
    0.04: Save form items and p_arg_values
    0.05: Saved session state: 1486322312855973 "P11_X_ID" changedValue="49"
    0.05: Show ERROR page...
    0.06: Processing point: AFTER_ERROR_HEADER Home
         Error      ERR-1802 Unable to find item id "26896009627"
    OK      
    0.07: Processing point: BEFORE_ERROR_FOOTER
    Unexpected error
    0.08: ...Determine if user ADMIN with SGID 504322868864112 can develop application 105 in workspace 504322868864112
    Edit ApplicationEdit Page 11NewSessionNo DebugHide Edit LinksShow Edit Links
    0.09: Saved session state: 26896009627 "" newValue=""
    0.09: Show ERROR page...
    0.10: Processing point: AFTER_ERROR_HEADER Home
         Error      ERR-1802 Unable to find item id "27133775492"
    OK      
    0.11: Processing point: BEFORE_ERROR_FOOTER
    Unexpected error
    0.11: ...Determine if user ADMIN with SGID 504322868864112 can develop application 105 in workspace 504322868864112
    Edit ApplicationEdit Page 11NewSessionNo DebugHide Edit LinksShow Edit Links
    0.13: Saved session state: 27133775492 "" newValue="N"
    0.13: Show ERROR page...
    0.14: Processing point: AFTER_ERROR_HEADER Home
         Error      ERR-1802 Unable to find item id "17708687878"
    OK      
    0.15: Processing point: BEFORE_ERROR_FOOTER
    Unexpected error
    0.15: ...Determine if user ADMIN with SGID 504322868864112 can develop application 105 in workspace 504322868864112
    Edit ApplicationEdit Page 11NewSessionNo DebugHide Edit LinksShow Edit Links
    0.16: Saved session state: 17708687878 "" newValue=" "processing of sql statements""
    0.17: Show ERROR page...
    0.18: Processing point: AFTER_ERROR_HEADER Home
         Error      ERR-1802 Unable to find item id "79615715229400664"
    OK      
    0.19: Processing point: BEFORE_ERROR_FOOTER
    Unexpected error
    0.19: ...Determine if user ADMIN with SGID 504322868864112 can develop application 105 in workspace 504322868864112
    Edit ApplicationEdit Page 11NewSessionNo DebugHide Edit LinksShow Edit Links
    0.20: Saved session state: 79615715229400664 "" newValue="22467871247389"
    0.21: Show ERROR page...
    0.22: Processing point: AFTER_ERROR_HEADER Home
         Error      ERR-1802 Unable to find item id "187846523855309166"
    OK      
    0.22: Processing point: BEFORE_ERROR_FOOTER
    Unexpected error
    0.23: ...Determine if user ADMIN with SGID 504322868864112 can develop application 105 in workspace 504322868864112
    Edit ApplicationEdit Page 11NewSessionNo DebugHide Edit LinksShow Edit Links
    0.24: Saved session state: 187846523855309166 "" newValue=""

Maybe you are looking for

  • My 2008 Macbook is having difficulties with the internal HDD no longer mounting. How do I fix this?

    I need to get this computer running again as it is used by my spouse.  I do have a back up via Time Machine so if necessary can "Nuke and Pave". What is the recommended method of fixing the issue?

  • Audio Tracks not showing in itunes.

    Dear All After transferring audio tracks to itunes library I am manually dragging them to my ipod shuffle and the songs are shown in the shuffle but when I am deleting the tracks from the itunes library then nothing is shown in the ipod shuffle folde

  • Vendor down payments for one time vendor

    Hi There, I am not sure why this is happening, but when we try and post a down payment to a one time vendor, it comes up with the error F5 265. When we do this for a normal Vendor it is OK. Has anyone come across this? Is there some special config re

  • Transferring music from an ipod classic to another ipod using itunes

    help! im not technical minded so please be gentle! I have an ipod classic which I need to transfer all the music content to another ipod which I bought second hand.  I cant seem to establish how to do this - im trying to drag them to a playlist in my

  • Font Embedding in dynamic TLFTextField

    hi, how to get the same features of a static text field in TLF TextField dynamically; for eg. I kept a static text in stage with features like font family= "verdana", color="0x000000",  bold = true, font size =14. i created a TLF TextField  dynamical