Issue with Row repeater

Hi All,
I am using a row repeater UI element to display the results of search. Once the results are displayed the user can navigate to a different page in the row repeater. Lets say the user navigates to page 5. Now when the user goes back and modifies the selection criteria, the row repeater still displays page 5. This time there might be no data in page 5. How can we go back to first page.
Thanks,
Pooja

Hello Pooja,
I didnt see any method available in the CL_WD_ROW_REPEATED to reset it. Alternative what I can think of is to reset the view elements. But I'm not sure whether this will have impact on you other UI elements. May be you can try this
1. create a member variable in Attributes tab (MR_VIEW) of type ref to IF_WD_VIEW
2. in the WDDOMODIFYVIEW, write the following code
if first_time = abap_true.
   wd_this->mr_view = view.
endif.
3. in the search method or in the event handler method for search, call reset_view
wd_this->mr_view->reset_view( ).
this method will reset all the UI elements in the view
other alternative would be to place the Row_Repeater in a transparent container. And during search delete the old row repeater and create a new one and bind the data source.
BR, Saravanan

Similar Messages

  • Issue with row id range position in jHeadstart.

    Hi,
    I have a range issue in jdev 10.1.3.1 version. The scenario is like i have an application where i have the records list in a table. Here we have an rangesize as "20" that has been configured in the pageDef file.
    Then when we select an "ShowAll" option from the dropdown list and select an record say "75" and click on the detail button if goes to the detail page for that record. In the detail page i have an command link that takes me back to the original page.
    After comes back to the original page,it is displaying the list of "20" records starting from the "75" to "95". Here i required to show the range of records "60-80"
    with the "75" record selected in the select row radio button.
    Any one please advise how to resolve?
    My command link code in the detail page is below..
    <af:commandLink action="#{bc.goToDestination}"
    text="#{bc.label}" immediate="true"
    onclick="return alertForChanges();">
    <f:actionListener type="oracle.jheadstart.controller.jsf.listener.DoRollbackActionListener"/>
    <af:resetActionListener/>
    </af:commandLink>
    Regards
    Raj.

    Hi Chitra,
    Can you specify some links to implement RangePaging.....We need to implement pagination.If possible can you share the code or specify the steps how you achieved it.
    Thanks

  • Issue with layout / repeat region

    Can someone have a look at this please?
    Basically two versions of a details page based on a recordset
    using two tables and an interlinking lookup table.
    The idea is to display a person's details at the top of the
    page on the left (from the 'Candidates' table), and on the right
    any job 'profiles' for that person (from a 'Profiles' table). The
    page is obviously just showing the details for the selected
    Candidate, but needs to show *all* the associated profiles.
    So in the first page, the details are correct, but because it
    shows the first record from the query.
    So I thought it would be a simple case of adding a repeat
    region to the 'Profiles' row on the right hand side. But when I do
    that, most of the contact details don't display - only the ID and
    firstname fields.
    http://www.searchtechuk.com/database/candidates2.php
    http://www.searchtechuk.com/database/candidates3.php
    Any clues?
    Iain

    there's no urls with your request.
    "Iain71" <[email protected]> wrote in
    message
    news:eaqnht$il4$[email protected]..
    > Can someone have a look at this please?
    >
    > Basically two versions of a details page based on a
    recordset using two
    > tables
    > and an interlinking lookup table.
    >
    > The idea is to display a person's details at the top of
    the page on the
    > left
    > (from the 'Candidates' table), and on the right any job
    'profiles' for
    > that
    > person (from a 'Profiles' table). The page is obviously
    just showing the
    > details for the selected Candidate, but needs to show
    *all* the associated
    > profiles.
    >
    > So in the first page, the details are correct, but
    because it shows the
    > first
    > record from the query.
    >
    > So I thought it would be a simple case of adding a
    repeat region to the
    > 'Profiles' row on the right hand side. But when I do
    that, most of the
    > contact
    > details don't display - only the ID and firstname
    fields.
    >
    > example 1
    >
    > example 2
    >
    > Any clues?
    >
    > Iain
    >
    >
    >

  • Issue with row/column text lengths in report painter

    Hi Gurus,
    I have created a report painter report with formatting of the row/column length text as medium, but for one FS item/GL Account the report when executed still picks up only the short text length. I am not sure how this can be resolved.
    Any ideas is appreciated.
    Regards
    Satish

    Applied OSS Note 360096 and it worked. Thanks for all your help.

  • Issue with row selection in VO

    I have the following piece of code in my method,
    OAViewObjectImpl myVO = this.getMyVO();
    Row myVOCurrentRow = myVO.getCurrentRow();
    The corresponding VO is getting executed and I have the row in my database.
    Now the issue is, sometimes myVO.getCurrentRow() returns me the correct row instance while sometimes it is returning me null.
    when I do myVO.first() it always returns me the correct row but I am not supposed to change this piece of code.
    WHat can be the issue?
    Why the VO row pointer is behaving weirdly ?

    Hi Timo,
    Which jdev version? : 11.1.1.6.0
    Where does your code reside? : Dint get it
    Under which circumstances is the code called? : I am running LRGs to test this method. I am dumping the data into db. To get data in this VO, I am executing it's parent VO which should automatically run this child VO. The regular code is working from UI but while testing through LRGs, or say while calling this method from back-end, it is causing issue.
    Which technologies do you use in general for the application? : ADF Framework.
    From your statement I don't see a 'weirdly' behavior. A VO doesn't have a current row at all points of time. This depends on some facts like if the VO is used on a page and you are just rendering the page. In this case the framework sets the first row as current row. If the VO is not used in the page there is no current row when you execute the query. To set the current roe, you have to navigate the VO (e.g. call first() on it). -->
    I think this is the issue, because I am running this application from back-end. What else can I do before callin gthis method to make sure that this does not happen. My LRG code doesnot allow me to initiate this VO separately. I can only call this method after.
    Thanks,
    Dish
    Edited by: Dish on Mar 20, 2012 12:09 AM

  • Issue with layout / repeat region part 2..

    Seems I haven't cracked this just yet - basically have a
    details page that is split into three - with a candidate's details
    at the top left, their work profile at the top right, with a long
    CV text appearing below both.
    All the fields are from the Candidates table, except the
    profiles - so the profiles need to be a repeat region to list them
    all.
    I can't for the life of me get the layout to work as I'd like
    - it's as tho' anything appearing afer the repeat region won't
    display.
    See here :
    link
    Below the CV header the CV field should appear - as in :
    <tr>
    <td colspan="2" valign="top"
    class="labelcell">CV</td>
    </tr>
    <tr>
    <td class="profilecell"><?php echo
    $row_Candidates['CV']; ?></td>
    </tr>
    But when you view source, the <?php echo
    $row_Candidates['CV']; ?> is AWOL, and appear as :
    <tr>
    <td colspan="2" valign="top"
    class="labelcell">CV</td>
    </tr>
    <tr>
    <td class="profilecell"></td>
    </tr>
    Anyone spot what's up here?
    Just as I thought I had this page's layout done and dusted,
    as usual, there had to be something not quite right!
    Iain

    Iain -
    I'm gonna have to take a look at this first thing in the
    monring man, sorry.
    I had a problem that got me all tied up.
    If you want, email me at crash blat cdcdigital dotcom and
    i'll answer in
    email for a bit quicker response.
    "Iain71" <[email protected]> wrote in
    message
    news:[email protected]...
    >
    quote:
    what does your code look like? what languages are you using?
    >
    > I'm using PHP/mySQL
    >
    > This is the current PHP at the top of the page :
    >
    > <?php
    require_once('../Connections/connSearchTechUK.php'); ?>
    > <?php
    > $maxRows_Candidates = 10;
    > $pageNum_Candidates = 0;
    > if (isset($_GET['pageNum_Candidates'])) {
    > $pageNum_Candidates = $_GET['pageNum_Candidates'];
    > }
    > $startRow_Candidates = $pageNum_Candidates *
    $maxRows_Candidates;
    >
    > $colname_Candidates = "1";
    > if (isset($_GET['CandidateID'])) {
    > $colname_Candidates = (get_magic_quotes_gpc()) ?
    $_GET['CandidateID'] :
    > addslashes($_GET['CandidateID']);
    > }
    > mysql_select_db($database_connSearchTechUK,
    $connSearchTechUK);
    > $query_Candidates = sprintf("SELECT * FROM Profiles
    INNER JOIN (Candidates
    > INNER JOIN CandidateProfiles ON Candidates.CandidateID =
    > CandidateProfiles.CandidateID) ON Profiles.ProfileID =
    > CandidateProfiles.ProfileID WHERE Candidates.CandidateID
    = %s",
    > $colname_Candidates);
    > $query_limit_Candidates = sprintf("%s LIMIT %d, %d",
    $query_Candidates,
    > $startRow_Candidates, $maxRows_Candidates);
    > $Candidates = mysql_query($query_limit_Candidates,
    $connSearchTechUK) or
    > die(mysql_error());
    > $row_Candidates = mysql_fetch_assoc($Candidates);
    >
    > if (isset($_GET['totalRows_Candidates'])) {
    > $totalRows_Candidates = $_GET['totalRows_Candidates'];
    > } else {
    > $all_Candidates = mysql_query($query_Candidates);
    > $totalRows_Candidates = mysql_num_rows($all_Candidates);
    > }
    > $totalPages_Candidates =
    > ceil($totalRows_Candidates/$maxRows_Candidates)-1;
    > ?>
    >
    > The data is being displayed using PHP echo lines, eg :
    >
    > <?php echo $row_Candidates['FirstName']; ?>
    >
    >
    quote:
    You said all fields were created from the Candidates table -
    so that
    > means
    > the left and bottom sections, yet?
    >
    > The profiles section is fed by another table, yes?
    What's your SQL look
    > like for this? Are you searching by userID, by
    userClass,. how are you
    > determininig what profieles are assocaited with what
    Person?
    >
    > Yup - basically a Candidates table, and a Profiles
    table, looking up on
    > CandidateID - the SQL looks like :
    >
    > SELECT *
    > FROM Profiles INNER JOIN (Candidates INNER JOIN
    CandidateProfiles ON
    > Candidates.CandidateID = CandidateProfiles.CandidateID)
    ON
    > Profiles.ProfileID =
    > CandidateProfiles.ProfileID
    > WHERE Candidates.CandidateID = colname
    >
    >
    quote:
    What does your recordset produce when you test it?
    >
    > The recordset looks fine - in the code 'FirstName'
    displays correctly near
    > the
    > top amongst the main details, but it should also appear
    immediately to the
    > left
    > of "'s CV' - the code in the page is exactly the same
    (as it should be, as
    > the
    > field is just dragged into place from the bindings
    panel) as :
    >
    > <tr>
    > <td colspan="2" valign="top"
    class="labelcell"><?php echo
    > $row_Candidates['FirstName']; ?>'s CV</td>
    > </tr>
    >
    > It (and the 'CV' field) display fine when there's no
    repeat region on the
    > 'Profile' field, but as soon as I add the repeat region,
    the go AWOL.
    >
    > Iain
    >

  • Repeat header's column in a table with row height that greater then 200px

    == Issue
    ==
    I have another kind of problem with Firefox
    == Description
    ==
    I develop a website and encounter some problem about web page printing. I try to repeat header's column in a table with row's height that greater than or equal to 198px, but it doesn't work. Another size that lower than 198px works fine. If somebody has seen this issue before and know a solution, please help me. Thanks in advance.
    == This happened
    ==
    Every time Firefox opened
    == Firefox version
    ==
    3.6.6
    == Operating system
    ==
    Windows XP
    == User Agent
    ==
    Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.9.2.6) Gecko/20100625 Firefox/3.6.6
    == Plugins installed
    ==
    *-6.0.12.1739
    *RealPlayer(tm) LiveConnect-Enabled Plug-In
    *PDF-XChange Viewer Netscape Gecko Plugin
    *Default Plug-in
    *Shockwave Flash 8.0 r22
    *Adobe Shockwave for Director Netscape plug-in, version 11.0
    *3.0.40624.0
    *Office Live Update v1.3
    *Windows Presentation Foundation (WPF) plug-in for Mozilla browsers
    *Next Generation Java Plug-in 1.6.0_18 for Mozilla browsers
    *Npdsplay dll
    *DRM Store Netscape Plugin
    *DRM Netscape Network Object

    Try posting at the Web Development / Standards Evangelism forum at MozillaZine. The helpers over there are more knowledgeable about web page development issues with Firefox.
    [http://forums.mozillazine.org/viewforum.php?f=25]
    You'll need to register and login to be able to post in that forum.

  • CSV creation through PLSQL having issue with some rows of data

    Hi,
    having issue with in some rows of data which is created by the PLSQL code.
    Issue description
    - 50000 rows of data in my CSV
    -around 20 fileds in a row
    - in some the row (in 50000 rows) some fields (20 rows of data) are returning empty as result but actually my query returns data for these fields
    Hope the issue is clear
    Code given below
    CREATE OR REPLACE FUNCTION TSC_OM_AUDIT(ERR_DESC IN OUT VARCHAR2,
    WEB_FILE_URL IN OUT VARCHAR2 ) RETURN BOOLEAN IS
    --Variable Declaration
    L_buff_line VARCHAR2(500);
    L_hdr_str VARCHAR2(32700);
    L_selling_UOM VARCHAR2(5);
    L_prim_bar_code VARCHAR2(30);
    L_status_pri_bar VARCHAR2(2);
    L_multpl_bar_exist VARCHAR2(2);
    L_multpl_prim_bar_exist VARCHAR2(2);
    L_prim_simp_pack VARCHAR2(30);
    L_staus_prim_simp_pack VARCHAR2(2);
    L_mupl_prim_pack_exist VARCHAR2(2);
    L_prim_supp_prim_simpl_pack VARCHAR2(15);
    L_prim_sim_supp_to_TPNB VARCHAR2(2);
    L_sel1 VARCHAR2(200);
    L_sel2 VARCHAR2(200);
    L_sel3 VARCHAR2(200);
    L_item_till_desc VARCHAR2(200);
    L_lengh1 VARCHAR2(200);
    L_width1 VARCHAR2(200);
    L_height1 VARCHAR2(200);
    L_lengh2 VARCHAR2(200);
    L_width2 VARCHAR2(200);
    L_height2 VARCHAR2(200);
    L_lengh3 VARCHAR2(200);
    L_width3 VARCHAR2(200);
    L_height3 VARCHAR2(200);
    --Item type
    CURSOR C_ITEM is
    select im.item L_item,
    im.status L_status,
    im.item_desc L_item_desc,
    'Regular' L_item_type,
    im.dept L_dept,
    im.class L_class,
    im.subclass L_subclass,
    'N/A' L_CW_item_order_type,
    'N/A' L_CW_item_sale_type,
    im.standard_uom L_standard_uom,
    NULL L_selling_uom,
    im.tsl_base_item L_tsl_base_item
    from item_master im
    where im.item_number_type='TPNB'
    -- and im.last_update_id = 'DATALOAD'
    -- and im.create_datetime>=to_timestamp('2010-11-05 10:57:47','YYYY-MM-DD HH24:MI:SS')
    and im.sellable_ind='Y'
    and im.orderable_ind='Y'
    and im.inventory_ind='Y'
    and im.item_xform_ind='N'
    and im.catch_weight_ind='N'
    and rownum<10;
    --order by im.item asc;
    Cursor C_Selling_UOM (tpnb varchar2) is
    select selling_uom
    from rpm_item_zone_price
    where item = tpnb;
    Cursor C_prim_bar (tpnb varchar2) is
    select item,
    status
    from item_master iem
    where item_parent = tpnb
    and iem.primary_ref_item_ind ='Y';
    Cursor C_multi_bar_exit (tpnb varchar2) is
    select count(*)
    from item_master iem
    where item_parent = tpnb;
    Cursor C_multpl_prim_bar_exist (tpnb varchar2) is
    select count(*)
    from item_master
    where item_parent = tpnb
    and primary_ref_item_ind ='Y';
    Cursor C_staus_prim_simp_pack (tpnb varchar2) is
    select piem.pack_no,
    iem.status
    from item_master iem,
    packitem piem
    where piem.item = tpnb
    and piem.pack_no = iem.item
    and iem.tsl_prim_pack_ind ='Y';
    Cursor C_multpl_prim_pack_exist (tpnb varchar2) is
    select count(*)
    from item_master iem,
    packitem piem
    where piem.item = tpnb
    and piem.pack_no = iem.item
    and iem.tsl_prim_pack_ind ='Y';
    Cursor C_prim_supp_prim_simpl_pack (tpnd varchar2) is
    select supplier
    from item_supplier
    where item = tpnd
    and primary_supp_ind= 'Y';
    Cursor C_prim_sim_supp_to_TPNB (tpnb varchar2,suppl number) is
    select 'Y'
    from item_supplier
    where item = tpnb
    and supplier = suppl;
    Cursor C_item_descretion_SEL (tpnb varchar2) is
    select sel_desc_1,
    sel_desc_2,
    sel_desc_3
    from tsl_itemdesc_sel
    where item =tpnb;
    Cursor C_item_till_descretion (tpnb varchar2) is
    select till_desc
    from tsl_itemdesc_till
    where item=tpnb;
    Cursor C_EA (tpnb varchar2,suppl number) is
    select length,
    width,
    height
    from item_supp_country_dim
    where item= tpnb
    and supplier = suppl
    and dim_object='EA';
    Cursor C_CS (tpnb varchar2,suppl number) is
    select length,
    width,
    height
    from item_supp_country_dim
    where item= tpnb
    and supplier = suppl
    and dim_object='TYUNIT';
    Cursor C_TRAY (tpnb varchar2,suppl number) is
    select length,
    width,
    height
    from item_supp_country_dim
    where item= tpnb
    and supplier = suppl
    and dim_object='TRAY';
    BEGIN
    --INITIAL
    WEB_FILE_URL := TSC_RPT_GRS_EXL_GEN.WEB_URL||TSC_RPT_GRS_EXL_GEN.OPEN_FILE;
    TSC_RPT_GRS_EXL_GEN.put_line('Poland Production Cutover');
    TSC_RPT_GRS_EXL_GEN.skip_line;
    l_hdr_str := 'L_item_TPNB,L_status,L_item_desc,L_item_type,L_section,L_class,L_subclass,L_cw_order_type,L_cw_sale_type,L_std_UOM,L_selling_UOM,'||
    'L_base_item,L_prim_bar_code,L_status_pri_bar,L_multpl_bar_exist,L_multpl_prim_bar_exist,L_prim_simple_pack,L_staus_prim_simp_pack,L_mupl_prim_pack_exist,'||
    'L_prim_supp_prim_simpl_pack,L_prim_sim_supp_to_TPNB,L_sel1,L_sel2,L_sel3,L_item_till_desc,L_lengh1,L_width1,L_height1,L_lengh2,L_width2,L_height2,L_lengh3,L_width3,L_height3';
    l_hdr_str := TSC_RPT_GRS_EXL_GEN.CONVERT_SEPARATOR(l_hdr_str);
    TSC_RPT_GRS_EXL_GEN.put_line(l_hdr_str);
    for rec_c_item in C_ITEM
    LOOP
    open C_Selling_UOM (rec_c_item.L_item);
    fetch C_Selling_UOM into L_selling_UOM;
    close C_Selling_UOM;
    open C_prim_bar (rec_c_item.L_item);
    fetch C_prim_bar into L_prim_bar_code,L_status_pri_bar;
    close C_prim_bar;
    open C_multi_bar_exit (rec_c_item.L_item);
    fetch C_multi_bar_exit into L_multpl_bar_exist;
    close C_multi_bar_exit;
    IF to_number(trim(L_multpl_bar_exist)) > 1 THEN
    L_multpl_bar_exist:='Y';
    ELSE
    L_multpl_bar_exist:='N';
    END IF;
    open C_multpl_prim_bar_exist (rec_c_item.L_item);
    fetch C_multpl_prim_bar_exist into L_multpl_prim_bar_exist;
    close C_multpl_prim_bar_exist;
    IF to_number(trim(L_multpl_prim_bar_exist)) > 1 THEN
    L_multpl_prim_bar_exist:='Y';
    ELSE
    L_multpl_prim_bar_exist:='N';
    END IF;
    open C_staus_prim_simp_pack (rec_c_item.L_item);
    fetch C_staus_prim_simp_pack into L_prim_simp_pack,L_staus_prim_simp_pack;
    close C_staus_prim_simp_pack;
    open C_multpl_prim_pack_exist (rec_c_item.L_item);
    fetch C_multpl_prim_pack_exist into L_mupl_prim_pack_exist;
    close C_multpl_prim_pack_exist ;
    IF to_number(trim(L_mupl_prim_pack_exist)) > 1 THEN
    L_mupl_prim_pack_exist:='Y';
    ELSE
    L_mupl_prim_pack_exist:='N';
    END IF;
    open C_prim_supp_prim_simpl_pack (trim(L_prim_simp_pack));
    fetch C_prim_supp_prim_simpl_pack into L_prim_supp_prim_simpl_pack;
    close C_prim_supp_prim_simpl_pack ;
    open C_prim_sim_supp_to_TPNB (rec_c_item.L_item,to_number(trim(L_prim_supp_prim_simpl_pack)));
    fetch C_prim_sim_supp_to_TPNB into L_prim_sim_supp_to_TPNB;
    close C_prim_sim_supp_to_TPNB ;
    open C_item_descretion_SEL (rec_c_item.L_item);
    fetch C_item_descretion_SEL into L_sel1,L_sel2,L_sel3;
    close C_item_descretion_SEL ;
    open C_item_till_descretion (rec_c_item.L_item);
    fetch C_item_till_descretion into L_item_till_desc;
    close C_item_till_descretion ;
    open C_EA (rec_c_item.L_item,to_number(trim(L_prim_supp_prim_simpl_pack)));
    fetch C_EA into L_lengh1,L_width1,L_height1;
    close C_EA ;
    open C_CS (rec_c_item.L_item,to_number(trim(L_prim_supp_prim_simpl_pack)));
    fetch C_CS into L_lengh2,L_width2,L_height2;
    close C_CS ;
    open C_TRAY (rec_c_item.L_item,to_number(trim(L_prim_supp_prim_simpl_pack)));
    fetch C_TRAY into L_lengh3,L_width3,L_height3;
    close C_TRAY ;
    L_buff_line := TSC_RPT_GRS_EXL_GEN.PAD_COMMA(to_char(rec_c_item.L_item), TRUE)||
    TSC_RPT_GRS_EXL_GEN.PAD_COMMA(to_char(rec_c_item.L_status))||
    TSC_RPT_GRS_EXL_GEN.PAD_COMMA(to_char(rec_c_item.L_item_desc))||
    TSC_RPT_GRS_EXL_GEN.PAD_COMMA(to_char(rec_c_item.L_item_type))||
    TSC_RPT_GRS_EXL_GEN.PAD_COMMA(to_char(rec_c_item.L_dept))||
    TSC_RPT_GRS_EXL_GEN.PAD_COMMA(to_char(rec_c_item.L_class))||
    TSC_RPT_GRS_EXL_GEN.PAD_COMMA(to_char(rec_c_item.L_subclass))||
    TSC_RPT_GRS_EXL_GEN.PAD_COMMA(to_char(rec_c_item.L_CW_item_order_type))||
    TSC_RPT_GRS_EXL_GEN.PAD_COMMA(to_char(rec_c_item.L_CW_item_sale_type))||
    TSC_RPT_GRS_EXL_GEN.PAD_COMMA(to_char(rec_c_item.L_standard_uom))||
    TSC_RPT_GRS_EXL_GEN.PAD_COMMA(to_char(trim(L_selling_UOM)))||
    TSC_RPT_GRS_EXL_GEN.PAD_COMMA(to_char(rec_c_item.L_tsl_base_item))||
    TSC_RPT_GRS_EXL_GEN.PAD_COMMA(to_char(trim(L_prim_bar_code)))||
    TSC_RPT_GRS_EXL_GEN.PAD_COMMA(to_char(trim(L_status_pri_bar)))||
    TSC_RPT_GRS_EXL_GEN.PAD_COMMA(to_char(trim(L_multpl_bar_exist)))||
    TSC_RPT_GRS_EXL_GEN.PAD_COMMA(to_char(trim(L_multpl_prim_bar_exist)))||
    TSC_RPT_GRS_EXL_GEN.PAD_COMMA(to_char(trim(L_prim_simp_pack)))||
    TSC_RPT_GRS_EXL_GEN.PAD_COMMA(to_char(trim(L_staus_prim_simp_pack)))||
    TSC_RPT_GRS_EXL_GEN.PAD_COMMA(to_char(trim(L_mupl_prim_pack_exist)))||
    TSC_RPT_GRS_EXL_GEN.PAD_COMMA(to_char(trim(L_prim_supp_prim_simpl_pack)))||
    TSC_RPT_GRS_EXL_GEN.PAD_COMMA(to_char(trim(L_prim_sim_supp_to_TPNB)))||
    TSC_RPT_GRS_EXL_GEN.PAD_COMMA(to_char(trim(L_sel1)))||
    TSC_RPT_GRS_EXL_GEN.PAD_COMMA(to_char(trim(L_sel2)))||
    TSC_RPT_GRS_EXL_GEN.PAD_COMMA(to_char(trim(L_sel3)))||
    TSC_RPT_GRS_EXL_GEN.PAD_COMMA(to_char(trim(L_item_till_desc)))||
    TSC_RPT_GRS_EXL_GEN.PAD_COMMA(to_char(trim(L_lengh1)))||
    TSC_RPT_GRS_EXL_GEN.PAD_COMMA(to_char(trim(L_width1)))||
    TSC_RPT_GRS_EXL_GEN.PAD_COMMA(to_char(trim(L_height1)))||
    TSC_RPT_GRS_EXL_GEN.PAD_COMMA(to_char(trim(L_lengh2)))||
    TSC_RPT_GRS_EXL_GEN.PAD_COMMA(to_char(trim(L_width2)))||
    TSC_RPT_GRS_EXL_GEN.PAD_COMMA(to_char(trim(L_height2)))||
    TSC_RPT_GRS_EXL_GEN.PAD_COMMA(to_char(trim(L_lengh3)))||
    TSC_RPT_GRS_EXL_GEN.PAD_COMMA(to_char(trim(L_width3)))||
    TSC_RPT_GRS_EXL_GEN.PAD_COMMA(to_char(trim(L_height3)));
    TSC_RPT_GRS_EXL_GEN.PUT_LINE(L_buff_line);
    L_selling_UOM :=NULL;
    L_prim_bar_code :=NULL;
    L_status_pri_bar :=NULL;
    L_multpl_bar_exist :=NULL;
    L_multpl_prim_bar_exist :=NULL;
    L_prim_simp_pack :=NULL;
    L_staus_prim_simp_pack :=NULL;
    L_mupl_prim_pack_exist :=NULL;
    L_prim_supp_prim_simpl_pack :=NULL;
    L_prim_sim_supp_to_TPNB :=NULL;
    L_sel1 :=NULL;
    L_sel2 :=NULL;
    L_sel3 :=NULL;
    L_item_till_desc :=NULL;
    L_lengh1 :=NULL;
    L_width1 :=NULL;
    L_height1 :=NULL;
    L_lengh2 :=NULL;
    L_width2 :=NULL;
    L_height2 :=NULL;
    L_lengh3 :=NULL;
    L_width3 :=NULL;
    L_height3 :=NULL;
    END LOOP;
    TSC_RPT_GRS_EXL_GEN.close_file;
    return TRUE;
    EXCEPTION WHEN OTHERS THEN
    ERR_DESC := '['||SQLCODE||']-'||SUBSTR(SQLERRM,1,200);
    return FALSE;
    END TSC_OM_AUDIT;
    Please suggest something on this
    Regards,
    Shamed H

    Hi Shamid,
    This forum is only for questions regarding the SQL Developer tool. Please post in Forum Home > Database > SQL and PL/SQL:
    PL/SQL
    Regards,
    Gary
    SQL Developer Team

  • I am still having issues with the TOC. I finally got several chapters and sections to show different pictures in the TOC, but have spent hours trying to figure out how to repeat it. This should be so simple. Is there an update? Please help us Apple.

    I am still having issues with the TOC pictures. I got several chapter/section photos to show up, but can't seem to repeat this success. It is some mystery that happened during a time that I had practically given up. This should be such a simple thing. Drag and place a picture into the placeholder and it shows up in the TOC....right? Help, help help! want to get this thing done and it's taken two days of work just get some of the photos to show up. I am going to have to publish this ibook with no photos in several sections.....why can't this be simple? I have even had someone else spend hours trying to figure this out. This software is such a GREAT idea....come on...help with this little part of it.

    I had the same problem myself. I got to the point where I couldn't replace the photo, of a new chapter, in the TOC. What I did was to duplicate an existing chapter that was working and was able to replace it's TOC's photo. I also found that if you try different areas of the photo you can sometimes get it to replace correctly. For example, instead of dragging the new photo to the middle of an existing photo, try dragging it to the right top corner.

  • Issue with empty value of LOV of first row after clicking on add row button

    JDeveloper 11.1.14
    I have a page with table-form layout.
    In the form I have two detail tables on the same page (tabbed).
    I have an issue with using model-choicelist LOV's in the detail tables.
    I am able to add a new row in the detail table, select a value from the model-choiceList LOV (which is required) and save the new row.
    After adding another row in this table the value of the model-choiceList LOV in the previous row is suddenly empty on the screen. It is not empty in the database,
    I have checked it in the datbase. Only the value of the LOV of the first row on the page is being cleared after clicking on the add row button.
    After saving the new row I get the following error on the screen:
    Error: a selection is required. --> first row
    Does anyone have a suggestion how to solve this issue?

    After adding another row in this table the value of the model-choiceList LOV in the previous row is suddenly empty on the screen. It is not empty in the database, Is the complete LOV blank or only the selected value .. can you try putting autoSubmit=true in the LOV and try ? Also check if you have any partialTriggers on the LOV from the add button ?

  • Repeated issues with Adobe Flash and Facebook Firefox 6

    I have had repeated ongoing issues since upgrading to Firefox 6. Adobe Flash crashes repeatedly, even after installing the newest. In particular having a ton of issues with Facebook. It all works fine in IE, so have narrowed it down.
    I think I would just like to go back to Firefox 5. Is that available somewhere?

    Anyone able to help please?
    Thanks.

  • Anyone else having repeated wifi connectivity issues with the OSX version 10.8.5?

    I just updated the software on my iMac to OS X version 10.8.5. Now I am having repeated connectivity issues with the wifi in my house. This is the only device that is having these issues. My phone, ipad and tv are not having any problems at all.
    It happened immediately following the update. I was sending emails and browsing before the update without a problem.
    from apple:

    I had a message like that last week - only it asked what browser I would be using - I just quit safari - purges caches etc - and at that time noticed I was getting RSS feeds through PUBSUB - tracking them down to the top sites view I never use - I deleted all of the top sites (most of which I don't go into so it must have been a preset) that included MSN and Google - I don't use google so that was pointless.  (deleting a top site means you are blocking it from that page)    Have not had the message since so it must have had something to do with top sites activity.
    Just a note:  Did see somewhere probably BBC tech - that Google was going to stop supporting older web browsers.

  • Issue with Repeat Contact Info in Edit Screen

    Hello! 
    I recently had to get a replacement for my Droid because the home keys stopped working.    My replacement Droid was acting buggy and the screen would black out anytime I'd check voicemails and sometimes after placing a phone call.  I called customer service today and the tech support guy had me do a factory data reset on the phone.  Before I did it, I was instructed to export my contacts to my SD card, which I did.   The screen issue seems to be resolved, but I have an issue with my contacts now.  If I go into a contact and hit "edit contact", it will display three to four Google contacts for one person!  Also, if I try to make a shortcut to direct dial a contact, it has the same contact and phone number listed 3-4 times for every phone number listed.  (For example, my parents home phone is listed three times and so is their cell phone number.)  Anyone know how to get rid of the repeat contact info?  I have tried resetting the phone again, as well as separating contacts individually to no avail.  Any help or advice is appreciated!

    Here are the steps for deleting duplicate contacts.  HTH!
    From the home screen, touch the applications tab (located on the bottom of the screen).
    Touch Contacts.
    Touch the Contacts tab.
    Touch Menu.
    Touch the desired contact.
    Touch Menu.
    Touch Delete contact.
    Touch OK.

  • SPEL in Extended VO - Issue with Multiple Rows

    Hi,
    I have extended a seeded VO by adding a new attribute *'Course_Flag'* with attribute type 'Boolean' and Query Column type 'VARCHAR2' and i wa successfully able to personalize and view the data of the new attribute *'Course_Flag'* in the page as ('true' / 'false') aacording to the query where clause.
    Now after adding a new image with SPEL property as *${oa.LearnerCatalogCoursesVO.Course_Flag}* it will have an issue with multiple items.
    I mean the SPEL will take the first row value 'true' / 'false' and will be corrected rendered according to the value of the first row and ignore other rows values.
    Example: if the *'Course_Flag'* value of the first row is 'true' then all the images will be rendered and if the *'Course_Flag'* value of the first row is 'false' then all the images will be NOT rendered.
    Please advise if I've missed any step.
    Thanks in advance to all.
    Regards....Ashraf

    Dear Kali,
    I have added a new function to the seeded VO SQL +('XXARMS_TRG_EVALUATION_PKG.XX_COURSE_GOT_EVAL')+,
    SQL Statment :-
    select av.activity_version_id, avtl.version_name, av.language_id, av.start_date,
    av.end_date, av.version_code, i.category_usage_id, upper(avtl.version_name) AS SORTVERSIONNAME,
    XXARMS_TRG_EVALUATION_PKG.XX_COURSE_GOT_EVAL(i.category_usage_id, av.activity_version_id) Course_Flag from
    ota_act_cat_inclusions i, ota_activity_versions av, ota_activity_versions_tl avtl
    where i.category_usage_id = :1 and i.activity_version_id = av.activity_version_id and
    nvl(av.end_date, sysdate + 1) >= trunc(sysdate) and
    av.business_group_id = ota_general.get_business_group_id and av.activity_version_id = avtl.activity_version_id and
    avtl.language = userenv('LANG') and
    ota_learner_access_util.learner_has_access_to_course(:2,:3,avtl.activity_version_id) = 'Y'
    And it is retriving the correct data for each row and i did not write any code in the RowImpl.
    Thanks for your help in advance.
    Regards...Ashraf

  • Issues with Advance Table Add Row New Row not work in some scenarios.

    Hi,
    Wondering if there's any issue with Advanced Tables where it does not create any rows. I don't know if anyone tried this or not. I have one OA Page with Advanced Table and a button that when clicked open a new OA Page in a POP-UP Window. The pop-up page conatins one textbox where u enter a data and this gets saved in one of the VO's transient attribute. Now on the ase page if you don't click a button to open a pop-up page you can Add New Rows in the Advanced Table by clicking Add Row Button. But as soon as you open a popup window and close it Add New Rows button doesn't work and is not creating any new rows. Basically page stops working. Both the POP-UP and the base page share the same AM but have different controllers.
    POP-UP page is a custom page that I open giving the Destination URI value in the button item and target frame _blank.
    I even tried creating rows programmatically for Advance Table but this too doesn't work once u open a pop-up. Also I have used pageContext.putTransactionValue in the pop-up page and am checking and removing this in the base page.
    Any help is appreciated.
    Thanks

    anyone

Maybe you are looking for