Interactive Report - is it possible to stop a column being hidden?

I have an interactive report region where i have a column that has a link that performs an action, in this case it links to a screen where the user can then add a row. I want to make this column mandatory and not let the user hide it. I can remove other functionality, but cant seem to control the hide/show functionality.
anybody got any ideas?
craig
[oracleapplicationexpress.com|http://www.oracleapplicationexpress.com]

Dear Hemanth,
To your question:
"Is it possible to stop a campaign from being cancelled if it has purchase orders attached to it, using standard functionality".
This might be possible with a BADI implementation. In enhancement spot CRM_MKTPL there exist a BAdI CRM_MTKPL_OL_OBJ where the interface method CHECK_BEFORE_DELETE is offered.
Regards,
Anik

Similar Messages

  • Interactive Report - sort strings/numbers in the same column

    Hi all,
    I have an interactive report and have a column value.
    It has type varchar2 in Database.
    Problem: There are existing numbers and chars in this column.
    Now I want to sort as numbers as chars.
    Now it's like this:
    10
    2
    23
    3
    no
    yes
    I want like this:
    2
    3
    10
    23
    no
    yes
    How can I receive this???
    All suggestions are welcome.

    without regexp option:
    select vc
    ,      case when instr('#1#2#3#4#5#6#7#8#9#0#',substr(vc,1,1)) = 0 then 1 else 0 end sort_column
    from 
    select '10' vc from dual union all 
    select '2'     from dual union all 
    select '23'    from dual union all 
    select '3'     from dual union all 
    select 'no'    from dual union all 
    select 'yes'   from dual union all
    select 'yas'   from dual
    order by 2,lpad(vc,'9',0)  --First sort on numbers, then on characters

  • When using a interactive report I go to aggregate and no column are there

    When using a interactive report I go to aggregate, sum and go to choose my columns but I have no column there what am I missing

    Just a guess, but have you checked to make sure there's a numeric column in your report (and not, for example, a varchar column that happens to have numbers)?
    -David

  • Interactive Report - Is it possible?

    Hi again, I wondered if it possible in SQL Server Reporting Services 2008 R2, to create a report which an end user can input Comments into.
    The comments would be free text and wouldn't for part of the Views/Table where the Datasource comes from. This is purely a report is created and a user has the option to enter a comment which can be fed back to the Analyst who
    created the report.

    Hi ProfessorFudger,
    According to your description, you want to create a report that the end user could enter the comment, then the comment could be sent to the report creator, right?
    Reporting Services is used for rendering the report with data retrieved from datasource. In Reporting Services, we can retrieve data from the datasource then design a report, after the report processed, data is fixed on the report. So it’s not supported
    to have the end users enter comment and fed back to report creator. For your requirement, it can’t be achieved currently.
    If you have any question, please feel free to ask.
    Best regards,
    Qiuyun Yu
    Qiuyun Yu
    TechNet Community Support

  • Interactive Reporting - Counting Records in a Non-numeric Column

    I have created a report that shows open trouble tickets, the group they are assigned to and the status of the ticket. I would like to create another report based on the first one that shows each group and the number of tickets they have in each status category. For example:
    Group Assigned Testing Closed Total
    Bus. Analysts 2 5 0 7
    I.T. 6 2 3 11
    Is there a function in IR that can count number of rows/records?

    depending on how you have your data you can use a Pivot section.
    If the data is 1 row = 1 record then add computed column to your results with a static value of 1 and use that as your fact within the pivot with your Ticket Type as a top label and group as a side label.
    Wayne Van Sluys
    TopDown Consulting

  • Interactive Report with Calculated Aggregates - possible?

    I'm search for a possibility to create an aggregated column that is simply a computed value of two other aggregates.
    Example
    This how the basis data can look like
    Orderitem  | price |  no.
    A          | 100   | 3    
    B          | 10    | 1     The interactive report allows then to create a calculated column "total price" (price*no.) and some aggregates.
    Orderitem  | price |  no. | total price
    A          | 100   | 3     |  300
    B          | 10    | 1     | 10
               |       | sum: 4 | sum: 310I now want to create an additional aggregate line for column price holding the AVERAGE price.
    If I add such a column the result is (100+10) / 2 = 55 which is wrong from a business perspective.
    The correct value should be: 310/4 = 77.5.
    And the result would look like this
    Orderitem  | price     |  no. | total price
    A          | 100       | 3     |  300
    B          | 10        | 1     | 10
               | avg: 77.5 | sum: 4 | sum: 310Is is somehow possible to create this using only the interactive reports features? Without reprogramming regions or the base SQL.
    I can do it using pure SQL solutions. However the end users don't have the knowledge how to create such complicated queries.
    Edited by: Sven W. on Jul 3, 2009 3:22 PM
    Edited by: Sven W. on Jul 3, 2009 5:02 PM

    Btw. I mentioned that I can do it in pure SQL. Let me share this solution. Problem is that it is not interactive anymore.
    SQL> set timing off;
    SQL> with testdata as (select 'A' Orderitem, 100 price, 3 num from dual
      2                    UNION ALL select 'B' Orderitem, 10 price, 1 num from dual)
      3  select Orderitem,
      4         Price,
      5         num
      6  from testdata;
    O      PRICE        NUM
    A        100          3
    B         10          1
    SQL>
    SQL> with testdata as (select 'A' Orderitem, 100 price, 3 num from dual
      2                    UNION ALL select 'B' Orderitem, 10 price, 1 num from dual)
      3  select DECODE(GROUPING(orderitem), 1, 'All',orderitem) orderitem,
      4         DECODE(GROUPING(price), 1, sum(Price * num)/sum(num) ,price) price,
      5         sum(num) num,
      6         sum(Price * num) total_price
      7  from testdata
      8  group by grouping sets ((orderitem, price, num),()) ;
    ORD      PRICE        NUM TOTAL_PRICE
    A          100          3         300
    B           10          1          10
    All       77.5          4         310
    SQL> I'll guess for the real interactive feature we'll need to wait for some future Apex version.
    Edited by: Sven W. on Aug 19, 2009 2:07 PM

  • Interactive Report question-New to Apex

    Hi, I am new to Apex..I request your help in solving a prob..
    I am trying to create an interactive report(IR) which has more than 160 columns..It says the max limit is 60(or 64) columns..I remember when I was just starting to build the app it did allow me to create the report with 160+ columns but I didnt want to start with IR..My entire application has been built and this is the only thing that has to be done..Is there anyway to create an IR with 160+ columns now that I am almost finishing up the app..
    (just a thot-may be create another app with the IR and then import that page-if you think that will work plz guide me on how to do it)
    Regards,
    R

    Hi R,
    I had the same thought; if it's possible to create a new appl with IR with 160+ columns then do so.
    After creating a new appl go back to the original appl, open one of the pages, click the copy button on top of the page, click 'Page in another application', select the new appl with the IR, then select the page with IR ...... follow the steps
    Kind regards
    Mel

  • How to wrap a Column (Increase/Decrease column width) in Interactive Report

    Hi,
    I have a Interactive Report and I want to wrap the column values.
    Also want to increase/decrease width of the columns..
    I have 2 columns say.. Description and List
      List  - aaaaaaa, bbbbbbb, hhhhhhh, nnnnnnn, 222222, 55555555, 77777777, ..... // list of values are seperated by ,
             // 1. want to wrap the values ..I mean to decrease the width       
      Descriptiopn - sdgssdjkllkkkkkkkk  // -- here I want to increase the width of column
                     dgdggdfgdfgdgg
                     dfgdfgdfdfggfdg
                     dgdgdgdgdgdf2ndly for the List Column, can I put the sepearte values in each Line (values are seperated by , here) - ROW will only one.
    For each ROW, I want to display List column as shown below.
          List  - aaaaaaa
            bbbbbbb
            hhhhhhh
            nnnnnnn
            222222
    IS this possible in Interactive Report??
    Thanks,
    Deepak
    Edited by: Deepak_J on Feb 23, 2010 4:14 PM

    Actually, I want to increase/decrease the column width in Interactive Report.
    As shown the in the example of Description field...it's coming in 4-5 lines.
    I want to increase the width of Description column..so that it should come only in 2 lines..
    thanks,
    deepak
    Edited by: Deepak_J on Feb 23, 2010 4:32 PM

  • Default Show Filter Interactive Report

    Hi,
    When going to a page that has an Interactive Report is it possible to have the filter shown by default.
    I have a page that is accessed via a modal popup that contains an Interactive Report that is used as a filter for the original page so when the user goes to that page all the user will do is add filters so I want to display the filter option by default.
    Thanks in advance.

    Hi,
    Easiest way is use from Google.
    Add to page HTML header or page template header before #HEAD# substitution
    <script type="text/javascript" src="https://www.google.com/jsapi"></script>
    <script type="text/javascript">google.load("jquery","1.4.4");</script>Alternative see e.g. this
    http://www.oracleapplicationexpress.com/tutorials/66
    Regards,
    Jari

  • Interactive report button

    Hi
    I am wanting to add a button called Randomise to the interactive report page but when I create a button the button shows on both the report view and the record view when i go into a record. I only want it to show when I go into the individual record and not on the report page. How can i do this?
    thank you
    Aisha

    Hi,
    Maybe I was not very clear in my previous question. I am wanting to edit the page after I have clicked the column link on the interactive report. Is this possible?
    Currently I have an interactive report I then click on a link column of a record and the brings up the record to view, I would like to be able to add a button to this page only and be able to run a process associated to the button then update the record to the table.
    Please help.
    Aisha

  • Interactive Report Charts

    When a user creates a chart in an interactive report, is it possible to set it so that clicking on a bar/pie wedge/value would take them to a report view filtered down to the records in that set?
    An example: we have an IR, and built a pie chart of users vs. number of requests; when we click on a particular user's wedge, it slides out from the pie slightly, but we'd prefer to be taken to a view of the IR filtered down to that user's requests (so we can view/edit them). Can we do this?
    -David

    That's what I thought. It's not what my users expect, of course, and would make a great feature (HINT, HINT, developers!).
    On the plus side, it's possible to build a report and a (separate) flash chart to give drill-down functionality. It's a more limited option, and might result in user confusion--why can I drill down in this report, but not in this other one?--but it is an option.
    -David

  • Interactive report with named lov

    Hello,
    Is there a way to use a named lov (a static one in my case) in an interactive report?
    When not using an interactive report, this is possible and i can't figure out why oracle would not allow this in an interactive report.

    Hi Jan,
    I can't say for certain why it's not available to use. I imagine that, for some reason, it would interfere with the IR functionality in someway or, that the tables used for IRs just can't handle anything more than simple columns yet. You should add a request to the Enchancement thread Re: Enhancement Request Thread : Post 3.1
    Andy

  • Interactive report with single row select

    Hi,
    Is it possible to create an interactive report that has a single row select column i.e. you can only select one row and when you select another row it deselects any row selected before, simular to a list of values but with the functionionality of an IR report.
    Thanks in advance

    Hi,
    Try adding this to the query of your report:
    select ...
           apex_item.radiogroup(1, some_unique_column) sel
    from ...You didn't say how you want to use this, but when the page is submitted the array apex_application.g_f01 may contain either none or exactly one element, which will be the some_unique_column value of the selected row.
    Luis

  • Questions on Interactive Report Icons

    When I created an Interactive Report, rectangular icons have been automatically created on the left side of the report on every line.
    When clicked one of the icons, it displays the details of the line in vertical order.
    Here are my questions:
    1. When I've hidden some columns in the interactive report and clicked the icon, it does not display hidden column details. But I want to hide those columns only in the report but displays all details when the icon is clicked. How can I do this?
    2. How can I hide the icons?
    3. How can I use the icons not to display line details but to direct to an editable page to edit the same details?
    Thanks,
    Guy

    Hello
    1. When I've hidden some columns in the interactive report and clicked the icon, it does not display hidden column details. But I want to hide those columns only in the report but displays all details when the icon is clicked. How can I do this?You can create another region, or page that will show your row description by identifier or rowid. You can do this by changing Link Column type to "Link to Custom Target"
    2. How can I hide the icons?Go to Interactive Report -> Link Column -> Link Column change to (Exclude Link Column)
    3. How can I use the icons not to display line details but to direct to an editable page to edit the same details?The same as answer 1.
    Best Regards, Kostya Proskudin!

  • Problem adding column in an interactive report

    Hi all
    I am dealing with many interactive projects in my application. Sometimes I have to add a column to the interactive report. When I do so, the column doesn't appear in the interactive report...On the page I have to click on "Actions" then go to "Selected columns" and then display it ! the problem is when I logout and login again
    the column desappear again and I have to do samething again and again...Is there a way to set it appear by defaul always ???
    THank you

    Moun wrote:
    I am dealing with many interactive projects in my application. Sometimes I have to add a column to the interactive report. When I do so, the column doesn't appear in the interactive report...On the page I have to click on "Actions" then go to "Selected columns" and then display it ! the problem is when I logout and login again
    the column desappear again and I have to do samething again and again...Is there a way to set it appear by defaul always ???After adding new columns to an existing IR, you need to select them for display as a developer, and save the new report as the Primary Default.

Maybe you are looking for

  • How can I verify an odd Email came from Verizon?

    Today an email arrived apparently from Verizon, with the following message: (quote) Dear Valued Verizon Customer, Thank you for providing an updated email address for your Verizon account on a recent visit to Verizon.com or call to Verizon. To verify

  • Hiding Channels In The Mixer

    I am using Logic 9 with Mackie D8B in HUI mode. I have played around with the mixer view modes to see what works best. If I use "Arrange" view it shows my Tracks (Audio or MIDI), their Auxes and their Outputs and they update in the HUI display. If I

  • Having trouble creating new connection in SQLDeveloper

    When I try to create a new connection in SQLDeveloper, I get the following message: Status : Failure -Test failed: Listener refused the connection with the following error: ORA-12505, TNS:listener does not currently know of SID given in connect descr

  • Blocking a member of a group does not hide their m...

    I'm part of a big community skype group of about 30+ people with about 3-4 people blocked because I did not want to see their messages anymore. Blocking them does not do anything - I can still see their messages and they can also see mine. It would b

  • Clicks don't work after few times on same shopping page

    When shopping on a page I can only successfully click 2 or 3 times & then I have to refresh before clicks work again! It used to be fine until recently. I did get my screen repaired & wondered if that would affect it.  Can anyone pls help?