Keep iterator selection during send/return a .jsff

I use jdev/adf 12.1.2.

I have an af:table get table is an iterator based on a ViewObject.

In each row of the table, I have an af:link component that navigates to another page of .jsff within the workflow bounded. This page contains child records for the selected line. When the user has finished the child records of edition, there is a back button that returns to the previous page. For some reason, the table selection is lost when leave and return to the page. This can be hostile to users when there are a large number of rows in this table (100 +). I want to make sure when they come back, the previously selected line is kept as the current selection, but I can't understand what goes wrong.

When you navigate away, I get the instance of the view object and save the row key and the index of the range of the currently selected line. Back to home, I make sure that this line is the line currently selected by appellant vo.setCurrentRow (row) and vo.scrollRangeTo (line, index). For some reason, the af:table component still load with no selected line. What Miss me?

Thanks for your help.

Y at - it a refresh of the component table when you return to the page of the main table. ?

Thank you

Tags: Java

Similar Questions

  • laptop HP 15-r0632: cursor keeps freezing intermittently during labour

    My cursor keeps intermittent freezing during the work. He comes back to life after a few seconds or minutes, usually after pressing the windows key several times. Help, please. Is this a driver problem with the synaptic pointing device?

    Hi @swastikagrawal

    Thank you for your request, I will do my best to help you.

    I understand that, while working your cursor freezes intermittently.

    You did all your Windows updates?

    Did you run HP Support Assistant to facilitate updates of HP?

    Here is a link for the use and troubleshooting of the TouchPad and ClickPad (Windows 8) that will help you.

    I was unable to locate a model hp 15-r0632 did you mean 15-r063tu.

    You can locate the HP recommended driver by following the link on this HP drivers and downloadspage.  You will need to enter your model or select detect my product. You can manually check that you need to install the correct driver.

    Good luck!

  • SELECT statement to return a type in Oracle objects

    Hi all, I have created a small system for Uni using oracle objects and types. I have a table person with type of seller under the person table and the type of claimant to the title of the person table. I need the select statement to return data of the person, table, but only the type of applicant data. for example, SELECT * FROM person_tab, WHERE the type is applicant_t. I know it's probably simple, but just can't get the syntax right. The code all series just may not get the right to choose. Thanks for your time.

    create type appointment_t;
            
    create type property_t;
    
    create type telephone_t as object (
        weekdayDaytime varchar2(15),
        weekdayEveningAndWeekend varchar2(15));
    
    create type person_t as object (
        person char(6))
        not final;
    
    create type appointment_list_t as table of ref appointment_t;
    
    create type property_list_t as table of ref property_t;
    
    create type salesperson_t under person_t (
        sSurname varchar2(20),
        sForename varchar2(20),
        dateOfBirth varchar2(12),
        makes appointment_list_t,
        member function appointments_made return number );
    
    create type applicant_t under person_t (
        aSurname varchar2(20),
        aForename varchar2(20),
        dateOfBirth varchar2(12),
        aAddressLine1 varchar2(25),
        aAddressLine2 varchar2(25),
        aTown varchar2(20),
        telephoneNums telephone_t,
        maxPrice number(10),
        desiredArea varchar2(20),
        attends appointment_list_t,
        member function appointments_attended return number );
    
    create or replace type body salesperson_t as
    member function appointments_made return number is
        total number;
    begin
        total := self.makes.count;
        return total;
        end;
    end;
    
    create or replace type body applicant_t as
    member function appointments_attended return number is
        total number;
    begin
        total := self.attends.count;
        return total;
        end;
    end;
    
    create or replace type appointment_t as object (
        appointment char(10),
        appdate date,
        apptime varchar2(15),
        appointmentType varchar2(15),
        levelOfInterest integer(3),
        offerMade number(10),
        is_made_by ref salesperson_t,
        is_attended_by ref applicant_t,
        is_related_to ref property_t);
        
    create or replace type property_t as object (
        property char(10),
        dateOfRegistration date,
        propertyType varchar2(15),
        bedrooms integer(2),
        receptionRooms integer(2),
        bathrooms integer(2),
        garage varchar2(5),
        garden varchar2(6),
        regionArea varchar2(20),
        pAddressLine1 varchar2(20),
        pAddressLine2 varchar2(20),
        pTown varchar2(20),
        askingPrice varchar2(20),
        relatesTo appointment_list_t);
    
    create table person_tab of person_t (
        person primary key );
        
    create table property_tab of property_t (
        primary key(property))
        nested table relatesTo store as relates_to_table;
        
    create table appointment_tab of appointment_t (
        primary key (appointment),
        scope for (is_made_by) is person_tab,
        scope for (is_attended_by) is person_tab,
        scope for (is_related_to) is property_tab);
        
        
    
    insert into person_tab
    values (salesperson_t('s001', 'Fontigue', 'Farquar', '22-feb-1980', appointment_list_t()));
    
    insert into person_tab
    values (salesperson_t('s002', 'Richmond', 'Neil', '30-feb-1983', appointment_list_t()));
    
    insert into person_tab
    values (salesperson_t('s003', 'Devere', 'Jeremy', '03-mar-1977', appointment_list_t()));
    
    insert into person_tab
    values (salesperson_t('s004', 'Schofield', 'Paul', '07-dec-1969', appointment_list_t()));
    
    insert into person_tab
    values (salesperson_t('s005', 'Johnson', 'Richard', '04-jul-1992', appointment_list_t()));
    
    insert into person_tab
    values (salesperson_t('s006', 'Stevens', 'Rupert', '22-may-1989', appointment_list_t()));
    
    
    
    insert into person_tab
    values (applicant_t('ap007', 'Hadfield', 'Linda', '22-nov-1981', '3 Duckdoo Avenue', 'Rosemont', 'Neath Port Talbot',
    telephone_t('01639877103', '07756338175'), '110000', 'Mumbles', appointment_list_t()));
    
    insert into person_tab
    values (applicant_t('ap008', 'Walsh', 'Riley', '18-sep-1974', '12 George Street', 'Taibach', 'Neath Port Talbot',
    '01639890337', '075982228741', '125000', 'Ten Acre Wood', appointment_list_t()));
    
    insert into person_tab
    values (applicant_t('ap009', 'Kennedy', 'Shaun', '11-dec-1972', '101 Granada Close', 'Waun Wen', 'Swansea',
    '01792558447', '07894558123', '150000', 'Central Swansea', appointment_list_t()));
    
    insert into person_tab
    values (applicant_t('ap010', 'Redgrave', 'Steven', '30-jun-1988', '47 Victoria Gardens', 'City Apartments', 'Neath',
    '01639770183', '07774273391', '95000', 'Neath', appointment_list_t()));
    
    insert into person_tab
    values (applicant_t('ap011', 'Hopkins', 'John', '07-feb-1979', '130 Flanders Court', 'Richfield', 'Bridgend',
    '01656889227', '05589337123', '137500', 'Brechfa', appointment_list_t()));
    
    insert into person_tab
    values (applicant_t('ap012', 'Glover', 'Germaine', '14-aug-1983', '32 Regent Crescent', 'Cranforth', 'Cardiff', 
    '01210887336', '07975625195', '170000', 'Cardiff West', appointment_list_t()));
    
    

    
    

    The one I am running made the telephone_t in all households.

    Happy that you have your code working but that was not my point

    It comes to you providing us with the correct instructions to actually run the test case and help you efficiently.

    Regarding your last question, use the function of REGAL to caster level being superior in one of its subtype.

    for example

    SQL> select person
      2       , treat(object_value as applicant_t).aSurname as surname
      3       , treat(object_value as applicant_t).aForename as forename
      4  from person_tab
      5  where object_value is of (applicant_t) ;
    
    PERSON SURNAME              FORENAME
    ------ -------------------- --------------------
    ap007  Hadfield             Linda
    ap008  Walsh                Riley
    ap009  Kennedy              Shaun
    ap010  Redgrave             Steven
    ap011  Hopkins              John
    ap012  Glover               Germaine
    
    6 rows selected.
    
  • Don't vSphere replication create control points which can be selected during the failover?

    Don't vSphere replication create control points which can be selected during the failover?  Or is the latest version of replication, the only option to failover?

    Thank you

    -MattG

    No, this isn't

    You CAN do this with EMC RecoverPoint (although not on a per VM level).

  • Keep the selected highlighter

    Hey there,

    I have fun software adobe reader on ipad. I especially need the highlighter tool. whenever I highlighted a part, I select the highlighter again before I can choose the next part. is there a way to keep the selected highlighter?

    Thanks for your help.

    Yes, there is a way... sometimes it is called keep the tools 'sticky'... don't ask me why.

    Select the tool you want to use (but don't use it yet). Control + E, or right-click upward on the toolbar, click & Select 'Display Properties Bar"there should be a box that appears with a check box, select"Keep the selected tool."

    https://acrobatusers.com/tutorials/there-way-keep-tool-sticky

  • Can hoe I keep a few cookies selected during the removal of all unwanted cookies?

    I want to keep some for banks, internet cookies etc. How do I remove all unwanted cookies?

    Under Options - Life private, you can set "conservation rules: use the custom settings for history". Then you can click on the button show Cookies and manually delete specific cookies.

    If you often have to delete everything except cookies, you can use an add-on.

    Remember that when you delete all the cookies, Firefox deletes also all the Flash cookies. If ever, you delete all of the cookies, you can use the BetterPrivacy add-on to remove Flash cookies.

  • Keep the selected index of a HorizontalList

    I have a horizontalList which is filled with a data provider. My page never refreshes after an interval of 30, 60 seconds.

    I have 5 item in the list. So when I select an item in the list at index 3, his article is highlighted with a different color. Now, when the page is refreshed in 30 seconds, I lose the highlight. How do I keep on refresh highlight color so that I know how I look at one.

    I throw every time an event that refreshes the page and I store the index selected on my model. But I could not set the property of the element selected highlighted or selected.

    Here is the code I put in place.

    private void handleAppRefreshed(event:Event): void {}

    trace ("Index:" + model.selectedHLIndex);

    hlist.selectedIndex = model.selectedHLIndex; where hlist is the horizontalList

    }

    Any help will be appreciated. Thank you.

    KM

    Thank you. Once you refresh the data, you will lose the selectedItem. You can store the value and reset it after that data is returned.

  • Select a table returned in the result of the query

    Hi, I'm trying to find a way to query a table name that I'm back to a different query. I am doing this in pure SQL and PL/SQL, if I can.

    Here's the situation. I have a table called FILES, a table called TYPE and an unknown number of different reference tables with different names.

    Each entry in the FILE has a reference to a TYPE id, and each entry type is a varchar that contains the name of a table reference, such as PHOTO_INFORMATION, PDF_INFORMATION or XML_INFORMATION.

    I want to be able to extract the data from the reference table for any data file. So with a file id, I question TYPE to get the name of the reference table (IE, "PHOTO_INFORMATION" back) then the request it is at this table for all of its columns, using the reference id in the FILE table.

    The thing is that I wish it were generic, so that I can just add an entry to AA_TYPE and a new table for this type, and then I can ask her but I want, through the FILE table. The reason is that there are some data that is common for all files, and I would like to that data in one place.

    Here is my paintings, I have two reference tables of the sample to the bottom "AA_FILETYPE1" and "AA_FILETYPE_PHOTO".
    CREATE TABLE  "AA_FILES" 
       (     "FILE_ID" NUMBER, 
         "FILE_NAME" VARCHAR2(4000), 
         "FILE_TYPE" NUMBER, 
         "REFERENCE_ID" NUMBER, 
          CONSTRAINT "AA_TEST_FILE_PK" PRIMARY KEY ("FILE_ID") ENABLE
       )
    /
    
    CREATE TABLE  "AA_TYPE" 
       (     "TYPE_ID" NUMBER NOT NULL ENABLE, 
         "REFERENCE_TABLE" VARCHAR2(4000), 
          CONSTRAINT "AA_TYPE_PK" PRIMARY KEY ("TYPE_ID") ENABLE
       )
    /
    
    CREATE TABLE  "AA_FILETYPE1" 
       (     "REFERENCE_ID" NUMBER, 
         "DATE_MODIFIED" DATE, 
         "SUMMARY" VARCHAR2(4000), 
         "TOTAL_VALUE" NUMBER(5,2), 
          CONSTRAINT "AA_FILETYPE1_PK" PRIMARY KEY ("REFERENCE_ID") ENABLE
       )
    /
    
    CREATE TABLE  "AA_FILETYPE_PHOTO" 
       (     "REFERENCE_ID" NUMBER NOT NULL ENABLE, 
         "DATE_TAKEN" DATE, 
         "CAMERA_NUMBER" VARCHAR2(4000), 
         "WEATHER_CONDITIONS" VARCHAR2(4000), 
         "CONSULTANT_NAME" VARCHAR2(4000), 
          CONSTRAINT "AA_FILETYPE_PHOTO_PK" PRIMARY KEY ("REFERENCE_ID") ENABLE
       )
    /
    Here's an example query I would use:
    select * from (select REFERENCE_TABLE from AA_TYPE where TYPE_ID = AA_FILES.FILE_TYPE) where REFERENCE_ID = AA_FILES.REFERENCE_ID;
    So who withdrew all the columns in the reference given in AA_TYPE table based on an entry in AA_FILES.

    I'm not entirely sure how to do this, or if this is possible even without using PL/SQL.

    I'm open to suggestions on how to achieve what I want with a different design of table, I am a student and I'm not really experienced in database design. (My first design of database class isn't until next year!)

    Thank you very much!

    Hello

    [email protected] wrote:
    Sorry about the confusion about file_id = 3, I meant the insert in the third I've included. I did not indicate the id_fichier in my inserts since it is the main key and it auto increments.

    It is important to post of the CREATE TABLE and INSERT statements that work. All those who want to help you to will want to recreate the problem and test solutions. Also, do not use strings for all entries. If the column is a NUMBER, use a NUMBER in the INSERT statement. If the column is a DATE, use a DATE or a function that returns a DATE.
    So you should post something like:

    insert into AA_FILES(FILE_ID, FILE_NAME, FILE_TYPE, REFERENCE_ID) values (1, 'test-photo-1.jpg',  1,  1);
    insert into AA_FILES(FILE_ID, FILE_NAME, FILE_TYPE, REFERENCE_ID) values (2, 'test-xml-1.jpg',    2,  2);
    insert into AA_FILES(FILE_ID, FILE_NAME, FILE_TYPE, REFERENCE_ID) values (3, 'test-photo-2.jpg',  1,  2);
    -- The value file_type=1 immediately above was not in your original data, but seems to be what you meant.
    
    prompt =====  AA_TYPE Table:  =====
    
    insert into AA_TYPE(TYPE_ID, REFERENCE_TABLE) values (1, 'AA_FILETYPE_PHOTO');
    insert into AA_TYPE(TYPE_ID, REFERENCE_TABLE) values (2, 'AA_FILETYPE1');
    
    prompt =====  AA_FILETYPE1 Table:  =====
    
    insert into AA_FILETYPE1 (REFERENCE_ID, DATE_MODIFIED,                 SUMMARY,                                    TOTAL_VALUE)
           values           (1,           TO_DATE ('01-01-02', 'MM-DD-RR'), 'An XML file that has some information about something', '14');
    
    prompt =====  AA_FILETYPE_PHOTO Table:  =====
    
    insert into AA_FILETYPE_PHOTO (REFERENCE_ID, DATE_TAKEN,                 CAMERA_NUMBER, WEATHER_CONDITIONS, CONSULTANT_NAME)
                    values            (1,          TO_DATE ('01-01-01', 'MM-DD/RR'), 'abc123',      'rainy!',         'John Smith');
    insert into AA_FILETYPE_PHOTO (REFERENCE_ID, DATE_TAKEN,                 CAMERA_NUMBER, WEATHER_CONDITIONS, CONSULTANT_NAME)
                    values            (2,          TO_DATE ('01-01-02', 'MM-DD/RR'), 'def456',      'slightly cloudy',  'Jane Jones');
    commit;
    

    To give you my workplace, I'm applying in Application Express. A user has entered the number '3' the file_id (I'm not worried about the distinction between passing in the id_fichier and the name of the file, I just my application one application or the other).

    Now, run a query that will get related data which table it is stored in. I don't know the name of the table at design time, as that particular file may be of any type (each of which has a different table name). However, with a the file_id, I have a file_type (in aa_files) which refers to an entry in aa_type.

    I see. You could add even add new tables after this query is written. As long as the new table has a column named reference_id, and there is a line for the new table in aa_files, the following query should work.

    >

    select FILE_TYPE
    from AA_FILES
    where FILE_ID = 3
    

    I stored the name of the table, I need to ask for the rest of the data in aa_type at design time, so using the file_type value, I can get the name of reference_table:

    select REFERENCE_TABLE from AA_TYPE where FILE_TYPE = 1
    

    In the sample data, you have validated, Type_de_fichier = 2 on the 3rd row. I've changed that in my example 1 revised data.
    Be very careful that your explanation fits your data. You talk to people who know about your application, and it is very easy for them to be induced in error or confusion.

    Now the '1' is here that the first query would return. I would like to use a subquery to combine these two queries into a single (I think?). This second query would return "AA_FILETYPE_PHOTO", which is the reference table.

    So I have the reference table, which is a name of table to another table in my database. It contains the data that I'm actually looking for. I want it for this particular file (file_id 3), and in aa_files, I have a value of "reference_id", which refers to the respective line in the reference table. File_id 3, the reference_id is 2.

    select * from AA_FILETYPE_PHOTO
    where reference_id = 2
    

    If the above query gets me my final data.

    Now, I've been watching substitution values and bind variables, here's another way to explain what I want:

    Explanation step by step below is very useful. It would be more useful if each step uniquely and gavce movement results given the sample data and an example of setting (3 in this case)

    -- get the file_type from aa_files for the desired file
    EXEC :file_type := (select file_type from aa_files where file_id = 3);
    

    That we will call the step step (a) above.
    Step (a) sets: Type_de_fichier 1 (given my corrected sample data)

    -- get the reference table from aa_types using the file_type
    EXEC :reference_table := (select reference_table from aa_type where type_id = :file_type);
    

    That we will call the step step (b) above.
    (B) sets the stage: reference_table to 'AA_FILETYPE_PHOTO '.

    -- get the reference_id from aa_files for the desired file
    EXEC :reference_id := (select reference_id from aa_files where file_id = 3);
    

    That we will call the step step (c) above.
    (C) sets the stage: reference_id 2

    -- using the reference table and reference id for the desired file, get the rest of the data
    select * from :reference_table where reference_id = :reference_id;
    

    Not sure if this makes it more clear or not.

    Yes, it helps a lot.

    Basically I have a table full of table names. How do I write a query that pulls one of these table names and it then queries?

    You need SQL dynamic, because you can't hardcode a table name in the query that you normally would be.
    How dynamic SQL works normally (and the functioning of this example) are that the query is built by using a variable. In SQL * more (as shown below), you can simply use a variable substitution instead an identifier hardcoded, and that's what it takes to make the dynamic query from SQL * more resolves the substitution variables before sending the code for the compiler. I don't know much on the Apex, but I bet there's some way to do dynamic SQL in the Apex, too.
    So the dynamic part here should include step d, since you can't hardcode the name of the table in the query.
    Until we can step (d), then, did they to us to do the steps (a) and (b) to obtain this file name. In the example blelow, I used a separate, preliminary request to get the & table_name...
    Step (c) could be made in the main query, using a subquery or a join. However, I chose to step (c) in the preliminary motion, as well as steps (a) and (b), since it's the same table same step (a). In this way, step (d) must refer to a table.

    Here's (finally) how to make this work in SQL * more:

    ACCEPT     file_id     PROMPT     "Enter the file_id (a number, e.g. 3): "
    
    -- Preliminary Query, to set table_name
    
    COLUMN     reference_id_col     NEW_VALUE     reference_id
    COLUMN     table_name_col           NEW_VALUE     table_name
    
    SELECT  f.reference_id          AS reference_id_col
    ,     t.reference_table       AS table_name_col
    FROM      aa_files     f
    JOIN     aa_type          t     ON     f.file_type     = t.type_id
    WHERE     f.file_id     = &file_id
    ;
    
    --     Main Query
    
    SELECT  *
    FROM     &table_name
    WHERE      reference_id     = &reference_id
    ;
    

    The results, account required to the data from the sample I posted above, and the & file_id 3, are:

    `                      CAMERA_    WEATHER_        CONSULTANT_
    REFERENCE_ID DATE_TAKE NUMBER     CONDITIONS      NAME
    ------------ --------- ---------- --------------- ---------------
               2 01-JAN-02 def456     slightly cloudy Jane Jones
    
  • Problem sending file in .jsff

    Hi all
    I use File Upload component file Uploading in JSFF, but this isn't my work code is as below


    variables
    private UploadedFile upFile;
    private RichInputFile fileupload.

    -Getters
    public getUpFile() {} UploadedFile
    Return upFile;
    }

    {} public void setUpFile (UploadedFile upFile)
    System.out.println ("inside transfer the file set" + upFile);
    this.upFile = upFile;
    }

    Download method

    public String upload() throws IOException {}
    System.out.println ("inside the File Upload");
    try {}
    InputStream
    FileOutputStream
    String fileUploadLoc = "C:\\ListUpload\\";
    try {}
    If (upFile! = null & & upFile.getLength () > 0) {}
    FacesContext context = FacesContext.getCurrentInstance ();
    FacesMessage message =
    new FacesMessage ("file sent successfully '" +)
    upFile.getFilename () + "" ("+
    upFile.getLength () + 'bytes)');
    String filename = fileUploadLoc + upFile.getFilename ();
    out = new FileOutputStream (filename);
    System.out.println ("file name:" + filename);
    try {}
    in = upFile.getInputStream ();
    for (int = 0 bytes; bytes < upFile.getLength ();)
    {Byte} ++)
    out. Write (in. Read());
    }
    in. Close();
    out. Close();
    } catch (IOException ioe) {}
    TODO: Add catch code
    ioe.printStackTrace ();
    }
    System.out.println ("file name:" + upFile.getFilename () +)
    "was created in" +.
    fileUploadLoc);
    } else {}
    System.out.println ("Inside Else");
    }
    } catch (exception FileNotFoundException fnfe) {}
    TODO: Add catch code
    fnfe.printStackTrace ();
    }
    Returns a null value.
    } catch (Exception IOE) {}
    System.out.println ("I/o Exception is..." + IOE);
    System.out.println ("File Upload without success");
    }
    Returns "OK";
    }



    Code for jsff is-

    < af:inputFile label = "Select File" id = "fileupload".
    value="#{pageFlowScope.ModifyPriceListBean.upFile}"/ >
    < af:commandToolbarButton text = 'Upload '.
    ID = "ctb8".
    action="#{pageFlowScope.ModifyPriceListBean.upload}"/ >

    As mentioned, you must set the usesUpload on the jspx page that consumes the jsff, IE. the region contains. Jspx page contains the form element.

  • Cannot install roboform 7.9.8.5 in every night, does not allow the selection of Firefox to be selected during the installation. go to address?

    Windows 8.1 last Firefox, Roboform 7.9.8.5.
    During the installation of Roboform and selecting the browser to install it on the only browser which is selectable are IE, firefox and chrome are grey.

    33.0 Nightly of Firefox is a version of alpha 1 pre-release tester.
    Check with Roboform to see if they take over the alpha or beta of Firefox versions.

  • PC interpreter registry clean to clean my computer says it iv got 204 errors, I keep remove, but Guard always returning.

    original title: pop - up program

    I get this PC program interpreter registry clean to clean my computer it says that iv got 204 errors, I keep to delete, then delete the trash, but always comes back.

    Hi, jhb59,

    Restart the computer and start typing the F8 key

    Select Mode safe mode with networking

    Download the following tool and analysis complete to rule out malware

    http://www.Microsoft.com/download/en/details.aspx?displaylang=en&id=16

    Start > Control Panel > uninstall programs

    Search the PC interpreter

    Select, then press on uninstall

    -Or-

    Start > all programs

    Search the PC interpreter

    Click to open the menu

    Select uninstall PC interpreter

  • Z10 blackBerry how to select a sender when replying / forwarding email on z10?

    Current configuration:

    I have a Gmail account and two other accounts. All messages from two other accounts are forwarded to Gmail.

    I've set up three accounts on Z10.

    When you compose a new message, I can select one of the three accounts as the sender.

    When you reply to the / forwarding a message, the sender is always defined as Gmail, regardless of what address the message was sent to.

    Question:

    Is it possible to select a response message sender / passed on Z10 in the list of e-mail accounts?

    Please, do not turn off transfer; I will not check three emails on other computers I use to work with emails.

    Currently, you cannot change the sender when you reply to or forward. It will use whatever account him comes from mail on the device.

  • Keep not selected (\) line Segment tool

    Hello, I use the latest version of Adobe Illustrator CC and can not start a new line with the line of a previous line segment tool.

    If I start again from one edge of the line point, move from my line from the line is still selected.

    In the previous version of Illustrator od the line was comic and disabled instantly what was allowing me to continue to draw the line on the edges of the first.

    Line Segment tool does not include the option 'Keep selected' as the pen or the brush so I can't enable or disable.

    someone has an answer how I could get this line automatically disabled after drawing it?

    Thank you

    If you choose: display > bounding box (Cmd Shift B (Mac) or Ctrl Shift B (Win)), you can continue shooting without moving the line just created.

  • Channel number SELECT dataset not return

    Hi, I have a problem with the following code:

    PROCEDURE create_so (p_import_batch IN VARCHAR2) 
     IS
    
    
     v_import_batch VARCHAR2(1000);
      
     CURSOR sales_c (x_import_batch IN VARCHAR2)
     IS
     SELECT pbo.*
     ,      msib.inventory_item_id
     FROM XXMEL_PVS_BSH_ORDER pbo
     ,    mtl_system_items_b msib
     WHERE 1=1
     AND msib.segment1 = pbo.material
     AND msib.organization_id = 26
     AND  to_char(pbo.import_batch_id) IN ( x_import_batch);
    
     BEGIN
    
      select '('''||replace(p_import_batch,':',''',''')||''')' 
      INTO v_import_batch
      from dual;
       
      FOR sales_r IN sales_c (v_import_batch)
       LOOP
       
        raise_application_error(-20001,v_import_batch);--Program should raise this error as the cursor should return rows
    
      END LOOP;
    
    END;
    

    I'm passing in the procedure a 1:2:3 as a VARCHAR2 parameter.  The value should be passed as a VARCHAR2 because we use a part of the shuttle from one page of the APEX.

    I want to extract all records in the table of pbo which have an import_import_batch_id (which is a number data type) as v_import_batch who, at the minute ('1', ' 2', 3').

    The import_batch_id is a numeric field, so I got to to_char to try to work with the VARCHAR2 parameter I am by the way.

    The

     select '('''||replace(p_import_batch,':',''',''')||''')' 
      INTO v_import_batch
      from dual;
    
    

    code works well and is back ('1 ', '2', 3') which is what I want.  If I then run the select with this hard coded that value

    SELECT pbo.*
           ,msib.inventory_item_id
     FROM XXMEL_PVS_BSH_ORDER pbo
     ,    mtl_system_items_b msib
     WHERE 1=1
     AND msib.segment1 = pbo.material
     AND msib.organization_id = 26
     AND to_char(pbo.import_batch_id) IN ('1','2','3')
    

    It works OK and return lines that I expect returned.  If I try to use the variable rather than the hard-coded value, the SELECT statement does not return anything.

    Any advice would be great.

    Thank you

    Chris

    You must convert your of as '1 ', '2',' 3' can be considered to be 3 ranks.

    Try the following question

    SELECT pbo.*
           ,msib.inventory_item_id
     FROM XXMEL_PVS_BSH_ORDER pbo
     ,    mtl_system_items_b msib
     WHERE 1=1
     AND msib.segment1 = pbo.material
     AND msib.organization_id = 26
     AND to_char(pbo.import_batch_id) IN (
     select regexp_substr ( txt, '[^,]+', 1, level) data from (select '1,2,3' txt from dual) t CONNECT BY level <= length (txt) - length (replace (txt, ',')) + 1
     )
    
  • CC of Dreamweaver keeps deleting selected text

    DW keeps removing the selections of text without reason. He's sometimes right after selection, other times is when he is selected by the search function. Running Mac OS x with the most current version of DW. Not sure if they are related, but it is also very difficult to copy and paste. The selections are made, the command copy is hit on the keyboard, but it sticks a previous selection. Only way to ensure the own C & P every time is to do it via the Edit menu.

    Check if the deactivation of your speech recognition helps...

    http://forums.Adobe.com/message/5928971#5928971

Maybe you are looking for

  • To access the backups Time Machine another computer

    I have spent a good hour looking for a solution to this problem, but have developed empty-handed. If I understand correctly, backups of access from another Mac time Machine, I need to connect the backup drive to another Mac and select "Browse Other T

  • Imported contacts have SMTP with the name of the recipient after the email address and cannot be sent.

    I imported my contacts from Outlook, from a CSV file. In the e-mail section, I get the name, sometimes with "and after the email address, I get SMTP and the email again. Of course, it cannot be sent. What I have to go through all my addresses and cha

  • Free configuration for Windows Vista - Tecra M7

    Last weekend, I upgraded my Tecra M7 for Vista Ultimate. I have problems with the Zip for Free Config file. I am running the latest version of WinZip 11.1 Pro and whenever I try to extract the file, it blocks to WinZip.I sent an error log o Winzip wi

  • HP laptop - 15-f233wm: USB 3.0 drivers

    I just tried to use my USB for the first time tonight (bought the laptop last week) I went to Device Manager and right click, checked the properties and ths, that's what he said: This device is not present, is not working properly or is not all its d

  • HP Pavilion g6-2380sa

    Having recently bought this laptop found l I did not win 8, installed win7 x 64 who have used also, most pilots win 8 worked except for the usb controller and ethernet controller, spent hours trying to find these 2 drivers without success, so would a