Switching b.w reports using list item - missing data on initialization

Hi,
I have two interactive reports (one with product view and second with Line of business view)... I've allowed my users to switch b.w prod/LOB views (using list item).. I am using LOB view as a default view
My problem is that when the user logs into the application LOB view report appears by default (as desired) but contains no data (displays message: No data found) until I switch it to product view (via list item) and then switch back to LOB view...Not sure what's causing it
I've stored sample on APEX.ORACLE.COM for your review and comments
Here are the credentials:
Please note that the form is on page 2
Thanks in advance
Edited by: qwe12654 on Apr 21, 2011 3:26 PM

Hi,
I changed the Computations to "Value of Item in Expression 1 is NULL" and put the item name into Expression 1.
You had a PL/SQL expression of:
NVL(:P2_YEAR,'NULL') = 'NULL'
I think you could have used:
:P2_YEAR IS NULL
or
NVL(:P2_YEAR,'0000') = '0000'
I'm not 100% sure what effect there would be of using 'NULL' within a statement - it should just be seen as a string, but, as you can see from the results, something wasn't working as we'd expect.
Apart from changing the way that the default value is computed for the Year, that was the only change that I made.
Andy

Similar Messages

  • How to create a tree structure using list items(tlist)

    HI every one,
    As we know how to create a tree structure using Hierarchy item type.
    We have a requirement to create The same tree like structure using List Item(Tlist)
    I would be so appreciated If you send with an example
    Thanks
    RangaReddy

    Hi all
    Any one help me please
    Actually our client requirement is creation of tree structure using list item,similar to what we used in oracle Application(FNDSCSGN) form.We did the tree structure using hierarchy tree using Htree and Ftree.It working excelently.For client requirement, we want to use list item.How PJC(Pluggable Java Components) is useful for using list item(Tlist).I can't understand how it is useful.
    Do you have any example please help me.
    Thanks
    RangaReddy

  • Where Used List for Master Data Entries

    Hi folks,
    I am looking for a FM, method, etc. that gives me a list, that shows, where a certain master data entry of an InfoObject is used. The BW system makes this check implicitly, when trying to delete master data, but I couldn't get behind the logic yet.
    Anyone here with helpful hints?

    Hi Durgesh,
    Thank you for your answer!
    Unfortunately the two mentioned FMs are not helpful for me. I am looking for a where-used-list of master data entries, but not of InfoObjects. For example I am looking in which InfoCubes the measure pieces of InfoObject '0UNIT' is used.

  • Need help using list item as to filter hire_date

    hi to all, how can i use the list item as to filter hire_date based on the elements inside the list item
    it goes something like this
    HIRE_DATE----------------LIST_ITEM=JAN
    01-JAN-10
    02-JAN-10
    03-JAN-10
    HIRE_DATE----------------LIST_ITEM=FEB
    01-FEB-10
    02-FEB-10
    03-FEB-10
    the sorting will do after i press the button
    thanks in advance :)

    sir i tried the code and it says: FRM-41003: This function cannot be performed here.
    what im really want to do is that after retrieving the dates from a push button, (remember yesterday where you help me retrieving multiple data).... i have a list_item where it has the elements JAN,FEB,MAR,APR,MAY.
    and then after selecting different month from the list_item the values that ive retrieve will be filter according to the value in the list_item
    it looks something like this:
    stud_id = 1001
    time_in
    01-JAN-10
    02-JAN-10
    03-JAN-10
    01-FEB-10
    02-FEB-10
    03-FEB-10
    after selecting FEB from the list_item it will goes like this
    time_in
    01-FEB-10
    02-FEB-10
    03-FEB-10
    thanks..
    -charles

  • Using list item with set_item_property

    I have a list item named say LIST_A. I have a text field say TEXT_A. Is it possible at run time to make the list item available as list of values for TEXT_A using set_item_property or something else?
    Any help is appreciated. Thanks.

    You can create a record group from the elements in the list item and assign it to an LOV at runtime.
    Check out the create_group, get_list_* and set_lov_property entries in the help system.

  • Using list items to create sites programatically

    Hello All,
    I am looking to programatically create sites based on items in a SharePoint list. The list has 4 columns, Name, Email, ManagerName, ManagerEmail.
    The aim is to use PowerShell to create a foreach loop, that creates a site (using the "Name" column as the site title/URL) based on the #STS01 teamsite template, breaks permission inheritance, and then gives the Manager ("ManagerName")
    contribute access to the site.
    Not sure where to start with this, any advice would be appreciated!
    Cheers!

    Hi,
    Here is the complete PowerShell code to create site with unique permissions and assign manager with contribute permissions.
    I have created a list with following columns as shown in the screenshot.
    Add-PSSnapin Microsoft.SharePoint.PowerShell -ErrorAction SilentlyContinue
    $sourceWebURL = "http://sp2013"
    $sourceListName = "MySites"
    $spSourceWeb = Get-SPWeb $sourceWebURL
    $spSourceList = $spSourceWeb.Lists[$sourceListName]
    $spSourceItems = $spSourceList.GetItems()
    foreach($item in $spSourceItems)
    $siteTitle = $item["Title"]
    $siteName = $siteTitle -replace " ", ""
    $NewSiteUrl = $sourceWebURL+"/"+$siteName
    write-host "Title:"$siteTitle
    write-host "Url:"$NewSiteUrl
    #Create User Object from the List Item
    $userWithContribute = New-Object Microsoft.SharePoint.SPFieldUserValue($spSourceWeb,$item["ManagerName"].ToString());
    #Create Sub-site with Unique Permissions
    $newWeb = New-SPWeb -Url $NewSiteUrl -Name $siteTitle -Template "STS#0" -UniquePermissions
    #Assign Manager with Contribute permission
    Set-SPUser -Identity $itemUser.User -Web $newWeb -AddPermissionLevel "Contribute"
    https://gallery.technet.microsoft.com/PowerShell-Script-to-d888fcdd
    Please don't forget to mark it answered, if your problem resolved or helpful.

  • Create Report on List , group by data and email as PDF

    Hi ,
    I have a survey List , that contain 7 Question and each question have 5 possible answers (Radio Button , between Strongly agree to strongly Disagree).
    How can I create a report on the list , and send the email to instructors that are also stored in List .
    How can we create a report with group by clause and send as a PDF in attachment?
    Thanks

    You have to programmatically convert all content to PDF and then email it.
    http://social.msdn.microsoft.com/Forums/sharepoint/en-US/9e38ed97-5156-448d-af71-cf5e949535d6/how-can-i-export-sharepoint-list-item-form-view-to-word-or-pdf?forum=sharepointcustomizationprevious
    Try below 3rd party
    http://blog.muhimbi.com/2010/08/converting-sharepoint-lists-to-pdf.html

  • Report using excel sheet as data source not working when deployed to production.

    I have a set of SSRS reports that use an excel sheet as a datasource.
    Now when I preview the reports or run them in the Visual Studio IDE on my local machine i.e
    the development machine, the reports run fine & display all correct results.
    However, when we deploy the reports to the Production machine which is on a separate server,
    the following error message is displayed :
    "The current action cannot be completed. The user data source credentials do not meet the requirements to run this report. Either the user data source credentials are not stored in the report server database, or the user data source is configured not to
    require credentials but the unattended execution account is not specified. (rsInvalidDataSourceCredentialSetting)"
    I've copy pasted the connection string used for connecting to the excel file as reference :
    Provider=Microsoft.ACE.OLEDB.12.0;Data Source=C:\MyFolder\CurrentFile.xlsx;Extended Properties="Excel 12.0;HDR=Yes;";
    The excel file has also been uploaded to the machine housing the reporting server (i.e to C:\MyFolder location)

    Hi Aaakar,
    From the error message, please try to change the setting of Credential type for the data source on report manager as follows:
    Go to the Data Sources properties page.
    For the Connect Using option, select Credentials stored securely in the report server.
    In User Name and Password, type credentials that can be used to access the database. If you are using SQL Server as the data source, the user name must be valid for both logging on to the server and for accessing the database that contains the data for
    the report.
    If the user name and password are credentials for a Windows account, select Use as Windows Credentials.
    If you want the report server to pass the credentials of the user accessing the report to the server hosting the external data source, click Windows Integrated Security. In this case, the user is not prompted to type a user name or password.
    For more details about Configure Data Source Properties, please see:
    http://technet.microsoft.com/en-us/library/ms155882.aspx
    Hope this helps.
    Thanks,
    Katherine Xiong
    Katherine Xiong
    TechNet Community Support

  • Create a Webi report using QAAWS as a data source

    Hi Experts,
    I am on BO 4.1 SP 3, and using the Webi Rich Client to create a WEBi report using a QAAWS url as a data soruce.
    This is the first time I am trying this, so any tips/helpful links are welcome.
    I get the below error, when I try to map the fields. But I do not have any personal data files involved.
    Thanks,
    Vasu Natari.

    Hi Vasu,
    We can create webi report with QAAWS.When creating the report on webservices /Personal data providers we'll not get prompt/query filters option .
    Are you trying to change source ? Instead create new source and get data.

  • Filter in list Item master Data

    Hi all!
    i don't know why my database can't filter in Item master Data. This icon is grey. Can you help me!

    Hi Tien,
    In which mode are you trying to filter data.....in the find mode the icon for filter will always be greyed out. in the item master data press * in the Item number the system will give yoyu a list if items which can then be filtered...the icon gets activated.
    Nagesh

  • Sync problems agenda using MFE: items missing

    Hi,
    I'm a Nokia E71 user in combination with Mail for Exchange. It has been working fine but now I have problems with my calender: items that have been changed in Outlook 2003 (e.g. updated meeting with a new date/time) will not sync to my Nokia. Even a new initial sync doesn't help.
    Any good solution?
    Many thanks,
    Roger

    RM_E71 wrote:
    Hi,
    I'm a Nokia E71 user in combination with Mail for Exchange. It has been working fine but now I have problems with my calender: items that have been changed in Outlook 2003 (e.g. updated meeting with a new date/time) will not sync to my Nokia. Even a new initial sync doesn't help.
    Any good solution?
    Many thanks,
    Roger
    I had similar problem with my E75 couple of weeks ago. Calendar, contacts and notes refused to sync no matter what I tried. The only way I got them working again was complete refromat of the phone using codes *#7370# and *#7780# (I prefer using both of them to make sure even my lock code gets resetted)
    Help spreading the knowledge — If you find my answer useful, please mark your question as Solved by selecting Accept this solution from the Options menu. Thank you!

  • Report -use r interface missing

    hi,
    while executing the report i'm getting message status gui1000 of user  interface missing& standard icons like back/save etc at top are all greyed out.
    PL suggest

    Are executing a custom report ? i think your gui-status is missing or not active.. search thru the code and find where the line
    set pf-status 'gui1000'.
    double click on this line , system will prompt you with instructions to create or activate

  • Need help using list item as filter[WRONG POST PLS IGNORE]

    SORRY WRONG POST...
    Edited by: cjtjaime on Oct 8, 2010 12:33 AM

    sir i tried the code and it says: FRM-41003: This function cannot be performed here.
    what im really want to do is that after retrieving the dates from a push button, (remember yesterday where you help me retrieving multiple data).... i have a list_item where it has the elements JAN,FEB,MAR,APR,MAY.
    and then after selecting different month from the list_item the values that ive retrieve will be filter according to the value in the list_item
    it looks something like this:
    stud_id = 1001
    time_in
    01-JAN-10
    02-JAN-10
    03-JAN-10
    01-FEB-10
    02-FEB-10
    03-FEB-10
    after selecting FEB from the list_item it will goes like this
    time_in
    01-FEB-10
    02-FEB-10
    03-FEB-10
    thanks..
    -charles

  • Sharepoint Audit report with all items under Data and items selected

    Hi all,
    We have to use following settings under SharePoint
    Configure audit settings.
    Configure audit settings => Data and Items => specify events to audit.
    Under specify events to audit. Select all the available options.
    Could you please answer my following questions?
    What are the recommended guidelines from Microsoft to use audit reporting for collaboration site specifically. More in terms of which settings to be enables for logging considering disk
    space usage.
    If we want to select all options under document and items section for auditing what are the recommendations from Microsoft to implement it. Mire in terms of infrastructure enhancements
    to accommodate the additional log space requirements.

    It's always very relative how much space to reserve for audit logs on SharePoint. It depends on so much factors... Only you can decide what is the best practice for your environment.
    A sharepoint farm should be well maintained as per :
    1. Microsoft's recommendations on : Topology, Hardware and Software requirements, Operational procedures and most important Capacity guidelines:
    http://technet.microsoft.com/en-us/library/ff758645(v=office.15).aspx
    http://technet.microsoft.com/en-us/library/cc262787(v=office.15).aspx
    2. Organisation's IT policies and procedures : Farm Configuration, Workload and monitoring
    http://technet.microsoft.com/en-us/library/ff758658(v=office.15).aspx
    http://technet.microsoft.com/en-us/library/ee748651(v=office.15).aspx
    Also it might be useful to check  SharePoint Auditing Quick Reference Guide
    --- Jeff (Netwrix)

  • Cost center  report with line items by date

    Hi guys,
    i need to create a report by date, for cost centers that displays individual line items?,
    do u know if there is a bapi or  RFC for this?
    what tables are related for line items dates?
    i already know that coep but this table has period and not by date
    any ideas?
    tks in advance

    Hi,
    You can check out std reports like KSB1, KSB2, KSBP, KSB5.
    Also check Accounting-> controllong-> Cost center accounting-> Info system-> Reports for cost center accounting-> line items/more reports.
    Tables: COSP, COEP, COBK
    FM: K_KKB_KKBCS_COST_CENTER_REPORT
    Regards,
    Amit

Maybe you are looking for

  • Limited Enegy Saver Options in OS 10.6.5

    I've been waking up to find a message that my iMac has been running on battery power - presumably off my APC. This had happened in the past when I used a vacuum cleaner or there was a brief power interruption. In the past I had to put back the UPS st

  • Sun access manager 7.1 + sun web proxy server 4

    Hi all, we have installed policy agent 2.2 on the web proxy server 4.0.5. and AM is installed on another machine with ver 7.1. We are trying to prtectect an java application. ex:// http://stonycarter.com:9080/med when we hit this url we get redirecte

  • Complicated SQL

    Dears, I 'd like to create a SQL to return group data. I guess I don't create a procedure for manage this result, but I don't manage to create a SQL for this. My strutuct is alike this: create table t(c1 varchar2(1), c2 date, c3 number); insert into

  • Double items CCM

    Hi guys, We're currently facing an issue with double items in CCM and I ran out of ideas. The contentmanager has updated a catalog and published the Master. At first he didn't see the changes. He then removed the catalog, published the Master, upload

  • Code asked for while downloading Adobe creative suite 6 Design Standard

    while downloading the Creative suite 6 i was aked for a code on the top left of the inside box ...doesnt seem to be one....is this  PNn umber on the adobe sticker on the end of the box. help!