REGISTRATION NO IS NOT INSERTED AND NO QUESTION THROWN FOR XML

Hey Odie,

Hope you answer this simple query for me. I am not able to find any question, but it doesn't load the data in the custom table. Please tell me where in fact it's bad for me.

example of xml file
 <?xml version="1.0" encoding="UTF-8" ?> 
- <GEBIZ_SUPPLIERS xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
- <SUPPLIER>
  <CODE>200003048E</CODE> 
  <NAME>Safe2Travel Pte Ltd</NAME> 
  <TYPE>GTP</TYPE> 
  <GST_NUMBER>20-0003048-E</GST_NUMBER> 
  <ACTIVE_FLAG>Y</ACTIVE_FLAG> 
  <DELETE_FLAG>N</DELETE_FLAG> 
  <CREATE_TIMESTAMP>2004-02-29T04:01:51</CREATE_TIMESTAMP> 
- <SITES>
- <SITE>
  <ID>1</ID> 
  <NAME>Safe2Travel Pte Ltd</NAME> 
  <PHONE>68233013</PHONE> 
  <PHONE_EXTENSION xsi:nil="true" /> 
  <FAX>68221636</FAX> 
  <EMAIL>[email protected]</EMAIL> 
  <ADDRESS_LINE1>10 Eunos Road 8</ADDRESS_LINE1> 
  <ADDRESS_LINE2>#08-03 (North Lobby)</ADDRESS_LINE2> 
  <ADDRESS_LINE3>Singapore Post Centre</ADDRESS_LINE3> 
  <COUNTRY_CODE>SG</COUNTRY_CODE> 
  <PROVINCE xsi:nil="true" /> 
  <STATE xsi:nil="true" /> 
  <CITY xsi:nil="true" /> 
  <AREA_CODE xsi:nil="true" /> 
  <ZIP>408600</ZIP> 
  <REGION_CODE xsi:nil="true" /> 
  <DELETE_FLAG>N</DELETE_FLAG> 
  <CREATE_TIMESTAMP>2004-02-29T04:03:11</CREATE_TIMESTAMP> 
  <UNIQUE_PERSON_ID xsi:nil="true" /> 
  <UNIQUE_PERSON_NAME xsi:nil="true" /> 
  </SITE>
- <SITE>
  <ID>2</ID> 
  <NAME>Safe2Travel Pte Ltd</NAME> 
  <PHONE>62208866</PHONE> 
  <PHONE_EXTENSION xsi:nil="true" /> 
  <FAX>62265578</FAX> 
  <EMAIL>[email protected]</EMAIL> 
  <ADDRESS_LINE1>3 Lim Teck Kim Road</ADDRESS_LINE1> 
  <ADDRESS_LINE2>#02-02</ADDRESS_LINE2> 
  <ADDRESS_LINE3>Singapore Technologies Building</ADDRESS_LINE3> 
  <COUNTRY_CODE>SG</COUNTRY_CODE> 
  <PROVINCE xsi:nil="true" /> 
  <STATE xsi:nil="true" /> 
  <CITY xsi:nil="true" /> 
  <AREA_CODE xsi:nil="true" /> 
  <ZIP>088934</ZIP> 
  <REGION_CODE xsi:nil="true" /> 
  <DELETE_FLAG>Y</DELETE_FLAG> 
  <CREATE_TIMESTAMP>2004-02-29T04:03:11</CREATE_TIMESTAMP> 
  <UNIQUE_PERSON_ID xsi:nil="true" /> 
  <UNIQUE_PERSON_NAME xsi:nil="true" /> 
  </SITE>
- <SITE>
  <ID>3</ID> 
  <NAME>Safe2Travel Pte Ltd</NAME> 
  <PHONE>62208866</PHONE> 
  <PHONE_EXTENSION xsi:nil="true" /> 
  <FAX>62265578</FAX> 
  <EMAIL>[email protected]</EMAIL> 
  <ADDRESS_LINE1>3 Lim Teck Kim Road</ADDRESS_LINE1> 
  <ADDRESS_LINE2>#02-02</ADDRESS_LINE2> 
  <ADDRESS_LINE3>Singapore Technologies Building</ADDRESS_LINE3> 
  <COUNTRY_CODE>SG</COUNTRY_CODE> 
  <PROVINCE xsi:nil="true" /> 
  <STATE xsi:nil="true" /> 
  <CITY xsi:nil="true" /> 
  <AREA_CODE xsi:nil="true" /> 
  <ZIP>088934</ZIP> 
  <REGION_CODE xsi:nil="true" /> 
  <DELETE_FLAG>Y</DELETE_FLAG> 
  <CREATE_TIMESTAMP>2004-02-29T04:03:11</CREATE_TIMESTAMP> 
  <UNIQUE_PERSON_ID xsi:nil="true" /> 
  <UNIQUE_PERSON_NAME xsi:nil="true" /> 
  </SITE>
  </SITES>
  </SUPPLIER>
  </GEBIZ_SUPPLIERS>
to do this, I wrote the below mentioned procedure that not give me any error or any insert the record into the custom table.
CREATE OR REPLACE PROCEDURE XGBZPROD.test_SUPP_MAST_XMLTAG_PROC(P_XML_FILE IN VARCHAR2)
IS
  v_supp_file xmltype;

BEGIN
  v_supp_file  := xmltype( bfilename('XMLDIR',P_XML_FILE), nls_charset_id('AL32UTF8'));
  dbms_output.put_line('P_XML_FILE '||P_XML_FILE);

 --
 --Initially insert data into 11g table same table structure as exists in 8i. This
 -- is to read xml datafile
 --


  INSERT INTO XGBZ_FIN_STAGE_SMO
  (supp_code,
   supp_name,
   type,
   gst_regn_no,
   active_flag,
   delete_flag,
   create_timestamp,
   supp_site_id,
   supp_site_name,
   supp_phone,
   supp_phone_ext,
   supp_fax,
   supp_email,
   address_line1,
   address_line2,
   address_line3,
   country,
   province,
   state,
   city,
   area_code,
   zip,
   region_code,
   logical_delete_flag,
   site_create_timestamp,
   unique_person_id,
   unique_person_name,
   ministry_code,
   dept_code,
   ext_system_code,
   gebiz_timestamp
   )
    SELECT x1.supp_code,
           x1.supp_name,
           x1.type,
           x1.gst_regn_no,
           x1.active_flag,
           x1.delete_flag,
           x1.create_timestamp,
           x2.supp_site_id,
           x2.supp_site_name,
           x2.supp_phone,
           x2.supp_phone_ext,
           x2.supp_fax,
           x2.supp_email,
           x2.address_line1,
           x2.address_line2,
           x2.address_line3,
           x2.country,
           x2.province,
           x2.state,
           x2.city,
           x2.area_code,
           x2.zip,
           x2.region_code,
           x2.logical_delete_flag,
           x2.site_create_timestamp,
           x2.unique_person_id,
           x2.unique_person_name,
           'RPO' ministry_code,
           '000' dept_code,
           'E' ext_system_code,
            sysdate gebiz_timestamp
      FROM XMLTABLE (
           '/GEBIZ_SUPPLIERS'
           passing v_supp_file
           columns
           supp_code           VARCHAR2(10)  path   'SUPPLIER/CODE',
           supp_name           VARCHAR2(140) path   'SUPPLIER/NAME',
           type                VARCHAR2(3)   path   'SUPPLIER/TYPE',
           gst_regn_no         VARCHAR2(30)  path   'SUPPLIER/GST_NUMBER',
           active_flag         VARCHAR2(1)   path   'SUPPLIER/ACTIVE_FLAG',
           delete_flag         VARCHAR2(1)   path   'SUPPLIER/DELETE_FLAG',
           create_timestamp    VARCHAR2(24)  path   'SUPPLIER/CREATE_TIMESTAMP',
           sites               xmltype       path   'SITES'
           )x1,
           XMLTABLE('/SITES/SITE'
           passing x1.sites
           columns
           supp_site_id        NUMBER        path   'ID',
           supp_site_name      VARCHAR2(140) path   'NAME',
           supp_phone          VARCHAR2(23)  path   'PHONE',
           supp_phone_ext      VARCHAR2(4)   path   'PHONE_EXTENSION',
           supp_fax            VARCHAR2(40)  path   'FAX',
           supp_email          VARCHAR2(100) path   'EMAIL',
           address_line1       VARCHAR2(254) path   'ADDRESS_LINE1' ,
           address_line2       VARCHAR2(35)  path   'ADDRESS_LINE2' ,
           address_line3       VARCHAR2(35)  path   'ADDRESS_LINE3' ,
           country             VARCHAR2(2)   path   'COUNTRY_CODE' ,
           province            VARCHAR2(25)  path   'PROVINCE' ,
           state               VARCHAR2(25)  path   'STATE' ,
           city                VARCHAR2(25)  path   'CITY' ,
           area_code           VARCHAR2(10)  path   'AREA_CODE' ,
           zip                 VARCHAR2(20)  path   'ZIP',
           region_code         VARCHAR2(3)   path   'REGION_CODE',
           logical_delete_flag VARCHAR2(1)   path   'DELETE_FLAG',
           site_create_timestamp VARCHAR2(24) path  'CREATE_TIMESTAMP',
           unique_person_id    VARCHAR2(16)  path   'UNIQUE_PERSON_ID',
           unique_person_name  VARCHAR2(140) path   'UNIQUE_PERSON_NAME'
           )x2;
      COMMIT;
   exception
   when others then 
     dbms_output.put_line('error occurred '||sqlerrm);
   end;
Gurus, help to verify the issue.

Kind regards
Mr. Nagendra

You pass the bad XPaths.
Please, try the following:

...
XMLTABLE (
  '/GEBIZ_SUPPLIERS/SUPPLIER'
  passing t.v_supp_file
    columns
    supp_code           VARCHAR2(10)  path   'CODE',
    supp_name           VARCHAR2(140) path   'NAME',
    type                VARCHAR2(3)   path   'TYPE',
    gst_regn_no         VARCHAR2(30)  path   'GST_NUMBER',
    active_flag         VARCHAR2(1)   path   'ACTIVE_FLAG',
    delete_flag         VARCHAR2(1)   path   'DELETE_FLAG',
    create_timestamp    VARCHAR2(24)  path   'CREATE_TIMESTAMP',
    sites               xmltype       path   'SITES'
    )x1,
...

Tags: Oracle Development

Similar Questions

  • Inserting and removing memory stick for loading of pictures from the camera.

    I currently have a HP Envy23 all in one computer.  When you insert the Memory Stick PRO Duo for the loading of the pictures on the computer, I have to push the memory stick all the way to access and upload the photos.  The memory stick will completely into the slot and doesn't have a function to remove the memory stick.  In my view, what is of the size multi memory card slot.

    This doesn't seem fair.  To get the stick, I must use a pair of pliers tweezers in the opening to pick up the stick and take it out.  It takes some effort to seize the stick.  Y at - it a special procedure should I use to get out of the slot in the Memory Stick?

    Thanks for your help.

    Tahoeterry

    Hello tahoeterry,

    I understand that you are having problems getting your Memory Stick PRO Duo on your HP ENVY 23 and are looking for help. Have you tried to push the card until it clicks. This should release the memory card and let him out for easy removal. If this does not work as I said then I think it would be best if you contact HP Support for service options, as there may be something to physically hurt.

    I want to thank you for display on the HP Forums. Have a great day!

  • Change in the merger of insert and create a procedure for updating the records after

    Hello

    I have a table that contains about 50 M lines of partition, and every day I have an application that performs a merge to insert records statement about 100 k per day and it's 300 M updates a day.

    Because I both update and insert the application performs a merge.
    I need to make at least 500 M, updated day by day, and for this reason this solution doesn't have enough performance for what I'm asking.

    I think another solution that I will try to implement now, and I just posted this in an attempt to get help on the option that I may have to do.

    I want to start putting in place:
    -Locations is updated 'last_record_date' using 'KEY1' and 'Key2' "KEY3";
    -Change the application to only inserts into a temporary table.
    -Have two procedures, one that takes the new records from the temporary table and inserts it into the final table, and another that selects records which is updated and perform an update.
    -This two procedures will choose the records and delete them from the temporary table (or mark them as updated\inserted).

    The volume is very large, so performance is a challenge! That's why I'm writing this, because a solution with enough performance for the intermediate stage will be difficult.
    My final table is partitioned by date and the date is the area that I need to update (instead of create daily partitions in order to reduce the frequency of the movement of the line, I create monthly partitions)!
    It is currently my table definition:
    CREATE TABLE MY_TEST_TABLE
        (KEY1                           VARCHAR2(50 BYTE) ,
        KEY2                         VARCHAR2(50 BYTE) NOT NULL,
        KEY3                           VARCHAR2(50 BYTE) ,
        last_record_date                    VARCHAR2(50 BYTE) NOT NULL)
      PCTFREE     10
      INITRANS    1
      MAXTRANS    255
       STORAGE   (
        BUFFER_POOL DEFAULT
      )
      NOCACHE
      MONITORING
      ENABLE ROW MOVEMENT
      PARTITION BY RANGE (last_record_date)
      (
      PARTITION MY_TEST_TABLE_201112 VALUES LESS THAN ('20120101')
      PCTFREE     10
      INITRANS    1
      MAXTRANS    255
      NOLOGGING,
      PARTITION MY_TEST_TABLE_201201 VALUES LESS THAN ('20120201')
      PCTFREE     10
      INITRANS    1
      MAXTRANS    255
      NOLOGGING,
      PARTITION MY_TEST_TABLE_201202 VALUES LESS THAN ('20120301')
      PCTFREE     10
      INITRANS    1
      MAXTRANS    255
      NOLOGGING,
      PARTITION def VALUES LESS THAN (MAXVALUE)
      PCTFREE     10
      INITRANS    1
      MAXTRANS    255
      NOLOGGING
      )
      NOPARALLEL
    /
    
    
    
    -- Constraints for MY_TEST_TABLE
    
    ALTER TABLE MY_TEST_TABLE
    ADD CHECK ("KEY1" IS NOT NULL)
    /
    
    ALTER TABLE MY_TEST_TABLE
    ADD CHECK ("KEY2" IS NOT NULL)
    /
    
    ALTER TABLE MY_TEST_TABLE
    ADD CHECK ("KEY3" IS NOT NULL)
    /
    ALTER TABLE MY_TEST_TABLE
    ADD CONSTRAINT pk_MY_TEST_TABLE PRIMARY KEY (KEY1, KEY2, KEY3)
    USING INDEX
      PCTFREE     10
      INITRANS    2
      MAXTRANS    255
    /
    Thank you
    Ricardo Tomas

    naoseionome wrote:
    Hello

    My version is:
    Oracle Database 11 g Enterprise Edition Release 11.2.0.2.0 - 64 bit Production

    It's the DOF I used to create the database.

    The merger is common during every day for about 10 M records.

    There are several methods to do the update, but they do sequencially to avoid deadlocks (because I can't control the source and each process can update the same keys.

    The update uses "KEY1, KEY2, KEY3" to update the value 'LAST_RECORD_DATE' have impact by being date or varchar2?

    I'm still waiting to receive permissions in order to follow up the matter, but in the meantime, in that I am trying to implement this work around in order to accelerate a development in the case where it would be necessary! Comments only I have at the moment, it is that he is not able to process the total amount of records timely (order book is generated).

    Thank you
    Ricardo

    Well, the first thing we do is to change the type of data type varchar to a date. The main impact is that a date is not a string, it's a date. If you are adding data processes in different date formats (which is possible when you use a character to store information) you're going to be very sad (good luck converting back an effective date).

    An example of how this can happen easily.

    ME_TUBBZ?select to_char(sysdate) from dual;
    
    TO_CHAR(SYSDATE)
    -----------------------------
    12-jan-2012 10 55:33
    
    1 row selected.
    
    Elapsed: 00:00:00.01
    ME_TUBBZ?alter session set nls_date_format = 'yyyy-mon-dd';
    
    Session altered.
    
    Elapsed: 00:00:00.01
    ME_TUBBZ?select to_char(sysdate) from dual;
    
    TO_CHAR(SYSDATE)
    --------------------
    2012-jan-12
    
    1 row selected.
    
    Elapsed: 00:00:00.00
    

    Assuming that the client passes the column as an Oracle DATE will make an (implicit) conversion to store the data as a string, which will be based on the current settings of the NLS for the session. This allows also for someone to completely non-jour the information in the column (super bad). It's just really bad form to use strings to store dates, numbers, anything that is not naturally a string.

    Based on the description of your problem, I can't imagine how your partitioning scheme performs one action in another that require more work in order to process the updates (which are most of your needs). Partitioning does not equate to increase performance. It is a tool that, like every tool has its place, but I do not think that this is justified for what you do (certainly not how you currently use it anyway).

    I say no partitioning can not be useful for you, but I don't think that on the column that you are currently using is 'good '.

    Something I would like to personally study (must be able to compare this approach to your course, if you need parameters for comparison) if I were you would be using a Table Index organized for it. It will take more time to perform the operations insertion, but that is a small part of all the work that you do for this process. For updates, it should eliminate a lot of IO, assuming that you are doing an INDEX seek followed by a table access by ROWID to perform updates. This recommendation assumes that everything you said is true. You have 4 columns in your table, of which 3 are components of the primary key and the 4th is a date (note I did not string :)) and that you refresh mainly, not fit.) Also that you have no 'secondary' on this entity index (and none are needed).

    I would investigate this approach before the solution of temporary table that you are currently studying.

    See you soon,.

  • Network driver is not installed and have no option for the wireless

    Hello

    My network driver is not installed and I have not listed in my device manager wireless driver. For this reason, I am unable to connect to the internet.

    I've seen previous posts that you need network controller ID for this problem, they are:

    PCI\VEN_168C & DEV_0036 & SUBSYS_18E3103C & REV_01

    PCI\VEN_168C & DEV_0036 & SUBSYS_18E3103C

    PCI\VEN_168C & DEV_0036 & CC_028000

    PCI\VEN_168C & DEV_0036 & CC_0280

    Excuse my lack of knowledge in this area, but how to download new drivers if I can't get an internet connection.

    Appreciate your help.

    Best regards and thanks,

    Jeff.

    Hello

    Please try:

    http://ftp.HP.com/pub/SoftPaq/sp63501-64000/sp63802.exe

    You also have the following for Bluetooth:

    http://ftp.HP.com/pub/SoftPaq/sp64501-65000/sp64678.exe

    Kind regards.

  • Windows 7 validation error saying Windows not genuine - and it really was for two years!

    I have an error that comes every hour or so, all of a sudden, that says that Windows 7 is not genuine and to 'click here' to resolve.  It looks quite realistic, however, the issue I have with it is that half of the message is in a weird language that I don't understand.  Part is in English, is in something that looks like Russian.  I do not DARE click the link because I am afraid that this is malware or a virus because of the foreign language and others who look a little off, although I scanned with both programs and come clean, including with Microsoft Essentials and Norton 360.

    I just tried to reinstall Windows 7 on my drive to upgrade two years (Vista upgrade), but it doesn't let me, saying that my version is newer than the disk.  I'm just not that computer to find out what to do next.  All my files are backed up safely with an off-site backup services so I don't lose anything I can do away from my computer, but how?  Or better yet, how can I know if it's true?
    Help!
    SimonMci

    That sounds good to me :)

    Have fun.

  • My mother has forgotten her password. Reset does not work and the e-mail for it no longer works.

    My mothers account is * address email is removed from the privacy *. She cannto remember his password. A standard to reset request does not work as the old email not available more

    Hi MorganSilver,

    Thank you for visiting the Microsoft answers community.

    The question you have posted is bound using Windows Live and would be better suited in the Center of Windows Live Help solutions. Please visit this link to find a community that will support what ask you

  • Ive forgot that my password and secret question answer for my hotmail account, no way to recover either!

    while checking the mail on my iphone the mailbox would not and says the password / user name were incorrect, tried to connect via safari, same problem, makes me think it may have been compromised. I went to change my password, but have forgotten my secret question answer * model * I tried after the password recovery process, Ive had the account for more than 5 years and really use it as an address to sign on sites that require an email address, and that my iphone was connected to the account more than a year I don't remember half of the information it wants to check me (names of contact emails sent etc) so I was denied access to the account, I have followed every step of aid continues to meet up with password reset option which I can't do because I don't know my secret question answer so im stuck, I hope someone can help, thanks a lot :)

    Hello

    The question you have posted is related to Hotmail and would be better suited to the community of windows live. Please visit the link below to find a community that will provide the support you want.
    http://windowslivehelp.com/product.aspx?ProductID=1

  • Drop-down boxes as those used for the dates do not work and try to work for a while. What is going on?

    Drop-down boxes have not worked for the last few revisions of
    Firefox. I tried to eliminate all add ons etc. little nothing is done. For this
    not appear as it should be a big problem to solve, since these
    objects used to work properly in the past. I love otherwise Firefox
    and do not want to use a different browser. The drop-down list below does not either, but maybe it's the lack of content.

    Yes, I disabled everything. Even changed themes of Windows 7, but not luck.

    After sending this reply, it dawned on me that actual window guard can be
    the problem. When I excluded the window Firefox actual window guard
    control the drop-down boxes worked. Wish I thought of it earlier. Thanks to all those who have made suggestions and tried to help him. I really appreciate your time and efforts.

  • Sync kernel - does not (yet) and no auto update for the CC app...?

    New errors/bugs for one out there who can help me.

    Whenever I boot my Mac CC takes 20 minutes go, checking the activity monitor app I see it.


    I also noticed that my CC is the 2.0.0.74 version and the latest version is 2.0.1.88, is my CC for the automatic update?


    I don't see green ticks also tell me what is synchronized and not...


    Dumpsters of screen below for reference:


    Only a force quite get lap app...

    Screen Shot 2015-05-10 at 17.11.58.png

    Typically what I see with CC app menu.

    Screen Shot 2015-05-10 at 17.19.49.png

    No ticks green to indicate visually what is synchronized...

    Screen Shot 2015-06-02 at 01.08.33.png

    Dave, try the following steps.

    1. close the following processes in the activity monitor.

    • Creating cloud, Coresync, Office Adobe services

    2 restart the creative cloud and see if it works.

    If this is not the case, try:

    1. Cloud Desktop App is empty?
    2. Delete creative cloud app - https://helpx.adobe.com/creative-suite/kb/cs5-cleaner-tool-installation-problems.html
    3. Install the cloud creative app - https://helpx.adobe.com/creative-cloud/help/install-apps.html

    Let us know if any of these links is useful.

    Atul_Saini

  • I bought creative cloud and it changed to another language, not English and is now useless for me.  I can't read enough of the language to know how to change the language.

    How can I change the language on creative cloud?  Seems to have change in another language, not English, on its own.

    Hello

    Follow please change the language setting of your Cloud Creative applications

    Kind regards

    Sheena

  • Cannot install adobe creative suite 6, do not load and install further when the second cd is inserted (zip also does not work)

    Cannot install adobe creative suite 6, do not load and install further when the second cd is inserted

    This question is unanswered.

    artistichooves artistichooves February 6, 2014 06:31

    I've only had 3 programs installed with the two cd I got with my adobe creative suite 6 (edition education, student and teacher)

    It didn't load any further when I insert the second cd. (tried several times) on my windows 8.1

    I got a license number, but it does not work on the creative cloud

    I tried to download the zip file, but it did not work

    I have ragequited (sorry)

    and now I want to try again.

    -J' have the license but I can't use my cd or download the zip

    -are there a cd I can buy again or something?

    It seems that my series works more :/

  • Popup do not insert in the table and not refreshing called page...

    Greetings



    Environment: APEX 3.1.1.00.09 on AIX 5.3 with 10 gr 2



    I read a lot of threads about my question and I think I'm getting closer to the answer but in some sort have combined a too big number of suggestions and am tripping over my own code.



    Please look at my sample application on apex.oracle.com:



    Workspace: galway

    User: gwicke

    Password: gwicke



    Please start by Page3, select any agency and then click on "add a new contract."

    There are currently a label "BOLD" < facilities > < strong > 'Add new Builder' which is a link that should open a popup window. Type a name in the field, and then click 'Create Builder'. This should INSERT the row into the table builder, close the pop-up window, assign the new name of the generator to the item page calling "Name Builder" and fill the screen element.



    In current state, the application will open the pop-up, allow entry and close by clicking on the button "create Builder." However, the new constructor is NOT inserted into the table and the calling page element is not met.



    Looking at the Page elements and Session State, I can see the correct values assigned to the elements "Pn_BULDER_NAME" on the popup page (4) and the calling page (2), but the value does not appear on the screen.



    I read here where there really two parallel universes, not forgiveness, Articles of two versions of the screen, a State of Session and the other which is displayed in the browser and there are measures to be taken to be sure that is displayed is updated to state of Session I want in this case.



    I entered the Javascript code on Page4 - header to set the 'passBack2()' function and the code in the section "Option URL Redirect" to the button "Add Builder" if all goes well perform protocol ARP for the INSERT, assign items to page 2 and close the pop-up window. He gets not quite everything.



    Any helpp is greatly appreciated. Thanks to Dene for most of the suggestions I have followed by code.



    -gary

    Hi Gary,.

    I think that there is a very simple solution to this topic - is not this spot really last night.

    First, Yes, you could use a "button" to manage the call for the popup - make sure that the button is a type of URL 'button', which is actually an A tag with the appeal under target URL. Otherwise, you could take you existing a tag and use the same class for one of your buttons attribute because this should make it look like a button.

    More importantly, however, I think we could do as:

    1. on your call popup page 2, clear cache for page 4 (the popup page) - I already did in your application by updating the url

    2. on page popup, allow the user to enter their desired P4_BUILDER_NAME value (not sure if you want to do something to make it unique?)

    3 let the user click on create on the shortcut menu. He will submit the page, that will make your P4_BUILDER_RANK (pk) value and insert a new record in the table (you might consider the creation of a sequence and a trigger to handle the creation of new value PK?).

    4 - assuming that the P4_BUILDER_RANK then exist (it would not if there is a mistake somewhere), then conditionally display a region that had a piece of javascript submit page 2 and closes then itself - we don't need to move everything back to page 2 (see below)

    5. as the P4_BUILDER_NAME and the P4_BUILDER_RANK exist in the session, to which page 2 be reloaded, (A) the selection list should be updated with the new generator (still not sure why all my entries appeared downstairs instead of in alphabetical?) and (B) the P2_BUILDER_NAME and the P2_BUILDER_RANK can have Post calculation calculations together (NVL) ((: P4_BUILDER_NAME,: P2_BUILDER_NAME) and NVL (: P4_BUILDER_RANK,: P2_BUILDER_RANK) respectively)-l' effect is, if there are the values stored in the page P4 elements, we use them, otherwise, we use whatever values were in the elements of page P2

    6 - Finally, to stop (5) that happens in all the loading of page 2, you would need to clear the cache of page 4 in as many places as possible - for example, branches for a 2 page or buttons on page 2

    The reason why we cannot pass values back to page 2, it is one of the elements is a list of selection. The value we want to select will appear not on the selection list until the page has been sent. So, we can set the value and submit because the value is not there. We can introduce and define the value, because the javascript don't know when the page has been updated (or, at least, you need an independent mechanism to identify, which can get complicated).

    So, in other words, as long as we know that if the values are in the session, we can use Post calculation calculations to set our fields to these values. The only thing to keep in mind is that we must ensure that these session values only exist when in need - so we empty the cache. This principle should work for any type of terrain - but as you have no doubt seen, simple text fields can be updated by the popup directly as the field must accept any value that we give.

    My only recommendation would be to completely remove the MRU of the page process because they are not necessary (they simply confuse the issue) and you could make your fetch PK and record insert into a single process - just to keep things clean and tidy, you understand!

    When I finished last night with your app, I will leave so that javascript can create an option on the select list, and then set the value. But the method described above seems to be much simpler.

    Andy

  • When I insert a compatible game must be installed and the alert arrives to allow another comes in and says "the file 'Localization.xml' could not be loaded."

    When I insert a compatible game must be installed and the alert arrives to allow another comes in and says "the file 'Localization.xml' could not be loaded."

    Hi Scarface0721,

    Welcome to Microsoft Answers Forums.

    We would like to get a better understanding of this issue, so we can better help not only you but other users with similar problems.

    (a) game in which you try to read?

    (b) have you been able to install and play the game before?

    (c) you are trying to install the game to your computer from the disk or directly trying to play from the disc?

    Method 1:
    Try to install and play the game in a different computer.

    Method 2:
    Try another disc and verify if you are able to install the game.

    Method 3:
    You can also post your request in the following forums site.

    http://forums.gamesforwindows.com/

    Thanks and regards.

    Thahaseena M
    Microsoft Answers Support Engineer.
    Visit our Microsoft answers feedback Forum and let us know what you think.

  • PC does not recognize there is a disc inserted and receive code 10 when trying to insert the CD or DVD

    Hi, my cd/dvd drive used to work fine, now when I put a cd or dvd it does not and will not play. I've done all the suggested troubleshooting (cleaning filters, uninstall and re-install drivers, ran several troubleshooting tools and I either get a code 10 or simply "insert disk in drive" little matter how many times I install Disc. re - install my player appears under properties PC said work very well, and I can hear the light but no sound or I'm at my wit's end pic.) , can someone tell me what would be directly tell me if my drive is simply grilled or if it's a driver problem which everything suggests it is, I tried re-installing new drivers directly from the manufacturing and tried several cd / DVD that works on other devices or is known to have worked on my drive before this problem. I am running vista family 32 premium, which is installed at the factory, my PC is a HP pavilion a610t, I would be grateful for any advice... Thank you all, peace, * address email is removed from the privacy *

    * Original title: my cd - dvd drive can play audio/video discs, my PC does not recognize there is a disc inserted and keeps asking to insert a. Help!

    Hello

    The first thing that I would recommend before you do the radical and re install Windows or upgrade to Windows 7, is to make sure that you have backed up your files. Make sure that you have a separate player and follow the steps described in this article.
    To be honest, it sounds like the drive has gone wrong at this stage. Normally, this sounds like it would be a driver problem, but if you have uninstalled them and are 100% sure that you have installed the good and still no joy, so I think we can exclude.
    Have you tried several discs in the drive, correct? It is not just a problem with the special CD that you use right?
    I would say your best bet is at this time to try another drive on the machine, especially if you do not want to go through the hassle of reinstalling Windows. You may be surprised how well they come these days. The last of them, that I bought on Amazon (I think) was a little more than $25 in the United States.
  • Could not open a session - forgotten password and hin question

    original title: I have a hp mini 210-1199dx

    I forgot the password, log in and I did not have a hint question, how do I connect on

    Hello

    I'm sorry, but the strategy of microsoft in these forums is that without assistance will be given about lost or forgotten passwords

    read the policy at the link below

    http://answers.Microsoft.com/en-us/Windows/Forum/windows_vista-security/keeping-passwords-secure-Microsoft-policy-on/a5839e41-b80e-48c9-9d46-414bc8a8d9d4

Maybe you are looking for

  • Installation of the monitor three Lenovo E550?

    OK, so I have a Lenovo E550 and OneLink Pro Docking Station (the one with the RFP, and DVI Ports). So when I got to my laptop, I was able to connect successfully three external monitors to your laptop. 1 using the VGA Port on the side of the laptop a

  • Outlook e-mail items appearing only not in trash

    As far as I know, all the deleted files, except Outlook 2007 items appear in the trash.   Deleting an e-mail message, for example, in the folder deleted items in Outlook must send it to the Recycle Bin, but does not work.  Apparently, it is permanent

  • Setting the time email to blackBerry Smartphones

    I have the Blackberry 9000 "BOLD".  During the hours of night, I want to let the phone ring in case someone calls, but I would like to disable the notification by email during the night.   Is it possible that I can disable the notification by email f

  • Vs static PAT

    A network architecture looks like this: PIX firewall, inside private public static IP (192.168.1.1) and the local network of private static IP 192.168.1.0 255.255.255.0, outside (only one address available public IP, for example, 172.18.124.216). For

  • get the level up

    Hello I need an answer for my client, pleaseHe wants to raise his level CC Adobe but I don't know if its possible...Thank you!