Problem with APEX_APPLICATION. G_F01. COUNTY

I'm on 5 APEX and trying to loop through the lines of an interactive report with a after submit process Page.

I added an item hidden in my SQL IR:

Select empno,

"' < input type ="hidden"value =" "|" EmpNo | "" "name ="f01">"as "STUDENT_LIST"

WCP

I created a button on the page with the Submit Page action

I create a Page process (Point after Submit - once a page visit) who uses apex_application.g_f01. COUNTY, but for some reason apex_application.g_f01. COUNTY is not defined. So my if LOOP don't process (see code below). Something was changing in APEX5 with apex_application.gxx.count that would prevent this from working?

DECLARE

l_dcid emp.empno%TYPE;

BEGIN

If apex_application.g_f01. COUNT > 0 then null;

BECAUSE me in 1... apex_application.g_f01. COUNTING LOOP

l_dcid: = apex_application.g_f01 (i);

insert into mytable (DCID) values (l_dcid);

END LOOP;

on the other

null;

end if;

END;

Hi bobmagan,

First edit this query:

Select empno,

'"like"STUDENT_LIST"

WCP

to something like this:

SELECT EMPNO
    , APEX_ITEM.HIDDEN(1,EMPNO)||ENAME AS ENAME
FROM EMP

As you use a tag of entry in your query above, APEX will not be able to save it with APEX_APPLICATION session. G_FXX berries.

Reference: See the example of application and treatment of samples given below the API APEX_ITEM. HIDDEN

Change the column with APEX_ITEM attribute. HIDDEN, display as-> Standard report column

Reference: If you do not find the column attribute Standard report see the following thread: APEX_ITEM. Question CHECKBOX2 in apex 5

Finally, change your process of:

DECLARE

l_dcid emp.empno%TYPE;

BEGIN

If apex_application.g_f01. COUNT > 0 then null;

BECAUSE me in 1... apex_application.g_f01. COUNTING LOOP

l_dcid: = apex_application.g_f01 (i);

insert into mytable (DCID) values (l_dcid);

END LOOP;

on the other

null;

end if;

END;

to do this:

BEGIN

    FOR i in 1 .. apex_application.g_f01.COUNT LOOP

       insert into mytable (DCID) values (apex_application.g_f01(i));

    END LOOP;

END;

See the example for treatment in documentation APEX_ITEM. HIDDEN api.

I hope this helps!

Kind regards

Kiran

Tags: Database

Similar Questions

  • Problem with apex_application.g_f01

    HII...
    I have a table with a column 10.
    How I would come to know which column has received what a picture...
    like apex_application.g_f01, apex_application.g_f02, apex_application.g_f03...
    I want to write a validation on slot form of table, then...
    Please answer...

    Hello

    Run the page and inspect the HTML source of the page

    Kind regards
    Jari

  • Problem with APEX_APPLICATION. G_F02 (i)...

    Hello

    I'm having problems with my report. I put an extra column with checkboxes in my report. The meaning of these checkboxes must send an e-mail to all employees who are activated. And it works. He sends me emails on the right. But I put data in my email that comes from the report itself. I also have a column with a list of selection based on a lov with the language of the employee.

    APEX_ITEM. SELECT_LIST_FROM_LOV (4, "TBL_WERKNEMERS". "LANGUAGEID", "lov_taalkeuze") 'LANGUAGE' "

    In the report, the employee's language is automatically selected in the select list and it works too. (I need a select list so that the user can change the language, if necessary, otherwise I could get it to my database). But when I want to my value to determine the language to use, it is not always fair. When I select all ranks, it works. But when I check for example that the first and the fifth line, then the first language is correct, but for the fifth line, it takes the value of the second row in my report (which has not been verified).
    That is how I call these values

    BECAUSE me in 1.APEX_APPLICATION. G_F01. COUNTING LOOP
    SELECT v_emailid FROM TBL_EMAIL where report = 'Test' and taalid = APEX_APPLICATION emailid. G_F04 (i);
    END LOOP;

    So I think that the values in my APEX_APPLICATION. G_F01 are right, because I get emails on the right. But the APEX_APPLICATION values. G_F02, APEX_APPLICATION. G_F03, APEX_APPLICATION. G_F04,... are not because I think that all the values are stored when I loop through them the value according to the variable 'i' is returned.
    Someone know how I can get the right value?

    Any help would be greatly appreciated.

    Bram.

    Hello

    The only way I can see that this work is have hidden instances of the EMPNO (or whatever the column that contains the user ID) and check these against the elements checked - the value of the check boxes would also EMPNO.

    For example: [http://apex.oracle.com/pls/otn/f?p=267:97]

    The SQL code for this is:

    SELECT EMPNO,
    ENAME,
    APEX_ITEM.HIDDEN(1, EMPNO) || APEX_ITEM.HIDDEN(2, ENAME) || APEX_ITEM.CHECKBOX(3, EMPNO) TEST
    FROM V_EMP
    

    ENAME and EMPNO are hidden as I want to use in the code in the process.

    and the code of the process is:

    DECLARE
     vSELECTED VARCHAR2(1000);
    BEGIN
     vSELECTED := ':';
     FOR x IN 1..APEX_APPLICATION.G_F03.COUNT
     LOOP
      FOR y IN 1..APEX_APPLICATION.G_F01.COUNT
      LOOP
       IF APEX_APPLICATION.G_F03(x) = APEX_APPLICATION.G_F01(y) THEN
        vSELECTED := vSELECTED || APEX_APPLICATION.G_F02(y) || ':';
       END IF;
      END LOOP;
     END LOOP;
     :P97_SELECTED := vSELECTED;
    END;
    

    P97_SELECTED shows just the ENAME values for checked items. The code loops through the checkboxes and then loops through the hidden elements of EMPNO - when it finds a match, it creates a string of the values of ENAME.

    Andy

  • Problem with page validation APEX_APPLICATion master detail.  Help!

    I'm having a problem with the Apex_Application.g_fxx data structure.  I'm trying to validate the lines in my page master detail and need to use apex_application.g_f10 as the name of the variable inside the HTML data source electricity.  The name of the item I need is "f10" because it matches the database column "status" on my page.  I'm trying to validate that all the detail items have the same status, or an error is reported.  I use the following PL/SQL block that returns a Boolean value:

    < code >

    declare
    l_first_value varchar2 (4000);
    Start

    -f10 = column PO_STATUS of PO_DETAILS table on a part as a table on the page.

    l_first_value: = apex_application.g_f10 (1);
    because me in 2... apex_application.g_f10. COUNTY
    loop
    If l_first_value! = apex_application.g_f10 (i)
    then
    Returns false;
    end if;
    end loop;
    Returns true;
    end;


    < code >

    The HTML data that I is not intended to "f10" are the following:

    < code >

    < td headers= "Status" class= "t20data" >

    < label for= "f10_0000" class= "hideMeButHearMe" >status< /label>

    < Select name="f10"  id="f10_0000">

    < option value= "" selected= "selected" >make a selection< /option> ""

    < option value= 'APPROVED' >APPROVED< /option>

    < option valeur= « FERMÉ » >FERMÉ< /option>

    </ Select >

    < entry type="hidden" name="f02" value=""  id="f02_0000" />

    < entry type="hidden" name="f03" value="30427" id="f03_0000" />

    < entry type= 'hidden' id= "fcs_0000" name= "fcs" value= "2158A9B101842608F4CA966C0BC1433D" >

    < entry type="hidden" id="frowid_0000" name="frowid" value="" />

    < entry type="hidden" id="fcud_0000" name="fcud" value="D" />

    </ td >


    < code >

    So I do not know why there could be a problem when used to work before this validation.  The PL/SQL block takes the first line of F10 data and compare it to successive lines.  If the data is not equal, then an error occurs and the user is prompted to adjust the data.

    It doesn't work anymore, although I checked and the status are still of points in F10.

    I left mouth gaping.  I do not use an official page master detail previously.  I used two separate front pages: one for the header and one for show master detail.  I've updated the page for the treatment of the more fluid user. I think that even if the data structure would be the same, but maybe I'm wrong.

    Any ideas?


    Thank you!

    Thank you to reproduce the problem so overall. Note that if you will share your workspace in this way you need to change your username to something else than a direct email address and don't use not the actual data for your test cases. Create a guest account to developer without administrator privileges to work space for the members of the forum to use.

    Validation in this app is coded to use a different picture of the description in this thread. Above, you have identified the point like g_f10 dashboard, but the validation code is using g_f09:

    declare
      l_first_value  varchar2(4000);
    begin
    -- f09 = PO_STATUS column of PO_DETAILS table
      l_first_value := apex_application.g_f09(1);
      for i in 2 .. apex_application.g_f09.COUNT
      loop
        if l_first_value != apex_application.g_f09(i)
        then
            return false;
        end if;
      end loop;
      return true;
    end;
    

    Therefore (thanks to instrumentation code added), the validation is running by using the values of the previous column, which was be the one that I have changed according to your instructions:

    0.09114

    0,00018

    ... Posting type "Status check IN." -: FUNC_BODY_RETURNING_BOOLEAN

    4

    0%

    0.09132

    0,00049

    ... Run the statement: select count (*) in the sys.dual where exists (Select 1 from PO_DETAILS where PO_ID =: P230_PO_ID)

    4

    0 g

    0.09181

    0,00015

    ...... Result = true

    4

    0%

    0.09196

    0.00573

    ... Run the statement: declare function x return boolean is begin declare

    l_first_value varchar2 (4000);

    Start

    -f09 = PO_STATUS table PO_DETAILS column

    l_first_value: = apex_application.g_f09 (1);

    apex_debug.message ('g_f09 (1): %s, l_first_value);

    because me in 2... apex_application.g_f09. COUNTY

    loop

    (apex_debug.message('g_f09(%s): %s, i, apex_application.g_f09 (i));

    If l_first_value! = apex_application.g_f09 (i)

    then

    Returns false;

    end if;

    end loop;

    Returns true;

    end;

    Returns a null value. end; begin wwv_flow.g_boolean: = x; end;

    4

    28%

    0.09769

    0.00005

    g_f09 (1): TEST2

    4

    0%

    0.09773

    0.00010

    g_f09 (2): TEST

    4

    0%

    0.09783

    0,00003

    ...... Result = false

    4

    0%

    0.09786

    0.00004

    ...... Does NOT pass

    I created a new liquidation which uses the correct column, but at some point the validation passes and data, so I didn't get a chance to conduct tests.

  • Problem with the County

    I try to do a report that displays the number of resources that are related to a task (detail) and I seem to have a problem. The report displays the total number of resources in the table (23) for each task (detail). I seem to think there is a problem with the where clause but wish assistance.

    Here's a picture of DR., if needbe
    [http://i35.tinypic.com/emvyv.jpg | http://i35.tinypic.com/emvyv.jpg]
    select distinct
        pd.pk_proj_detail_id    "Task Number",
        pd.task_title           "Task Title",
        pd.detail_status        "Task Status",
        pm.name                 "Associated Project",
        pm.pk_proj_master_id    "Project Number",
        
        (select 
            count(r.pk_resources_id) 
        
        from 
            resources r, 
            protrac_detail pd
        
        where
            pd.pk_proj_detail_id = r.fk_detail_id) as "Number",
        
        pd.trackit_number       "TrackIt! Number", 
        pd.createby_date        "Date Entered",
        pd.date_begin           "Date Began",
        pd.estimated_date       "Estimated Completion Date",
        pd.date_end             "Date Completed"
        
    from
        protrac_detail pd,
        protrac_master pm
            
    where 
        pd.fk_proj_master_id = pm.pk_proj_master_id

    I think you want to see protrac_detail again in your scalar subquery.

    select distinct
        pd.pk_proj_detail_id    "Task Number",
        pd.task_title           "Task Title",
        pd.detail_status        "Task Status",
        pm.name                 "Associated Project",
        pm.pk_proj_master_id    "Project Number",
        (select count(r.pk_resources_id)
         from   resources r
         where  pd.pk_proj_detail_id = r.fk_detail_id
        ) as "Number",
        pd.trackit_number       "TrackIt! Number",
        pd.createby_date        "Date Entered",
        pd.date_begin           "Date Began",
        pd.estimated_date       "Estimated Completion Date",
        pd.date_end             "Date Completed"
    from
        protrac_detail pd,
        protrac_master pm
    where
        pd.fk_proj_master_id = pm.pk_proj_master_id
    
  • Problems with the construction of a tabular form manually

    Hello guys,.

    I would ask kindly for your help. I'm having a problem with the fields on a report updateble in my APEX application.

    The report I have two fields that im done with the htmldb_item function. One is the ID of the record and the other attribute that can be updated using a selection list.

    -----
    SELECT
    htmldb_item. DISPLAY_AND_SAVE (1, "TABLE".) "ID") "ID", "
    htmldb_item. SELECT_LIST_FROM_LOV (2, "TABLE".) "ATTRIBUTE", "LOV") "ATTRIBUTE", "
    THE "TABLE".
    -----

    Then I have a process that needs to update the table.

    -----
    BEGIN

    BECAUSE me IN 1.htmldb_application. G_F01. COUNTY
    LOOP

    apex_application.g_print_success_message: = ' < span style = "color: green" > attribute: ' | NVL (htmldb_application. G_F02 (i), 0). » ID : ' || htmldb_application. G_F01 (i) | "</span > ';

    UPDATE table
    Attribute SET = NVL (htmldb_application. G_F02 (i), 0)
    WHERE id = htmldb_application. G_F01 (i);

    END LOOP;
    END;
    -----

    The update can't even if the loop works fine, but the success message prints only the htmldb_application. G_F02 (i) but not the htmldb_application value. G_F01 (i). But how come doesn't work OK if loop the htmldb_application. G_F01 (i) has the value null?

    The funny thing is, that it works on my test environment, but he behaves like this on the production environment.

    Has anyone else have similar experiences?

    Kind regards
    Aleš

    Edited by: user1330618 the 21.12.2009 04:28

    Hello

    Its done.

    The record button was just redirection without submitting the page, it's him not display the message or the recording of the information...

    now, the button is present and redirect...

    Kind regards
    Shijesh

  • Problems with encoder motor switching noise readings

    Hi all

    I wanted to ask advice with a hardware problem which seems to be pretty common.

    Here I describe my request:

    We are controlling an electric actuator for robotics application. We use encoders to take position readings, and we need to perform analog acquisition for other measures (for example, the force measured using strain gauges).

    The problem is:

    In summary, I have problems to properly acquire position readings of a linear encoders quadrature and also a few analog inputs. The cause is the switching noise generated by the drive motor that we use (which is an engine without Stricker of CC Moog BN-23-23).

    Our acquisition platform is an NI PXI-8106 with a PXI-1042 q chassis. We have two possibilities to acquire the signals. We have a multifunction DAQ series NI PXI-6259 M and a FlexRIO NI PXI-7951R with one module DIO NI PXI-6581R.

    The switching noise have a frequency of 30 kHz. In a scope, we see a series of peaks of noise which are present only during a short period of time (approximately 1/10th of the duration of the noise). The rest of the time the noise is not present.

    The Accelnet amplification module that powers the electric motor gives us a clock signal synchronized with the noise (whose frequency is approximately 1/4 frequency noise). This clock signal provides a way to solve the problem of analog acquisition. We can use this clock to make an acquisition stamped with an external clock in LabView connecting the clock on a spit of PFI or FPGA card. But the noise is also corrupt this clock signal (we get an error daqmx us warning of possible defects in the clock signal and also to stop the acquisition). I believe that to solve the problem of encoder we can also solve the problem of the analog acquisition.

    In the encoder readings noise makes our County to counter upward or backward gradually fast enough. We can get an increase in the position of about 10 cm per second with no appreciable movement in the linear actuator.

    It would be a great help if someone could put the solution he uses to solve this problem.

    Thanks in advance for your help,

    jespestana

    PS: I stress my conviction that we have a hardware problem, because we have only bad readings when the electric motor does not work. I am therefore convinced because we have already done reading encoder and analog with the help of other players, such as hydraulic cylinders. So, I think that it is not a problem with our software (of our LabView VI).

    Hi jespestana,

    I don't know why the noise could be the cause of your encoder can increase more slowly...  However I have a suggestion on the map of the M series (6259):

    M-series cards have a digital filter integrated on the lines of the PFI (see the user manual of M series).  Looks like the noise is a series of 3 ~ US of impulses (1/10 to 1/30 kHz).  Of the available filtering frequencies that you can set on your M series is 6,425 US, which must ignore the impulses (high or low) that are less than 6,425 US. You can configure the digital filtering with a property node DAQmx:

    One caveat is that the driver only allows you to configure the digital filtering for entries counter on M Series devices.  For example, you can use a digital filtering directly on your task of encoder, but not for your sample clock HAVE.  A workaround can be found here, which is to set up a dummy counter job to define the PFI filter for your task to HAVE.  If you use the same PFI line for your encoder and the task to HAVE it, you should be able to just set up the PFI filter through the task of the encoder and worry for the workaround.

    Regarding the RIO Flex, I think that you could implement something similar on the FPGA, but I'm probably not the best person to comment on this subject.  It would be probably a lot more work to use the DAQmx API's built-in filtering.

    Best regards

  • Problems with Knockoutjs &amp; webworks?

    I have a piece I've been debugging for the whole weekend and I just can't understand what is wrong with it. As far as I can see everything is as it should be. The HTML code I have is

    div class = 'networkItem' x-blackberry-Focus='true'=onmouseover "this.style.backgroundColor ='#444444 '; '=onmouseout" this.style.backgroundColor =' #010101 ";

    x onUp-blackberry-=' netNavUp ($index ()) ' x-blackberry-onDown=' netNavDown ($index ()).

    bind data = ' click: changeNetwork.bind ($data, no()), attr: {'id': 'nIf' + $index ()} ">".

    It is part of a foreach knockoutjs model. $index () is the index number 0 -? list

    the attr section creates an ID of this item to the nli0 format, nli1, nli2 etc. depends on County look.

    I can inspect the HTML code that it creates in the debugger chome and IDS are set correctly. And I suppose, at this stage, which is irrelevant in any case, as I have commented little bits in the code that woud use anyway. It seems that the call to netNavUP and netNavDown are causeing the exception.

    My js code is as follows:-

    function netNavDown ()tmp( )

    {

    goID var ="";

    blackberry.ui.dialog.standardAskAsync ("to:" + goID, blackberry.ui.dialog.D_OK, tmp);

    tmp ++;

        if (tmp is appViewArray.network.length)

    {

    goID = "nliEnd";

    }

    on the other

    {

    goID = "NIF" + tmp.toString ()";

    }

    blackberry.focus.setFocus (goID);

    }

    As you can see the standardAskAync should give me some information, but never gets fired. No, I know it's asynchronous if she fell into the code. That's why I removed the call to set the focus. So indeed it would fulfil this function and return control to the html code.

    The error I get in the Simulator is - App error 104 - Eception RuntimeException

    I tried to lose the $index () and replace it with a number directly I can see if that was the problem, but no, I still get exactly the same error. Then there is a problem with X-blackberry-onDown? and onUp than also causes the crash. Note that I use navigation everywhere else without too much problem, but it's the only place where I "force" of a specific focal point, setting the focus is also not a problem I put emphasis in the code when it starts first, and that works. The fixed focus is commented, so it hangs a little on the call of the function as the first line of the function is an alert (of sorts)

    I solved this by sending not anything to the function, but rather when I get to the function to get the item currently developed. not the best solution, but it works.

    var id = blackberry.focus.getFocus ();

  • Problems with PIX 501 and Server MS Cert

    Hi all

    I have two problems with my PIX 501:

    1. registration works well. The pix has a certificate and use it with SSL and VPN connections. But after a refill, the pix certificate is lost and it has regenerated again self-signed certificate!

    Yes, I wrote mem and ca records all!

    2. at the request of ca CRL , I get the following debugging:

    Crypto CA thread wakes!

    CRYPTO_PKI: Cannot be named County ava

    CRYPTO_PKI: transaction GetCRL completed

    Crypto CA thread sleeps!

    CI thread wakes!

    And the CRL is empty.

    Does anyone have any idea?

    Bert Koelewijn

    Not sure about 1, but 2 is usually caused by the COP (Point of Distribution of CRL, basically the situation where the PIX can download the Revocation list from) listed in cert CA is in a format the PIX does not, generally an LDAP URL.

    Check the following prayer:

    Open the administration tool of CA (Certification Authority) then

    (1) right click on the name of CA and choose 'properties '.

    2) click on the tab "Policy Module".

    3) click on the button "configure."

    4) click on the tab "X.509 extensions".

    > From there, it can display the list of the "CRL Distribution Points".

    Turn off everything that isn't HTTP.

    You need to reinstall the CERT in the PIX, I think, but then it should be able to download the CRL through HTTP instead of LDAP.

  • I have problems with my header image position in browsers. white space above it in pc, safari, crome then to right in firefox.

    nydogworks.NET

    " < html xmlns =" http://www.w3.org/1999/xhtml ">

    < head >

    < meta http-equiv = "Content-Type" content = text/html"; Charset = UTF-8 "/ >"

    < title > NYDogWorks Long Island dog training and behavior < /title >

    < name meta = "description" content = "Serving all of Long Island, Nassau and Suffolk. NYDogWorks specializes in dog training, dog behavior and puppy training. ">

    < name meta = "keywords" content = "dog training, dog training, dog, long island trainer long island dog obedience, puppy training course" >

    < link href = "css/mainstyle.css" rel = "stylesheet" type = "text/css" / > "

    < script type = "text/javascript".

    src = » http://AJAX.googleapis.com/AJAX/libs/jQuery/1.4.1/jQuery.min.js "> < / script > <!-start of the mandatory code below - > '.

    < href = "" css/dropdown.css a link "media ="screen"rel ="stylesheet"type =" text/css"/ >"

    ".. href="css/default.advanced.css a link "media ="screen"rel ="stylesheet"type =" text/css"/ >

    <!-[if lt IE 7] >

    "< script type =" text/javascript"src="js/jquery/jquery.js "> < / script >

    "< script type =" text/javascript"src="js/jquery/jquery.dropdown.js "> < / script >

    <! [endif]-->

    <!-/-> END

    < link href = "css/overlay - apple.css" rel = "stylesheet" type = "text/css" / >

    "< script src="js/jquery.tools.min.js "> < / script >

    < style >

    div.apple_overlay h2 {}

    margin: 10px 0 - 9px 0;

    color: #222;

    make-weight: bold;

    do-size: 14px;

    }

    div. Black h2 {}

    color: #222;

    }

    #apple {}

    margin-top: 10px;

    float: left;

    Width: 250px;

    padding-right: 10px;

    }

    #apple img {}

    background-color: #fff;

    padding: 2px;

    border: 1px solid #ccc;

    margin: 2px 5px;

    cursor: pointer;

    -moz-border-radius: 4px;

    -webkit-border-radius: 4px;

    }

    {body

    margin-right: auto;

    left margin: auto;

    }

    < / style >

    <!-[if lt IE 7] >

    < style >

    {div.apple_overlay}

    background-image: url (http://static.flowplayer.org/tools/img/overlay/overlay_IE6.gif);

    color: #fff;

    }

    / * by default positioned top right close button * /.

    div.apple_overlay div.close {}

    background-image: url (http://static.flowplayer.org/tools/img/overlay/overlay_close_IE6.gif);

    }

    < / style >

    <! [endif]--> < script type = "text/javascript" >

    function MM_swapImgRestore() //v3.0 {}

    var i, x = offline. MM_sr; for (i = 0; a & & I <.) Length & & (x = a [i]) & & x.oSrc; i ++) x.src = x.oSrc;

    }

    function MM_findObj (n, d) {//v4.01

    var p, i, x;  if(!d) d = document; If ((p = n.IndexOf ("?")) > 0 & & parent.frames.length) {}

    d = parent.frames [n.Substring(p+1)] .document; n = n.Substring (0, p) ;}

    If (!) () x = d [n]) & & copyrights) x = d.all [n]; for (i = 0;! x & & i < d.forms.length; i ++) x = d.forms [i] [n];

    for (i = 0;! x & & d.layers & & I < d.layers.length; i ++) x = MM_findObj (n, d.layers [i] .document);

    If (! x & & d.getElementById) x = d.getElementById (n); Return x;

    }

    function MM_swapImage() {//v3.0

    var i, j = 0, x, a = MM_swapImage.arguments; document. MM_sr = new Array; for (i = 0; i <(a.length-2); I += 3).

    If ((x = MM_findObj (a [i]))! = null) {document. MM_sr [j ++] = x; if(!x.oSrc) x.oSrc = x.src; x.SRC = a [i + 2] ;}

    }

    < /script > < script type = "text/javascript" >

    function MM_preloadImages() {//v3.0

    var d = document; If (d.images) {if(!d.MM_p) d.MM_p = new Array();

    var i, j is d.MM_p.length, a = MM_preloadImages.arguments; for (i = 0; i <.) Length; i ++)

    If (a [i].indexOf("#")! = 0) {d.MM_p [j] = new Image; d.MM_p [j ++] .src = a [i] ;}}

    }

    < /script >

    < script type = "text/javascript" >

    var _gaq = _gaq. [];

    _gaq.push (['_setAccount ',' UA-26177215-1 ""]);

    _gaq.push (['_trackPageview ']);

    (function() {}

    GA var = document.createElement ('script'); GA.type = ' text/javascript '; GA. Async = true;

    ga.src = ("https:" == document.location.protocol? ) https://SSL ' : ' http://www ( ') + «.google-analytics.com/ga.js ";

    var s = document.getElementsByTagName ('script') [0]; ParentNode.InsertBefore (ga, s);

    })();

    function MM_swapImgRestore() //v3.0 {}

    var i, x = offline. MM_sr; for (i = 0; a & & I <.) Length & & (x = a [i]) & & x.oSrc; i ++) x.src = x.oSrc;

    }

    function MM_findObj (n, d) {//v4.01

    var p, i, x;  if(!d) d = document; If ((p = n.IndexOf ("?")) > 0 & & parent.frames.length) {}

    d = parent.frames [n.Substring(p+1)] .document; n = n.Substring (0, p) ;}

    If (!) () x = d [n]) & & copyrights) x = d.all [n]; for (i = 0;! x & & i < d.forms.length; i ++) x = d.forms [i] [n];

    for (i = 0;! x & & d.layers & & I < d.layers.length; i ++) x = MM_findObj (n, d.layers [i] .document);

    If (! x & & d.getElementById) x = d.getElementById (n); Return x;

    }

    function MM_swapImage() {//v3.0

    var i, j = 0, x, a = MM_swapImage.arguments; document. MM_sr = new Array; for (i = 0; i <(a.length-2); I += 3).

    If ((x = MM_findObj (a [i]))! = null) {document. MM_sr [j ++] = x; if(!x.oSrc) x.oSrc = x.src; x.SRC = a [i + 2] ;}

    }

    < /script >

    < / head >

    < body onload = "MM_preloadImages ("images/nydogworks-logo-hover.png','images/formation-services-le. jpg','images/behavior-therapy-on.jpg','images/off-leash-training-on.jpg') ">"

    < div id = 'wrapper' > < div id = "header" >

    < div id = "logoBox" > < a href = "index.html" MM_swapImgRestore"onmouseover =" MM_swapImage ('Image3', ",' images/nydogworks-logo - hover.png', 1)" > < img src = "images/nydogworks - logo.png" alt = 'NY Dogworks' name = "3" width = "280" height = "200" border = "0" id = "3" / > < /a > < / div > "

    < div id = 'slogan' > serving all the Long Island, Nassau & amp; Suffolk Counties < br / >

    Serving also Manhattan, Brooklyn & amp; Queens

    < / div > < div id = "address" >

    < h2 > < img src = "images/calltogetstarted.png" width = "473" height = "74" alt = "Call to start" / > < / h2 > "

    < / div > < div id = 'mainNav' > <!-start of the code required below->

    < ul class = "drop-down horizontal menu dropdown" id = "nav" name = "nav" >

    < li > < a href = ' all-New York - dog - works.html "> about us < /a > < /li >

    < li > < a href = "long-island-dog-training - program" class = "dir" > < /a > training programs

    < ul >

    < li > < a href = "basic - obedience.html" > in the House of dogs < /a > < /li >

    < li > < a href = "dog-behavior - therapy.html" > < /a > < /li > behavioral therapy

    < li > < a href = "Council-and-train-dog - program.html" > consulting & training program < /a > < /li >

    < li > < a href = ' off-leash - training.html ' > Off Leash training < /a > < /li >

    < li > < a href = ' Puppy-training - program.html "> training Puppy < /a > < /li >

    < /ul >

    < /li >

    < li > < a href = "dog-trainer - testimonials.html" class = "dir" > stories < /a > < /li >

    < li > < a href = "contact-long-island-dog - trainer.html" class = "dir" > contact us < /a > < /li >

    < /ul >

    <!-/ END--> < / div >

    < / div >

    < div id = "container" >

    < div id = "imgholder" > < a href = "long-island-dog-training - program" > < img src = "images/hand - header.jpg" alt = "private dog training long island new york" width = "951" height = "416" border = "0" / > < / has >

    "< div id ="program1"> < a href =" long-island-dog-training - program "MM_swapImgRestore" onmouseover = "MM_swapImage ('Image6 '", ' images/training-services - we .jpg ', 1) "> < img src =" images/training - services.jpg ' alt = 'dog training services' name = 'Image6"width ="315"height ="137"border ="0"id ="Image6"/ > < /a > < / div >

    "< div id ="program1"> < a href =" Council-and-train-dog - program.html ' MM_swapImgRestore "onmouseover ="MM_swapImage (' picture5 '", ' images/boarding_training - we .jpg ', 1)" > < img src = "images/Boarding_training.jpg" alt = "consulting and training program for dogs" name = "Picture5" width = "315" height = "137" border = "0" id = "Picture5" / > < /a > < / div > "

    "< div id ="program1"> < a href =" dog-behavior - therapy.html ' MM_swapImgRestore ' onmouseover =

    "MM_swapImage ('Image7'",' images/Behavior_therapy2 - we .jpg ', 1) "> < img src =" images/Behavior_therapy2.jpg"alt ="behavior therapy"name = width"Image7"="311"height ="137"id ="Image7"border ="0"align ="right"/ > < /a > < / div >"

    < / div >

    < div id = "pageContentNoside" >

    < div id = "sideSub" >

    Dog training services < h2 > < br / >

    < / h2 >

    < ul id = "subnav" >

    < li > < a href = "basic - obedience.html" > obedience base < /a > < /li >

    < li > < a href = "dog-behavior - therapy.html" > < /a > < /li > behavioral therapy

    < li > < a href = "Council-and-train-dog - program.html" > consulting & training program < /a > < /li >

    < li > < a href = ' off-leash - training.html ' > Off Leash training < /a > < /li >

    < li > < a href = ' Puppy-training - program.html "> training Puppy < /a > < /li >

    < /ul >

    < br / >

    < iframe src = "/ / www.facebook.com/plugins/likebox.php?href=http%3A%2F%2Fwww.facebook.com%2Fpages%2F NYDogWorks % 2F219268038151244% 3Ffref % 3Dts & amp;" width = 248 & amp; height = 558 & amp; show_faces = true & amp; ColorScheme = light & amp; stream = true & amp; border_color = % 23FFFFFF & amp; header = false"scrolling =" "frameborder ="0"style =" border: none; " overflow: hidden; Width: 248px; height: 558px; "allowTransparency ="true"> < / iframe >

    < p > < br / >

    < /p >

    < p > < / p >

    < p > < img src = "images/4449da18fc3aa2f249d17dc90ebd5531.jpg" width = "145" height = "136" / > < br / > "

    < /p >

    < / div >

    < div id = "mainContentFeature1" >

    < h2 > welcome to NY Dogworks < / h2 >

    < p > < img src = "images/dog-break - through.jpg" alt = "new york dog trainer" width = "136" height = "170" class = "h_img_float_right" / > our private, a training courses are conducted at your home by a certified professional trainer and Expert in behavior. Lessons are adapted to fit what you want to do with your puppy or adult dog. < br / >

    < br / >

    We use a humane, positive and scientifically rigorous approach that makes it easy for you and your dog to succeed. Our instructions are broken down into simple steps that everyone can participate in the training and be able to practice with the family. < br / >

    < br / >

    < span class = "employeeName" > call today for a free Consultation!      </span > < / p >

    < p > do not have the time or patients to do the training? Well, NY DogWorks has the answer... We now < a href = "Council-and-train-dog - program.html" > Committee and train programs < /a > in our Center of beautiful in the house owner & amp; Trainer Brian DeMartino. It is a program of 2 to 6 weeks which is guaranteed 100%. Your dog will stay with us, without collecting additional taxes if we believe that it is not ready to move. This program may be for burglary, puppy training, socialization / obedience & amp; Manners / problem behaviours such as aggression, anxiety or fears / staff / training leaves an advanced Protection and much more... < /p >

    < p > we also < a href = "Council-and-train-dog - program.html" > < /a > dogs in our facility on board if you go far and that your animal of the family to be taken care 24/7 as is he or she was one of us. A lot of game time, walks, individual attention, grooming, if necessary, the comfortable sleeping areas, with their own bed and lots lots of love... < /p >

    < p > let us help you have the relationship you and your dog deserve... < br / >

    < br / >

    < strong > we accept now < facilities > < br / >

    < img src = "images/creditcards.jpg" width = "228" height = "43" alt = "now accepts credit cards" / > < br / > "

    < br / >

    < br / >

    < /p >

    < p > < br / >

    < /p >

    < p > < br / >

    < br / >

    < / div >

    < div id = "mainContentFeature2" >

    < form action = "form.php" method = "post" name = "form2" id = "form2" > < table width = "279" border = "0" cellpadding = "2" cellspacing = "2" > "

    < b >

    < td width = "273" > < Contact fast h2 > < / h2 > < table >

    < /tr >

    < b >

    < class td = "mainContent" > your name < table >

    < /tr >

    < b >

    < td > < span class = "style9" >

    < input name = "forname" type = "text" class = "colorfieldssmall" id = "forname" size = "20" / >

    </span > < table >

    < /tr >

    < b >

    < class td = "mainContent" > your Email address * (required) < table >

    < /tr >

    < b >

    < td > < span class = "style7 style9" >

    < input name = "Admail" type = "text" class = "colorfieldssmall" id = "Admail" size = "25" / >

    </span > < table >

    < /tr >

    < b >

    < class td = "mainContent" > < table > phone number

    < /tr >

    < b >

    < td > < span class = "style7 style9" >

    < input name = "phone" type = "text" class = "colorfieldssmall" id = "phone" / >

    </span > < table >

    < /tr >

    < b >

    < td > < span class = "mainContent" > Type of dog training </span > < table >

    < /tr >

    < b >

    < class td = "mainContent" > < span class = "style9" >

    < select name = "need" class = "colorfieldssmall" id = 'need' >

    < option value = "A SΘlectionner" > select a < / option >

    < option value = "basic obedience" > obedience based < / option >

    < option value = "Behavior therapy" > behavioral therapy < / option >

    < option value = "Council and Train" > Board and Train < / option >

    < option value = "Off Leash Training ' > Off Leash training < / option >

    < option value = 'Puppy Training' > training Puppy < / option >

    < / select >

    </span > < table >

    < /tr >

    < b >

    < td > < span class = "mainContent" > feedback </span > < table >

    < /tr >

    < b >

    < td > < textarea name = "comments" id = cols 'comments' = '24' ranks '8' = > < / textarea > < table >

    < /tr >

    < b >

    < td > < div align = "left" >

    < input type = "submit" name = "submit" id = "submit" value = "Submit" / >

    < / div >

    < table >

    < /tr >

    < / table > < / make >

    < h2 > < br / >

    We are available in the following areas: < / h2 >

    < p > Long Island, Nassau County, Suffolk County, Manhattan, Brooklyn, Bronx, & amp; Queens. < /p >

    < p > * we pick up and drop off services for your pet for boarding and the boarding and training. < br / >

    < /p >

    Dog training testimonials < h2 > < br / >

    < / h2 >

    < p > Send to Brian Otis to Board and train program has been the best decision I ever made.  After being told Otis could not be helped, and it should be watched, I was devastated.  Otis is Brian program from a few weeks back and is extremely docile and friendly.  It's the same pup we brought back a few years previously, but more calm and without any aggression.  We are working on obedience Otis' every day and walk him and he put on the conveyor belt.   Thanks to Brian, our dog is carefree and more affordable.  The list goes on and the way that Brian has helped the family, myself and especially Otis.  If you are having problems with your dog, especially problems of behaviour and aggression, my advice to you is to trust Brian.  Your dog will be in good hands with a safe, reliable, responsible, in love with dog that will treat your dog as her own. < br / >

    < span class = "testimonalName" > < strong > < br / >

    Victoria Zilli < br / >

    < facilities > < / span > < span class = "mainContent" > Long Island, New York </span > < br / >

    < br / >

    < a href = "dog-trainer - testimonials.html" > read more dog training work < /a > < br / >

    < br / >

    < br / >

    < br / > < / div >

    < div id = "bread crumbs" >

    < p > < a href = "index.html" > home < /a > & gt; Welcome to the premier NYC dog training company, NY DogWorks < br / >

    < strong > serving all of Long Island, Nassau & amp; The County of Suffolk, Manhattan, Brooklyn, & amp; Queens < facilities > < br / >

    < /p >

    < / div >

    < / div >

    < div id = "footer" >

    < div id = "footermenu" >

    < div id = "footermenu1" >

    < / div >

    < / div >

    < div class = 'phone number' id = 'copyright' > Copyright © 2014 NY DogWorks < / div >

    " < div class ="stuck"id ="sitedesigner"> site on Long Island Web design by < a href =" http://www.wetribet.com "title = 'Wet Ribet' target = '_blank' class ="medlink"> wet Ribet < /a > < / div > "

    < / div >

    < / div >

    < / div >

    < / body >

    < / html >

    You can replace your code with my code - then it should work.

  • problem with adding line in tabular form after that put 4.1.1 to level

    We have recently installed the Update 4.1 .1. We now have a problem with some of our tabular forms created using the wizard. The delete and update feature works fine, but when trying to insert a new record, it will insert only the first record, but after that, it will no longer inserts. It acts as ApplyMRU (updated online Multi) is not at all shooting. No success or error message. I tried to create forms based on the rowid and also on the suites (with and without triggers), and they all behave the same way.

    This happens both in IE and Mozilla. Tabular forms were working fine before the upgrade.

    Everyone knows this?

    We just hit this issue and thanks to this thread and a light bulb above my head, resolved this question today. There is more to the story. Copy the necessary images in place works, but get the full version 4.1.1 images.

    We were already on 4.1.0.00.32, so I applied only Patch 13331096 upgrade to 4.1.1.00.23. Patch 13331096, at least one that I downloaded a few weeks ago IS NOT ALL OF THE NECESSARY IMAGES.

    Fortunately, I thought to download both. When I did a number of files in the directory images between the full version and the patch, the County came up short for the patch.

    If you have this problem, get your hands on the full release 4.1.1.00.23, NOT Patch 13331096and copy these files to image in place. Who sets the we.

  • problem with checkbox on the tabular form

    (All my friends at the time of deperate) Hi,

    I have a tabular form on a page, which I use for adding record only. So it always shows me a blank line, which is ready to be inserted after the user has filled in the data and click on the "submit" button.

    Now, I have a field check box on this form of table. Since all the columns that I show as null, I also shows this check box cleared when page appears. This is the query for the region of origin of this form:

    SELECT "Customer", null
    NULL "currency."
    HTMLDB_ITEM. CheckBox(40,'YES',null) critical_box,
    OF the double

    I used the 'YES' as return value of this checkbox (when the user checked, otherwise I guess that's not equal to 'YES').

    I have my own update process, which gets triggered when clicking on 'submit '.
    It's my insert clause in this update process:
    INSERT INTO table1
    (customer, currency, critical_level)
    values
    (APEX_APPLICATION.g_f01 (i), APEX_APPLICATION.g_f02 (i), decode (APEX_APPLICATION.g_f40 (i), 'YES', 'YES', 'NO')


    Now the problem is that when I click on checkbox and save it, it adds record correctly. But when I click on check box when you insert, I get error message no data available. It must insert 'NO' for the 3rd column when the check box is not clicked.

    Please help here. Not sure why its not giving no data found error when unchecked the checkbox on the form of tables.

    Thank you and best regards,
    Rave.

    Sorry, this one is out of date, try this

    http://HTMLDB.Oracle.com/pls/OTN/f?p=31517:219

    Here are a few related threads you might be interested.

    Re: Boxes to check off and go to the other fields in the table
    Re: Problem in selecting the checkbox values
    Tabular presentation - box

  • problems with, phone, 6, Bluetooth kit, Nissan, after update, for, Rios, 1.0.2

    After the update to ios 10.0.2 - trying to use bluetooth to call my vehicle, it says: "this article is not in your phone book." How can I solve this problem?

    Greetings, joybelino1!

    Thank you for joining the communities Support from Apple! I can't wait to see that you are having problems with your Bluetooth in your car! The good news is that Apple has a great article that will help you with measures to try to resolve the problem. Read this article to gethelp to connect your iPhone, iPad, or iPod touch with your car radio. Even though he talks about problems with the connection, it also has the steps for other questions you may have once connected.

    If you use Bluetooth

    1. Consult the user manual of your car stereo to get the procedure to a Bluetooth device.
    2. On your iOS device, drag up to open Control Center, then press ontwice to turn on Bluetooth and turn it back on.
    3. Restart your iOS device.
    4. On your iOS device, Cancel the twinning of your car radio. On the screen of your car désapparier your iOS device and any other device. Restart your car and your iOS device, then pair and connect again.
    5. Update your iOS device.
    6. Install the updates to the firmware of your car radio.
    7. If you still not connect, contact Apple technical support.

    Have a great day!

  • Anyone having problems with WiFi connectivity after upgrade to Sierra?

    I was wondering if anyone else knows issues with WiFi connectivity since the upgrade to Sierra 10.12? I have not had any problems with connectivity WiFi previously on El Capitan. Now I have regular randomly loose connectivity. My internet is cable and when it is connected I have a 100% connection. My details of iMac and I have used only 10% of my storage.

    No problem with my iphone 6.

    Hello AspDesigns,

    I understand that, since the upgrade to Mac OS Sierra, your Mac seems to have trouble staying connected to Wi - Fi. Fortunately the diagnosis built-in wireless can help identify the source of so much trouble.

    Search for Wi - Fi using your Mac problems

    See you soon!

  • Problems with mail after switching to macOS Sierra

    Hey all

    After having recently upgraded to macOS Sierra, I am unable to read my mail.

    I get the following error every time I check on "Get Mail".

    There may be a problem with the mail server or the network. Check the account settings "*" or try again.

    The server returned the error: Mail could not connect to the server 'pop1.tribcsp.com' using SSL on the default ports. Verify that this server supports SSL and that your account settings are correct.

    What does this error message mean and how can I solve this problem.

    Thank you

    Hi Michael,

    I see your message that you get an error in the mail indicating that there is a problem with the mail server or the network.  To help get this problem resolved, I suggest that you follow the steps below:

    If mail refers to a problem with the mail server, or the network

    Mail will say that it is impossible to connect due to a problem with the mail server or the network. For example, the message may refer to a connection that has expired, or too many simultaneous connections:

    If you are connected to the Internet, but the connection has expired, your email provider might be affected by a discontinuance of service. Contact them or see their status Web page to ensure that their e-mail service is online. Examples of status pages:

    If the message indicates the number of simultaneous connections, too many of your devices is check your e-mail account at the same time. Quit Mail on one or more of your other devices.

    If you are still unable to send or receive e-mails

    1. Make sure that you have installed latest version of the Mac software updates, especially if the problem occurred immediately after the installation of a previous update.
    2. In OS X El Capitan or later version, you can see a status icon and the short error message in the upper right of the Mail window, under the search box. The message may indicate 'Network offline' or 'Connection failed', for example. Click the message to see more details on the issue.
    3. Check your connection to the Mail connection doctor. It might be able to say more on the issue.

    If you cannot send or receive e-mail on your Mac.

    Take care.

Maybe you are looking for