Using Row Range in GetCell

Hey all,
I'm trying to reference a row value in Grid1 from a text column in Grid2. The referenced row in Grid1 is expandable, so I'm using a range, but I'm getting
Error: Invalid arguments
Here's what I have
<<GetCell("Grid1", row[1(2:10)], Cur, Cur)>>
Is my syntax wrong?
Eric

Thanks for your reply. My example should have referenced Grid2, but the concept is the same. Grid1 and Grid2 have identical row/column dimensions and member selections. The only difference is that they have different gridPOV values. So, yes, the number of rows and their expansions should be identical. This may be wishful thinking, but my idea is to call that text function as a "Replace" in one or more Grid1 cells, but referencing Grid2 data like this
GetCell("Grid2", row[Cur(2:10)], Cur, Cur)
The desire here is to basically have one grid, Grid1, that displays rows from 2 different POVs, Grid2 would be hidden.
Eric

Similar Messages

  • Row ranges  1-15, 16-30 in select list has refresh problem

    Hi, Gurus:
    I use APEX 4.1.1 with Oracle 11GR2. I have a question that was discussed before here, but I still have trouble to understand it. I have some reports that cannot refresh content when I choose another page of the same report. I used row ranges 1-15, 16-30 in select list with pagination. It did not work. However, I used the exactly same report page settings for some other queries producing exactly same columns, except the query logic is slightly different thus number of rows in report are different. row ranges 1-15, 16-30 in select list with pagination works well in other reports.
    I came across discussions and set partial page refresh to no for those report pages with refreshment problem. This time it worked well, but it was extremely slow as my query is very slow. I was wondering why some of report do not need to set partial page refresh to no and have no problem to refresh, but some of reports have problem to refresh (I even copied the report page without problem for those reports with problem and just change queries.)? Is there any other way to refresh these reports quicker other than SQL tuing?
    Please help me.
    Sam
    Edited by: lxiscas on Dec 31, 2012 11:36 AM
    Edited by: lxiscas on Dec 31, 2012 11:49 AM

    I just found that it is due cache page settings, I should set it to no as a developer

  • Last cell in range containing data without using ROW()

    Hi,
    I am trying to locate the last cell with data in a range. For example, in this sample range, A1:B4 ...
    ___A___B
    1 6/20 238
    2 6/22
    3 6/24 241
    4 6/25
    I need to return value of 241 and also return the date of 6/24. I initially used this formula in Excel, which worked great to find this information:
    ={(MAX((B$1:B$4<>"")*ROW(B$1:B$4)))-ROW(B$1:B$4)+1}
    However, I then discovered that Xcelsius does not support ROW(). Does anyone have an alternative to using ROW() in this scenario? Thanks!

    Hi,
    I am trying to locate the last cell with data in a range. For example, in this sample range, A1:B4 ...
    ___A___B
    1 6/20 238
    2 6/22
    3 6/24 241
    4 6/25
    I need to return value of 241 and also return the date of 6/24. I initially used this formula in Excel, which worked great to find this information:
    ={(MAX((B$1:B$4<>"")*ROW(B$1:B$4)))-ROW(B$1:B$4)+1}
    However, I then discovered that Xcelsius does not support ROW(). Does anyone have an alternative to using ROW() in this scenario? Thanks!

  • OpenCv ,Hls ,Video Processing :How to use hls::Range() to set ROI(Region of Interest)?Help!!!

    Hi,
        I have one problem,I want to use hls::Range() to set ROI(Region of Interest),and  I could not how to use  it corretly.Anyone can help me ? And give me one example. 
    1.  Functions are defined as follows:
    hls::Range
    Synopsis
    template<int ROWS, int COLS, int SRC_T, int DST_T, typename P_T>
    void hls::Range (
    hls::Mat<ROWS, COLS, SRC_T>& src,
    hls::Mat<ROWS, COLS, DST_T>& dst,
    P_T start,
    P_T end);
    Parameter                                                  Description
    src                                                              Input single-channel image
    dst                                                              Output single-channel image
    start                                                            Left boundary value of the range
    end                                                             Right boundary value of the range
    Description
    • Sets all value in image src by the following rule and return the result as image dst.
    • Image data must be stored in src.
    • The image data of dst must be empty before invoking.
    • Invoking this function consumes the data in src and fills the image data of dst.
    • src and dst must have the same size and be single-channel images.
    OpenCV Reference
    • cvRange
    2.I use it  as follow,but it can not work corretly.
    #define MAX_WIDTH 640
    #define MAX_HEIGHT 480
    typedef hls::stream<ap_axiu<32,1,1,1> > AXI_STREAM;
    typedef hls::Scalar<3, unsigned char> RGB_PIXEL;
    typedef hls::Mat<MAX_HEIGHT, MAX_WIDTH, HLS_8UC3> RGB_IMAGE;
    #if 1
    void image_filter(AXI_STREAM& INPUT_STREAM, AXI_STREAM& OUTPUT_STREAM, int rows, int cols) {
    //Create AXI streaming interfaces for the core
    #pragma HLS INTERFACE axis port=INPUT_STREAM
    #pragma HLS INTERFACE axis port=OUTPUT_STREAM
    #pragma HLS RESOURCE core=AXI_SLAVE variable=rows metadata="-bus_bundle CONTROL_BUS"
    #pragma HLS RESOURCE core=AXI_SLAVE variable=cols metadata="-bus_bundle CONTROL_BUS"
    #pragma HLS RESOURCE core=AXI_SLAVE variable=return metadata="-bus_bundle CONTROL_BUS"
    #pragma HLS INTERFACE ap_stable port=rows
    #pragma HLS INTERFACE ap_stable port=cols
    RGB_IMAGE img_0(rows, cols);   
    hls::Mat<MAX_HEIGHT,MAX_WIDTH,HLS_8UC1> gray(rows,cols);
    hls::Mat<MAX_HEIGHT,MAX_WIDTH,HLS_8UC1> range_1(rows,cols);
    #pragma HLS dataflow
     hls::AXIvideo2Mat(INPUT_STREAM, img_0);
     hls::CvtColor<HLS_RGB2GRAY>(img_0,gray);;
    hls::Range(gray,range_1,50,600);       //     I use hls::Range() like it , is it  right?Help!!!
    hls::CvtColor<HLS_GRAY2RGB>(range_1,img_1);
    hls::Mat2AXIvideo(img_1, OUTPUT_STREAM);
    #endif

    Anyone could help me?

  • Opencv hls , how to use hls::Range()?

    Hello ,
          I have one problem.I use hls::Range() to set ROI(Region of interest).But, I cound not let it work correctly.Can anyone help me? Can you give me an example? Thanks !!!

    Hi, I use the hls::Range() like it. #if 1 void image_filter(AXI_STREAM& INPUT_STREAM, AXI_STREAM& OUTPUT_STREAM, int rows, int cols) {
    //Create AXI streaming interfaces for the core
    #pragma HLS INTERFACE axis port=INPUT_STREAM
    #pragma HLS INTERFACE axis port=OUTPUT_STREAM
    #pragma HLS RESOURCE core=AXI_SLAVE variable=rows metadata="-bus_bundle CONTROL_BUS"
    #pragma HLS RESOURCE core=AXI_SLAVE variable=cols metadata="-bus_bundle CONTROL_BUS"
    #pragma HLS RESOURCE core=AXI_SLAVE variable=return metadata="-bus_bundle CONTROL_BUS"
    #pragma HLS INTERFACE ap_stable port=rows
    #pragma HLS INTERFACE ap_stable port=cols
    RGB_IMAGE img_0(rows, cols);
    RGB_IMAGE img_1(rows, cols);
    RGB_IMAGE img_2(rows, cols);
    RGB_IMAGE img_3(rows, cols);
    RGB_IMAGE img_4(rows, cols);
    RGB_IMAGE img_5(rows, cols);
    RGB_IMAGE img_6(rows, cols);
    RGB_IMAGE img_7(rows, cols);//typedef hls::Mat RGB_IMAGE;
    RGB_PIXEL pix(50, 50, 50);// typedef hls::Scalar<3, unsigned char> RGB_PIXEL;
    hls::Mat gray(rows,cols);//MAX_HEIGHT=480 MAX_WIDTH=640
    hls::Mat range_1(rows,cols);
    #pragma HLS dataflow
    // hls::AXIvideo2Mat(INPUT_STREAM, img_0);
    // hls::CvtColor(img_0,gray);
    hls::AXIvideo2Mat(INPUT_STREAM, gray);
    hls::Range(gray,range_1,0,50);//I use the hls::Range () like it ,is it right? Could you get me an example? //hls::Range(img_0,img_5,10,360);
    //hls::Sobel<1,0,3>(img_0, img_1);
    // hls::SubS(img_1, pix, img_2);
    // hls::Scale(img_2, img_3, 2, 0);
    // hls::Erode(img_3, img_4);
    // hls::Dilate(img_4, img_5);
    hls::CvtColor(range_1,img_1);
    hls::Mat2AXIvideo(img_1, OUTPUT_STREAM);
    #endif

  • Dynamic URL Configuration using variable range - WAD

    Hi,
    I am trying to configure a URL dynamically using variable range values. There are two variables which I pass to the URL, Sales Document Number and Posting Date. Sales Document Number has a single value and Posting Date is a range variable. The single value for sales document is passed to the URL but the date range is not passed and hence the web template gets the blank value for the date and shows the variable screen as this is mandatory. The URL is as follows.
    CONCATENATE
    l_web_protocol
    l_portal_server
    Initial URL
    '/irj/servlet/prt/portal/prtroot/pcd!3aportal_content!2fcom.sap.pct!2fplatform_add_ons!2fcom.sap.ip.bi!2fiViews!2fcom.sap.ip.bi.bex?TEMPLATE='
    l_web_template
    '&BI_COMMAND_1-BI_COMMAND_TYPE=SET_VARIABLES_STATE'
    '&BI_COMMAND_1-VARIABLE_VALUES-VARIABLE_VALUE_1-VARIABLE_TYPE=VARIABLE_INPUT_STRING'
    '&BI_COMMAND_1-VARIABLE_VALUES-VARIABLE_VALUE_1-VARIABLE_TYPE-VARIABLE_INPUT_STRING='
    l_var_value  "variable value
    '&BI_COMMAND_1-VARIABLE_VALUES-VARIABLE_VALUE_1-VARIABLE='
    l_var_name   "Variable for info object
    '&BI_COMMAND_2-BI_COMMAND_TYPE=SET_SELECTION_STATE_SIMPLE'
    '&BI_COMMAND_2-RANGE_SELECTION_OPERATOR=INTERVAL_SELECTION'
    '&BI_COMMAND_2-RANGE_SELECTION_OPERATOR-INTERVAL_SELECTION-INTERVAL_SELECTION_LOW_MEMBER-ATTRIBUTE_MEMBER_SELECTION-
    INFO_OBJECT=0PSTNG_DATE'
    '&BI_COMMAND_2-RANGE_SELECTION_OPERATOR-INTERVAL_SELECTION-INTERVAL_SELECTION_LOW_MEMBER=MEMBERS_EXIT'
    '&BI_COMMAND_2-RANGE_SELECTION_OPERATOR-INTERVAL_SELECTION-INTERVAL_SELECTION_LOW_MEMBER-MEMBERS_EXIT='
    l_range_var_name  "Customer Exit Variable
    '&BI_COMMAND_2-RANGE_SELECTION_OPERATOR-INTERVAL_SELECTION-INTERVAL_SELECTION_LOW_MEMBER-MEMBER_NAME='
    l_range-low     "Variable Value - Low
    '&BI_COMMAND_2-RANGE_SELECTION_OPERATOR-INTERVAL_SELECTION-INTERVAL_SELECTION_HIGH_MEMBER-ATTRIBUTE_MEMBER_SELECTION- INFO_OBJECT=0PSTNG_DATE'
    '&BI_COMMAND_2-RANGE_SELECTION_OPERATOR-INTERVAL_SELECTION-INTERVAL_SELECTION_HIGH_MEMBER=MEMBERS_EXIT'
    '&BI_COMMAND_2-RANGE_SELECTION_OPERATOR-INTERVAL_SELECTION-INTERVAL_SELECTION_HIGH_MEMBER-MEMBERS_EXIT='
    l_range_var_name     "Customer Exit Variable
    '&BI_COMMAND_2-RANGE_SELECTION_OPERATOR-INTERVAL_SELECTION-INTERVAL_SELECTION_HIGH_MEMBER-MEMBER_NAME='
    l_range-high      "Variable Value - High
    '&BI_COMMAND_2-RANGE_SELECTION_SIGN=INCLUDING'
    '&BI_COMMAND_2-TARGET_DATA_PROVIDER_REF_LIST=DP_TAB'      "Tab in the Web Template
    into  l_url.
    Can someone tell me asto what's going wrong with this URL? I passed single value for Posting Date and it worked fine.
    Thanks and Regards,
    Arya

    Thanks for the reply. However I did not understand couple of things. Should I try the URL like below?
    BI_COMMAND=&
    BI_COMMAND-TARGET_DIALOG_REF=l_var_name&
    BI_COMMAND-BI_ADVANCED=DLG_VARIABLE_vsc_DropdownVariants& "Which value to be passed?
    BI_COMMAND-BI_COMMAND_TYPE=PASSIVE_VALUE_TRANSFER&  "Which value to be passed?
    BI_COMMAND-PASSIVE_ID=DLG_VARIABLE_vsc_DropdownVariants_combobox& "Which value to be passed?
    BI_COMMAND-PASSIVE_VALUE=l_var_value&
    BI_COMMAND_1=&
    BI_COMMAND_1-TARGET_DIALOG_REF=l_range_var_name&
    BI_COMMAND_1-BI_ADVANCED=DLG_VARIABLE_vsc_CommonVariablesList_VAR_1_VARINPUT& "Which value to be passed?
    BI_COMMAND_1-BI_COMMAND_TYPE=PASSIVE_VALUE_TRANSFER&
    BI_COMMAND_1-PASSIVE_ID=DLG_VARIABLE_vsc_CommonVariablesList_VAR_1_VARINPUT_inp& "Which value to be passed?
    BI_COMMAND_1-PASSIVE_VALUE=l_range_low-l_range_high&
    BI_COMMAND_2=&
    BI_COMMAND_2-TARGET_DIALOG_REF=l_range_var_name&
    BI_COMMAND_2-BI_COMMAND_TYPE=OK
    Thanks and Regars,
    Arya

  • Cannot use Row Exchange Rate in the Draw Document Wizard

    Hi Experts,
    I am having problems while trying to post an AP Invoice which is copied from a Goods Receipt PO. I made two transactions in GRPO:
    12/28/2011 - I used the BP Currency which is USD and the exchange rate of PHP 45. Doc No.1198
    12/29/2011 -  I used the BP Currency which is USD and the exchange rate of PHP 47. Doc No. 1199
    While adding the AP Invoice on 12/30/2011,  I have an exchange rate of PHP 46.
    When trying to add the AP Invoice, I used Copy From Goods Receipt PO and I higlighted the two doc numbers 1198 and 1199. In the Draw Document Wizard Row Ex. Rate Prices I have selected the Use Row Exchange Rate from Base Document.  However a system message appears which says Base Document Exchange Rate cannot be used, the rows will be updated using the target document exchange rate.
    My presumption is that when I choose the Row exchange rate from base document, SAP will automatically copy the row exchange rate used in the documents so for the transactions in 12/28, the rate of PHP 45 shall be used and same goes for the 12/29 which is PHP 47.
    How should I go about this? Am I missing a step here? By the way, I am using SAP B1 8.82 PL01.
    Thanks in advance for your help.
    Best Regards,
    Michelle Pereyras
    ABM Global Solutions

    Hi Rahul,
    You said 'It is not at all concerned with Exchange rate during GRPO...' If that is the case how does the Use Row Exchange Rate from Base Document in the draw document wizard work? Does this mean 1 GRPO : 1 AP Invoice so I can use the base document rate?
    How should I go about with transactions like these? That is adding an AP Invoice from multiple GRPO's having different exchange rates. What I am trying to capture here is that in the AP Invoice, base document rates should be used in the row item level and not the current rate when adding the invoice.  
    Thanks,
    Michelle

  • Using row-wise multi-value GROUP system session variable in report filter

    The title says it all except I am using 10g OBIEE.
    What I want to do is filter on the dynamic system session variable GROUP created in a row-wise initialization block.
    The GROUP vriable is being set up correctly and it shows the user dynamically put into the correct groups in Answers.
    (Using the admin tool and looking at the user session, only the initial authentication block variables show up.)
    But if I want to filter using the value of GROUP it doesn't work.
    The obvious way is to choose the filter icon, then choose Add -> Variable -> Session, enter GROUP, and then display results.
    It comes back with no rows.
    Any idea how to do this? I've tried lots of things but none of them work either producing no rows or an error.
    This is the kind of Answers SQL this report is resulting in, which makes sense to me, but produces no rows.
    SELECT "Package Virtual Group (Dim)"."Package Virtual Group" saw_0, "Contact (Fact)"."Contacts All Count" saw_1 FROM "Case/Transaction/ABC" WHERE "Package Virtual Group (Dim)"."Package Virtual Group" = VALUEOF(NQ_SESSION."GROUP") ORDER BY saw_0

    866038 wrote:
    Errors come from trying things that don't work.
    For example, instead of =, using IN VALUEOF(NQ_SESSION.GROUP) or @{session.GROUP} or lots of other things.
    The question is this:
    how can I filter a column in Answers using the GROUP session variable which had been initialized in a row-wise initialization block?
    I can find no way to do it. Mostly it returns no rows.Hi,
    we had a similar requirement, where we have an external name that has project number values. We used row wise initialization to capture all the projects that a user belongs to. Then, we applied the filters at the RPD level, instead of doing it at the report level. From you requirement I see that you are trying to filter the groups based on user login. When a user logs in, he will see the information about the groups that he only belongs to. Correct me if I am wrong here.
    Assuming I am right about your requirement, providing the filter that you need apply in RPD.
    On all the fact tables are joined to the Package Virtual Group dimension, apply the below filter.
    case when 1=1 then (Dim)"."Package Virtual Group" END = VALUEOF(NQ_SESSION."GROUP");
    The reason for use of case statement here is, it converts the logical sql to IN Clause, helping us acheive the exact query that we would want.
    Please Award points if this helps.
    Thanks,
    -Amith.

  • Using row selection in ALV using class cl_salv

    Hi,
    how to use row selection by using cl_salv classes...
    I need to display scarr table in the basic list in ALV wthout using screens and function modules...
    On multiple selection of carrid from ALV, need to display flight details from sflight.
    Also how to get the selection buttons for corresponding rows.
    NOTE : Using class cl_salv*
    Thanks,
    Siddarth

    You may need to look into Rich's example code by the following thread
    https://www.sdn.sap.com/irj/sdn/go/portal/prtroot/docs/library/uuid/cda3992d-0e01-0010-90b2-c4e1f899ac01

  • Using Row Type in Stored Procedure

    Hi,
    I am working on ADF technology wherein I need to call Procedure from javacode.
    I am using Jdev 11g version.
    I am using Entity Impl to invoke my Stored Procedure which I have used Row Type in it.
    This procedure is running Independently using Toad. But I am not able to call it from Java code.
    For EX: We will call the Stored Proc from Java code in this way.
    String stmt = "begin execute_define_deliverables(?,?,?,?); end;";
    st.setInt(1,this.XXXXX.intValue());
    if(this.getXXXX()!=null)
    st.setString(2,this.getXXXXXX());
    else
    st.setNull(2,Types.VARCHAR);
    Whereas the questionmarks indicates the individual columns.
    But My problem is I have used Row Type in my Stored Proc.
    Any pointers in this regard will be very helpful.
    Regards,
    Kalyan

    Hi Satya,
    Now I got it, thanks,
    Can you please advise, if I use the same stored procedure for EMP Table and use my array values to retrieve the selected EMPNo
    I tried following but I could not succeed.
    When I compile the stored procedure, error occurs:
    "inconsistent datatypes: expected NUMBER got NUM_ARRAY"
    for example:
    CREATE TYPE NUM_ARRAY AS TABLE OF NUMBER;
    Create or Replace Package TB_Data
    Is Type CV_Type Is REF CURSOR;
    END TB_DATA;
    Create or Replace Stored Procedure give_me_an_array
    (CV IN OUT TB_DATA.CV_TYPE,
    MEmpNo In Num_Array)
    Is
    Begin
    Open CV for
    Select * from EMP
    Where Empno in MEmpNo;
    End myProc;
    declare
    mdata num_array:=num_array(7839,7844);
    begin
    give_me_an_array(mdata);
    end;
    Best Regards,
    Luqman

  • How can I use table headers only without using rows.

    how can I use table headers only, without using rows and without leaving the space.
    If anyone could say me how to paste the pic in this questions, I would have shown it.
    The flow of view is in this way
    {Table header(table on top of table)
    column header1___|| column header2__ || column header3__ ||}
    <b>Here is the blank space I am getting, How to avoid this space?this space is of one table row height</b>
    {Contents column1 || Contents column2 || Contents column3 || (This is of other table below the uper table)}
    I am using scroll for the content part of table only.
    So I am using two tables.
    I am using NW04.

    I did the possibles you explained, but couldn't get rid off the space.
    Any other solutions?
    I am keeping the header static and the content columns scrollable.
    I have used two tables one to display header above and the other to display only the contents.
    I have put the contents table in scroll container.
    And the header table in transperent container.
    Thanks and Regards,
    Hanif Kukkalli

  • Rtp from Business rule to be passed as template parameter using Member Range DTP type

    This is what I am trying to do. Use a template to define a part of the code and restrict the code from running for a particular Month. I have created a member range DTP and defined default values in it to exclude the one month I do not want.
    I have set up the template in my rule as given below and basically the parameter that is to be passed is a runtime prompt (rtp_Month), which I have selected.
    %Template(name:="Test",application:="XXXX",plantype:="Plan1",dtps:=("StartMonth":=([[Period.{rtp_Month}]])))
    Now when i run this, what will happen? Will the rule just skip the template part when rtp_month is the one i have excluded in the member range?
    OR, is this not the way to do what i am intending. I see a 'restricted value' type, but not sure how to get it to work.
    Thanks in advance.

    Thanks for the reply Sree.
    This is what I am trying to do.
    FIX ({rtp_StartMonth}:Aug)
        Calculations
      ENDFIX
    FIX(Sep)
    Calculations
    ENDFIX
    Now, when rtp_Month is selected as Sep, the first block of code should not run. So the template I created has the first fix block like,
    FIX ([Startmonth]:Aug)
        Calculations
      ENDFIX
    So, final BR code:
    %Template(name:="Test",application:="XXXX",plantype:="Plan1",dtps:=("StartMonth":=([[Period.{rtp_Month}]])))
    FIX(Sep)
    Calculations
    ENDFIX
    I am assuming: if i use the range DTP type and exclude 'sep' while defining the default values, the rule would bypass the template and run my second block of code.
    Is this assumption wrong?

  • Please tell me the use of ranges , when it should be used

    please tell me the use of ranges , when it should be used.

    Anytime you have to equate to multiple values in your programs.  Say for example, you need to get data for two company codes from a table.
    data: it001 type table of t001.
    ranges: r_bukrs for t001-bukrs.
    r_bukrs-sign = 'I'.
    r_bukrs-option = 'EQ'.
    r_bukrs-low = '0010'.
    append r_bukrs.
    r_bukrs-sign = 'I'.
    r_bukrs-option = 'EQ'.
    r_bukrs-low = '0020'.
    append r_bukrs.
    select * into table it001 from t001 where bukrs in r_bukrs.
    Regards,
    Rich Heilman

  • Use of Ranges

    Hi all,
    I am using the following logical expression but i want to know how can i replace these by the use of ranges.Please suggest..
    if w_ever-sparte = '01' and ( w_ever-kofiz <> '14' or w_ever-kofiz <> '15'
                                  or w_ever-kofiz <> '16' or w_ever-kofiz <> '24'
                                  or w_ever-kofiz <> '25' or w_ever-kofiz <> '26' ) .
    delete t_ever from w_ever where vertrag = w_ever-vertrag.
    Thanks & Regards,
    Arun

    Hello Arun,
    YOu can do like this.
    Data: RA_kofiz type range of kofiz with header line.
    ra_kofiz-sign = 'I'.
    ra_kofiz-option =  'EQ'.
    ra_kofiz-low =  '14'.  
    append ra_kopiz.
    ra_kofiz-low =  '15'.  
    append ra_kopiz.
    ra_kofiz-low =  '16'.  
    append ra_kopiz.
    ra_kofiz-low =  '24'.  
    append ra_kopiz.
    ra_kofiz-low =  '25'.  
    append ra_kopiz.
    ra_kofiz-low =  '26'.  
    append ra_kopiz.
    if w_ever-sparte = '01' and  w_ever-kofiz in RA_KOPIZ.
    delete t_ever from w_ever where vertrag = w_ever-vertrag.
    Hope this will solve ur problem,.
    Cheers,
    Vasanth

  • Update report row wise using row buttons and success message

    Hi Jari,
    Thanks for your reply but i wan't success message in success message region of page and not as popup or alert message.
    for report it is classic report but two columns are text field.
    Thanks
    Manish
    Hi,
    On Demand process you can use HTP.P to output success message after you code.
    Create also exception handler that output error using same HTP.P.
    When you call Ajax in JavaScript
    var ajaxResult=ajaxRequest.get();
    Result you output are in variable ajaxResult.
    You can use e.g. alert
    alert(ajaxResult);
    Refresh report depend lot of what report you have.
    There is lot of posts relating interactive report and classic in this forum.
    It might be good to create sample what you already have done to apex.oracle.com.
    Also creating new post might be good idea as this is answered.
    Regards,
    Jari

    866038 wrote:
    Errors come from trying things that don't work.
    For example, instead of =, using IN VALUEOF(NQ_SESSION.GROUP) or @{session.GROUP} or lots of other things.
    The question is this:
    how can I filter a column in Answers using the GROUP session variable which had been initialized in a row-wise initialization block?
    I can find no way to do it. Mostly it returns no rows.Hi,
    we had a similar requirement, where we have an external name that has project number values. We used row wise initialization to capture all the projects that a user belongs to. Then, we applied the filters at the RPD level, instead of doing it at the report level. From you requirement I see that you are trying to filter the groups based on user login. When a user logs in, he will see the information about the groups that he only belongs to. Correct me if I am wrong here.
    Assuming I am right about your requirement, providing the filter that you need apply in RPD.
    On all the fact tables are joined to the Package Virtual Group dimension, apply the below filter.
    case when 1=1 then (Dim)"."Package Virtual Group" END = VALUEOF(NQ_SESSION."GROUP");
    The reason for use of case statement here is, it converts the logical sql to IN Clause, helping us acheive the exact query that we would want.
    Please Award points if this helps.
    Thanks,
    -Amith.

Maybe you are looking for

  • XML attributes makes my query return no rows

    Hello everyone, I've an odd problem. I'm querying some XML, but the attributes in one of the tags make my query return no rows; if I remove the attributes, then the query works as expected. The XML is below; it's the attributes in the Report tag that

  • Reader 9.0/9.1 Installation - files in use

    When I try to install Reader 9.0 or Reader 9.1 onto a new Vista machine (using an administrative installation file (the machine isn't connected to the Internet) it returns the following error: Adobe Reader 9.0 - Setup Files in Use Some files that nee

  • Site in flash / Small size for Firefox users

    Hi everyone! Don't know why when I acess my site by firefox, it comes smaller than if I get through IE which appears in the normal size. Many visitors complain but I have no idea how to fix for firefox users. http://www.jatoba.com.br/ Does anyone kno

  • Is it possible to tell who edited your message?

    I was just wondering if it's possible to tell who edited your message. It seems that some creator-privledged people can edit message without any indication that they are the people that edited it.

  • Child window of application appears behind parent.

    I have configured SSGD 4.4 and after logging in and launching a third party application the first child window appears on top of parent but all subsequent windows will appear behind parent. Is there a configuration setting to force all child windows