Help with accessing hidden items in Apex collections using  4.0.2.00.06

Hello experts,
I have the following code in my on load before header process
declare
l_sent_rec individual_original_pkg.case_rec_typ;
begin
individual_original_pkg.case_header(p_sent_id=>:P1_SENT_ID,l_case_rec=>l_sent_rec);
:P2_DISPOSITIONS                           := l_sent_rec.sent_info.disp_type_code;
:P2_SAFETY_VALVE                           := l_sent_rec.ind_sent_info.safety_valve;
:P2_NO_OF_COUNTS_OF_CONVICTION             := l_sent_rec.sent_info.cnts_num;
:P2_PRIM_OFFN_CONVICTION                   := l_sent_rec.sent_info.prim_offn_code;
if wwv_flow_collection.collection_exists(p_collection_name=>'COUNTS') then
     wwv_flow_collection.delete_collection(p_collection_name=>'COUNTS');
end if;
wwv_flow_collection.create_or_truncate_collection(p_collection_name=>'COUNTS');
FOR counts_rec IN (WITH     got_c_num     AS
     SELECT     oc.conv_cnt,
          oc.stat_min_mons_num,
          oc.stat_max_mons_num,
          ocs.statute_id,
          ocs.title_code,
          ocs.section_code,
          ocs.subsection_code,
          ROW_NUMBER () OVER ( PARTITION BY  oc.conv_cnt order by ocs.statute_id )         AS c_num
     FROM      offense_convictions oc,
             offense_conviction_statutes ocs
     WHERE     oc.sent_id     = ocs.sent_id
     AND     oc.conv_cnt     = ocs.conv_cnt
     AND     oc.sent_id     = :P1_SENT_ID
SELECT     conv_cnt,
     stat_min_mons_num,
     stat_max_mons_num,
     "1_STATUTE_ID"          as first_statute_id,
     "1_TITLE_CODE"          as first_title_code,
     "1_SECTION_CODE"     as first_section_code,
     "1_SUBSECTION_CODE"     as first_subsection_code,
     "2_STATUTE_ID"          as second_statute_id,
     "2_TITLE_CODE"          as second_title_code,
     "2_SECTION_CODE"     as second_section_code,
     "2_SUBSECTION_CODE"     as second_subsection_code,
     "3_STATUTE_ID"          as third_statute_id,
     "3_TITLE_CODE"          as third_title_code,
     "3_SECTION_CODE"     as third_section_code,
     "3_SUBSECTION_CODE"     as third_subsection_code
FROM     got_c_num
PIVOT     (     MIN (statute_id)     AS statute_id
     ,     MIN (title_code)     AS title_code
     ,     MIN (section_code)     AS section_code
     ,     MIN (subsection_code)     AS subsection_code
     FOR     c_num
     IN     (     1
          ,     2
          ,     3
ORDER BY  conv_cnt)
LOOP
     apex_collection.add_member(
     p_collection_name=>'COUNTS',
     p_generate_md5=>'YES',
     p_c001=>counts_rec.CONV_CNT,
     p_c002=>counts_rec.STAT_MIN_MONS_NUM,
     p_c003=>counts_rec.STAT_MAX_MONS_NUM,
     p_c004=>counts_rec.first_statute_id,
     p_c005=>counts_rec.first_title_code,
     p_c006=>counts_rec.first_section_code,
     p_c007=>counts_rec.first_subsection_code,
     p_c008=>counts_rec.second_statute_id,
     p_c009=>counts_rec.second_title_code,
     p_c010=>counts_rec.second_section_code,
     p_c011=>counts_rec.second_subsection_code,
     p_c012=>counts_rec.third_statute_id,
     p_c013=>counts_rec.third_title_code,
     p_c014=>counts_rec.third_section_code,
     p_c015=>counts_rec.third_subsection_code
END LOOP;
end;and my report region is as follows
SELECT    
apex_item.checkbox(1,c001) "Select Count",
apex_item.text(p_idx=>2,p_value=>c001,p_size=>3,p_maxlength=>3,p_attributes=>'readonly') count,
apex_item.text( 3, c002, 3, 3),
apex_item.text( 4, c003, 3, 3),
apex_item.hidden(5, c004),
apex_item.text( 6, c005, 3, 3),
apex_item.text( 7, c006, 4, 4),
apex_item.text( 8, c007, 4, 4),
apex_item.checkbox(9, c004) "Select Stat1",
apex_item.hidden(10,c008),
apex_item.text( 11, c009, 3, 3),
apex_item.text( 12, c010, 4, 4),
apex_item.text(13, c011, 4, 4),
apex_item.checkbox(14,c008) "Select Stat2",
apex_item.hidden(15,c012),
apex_item.text(16, c013, 3, 3),
apex_item.text(17, c014, 4, 4),
apex_item.text(18, c015, 4, 4),
apex_item.checkbox(19,c012) "Select Stat3"
FROM APEX_COLLECTIONS
WHERE COLLECTION_NAME = 'COUNTS'I have a button with on submit - before computations and validations as
DECLARE
  l_row NUMBER := 1;
  rows_to_be_deleted varchar2(2000) :=  null;
BEGIN
/* Stat 1 */
  FOR i IN 1..APEX_APPLICATION.G_F05.COUNT
  LOOP
    FOR j IN l_row..APEX_APPLICATION.G_F09.COUNT
    LOOP
      IF APEX_APPLICATION.G_F05(i) = APEX_APPLICATION.G_F09(j) THEN
           rows_to_be_deleted := rows_to_be_deleted || APEX_APPLICATION.G_F05(i)|| ',' ;
        l_row := j + 1;
        EXIT;
      END IF;
    END LOOP;
  END LOOP;
:P2_BUTTON_PRESSED := substr(rows_to_be_deleted,1,(length(rows_to_be_deleted)-1));
END;When i click on this button i am not able to access the hidden items in g_f05 array. All of the report attributes are set to render as "standard report column". How can i retrieve the values of G_F05 array items?
thanks.
Seetharaman

In your report instead of this
SELECT
apex_item.checkbox(1,c001) "Select Count",
apex_item.text(p_idx=>2,p_value=>c001,p_size=>3,p_maxlength=>3,p_attributes=>'readonly') count,
apex_item.text( 3, c002, 3, 3),
apex_item.text( 4, c003, 3, 3),
apex_item.hidden(5, c004),
apex_item.text( 6, c005, 3, 3),
apex_item.text( 7, c006, 4, 4),
apex_item.text( 8, c007, 4, 4),
apex_item.checkbox(9, c004) "Select Stat1",
apex_item.hidden(10,c008),
apex_item.text( 11, c009, 3, 3),
apex_item.text( 12, c010, 4, 4),
apex_item.text(13, c011, 4, 4),
apex_item.checkbox(14,c008) "Select Stat2",
apex_item.hidden(15,c012),
apex_item.text(16, c013, 3, 3),
apex_item.text(17, c014, 4, 4),
apex_item.text(18, c015, 4, 4),
apex_item.checkbox(19,c012) "Select Stat3"
FROM APEX_COLLECTIONS
WHERE COLLECTION_NAME = 'COUNTS'
do like this
SELECT
apex_item.checkbox(1,c001) "Select Count",
apex_item.text(p_idx=>2,p_value=>c001,p_size=>3,p_maxlength=>3,p_attributes=>'readonly') count,
apex_item.text( 3, c002, 3, 3),
apex_item.text( 4, c003, 3, 3),
apex_item.hidden(5, c004)||
apex_item.text( 6, c005, 3, 3),
apex_item.text( 7, c006, 4, 4),
apex_item.text( 8, c007, 4, 4),
apex_item.checkbox(9, c004) "Select Stat1",
apex_item.hidden(10,c008)||
apex_item.text( 11, c009, 3, 3),
apex_item.text( 12, c010, 4, 4),
apex_item.text(13, c011, 4, 4),
apex_item.checkbox(14,c008) "Select Stat2",
apex_item.hidden(15,c012)||
apex_item.text(16, c013, 3, 3),
apex_item.text(17, c014, 4, 4),
apex_item.text(18, c015, 4, 4),
apex_item.checkbox(19,c012) "Select Stat3"
FROM APEX_COLLECTIONS
WHERE COLLECTION_NAME = 'COUNTS'
and check if it works
Thanks

Similar Messages

  • Need help with accessing the program.

    I need help with accessing my adobe creative cloud on my windows 8.1 laptop. I have an account but do not have an app. I need this for my online classes. Please help!

    Link for Download & Install & Setup & Activation may help
    -Chat http://www.adobe.com/support/download-install/supportinfo/

  • Be grateful for your help with Photoshop Elements which I have been using for several years.

    Be grateful for your help with Photoshop Elements which I have been using for several years.  Does Elements need to have access to ‘My Pictures’ on Windows as when I remove Photos from ‘My Pictures’, Elements later, when backing up, gives a message that it is unable to ‘reconnect’ to the same picture on elements.  On other occasions when removing a photo from Elements catalogue I also get a similar message when backing up saying ‘unable to reconnect’.  1. Is there a relationship between Elements and My Pictures and is Elements dependant on    the Windows ‘My Pictures’? 2. Why does some photos in Elements in some cases cause them to multiply e.g. double; triple; quadruple; and on occasions even more?  Is there something I need to do to stop this or an easy way I can remove the multiples without spending hours doing it manually one by one?  Am I doing something wrong? My O/S is Windows XP SP2 and windows Vista on my Laptop.  I have been using Elements 5 and have just purchased Photoshop Elements 8.0. (Upgrade) and about to install it. Be grateful for any advice as I do enjoy using the program if only I can resolve this issue.  I am not a PC wiz and mainly use Elements to catalogue photos from which I compile collections and from them slide shows with music.  Any advice appreciated Sonny.t PS Have tried to post this previously but without success so hoping to see message appear and a +response

    The organizer doesn't care where you send your photos when you download them via the downloader or where they happen to be when you first bring them in if you use the Get Photos command, but once your pics are in the Organizer, you *must* move them from within organizer or it can't find them. You don't have to use My Pictures at all if you don't want to, but regardless of the folder where you put your photos, if you want them someplace else, you use organizer to do it.

  • Query for create manual tabular form using apex collection using item textfield with autocomplete

    can we create a manual tabular form inside item textfield with autocomplete ?
    how it is possible?
    with Apex_item API used for this item.
    i used this code for creat  cascading select list
    select seq_id,
    APEX_ITEM.SELECT_LIST_FROM_QUERY(
            p_idx                       =>   1,
            p_value                     =>   c001,
            p_query                     =>   'SELECT C001 D
         , C002 R
      FROM APEX_COLLECTIONS
    WHERE COLLECTION_NAME = ''col1''',
            p_attributes                =>   'style="width:150px" onchange="f__name(this,parseInt(#ROWNUM#));"',
            p_show_null                 =>   'Yes',
            p_null_value                =>   null,
            p_null_text                 =>   '- Select name -',
            p_item_id                   =>   'f01_'|| LPAD (ROWNUM, 4, '0'),
            p_item_label                =>   'Label for f01_#ROWNUM#',
            p_show_extra                =>   'NO') name,
    APEX_ITEM.SELECT_LIST_FROM_QUERY(
            p_idx                       =>   2,
            p_value                     =>   c002,
            p_query              =>   ' SELECT null d, null r FROM dual WHERE 1 = 2
            p_attributes                =>   'style="width:150px"',
            p_show_null                 =>   'Yes',
            p_null_value                =>   null,
            p_null_text                 =>   '- Select name -',
            p_item_id                   =>   'f02_'|| LPAD (ROWNUM, 4, '0'),
            p_item_label                =>   'Label for f02_#ROWNUM#',
            p_show_extra                =>   'NO')name2,
    from apex_collections
    where
    collection_name = 'COLLECTION1'
    It is fine .
    but i want item in tabular form  textfield with autocomplete and remove select list. my requirement is using textfield with autocomplete select a employee name and second item textfield with autocomplete display dependent perticular employee related multiple task.
    how it is created.i have no idea related textfield with autocomplete.Please help me....

    pt_user1
    I understand that the add row button is currently doing a submit.
    To not submit the page you need a dynamic action on the page.
    Does the javascript function addRow do what you want?
    Otherwise have a look at the following two threads Add row in manual tabular form using dynamic action and Accessing Tabular Form & Add Elements to Collection without Page Submit.
    You're process could be something like:
    Add the new values to the collection using the idea's in the second thread and at the same time add the new row.
    And as second action refresh your tabular form.
    If you get stuck set up what you have done on apex.oracle.com using the tables from the demo application.
    Nicolette

  • Hidden items in apex 4 now hidden and proteced

    Hi all,
    The option hidden and proteced is no longer available in Apex 4. Now a hidden item is automatically hidden and proteced.
    This gives me problems with my app.
    I created a page with a menu.
    When I click on the menu my page gets filled with content.
    I do this with a text item.
    In this text item I fill the content id. When I click on the menu a javascipt fills the text item with the correct content id.
    The content region reads the content id and the content gets displayed.
    Now if I set the text field as hidden, the page gives me an error
    Error      Checksum error for Hidden and Protected item ID (2036114079384286), value (5), posted checksum (8EDF8C5C97169E49A9A12B5B15897DB5), expected checksum (********************************), index_i (1), index_j (1), index_m (1);
    Any suggestions?

    Huh?
    There's a type of "Hidden" and a separate place under "settings" for "Protected" and you answer Yes or No from the select-list.
    Does this not work for you?

  • Help with Scrolling Text Item.

    Hi , need help with making a text item scrollable.
    i.e. A field is 30 characters and i can only display 10
    characters, now what I would like is a scroll bar under the text
    item.
    Is this possible. I am using Forms 5.
    Thanx for any help.
    Pankaj Patel.
    null

    Petr Valouch (guest) wrote:
    : Pankaj Patel (guest) wrote:
    : : Hi , need help with making a text item scrollable.
    : : i.e. A field is 30 characters and i can only display 10
    : : characters, now what I would like is a scroll bar under the
    : text
    : : item.
    : : Is this possible. I am using Forms 5.
    : : Thanx for any help.
    : : Pankaj Patel.
    : Hi
    : You need that scrollbar under the item? You can set length
    of
    : text item and its size independently, so you can have text
    item
    : char(30) with size of 10 characters.
    An alternative is to declare the item as a multi-line text item
    with wrap set on. This would give you a vertical scroll bar on
    the item.
    Another option is to programmaticaly pop up an Editor, each time
    focus is moved to the item, or to actually change the width of
    the item when focus moves to it (and shrink it back when focus
    moves away.
    Simon Hedges
    Gloucester
    UK
    null

  • Help with access control please

    So I'm trying to set up my brother's PSP to the wirless network through MAC address timed access. What I want to do is make it so that he can only access it through certain times in the day. I'm having troubles with actually getting it to work. Everytime I set it up, the PSP only show's up as a DHCP client and not a Wireless client. I tried the option panel with the add wireless clients through the first try access. Could I get some help with this issue please? Thanks!

    Just to calm your fears... There is no conspiracy. If someone had an answer or a suggestion they would post it.

  • Help with dynamic statement returning values into collection

    Hi All
    I am trying to use dynamic statement to return values into a collection using the returning clause. However, I get an ORA-00933 error. Here is a simple setup:
    create table t(
        pk number,
        id_batch varchar2(30),
        date_created date,
        constraint t_pk primary key ( pk )
    create or replace type num_ntt is table of number;
    create or replace type vc2_ntt is table of varchar2(30);
    create or replace
    package pkg
    as
      type rec is record(
          pk        num_ntt,    
          id_batch  vc2_ntt
      procedure p(
          p_count in number,
          p_rt    out nocopy rec
    end pkg;
    create or replace
    package body pkg
    as
      procedure p(
          p_count in number,
          p_rt    out nocopy rec
      is
      begin
          execute immediate '
          insert into t
          select level, ''x'' || level, sysdate
          from   dual
          connect by level <= :p_count
          returning pk, id_batch into :pk, :id_batch'
          using p_count returning bulk collect into p_rt.pk, p_rt.id_batch;
      end p;
    end pkg;
    declare
      r  pkg.rec;
    begin
      pkg.p( 5, r );
    end;
    /

    sanjeevchauhan wrote:
    but I am working with dynamic statement and returning multiple fields into a collection.And using an INSERT...SELECT statement combined with a RETURNING INTO clause still does not work. Whether it's dynamic SQL or not: it doesn't work. The link describes a workaround.
    By the way, I don't see why you are using dynamic SQL here. Static SQL will do just fine. And so you can literally copy Adrian's setup.
    Regards,
    Rob.

  • Help with select list item and dynamics action

    G'Day Apex Gurus,
    I having problems trying to achieve to trigger the help window of a select item automatically. A help window is triggered when the select item label is clicked but my client would like to be triguered automatically as soon as the user click to see the options in the select list.
    I think that I should be able to do it with dynamic actions but I can not get it to work.
    I know when someone click on the label of the select list item trigger this JavaScript
    javascript:popupFieldHelp('277938589795252851','1545903379570909')
    So I want to trigger the javascript also when the user click of the select list item and pull down the options and for that I think that Dynamic actions is the way to go but I can't get it right.
    This is what I a doing:
    I created a Dynamic option as follow:
    Name : test
    Sequence: 30
    Even: Click
    Selection type: Item(s)
    Item(s): P1_RATING <- a selection list item
    Condtion: - No Condition -
    True Actions
    Sequence: 10
    Action : Execute JavaScript Code
    Fire when event result is :True
    Fire on page load: ticked
    Code: javascript:popupFieldHelp('277938589795252851','1545903379570909')
    I appreciate any one who can tell me what i am doing wrong here or provide a solution to my problem of achieving to trigger the help window of a select item automatically.
    Kind regards
    Carlos

    Hi Carlos,
    I set up a test case in exactly the same way and it worked fine for me. I created a page item called P1_DA_DEMO and added some static select list values then added some help text. The settings I used are below, I suggest you try again but also make sure you have no other Javascript errors on the page. Use a tool like firebug to check.
    Name : Dynamic Action Demo
    Sequence: 10
    Even: Click
    Selection type: Item(s)
    Item(s): P1_DA_DEMO <- a selection list item
    Condtion: - No Condition -
    True Actions
    Sequence: 10
    Action : Execute JavaScript Code
    Fire when event result is :True
    Fire on page load: Not Ticked
    Code: javascript:popupFieldHelp('277938589795252851','1545903379570909')
    Event Scope set a s Bind.
    Thanks
    Paul

  • Printing the data in "Textarea with HTML editor" item in APEX as pdf

    Hello,
    I have a requirement which goes like this.
    The user enters data in the HTML editor in APEX. All the tools available in the HTML toolbar will be used (eg. bulleted points, tables etc.). This data is stored in a single cell in the database. This data needs to be generated as a pdf for printing. We have Apache FOP installed as well.
    When I try to create a report region with this data and export it as pdf, the html tags are not considered. For eg. the table in the HTML editor doesn't appear as a table in the pdf, only the text appears.
    Let me know if such a transformation is possible. Also, can any other tool perform this??
    Note: The data in the HTML editor may not be in a fixed template. Whatever is entered there has to be converted.
    Thanks in advance !!

    The strip HTML attribute is set to "No" already. If you understood clearly, I need to convert the entire data in a HTML editor item to pdf. The data is stored in a single cell as HTML tags in the database. The data may inturn contain HTML tables as well. These HTML tables are not captured in the pdf, only the text within the tables are displayed.

  • Help with Multiselect List Item

    Assuming one employee can work for multiple departments, I want to display the departments employee 7844 works for preselected in a multiselect list.
    I am using the following query statement in a report region.
    select htmldb_item.select_list_from_query_xl(1, deptno ,'select DEPTNO,DNAME from scott.dept ','MULTIPLE HEIGHT=25', 'Y',null,null,null,'Department',null) a from scott.emp where empno = 7844
    The result I am seeing is a multiple multiselect lists with one department selected in each list.
    How should I modify the query to get what I want?
    Thanks
    Mina

    Hi Carlos,
    I set up a test case in exactly the same way and it worked fine for me. I created a page item called P1_DA_DEMO and added some static select list values then added some help text. The settings I used are below, I suggest you try again but also make sure you have no other Javascript errors on the page. Use a tool like firebug to check.
    Name : Dynamic Action Demo
    Sequence: 10
    Even: Click
    Selection type: Item(s)
    Item(s): P1_DA_DEMO <- a selection list item
    Condtion: - No Condition -
    True Actions
    Sequence: 10
    Action : Execute JavaScript Code
    Fire when event result is :True
    Fire on page load: Not Ticked
    Code: javascript:popupFieldHelp('277938589795252851','1545903379570909')
    Event Scope set a s Bind.
    Thanks
    Paul

  • ABAP help with deeply nested items.

    Gurus,
    We have a requirement whence we need to sum up the key figures from one transformation layer going to the next.  The challenge is, its a deeply nested structure. something like :
    SalesOrderItem     Higher Level Item         KeyFig  
    1000                     0000                          30
    1010                     1000                          20
    1011                     1010                          10
    1015                     1010                          20
    1020                     1010                          20
    1021                     1020                          10
    1022                     1020                          50
    1023                     1020                          10
    1025                     1020                          20
    So now, in the next layer we will be rolling it upto the 1000 , 2000...levels- in this example 1000 level only.
    The round figure items(1010, 1020.....) are the individual kmats and the summation happens like this:
    1. Items 1021, 1022, 1023 and 1025 roll up to 1020; sum = 90.
    2. Now when 1020 rolls up to its higher level item which is 1010, the sum that rolls up from 1020 should be 90 + 20.
    3. Ultimately when all items roll up to item 1000, the total sum will be 190.
    Can someone please help me write this logic in ABAP?
    Thanks!
    Chris

    You can try this, but please put it through more examples. Assumption is that your highest level item will have higher item number as 0000 and that they are always sorted in the way it is given in your example.
    DATA: BEGIN OF itab OCCURS 0,
            posnr(6) TYPE n,
            uposn(6) TYPE n,
            qty TYPE p DECIMALS 2.
    DATA: END OF itab.
    DATA: itab2 LIKE itab OCCURS 0 WITH HEADER LINE.
    DATA: itab3 LIKE itab OCCURS 0 WITH HEADER LINE.
    DATA: v_total TYPE p DECIMALS 2,
          v_posnr(6) TYPE n.
    itab-posnr = '1000'.
    itab-uposn = '0000'.
    itab-qty   = 30.
    APPEND itab.
    itab-posnr = '1010'.
    itab-uposn = '1000'.
    itab-qty   = 20.
    APPEND itab.
    itab-posnr = '1011'.
    itab-uposn = '1010'.
    itab-qty   = 10.
    APPEND itab.
    itab-posnr = '1015'.
    itab-uposn = '1010'.
    itab-qty   = 20.
    APPEND itab.
    itab-posnr = '1020'.
    itab-uposn = '1010'.
    itab-qty   = 20.
    APPEND itab.
    itab-posnr = '1021'.
    itab-uposn = '1020'.
    itab-qty   = 10.
    APPEND itab.
    itab-posnr = '1022'.
    itab-uposn = '1020'.
    itab-qty   = 50.
    APPEND itab.
    itab-posnr = '1023'.
    itab-uposn = '1020'.
    itab-qty   = 10.
    APPEND itab.
    itab-posnr = '1025'.
    itab-uposn = '1020'.
    itab-qty   = 20.
    APPEND itab.
    itab2[] = itab[].
    *-- assumption is that if UPOSN = 000000, then there is no higher level
    *   item
    LOOP AT itab WHERE uposn = '000000'.
      itab3-posnr = v_posnr = itab-posnr.
      DO.
        LOOP AT itab2 WHERE uposn = v_posnr.
          v_total = v_total + itab2-qty.
        ENDLOOP.
        IF sy-subrc <> 0.
          EXIT.
        ELSE.
          v_posnr = itab2-posnr.
        ENDIF.
    *-- This item does not appear as a higher level item
      ENDDO.
      v_total = v_total + itab-qty.
      itab3-qty = v_total.
      APPEND itab3.
      CLEAR itab3.
    ENDLOOP.
    LOOP AT itab3.
      WRITE:/ itab3-posnr,
              itab3-qty.
    ENDLOOP.

  • Help with Access connecting to a Oracle DB on a Windows 7-64bit workstation

    Hello:
    Here's my configuration:
    OS: Windows 7-64bit
    Oracle DBMS: 11g
    I am trying to connect to a 11g DB from within Access.
    I launched the ODBC Administrator from c:\windows\syswow64 directory as an Administrator (which I undertstand is the 32-bit version). When I tried to set up a new DSN, I encountered two problems:
    1. The TNS Service Name dropdown has a slew of entries with funny characters. However, it did not include my TNS Entry.
    2.  I manually entered my TNSName. It did ask me for the username and password. When I tested the connection, I got an error "ORA-12154"
    Any help to resolve the issue will be much appreciated.
    Venki

    Senthil:
    What should it point to?
    Anyway, I re-installed both the 64-bit Oracle DB and the 32-bit client. There are two sets of TNSNames.Ora, Listener.Ora and SQLNet.ora, one for the 64-bit and one for the 32-bit in their respective folders.
    I have no problem creating an ODBC DSN for the 64-bit version. The link connects fine to the DB
    I have two TNS Listeners defined, one for the 64-bit and one for the 32-bit. While the 64-bit uses Port 1521, I am using Port 1522 for the 32-bit; I also made sure that Listener.ora refers to the same port. But when I use Oracle Net Configuration Assistant to configure Local Net Service Name Configuration to test the Service, it says "TNS:listener does not currently know of the service requested in connect descriptor.
    I did check that both the TNS Listener services are running.
    venki

  • Help with copy list item workflow in SPD 2013

    Hello
    i just can't find anywhere to help me on the web with workflows, I am very new to this.
    I have 2 custom lists.
    First list, 3 columns:
    'date received' (date)
    'student name' (text field)
    'hearing' (yes/no)
    When a new item is added, I enter text for student name and the date. Then I set 'hearing' to yes or no. 
    If yes, I would like a workflow to copy the student name for to the second list.
    In the second list, I have 2 columns (so far):
    'student name' (text field)
    'student number' (text field)
    I just have no idea where to start to do this. Could someone please help?
    Thanks.
    Mel

    Hi ,
    If you mean that you don't want to create duplicate items in list2 when you edit the item in list1 mutiple time, you can try adding another "if" condition contained within your above "if" block to determin if the current
    item "student name" equals to "student name" from list2, if yes then update the that item in list2, if no, then crate a new item in list2.
    Thanks
    Daniel Yang
    TechNet Community Support

  • Help with accessing same keychain data from two apps with bundled appid

    I have two ios apps that I'd like to share the same keychain data.  
    According to the apple docs, this should be possible as long as I've set up the appid with a wild card, which I did from the provisioning portal:
    appid:   bundleID.*
    Then, in the AIR for IOS settings of the flash ide, in the App ID field, I made the two apps be members fo the this appid:  bundleID.app1 and bundleID.app2
    But when I use the EncriptedLocalStore class to access the data from one of the apps that the other app stored, it isn't available.
    But each app, independently, is successfully writing to/reading data from the keychain.
    From what I've read, I'm doing everything right.  But clearly I'm not because it isn't working.

    hi dear
    the link which you have send is really too helpful
    but when i am using the way shown there and as  directed it shows an error that
                 'DataSource - Table not found'
    i think this is because the temprary table we r using is neither user defined nor SBO table.
    so plz tell me some way.

Maybe you are looking for