Update of the page-based filter filter report

I have a simple report with two facts that shows the sales representative for the customer 1 how our activities will to their client.

Fact #1: All filtered by Customer Service requests = "Customer 1"
Fact #2: All requests for Service, filtered by customer <>"Client 1"

My question is, anyone know how to make the dynamic customer and remove a page filter selection? I want to put this report on a dashboard equipped with a customer page filter, so if the user selects 8 client, the facts is updated with the appropriate filter.

Use a session variable and filter it using this session variable.

Tags: Business Intelligence

Similar Questions

  • updates to the pages?

    How can I get the latest updates of the pages? I get a notification update is available, but Apple Store does not show me a download of update.

    If you run any version of Mac OS X prior to OS X 10.10.4, then there is no Pages, Numbers, or speech updates available to the OS X App Store. If you're really still on OS X 10.6.8 the most recent version of the Pages ' 09, you can perform is v4.1. The OS X App Store will you bug on the new updates even when you are not ineligible.

  • Update of the collection based on (wwv_flow.g_f01) report

    Hi all
    I have a page in my application that contains 3 standard reports based in a collection. There is a main report and from there you explore the other report, and from there you can go down to another (3rd report) that I'm trying to update a member of the collection based on an lov. I don't know how to insert the value from the lov in the 3rd report.


    Select seq_id
    IN CURR_SEQ_ID
    of apex_collections
    where collection_name = "ARGYLL_INVOICES."
    and c001 | C002 =: P12_EPSB_JE_HEAD_LINE_NUM;

    apex_collection.update_member_attribute (p_collection_name = > 'ARGYLL_INVOICES',)
    p_seq = > CURR_SEQ_ID p_attr_number = > 17, p_attr_value = > "EDMO");

    It works fine, but of course, it is hard coded. I would use the api wwv_flow.g_f01 but I can't make it work with my rudimentary understanding of this api call.

    apex_collection.update_member_attribute (p_collection_name = > 'ARGYLL_INVOICES',)
    p_seq = > CURR_SEQ_ID p_attr_number = > 17, p_attr_value = > wwv_flow.g_f01 (a few references here);


    Any guidance would be most appreciated.

    Thank you

    Here is an excerpt from a quick tutorial on the use of collections. I'm including the section of the report you can see the corresponding values:

    SELECT rownum, apex_item.hidden(1, c001),  --Key ID
         apex_item.text(2, c002, 8, 8) VALUE1,
         apex_item.text(3, c003, 3, 3) VALUE2,
         apex_item.text(4, c004, 8, 8) VALUE3,
         apex_item.date_popup(5, null,c005,'MMDDYYYY',10,10) MY_DATE
    FROM APEX_COLLECTIONS
    WHERE COLLECTION_NAME = 'MY_COLLECTION'
    

    It will be a report as a SQL report - you are just pulling the data from the collection. You can always ask the nice formatting, naming, sorting, etc. of a standard report. In the report, the user will have 3 values 'text' and a Date with the date picker. You can change the format, make sure just to change all four procedures.

    What is critical to note here are the numbers that come just before the column names. These numbers become identifier in the table used to capture data. What is APEX is creates an array of up to 50 items designated as F01 - F50. The F is static, but the number that follows, it matches the number on your tax report above, IE, F01 will contain the primary key value, F02 will contain the first numeric value, etc.. Although not strictly necessary, it is advisable to assign these values so you don't have to guess.

    A note more: I try to align c00x values in the column with the values of F0X collection in the table to stand straight, but they are values that do NOT have to match. If you have a request that you think could get developed, you can leave gaps where you want. Remember, however, that you have only 50 columns of table to use for the data entry. It is the limit of F0X table even if a collection can have up to 1000 values.

    Now, you need a way to capture the user input. I like to create this as a PRELIMINARY procedure CALCULATIONS/VALIDATIONS in this way the user can see what they changed (even if it is false). Use Validations to intercept errors.

    declare
      j pls_integer := 0;
    begin
    for j1 in (
      select seq_id from apex_collections
      where collection_name = 'MY_COLLECTION'
      order by seq_id) loop
      j := j+1;
      --VAL1 (number)
      apex_collection.update_member_attribute (p_collection_name=> 'MY_COLLECTION',
          p_seq=> j1.seq_id,p_attr_number =>2,p_attr_value=>wwv_flow.g_f02(j));
      --VAL2 (number)
      apex_collection.update_member_attribute (p_collection_name=> 'MY_COLLECTION',
          p_seq=> j1.seq_id,p_attr_number =>3,p_attr_value=>wwv_flow.g_f03(j));
      --VAL3 (text)
      apex_collection.update_member_attribute (p_collection_name=> 'MY_COLLECTION',
          p_seq=> j1.seq_id,p_attr_number =>4,p_attr_value=>wwv_flow.g_f04(j));
      --VAL4 (Date)
      apex_collection.update_member_attribute (p_collection_name=> 'MY_COLLECTION',
          p_seq=> j1.seq_id,p_attr_number =>5,p_attr_value=>wwv_flow.g_f05(j));
    end loop;
    end;
    

    Clear as mud? Walk slowly through it. The syntax tells APEX Collection (p_collection_name) (p_seq) line, then what attribute/column (p_attr_number) updated with the value (wwv_flow.g_f0X (j)). The number of the attribute is the column number of the collection without the 'c' on the front (IE c004 in the collection = attribute 4).

    See if this helps answer the question. You'll notice that I'm grabbing values SEQ_ID of the collection and a loop through them one at a time and using them to find the index of the JavaScript array holding the corresponding value, I need to use in the update part.

  • The report columns fell after the update of the page

    I created a page of interactive report with the following sql code:

    Select emt.emergency_id
    emt.emergency_name
    emt.emergency_effective_from_date
    emt.emergency_effective_to_date
    'ALTERED' AS IMPAIRED
    "EVACUATION" AS EVACUATION
    'LIFE_SUSTAIN' AS LIFE_SUSTAIN
    emt.log_creation_date
    emt.log_creator
    of nicedw.err_master_tab emt

    I created links to separate pages for IMPAIRED titled columns, EVACUATION and LIFE_SUSTAIN. Everything worked very well until the user was asked to change the names of column to IMPAIRED_LOG, etc. and the value as follows:

    Select emt.emergency_id
    emt.emergency_name
    emt.emergency_effective_from_date
    emt.emergency_effective_to_date
    , 'OPEN LOG' AS IMPAIRED_LOG
    , 'OPEN LOG' AS EVACUATION_LOG
    , 'OPEN LOG' AS LIFE_SUSTAIN_LOG
    emt.log_creation_date
    emt.log_creator
    of nicedw.err_master_tab emt

    When I changed the query and saved the page all links were washed away so I had to redefine their. However, when I run the page, static link columns, IMPAIRED_LOG, etc., do not appear. all of the normal properties in the report appearance attributes tab. For example, the display of text as the property is: display text (escape special characters) and other properties which are identical to the other columns of characters. How can I display these columns? is there a dark property that has been affected?

    After adding new columns to an IR existin, you must select them for display as developer and Save the new report as the default main.

  • Change the content of the page based change the selection box

    Hi all

    I want to create a page with 2 box selection and 1 table below

    • Selection box
      • Box1: 1-12 (months of the year)
      • Box2: 2010-2015 (year between 2010 and 2015)
    • Table
      • Get data from view GET_DATA_SALARY. This view having a 4 column: NAME, SALARY, FAC_MONTH, FAC_YEAR
      • This table will be based on the selected value of 2 boxes above change

    Please help me solve this problem.

    Thank you

    To put it simply, add a button that submits the page.

    Add a where clause clause to your report

    where FAC_MONTH = P_MONTH

    and FAC_YEAR = P_YEAR

    Gus

  • Automatic update of the page

    Dear Experts,

    I use Jdev11.1.1.5.0. I use .jsff pages

    Once any updates in the database, the changes automatically should in ADF screen without reconnecting and updating. Is this possible?

    Arun-

    As an alternative, you can imitate the push and use an af:poll component that allows you to refresh the data. I know it's a refresh, but automatic.

    Timo

    Post edited by: TimoHahn
    This blog describes the technique http://oracleadf-java.blogspot.in/2013/06/using-afpoll-to-refresh-and-push-data.html

  • Print the pages as a PDF report

    Hi guys,.

    I built a page of report of invoice model printer friendly theme 21 (apex 4.1.1 Is there a way I can print the page in PDF format by clicking on a button or something on the previous page.

    I have installed Apache FOP and BI publisher has already been ruled out as an option.

    Thank you very much.

    Hello

    other options use plain pl/sql with this Kit [url http://technology.amis.nl/2012/04/11/generating-a-pdf-document-with-some-plsql-as_pdf_mini-as_pdf3/]
    Or take a look at JasperReportsIntegration from Dietmar Aust [http://www.opal-consulting.de/apex/f?p=20090928:1 address]

    Kind regards
    Erik-jan

  • Update of the pages on the server - Mac - CS6 model (child)

    People,

    I update my model.  When I save this updated model, all the child pages on my computer updates automatically. Then update the pages on the server, there is a short cut? Do I have to load each child page individually?

    You must download all the child pages.  If you update the entire site, click the site folder in your Control Panel files (F8) and click on the arrow pointing UPWARDS to PLACE files in site to the server.

    Nancy O.

  • Blocks of text on the Pages of body 'Buried' after update of the Page Master

    I have a background full screen on my main page (on the left in this case) that integrates static graphics and borders for certain master pages. I use the borders/boxes for NOTE and END of text on some pages. Blocks of text on these master pages do not overlap. I added text blocks with my icons and the text of the note to these body Pages that I need them. All great so far.

    I decided to update the background chart on page master to change colors, etc.. All files are linked.

    Now, with funds master page updated, these pages where I added text blocks are 'buried' as on a sublayer. I checked that my Master Page background images are "sent back". I tried to wear my text boxes at the front on the Pages of my body, but they are still hidden. Interesting as the anchored frame (the icon), I attached to each NOTE or TIP point appears, but the text is not. Also, I can see and select the contours of the block... the text is hidden. If I drag the fame to another part of the document (for example, on top of another Master Page text frame sank, while the text is displayed.

    There is no image on the master page to the enclosed area. I wonder if that's what I need trouble. Just add a backstory (not attached flow)?

    Advice before I go and screw something else?

    It is what it is supposed to look like (1). Image (2) what I mean now.

    V7Page2.jpg

    V7Page.jpg

    Thanks Arnis,

    It was the property of skin! How simple... I didn't have on this subject.

    Solved!

    To answer you question, however... my approach for the construction of this new model was:

    1. I created a graph from bottom (full page) to contain the image of brand and imported/positioned.
    2. I placed the header and a footer frame and filled with content.
    3. I placed the blocks of text with streams (as a single stream in this document).

    I'm not dropping blocks of text for the content of the body... except for these tips and remarks. I don't want to use a workflow for this because I never know where they'll pop up and I want to be able to (position) specifically on each page. Is this a good approach?

    Yes, I'm aware of the continuous line down the block of text NOTE you mentioned. Originally, I had all the text within the limits. When I have updated master, all offbeat pages (only in blocks of text body page with notes/tips). I repositioned and they flow very well now.

    Thank you very much for your help continues with it. Why these problems always pop nitpciky - up to date - not when things are slow!

  • Display of the Page based on values in the past items

    Request Express 3.2.0.00.27

    One one page, I have a selection list that displays a description and returns a (fairly common). The value is sent to another page as a hidden page element.
    On the second page is a PL/SQL procedure that fills some pages of items based on the value of the hidden page element.

    Here is the code:
    if :P4_PASSING_CONTRACT_PK is null then
      null;
    
    elsif :P4_PASSING_CONTRACT_PK is not null then
    
         select lu_dept_id, lu_emp_id, sm_dept_phone_no,
                sm_contr_name, lu_vendor_id
           into :P4_LU_DEPT_ID, :P4_LU_EMP_ID, :P4_SM_DEPT_PHONE_NO,
                :P4_SM_CONTR_NAME, :P4_LU_VENDOR_ID
           from summary_master
          where pk_sum_master_id = :P4_PASSING_CONTRACT_PK;
          
    else
      null;
      
    end if;
    At run time, only the first value appears on the page in session state, however, all of the above values have the correct value inserted.
    Please let me know if you need additional information.

    Thank you.

    In point (for all people) settings, you can try changing "source", of "Always, replace any value in session state", to "only when the current value in session state is NULL.

    Published by: ThomasL March 18, 2011 17:08

  • Redirecting to the page based on the domain name

    I have a domain main site it www.tesseract.co.uk with another domain www.tesseractusa.com pointing to it.
    I would like the '.com' to have specific pages we visitors. I'm looking for a way to redirect to a specific page based on the domain name.

    Hope you can give some advice.

    Thank you
    Richard

    Dave,
    Awesome, works perfectly!

    First post you was right! I've slightly modified your script:

    <%@LANGUAGE="VBSCRIPT"%>
    < %="">< br="">sname = Request.ServerVariables("SERVER_NAME")% < br=""> sname = ucase (sname) < br=""> if InStr (sname, "WWW.TESSERACTUSA.COM") <> 0 THEN< br="" >="">
    End If< br="" >="" %="">

    I really, really appreciate help you.
    Thank you
    Richard

  • Flash content, forcing the updates on the page

    I'm running on a question where I put a flash file containing a flv player in a html page when you access the page from a pop-up box stating "the content of this page requires a newer version of adobe flash player do you want to download it now? I have the most recent flash player. Is this a problem that everyone ran to? I noticed that I see that the box pop up on pages that have content flv - other pages with ordinary sovereign wealth funds are very good and do not present these issues. Any ideas? If there are questions please ask. Thanks in advance.

    I pulled out the portion of adobe updater flash js within the head tag, which added by default, it seems.

  • How to stop IE11 to change the resolution of the page based on which monitor it is on

    I have two monitors with the same resolution (1920 x 1080). For some reason any when I have Internet explore open on the monitor on the left, everything seems fine, but when I drag it (or open a new ie window) for the second screen in the Web page is huge. It seems to change resolution of the page. the screens are extended and all the parameters of the monitor are the same for both monitors.

    I tried using ctrl + scroll to make the page smaller on the screen to the right but then if I drag the page is to say back to the left screen everything is tiny.

    Monitor #1 = left screen

    Monitor #2 = right screen

    Main monitor switching does not alter right screen is always greater on ie

    This happens not with Chrome or any other program only IE

    This DPI scaling setting do you use?  If check you that it is either 100%, or one together to use "the same level of scaling for all my views" so that he does not seek to change for each display.

  • Article to the page based on the body of the function

    Hello

    Apex 4.1.1 11 GR 2 linux oc4j

    I have two elements on the page that should be in function.

    I tried to do this in two ways.

    1. process across the page on load the prior header.


    de Debugging


    0.065940.20116... Run the statement: start if CHECK_FLAG_FACILTY( ) EVENS = > :P216_DETAIL) then : :P216_FACILITY_CHK = 'Y '; (- dbms_output. put_line () P216_FACILITY_CHK); -dbms_output. put_line 'TRUE'()); ANOTHER :P216_FACILITY_CHK := 'n'; (- dbms_output. put_line () P216_FACILITY_CHK); end if; If CHECK_FLAG_F_officer (EVENS = > :P216_DETAIL) then ::P216_OFFICER_CHECK = 'Y '; (- dbms_output. put_line () P216_officer_check); -dbms_output. put_line 'TRUE'()); ANOTHER :P216_OFFICER_CHECK:= 'n'; (- dbms_output. put_line () P216_officer_check); end if; END; end;4

    53

    http://10.22.8.30:8888/apex/f? p = 4000:939:347925946711601:NO:939:P939_PAGE_VIEW_ID:1117881 http://10.22.8.30:8888/apex/f? p = 4000:939:347925946711601:NO:939:P939_PAGE_VIEW_ID:11178810.267190.00145... Session state: saved point new 'P216_FACILITY_CHK' value = 'Y '.4

    0

    http://10.22.8.30:8888/apex/f? p = 4000:939:347925946711601:NO:939:P939_PAGE_VIEW_ID:1117881 http://10.22.8.30:8888/apex/f? p = 4000:939:347925946711601:NO:939:P939_PAGE_VIEW_ID:11178810.268570,00063... Session state: saved point new value "P216_OFFICER_CHECK" = "N".

    Values are met in session, but they are not displayed on the page.

    2.), I have two elements on the page in the source element

    call this function

    Begin

    : P216_FACILITY_CHK := null;

    if CHECK_FLAG_FACILTY( ) EVENS = > :P216_DETAIL) then

    : P216_FACILITY_CHK := 'Y ';

    (- dbms_output. put_line () P216_FACILITY_CHK);

    -dbms_output. put_line 'TRUE'());

    ON THE OTHER

    : P216_FACILITY_CHK := 'n';

    (- dbms_output. put_line () P216_FACILITY_CHK);

    end if;

    END;

    Source

    Top

    current value
    source

    But still it would be empty all the time.

    I guess for this feature...

    For your APEX point, you have the SOURCE = "PL/SQL function.

    The SQL code in the "Source" for this element should have a "return" statement

    The SQL you provided (I suppose has the same value as 'Source') did not have a "return" statement

    interesting note: when I didn't have a 'return' for items with "function from PL/SQL ', I got a weird error.

    so, I wonder if Miss me just a few information...

  • How to hide a button in the page based on the condition button bar

    Hello

    I have a requirement to hide apply and save on value-selector button released in the status field to create work order page.

    kindly help

    ProcessRequest:

    Am = (OAApplicationModule) oapagecontext.getApplicationModule (webBean) OAApplicationModule;

    OAViewObject oaViewObj1 = (OAViewObject) am.findViewObject ("xxcustPVO");

    If (oaViewObj1 is nothing)

    {

    oaViewObj1 = (OAViewObject) am.createViewObject ("xxcustPVO", "xxcust.oracle.apps.eam.workorder.server.xxcustPVO");

    If (oaViewObj1! = null)

    {

    oapagecontext.putDialogMessage (new OAException ("got added attributes"));

    }

    }

    ProcessFormRequest:

    OAViewObject vo2 = (OAViewObject) am.findViewObject ("xxcustPVO");

    If (vo2.getFetchedRowCount () == 0)

    {

    VO2. InsertRow (VO2. CreateRow());

    Line OARow = (OARow) vo2.first ();

    row.setAttribute ("RowKey", new Number (1));

    oapagecontext.putDialogMessage (new OAException ('value inserted in VO'));

    }

    Based on Condition

    If (vo2! = null) {= (OARow) vo2.getCurrentRow (); line}

    If (line! = null) {}

    oapagecontext.putDialogMessage (new OAException ("inside the vo attribute"));

    row.setAttribute ("xxApply", Boolean.valueOf (false));

    row.setAttribute ("xxSave", Boolean.valueOf (false));

    }

    Card apply n Save button with SPEL

Maybe you are looking for