BO Mobile Reporting - Issue with prompts

Hi All,
I am working on hypelrink reports for mobile, i have two reports main report and child report
from the main report i am sending the prompts for current month (CM) and previous month (PM)like (CM =9, PM = 8)
the child report is detailed comparison report for the selected CM and PM (as prompts)
when i am validating in the infoview on any PC, the hyperlinking is working perfectly and able to get the data properly
but when i am check the same in blackberry mobile i am not getting the result- but the values are passing to the child report (but corrsesapnding to the months i am checking revenue, which is blank value)
Hyperlink genreated:
*<a href="../../opendoc/openDocument.jsp?iDocID=46425&sType=wid&sReportName=BusinessUnit&sRefresh=Y&lsSEnterMonth=8&lsSEnterMonthPM=7&sWindow=Same">-6.6</a>*
also when refresh the report in mobile i could see the values for prompt values
like  for CM                 for PM
9                                        9
8                                        8
7etc--                                7-etc-
9(repeated again)             8(repeated again)
Please help me on this
the BO version details are  - BOE 3.1 SP2 with FP2.1 and Mobile server also with 3.1 SP2 & FP2.1
Thanks,
Ram

Hperlink syntax -- href="../../opendoc/openDocument.jsp?iDocID=46425&sType=wid&sReportName=BusinessUnit&sRefresh=Y&lsSEnterMonth=8&lsSEnterMonthPM=7&sWindow=Same">-6.6</a>

Similar Messages

  • SAP BO 4.1 Webi report sample with prompts to try Restful api

    I was not able to find, in the report demo samples available in the SAP BO 4.1 installation, a Webi report with prompts.
    I found many Webi reports samples but all are without prompts.
    I need at least one Webi report sample with prompts to try the Restful API http://localhost:6405/biprws/raylight/v1/documents/7090/parameters and http://localhost:6405/biprws/raylight/v1/documents/7090/schedules with parameters body.
    Where can I found such webi sample?
    Thanks,
    Riccardo

    As you have BI 4.1 installed, you could design a sample webi report using Webi Rich Client tool.
    Open Webi rich client, select the sample eFashion universe drag few objects in the query and a filter. Set the filter as a prompt and save the report to Enterprise.
    Now you could now use this sample report for your handson on REST SDK.
    -Bhushan

  • Droid Razr 4G Mobile Hotspot Issues with PS3

    I am hoping someone else had this issue and has been able to resolve.  I just got a Droid Razr this week, and I have the 4G mobile hotspot feature.  I am trying to replace my slow DSL line at home, and most things in my house have tested fine (Internet access, etc.).  However, my PS3 seems to have some issues, particularly with online gaming and testing the network connection.  The game I am testing now is COD MW3.  I thought maybe something like IP ports were blocked on the phone or 4G network, but searching online seems to indicate that isn't an issue.  If I reconnect my PS3 back to the DSL, online gaming and network tests work just fine.  Move it back to 4G and the game won't connect and the network tests don't complete.  
    I don't see any features on the phone that would indicate that you can modify any firewall like settings.  Anyone else experience similar issues?  Thanks in advance!

    I'm having the same issue with my Samsung 4g hotspot as well.  I can get onto the PSN, download game updates just fine, but when I'm in a MW3 lobby, it just sits there and eventually times out and a XMB message displays that i've been disconnect from the wireless access point.  Anyone have any ideas? 

  • 10g Reports issue with XML Data Source

    Hi,
    Has anybody ever encountered an issue with Oracle 10g report using an XML as the data source? What happens is, some of the values in the XML are printed to the wrong column.
    One of the elements in our XML file is a complex type with 10 elements under it. The first 5 are picked up properly, but the last 6 are not. Elements #6 to #9 has a minimum occurence of 0. What happens is when element #6 is present, but #7 is, the value for element #7 is passed on to element #6.
    The XSD and XSL files are both valid since the reports were working when we were still using 9i. There is no hidden logic in the report which might cause this issue to come up, i.e., the report just picks up the values from the XML and prints it to the appropriate columns.
    Any help will be greatly appreciated.

    XSD used
    <?xml version="1.0" encoding="UTF-8"?>
    <xs:schema xmlns:xs="http://www.w3.org/2001/XMLSchema" elementFormDefault="qualified">
            <!-- trade instructions detail & trailer -->
            <xs:element name="TradeDetail">
                    <xs:complexType>
                            <xs:sequence>
                                    <xs:element ref="TradeType"/>
                                    <xs:element ref="TradeID"/>
                                    <xs:element ref="TradeDate"/>
                                    <xs:element ref="FundID"/>
                                    <xs:element ref="FundName"/>
                                    <xs:element ref="DollarValue" minOccurs="0"/>
                                    <xs:element ref="UnitValue" minOccurs="0"/>
                                    <xs:element ref="PercentageValue" minOccurs="0"/>
                                    <xs:element ref="OriginalTradeID" minOccurs="0"/>
                                    <xs:element ref="CancellationFlag"/>
                            </xs:sequence>
                    </xs:complexType>
            </xs:element>
            <xs:element name="Instruction">
                    <xs:complexType>
                            <xs:sequence minOccurs="0">
                                    <xs:element ref="TradeDetail" maxOccurs="unbounded"/>
                            </xs:sequence>
                    </xs:complexType>
            </xs:element>
            <!-- overall trade instruction message -->
            <xs:element name="InterchangeHeader">
                    <xs:complexType>
                            <xs:sequence>
                                    <xs:element ref="Instruction"/>
                            </xs:sequence>
                    </xs:complexType>
            </xs:element>
            <!-- definition of simple elements -->
            <xs:element name="FundID" type="xs:string"/>
            <xs:element name="TradeType" type="xs:string"/>
            <xs:element name="TradeID" type="xs:string"/>
            <xs:element name="TradeDate" type="xs:string"/>
            <xs:element name="FundName" type="xs:string"/>
            <xs:element name="DollarValue" type="xs:decimal"/>
            <xs:element name="UnitValue" type="xs:decimal"/>
            <xs:element name="PercentageValue" type="xs:decimal"/>
            <xs:element name="OriginalTradeID" type="xs:string"/>
            <xs:element name="CancellationFlag" type="xs:string"/>
    </xs:schema>
    XML used
    <?xml version = '1.0' encoding = 'UTF-8'?>
    <InterchangeHeader xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="TradeInstruction.xsd">
       <Instruction>
          <TradeDetail>
             <TradeType>Purchase</TradeType>
             <TradeID>M000038290</TradeID>
             <TradeDate>20061201</TradeDate>
             <FundID>ARO0011AU</FundID>
             <FundName>ABN Fund</FundName>
             <DollarValue>2111.53</DollarValue>
             <CancellationFlag>N</CancellationFlag>
          </TradeDetail>
          <TradeDetail>
             <TradeType>Redemption</TradeType>
             <TradeID>M000038292</TradeID>
             <TradeDate>20061201</TradeDate>
             <FundID>ARO0011AU</FundID>
             <FundName>AMRO Equity Fund</FundName>
             <UnitValue>104881.270200</UnitValue>
             <CancellationFlag>N</CancellationFlag>
          </TradeDetail>
          <TradeDetail>
             <TradeType>ISPurchase</TradeType>
             <TradeID>M000038312</TradeID>
             <TradeDate>20061201</TradeDate>
             <FundID>MLC0011AU</FundID>
             <FundName>Cash Fund</FundName>
             <OriginalTradeID>M000038311</OriginalTradeID>
             <CancellationFlag>N</CancellationFlag>
          </TradeDetail>
       </Instruction>
    </InterchangeHeader>
    XSLT used
    <?xml version="1.0" encoding="UTF-8"?>
    <xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
            <xsl:output method="xml" version="1.0" encoding="UTF-8" indent="yes"/>
            <xsl:template match="/">
                    <InterchangeHeader>
                            <xsl:for-each select="InterchangeHeader/Instruction/TradeDetail">
                            <xsl:sort select="FundName"/>
                            <xsl:sort select="TradeDate"/>
                                    <TradeDetail>
                                            <TradeType><xsl:value-of select="TradeType"/></TradeType>
                                            <TradeID><xsl:value-of select="TradeID"/></TradeID>
                                            <TradeDate><xsl:value-of select="TradeDate"/></TradeDate>
                                            <FundID><xsl:value-of select="FundID"/></FundID>
                                            <FundName><xsl:value-of select="FundName"/></FundName>
                                            <DollarValue><xsl:value-of select="DollarValue"/></DollarValue>
                                            <UnitValue><xsl:value-of select="UnitValue"/></UnitValue>
                                            <PercentageValue><xsl:value-of select="PercentageValue"/></PercentageValue>
                                            <OriginalTradeID><xsl:value-of select="OriginalTradeID"/></OriginalTradeID>
                                            <CancellationFlag><xsl:value-of select="CancellationFlag"/></CancellationFlag>
                                    </TradeDetail>
                            </xsl:for-each>
                    </InterchangeHeader>
            </xsl:template>
    </xsl:stylesheet>

  • HT1933 Following the instructions above, I'm constantly redirected to this help page rather than receiving any drop down list to select what my problem is. Are there any other ways to report issues with purchases?

    Following the instructions for reporting an issue with a purchase problem, when selecting "report a probelm", I am not provided with a drop down list, I am redirected to the help page instead.
    Is there any other way to report an issue where the app owner has taken the funds twice for the same product at literally the same time?

    To Contact iTunes Customer Service and request assistance
    Use this Link  >  Apple  Support  iTunes Store  Contact

  • Query report issue with Joins

    HI Everyone,
    I'm facing a issue with SQ02, where I need to link 2 table COVP and AFRU . Now that I have 2 feilds in COVP REFBN and AWORG which is or Char(10) feilds and I need to link this with tabl;e AFRU feilds RUECK and RMZHL which is of Num(10) and Num(4).
    I cant use a join link between these 2 feilds as it says illegal join. Now I need to pull data by the input from COVP that of refbn and aworg.
    Please let me know how to go about and implement this? Is there a way where I can use the code section and write code for this. I need to further add another table CATSDB from the output from AFRU.
    Thanks & Best regards,
    Raj

    Hi Raj,
    I had the same problem with other join, since the two fields are different it is not possible to use a join on them.
    The only solution that occurred to me was to create an auxiliary table to map both fields with all possible values, like this:
    | fild1 | field2  |
    |   001   | 00001 |
    |   002   | 00002 |
    And a view with one of the tables together with this auxiliary one. Then the join would use this view...
    I admit it isn't pretty, but it would work. However in the end I've decided to write a program instead of using a query to obtain our client's desired map.
    best regards,
    Edgar

  • Web Gallery / Mobile Me - issues with IE 6?

    Hi,
    I have uploaded my latest set of photos on the web gallery. But when I want to see the web gallery with IE6, it says - "We recommend a newer browser" and it lists the three browsers - IE7, FF 1.5 or higher and safari 3.0 or higher. There is a button that says Use current browser and a checkbox that says "do not warn me again". Even if I click the checkbox, the browser does not load the gallery page.
    Do we really need IE7 now to view gallery? I do have FF and that seems to work fine, but my folks are still very IE savvy.
    Is this a bug or is this expected? At least the browser should continue loading the page, even after you check the "Don't warn me again" checkbox and click on the "Use current browser" button.
    Anyone else seeing this issue?
    Thanks,
    Abhi

    I haven't seen much on Mobile me yet - here is the apple page for mobile me on a PC - http://www.apple.com/mobileme/features/pc.html - and in the upper right hand side there is a link to the tutorials - you might get more information there
    We recommend a newer browser" and it lists the three browsers - IE7, FF 1.5 or higher and safari 3.0 or higher.
    This sounds like a design not a bug
    LN

  • Issues with Prompts date

    Hi,
    I have created two date calender prompts from the same date column of the time dimension 'from date' and 'to date' and saved those into Presentation variables.
    I have to show 'amount' into one column(say opening amount) if transaction date is before 'from date'. and into another column (say debit) when transaction date is after 'from date'.When in criteria tab I try to enter the formula something like (case when transaction_date > @{from_date} then amount end) it is giving me error.
    nQSError: 46030] Field descriptor id 0 is beyond the maximum field count 0
    Can anyone has come across the same issue?
    Regards,
    Vikas

    Please don't change anything to OBIEE.
    You must do the difference between the data type date and date format.
    When you create a dashboard prompt with a date column and you set up a presentation variable. The presentation variable take the same data type. It become a date.
    The format is specifically the work of BI Presentation service to take this date and to transform it in the way that want the user (depending of the language).
    What I would say, is that you must set up in the default value of the filter also a date (and therefore not a character).
    Unfortunately when you enter this :
    DAY is greater than or equal to @{from_date}{1990/6/6}Obiee see it as a character
    And what I have discover is that if you want a date the cast function don't follow the format depending of the configuration, you have to use this format :
    DAY is greater than or equal to @{from_date}{cast('1990-06-06' as date)}In this way, you will have two datea where the format change when you change the local definition (to French for instance) in your account profile.
    You can also use this form :
    DAY is greater than or equal to @{from_date}{date '1990-06-06'}Edited by: gerardnico on Jun 24, 2009 7:38 PM - suppress a bad bracket

  • Bi publisher report issues with selecting multiple parameters.

    Hi there I have a Bi publisher report when I query it for a single parameter it works fine and gives me the result.
    But when I select multiple parameters Lets say I have selected 3 parameters and try to view the results it does nt give me a proper report. It leaves me some blanks and gives me negative values.
    The report is working finr for one parameter In order to select two parameters I added the following code in the sql query
    and ( coalesce(null, :JOB_ID) is null
    or c.JOB_ID in (:JOB_ID)) .
    Can some one please let me know if this is correct or should I have to add anything else in the query.
    Even if I hard code it by saying JOB ID IN ('x','y','Z') and try to run the report it is not giving me exact values.
    BUt when I run the same query in database am getting correct values..
    Can anyone help me with this issue please??
    Thanks

    1. What version of BIP are you using?
    2. Can you please paste here your complete SQL data model?
    3. Can you get us an example how this will work?
    4. Can you be more specific about the error you get and the output?
    thanks
    Jorge

  • Historical report issue with CCX Custom Reason codes

    Hi Evryone,
    I have CCX version 8.5,
    In Cisco Desktop Administrator ,I have configured custom Reason codes for agent logout & Agent not ready,
    These code are working ok when agent is loging out or Not ready,
    But in Historical reports I am not able to see these custom Reason code base reports
    I can only see the reports for agent not ready/login logout with only global reason codes, but report didnt show the cutom reason code base report
    Please help me to troubleshoot this issue.
    Regards
    Deepak

    hi Deepak, 
    Did you do something else while creating new global reason codes? 
    I have global reason codes, but in the the Historical Reports "detail" tab don't show up any of them. Report only shows system-genereted reason codes.
    BEst regards

  • NFL Mobile, Having issue with the video feeds.

    I have a Motorola Android 2 phone. I've had the NFL Mobile app installed on my phone now for close to a year. I pay the $5.00 a month to get all the streaming video's, NFL Red Zone and NFL Network live feeds. I really like the app and use it almost everyday (as it is great for following your favorite team and team related news when your on the go). Anyways I've been having the same issue now for the last 4 to 5 months. When ever I go to watch a video or live NFL Network feed, the video will play and play all the way through, but the image itself is all scrambled....to the point where you can barely make out what is even going on, on the screen. The audio on the other hand is completely fine. It's really clear, no crackling, etc. It's just the video itself that is not coming through clear. Like I said before it doesn't matter what video it is, it could be archive footage or live streaming feeds. The audio works just fine, you can hear everything going on no problem, but the video looks all.... "scrambled"...I guess that would be the best way to describe it.
    If anyone else out there has experienced what I've just explained or knows of a way to fix it I'd love to hear your comments. I would have brought this up sooner but I didn't start experiencing it until after the season was over so it wasn't super important at the time, but with the new season fast approaching, I'd like to get this problem solved asap.
    Just a quick note, I have tried uninstalling the app and reinstalling it, clearing data, etc. I'm all out of ideas. Any help would be greatly appreciated.
    Thanks Mike

         Hey, I'm right there with you. I love the NFL and the app works great with this recent exception. It doesn't get much better than the NFL Red Zone, unless you have the NFL Sunday Ticket. Anyways to answer your 1st question, No I'm not having any problem with any other videos. You Tube works great along with any other video playing apps I have. It's only the videos on my  NFL Mobile app. Like I said they were working fine up until a few months back, then they decided to stop working. The thing I find weird is, the video still plays, and the audio is great, the picture is just fuzzy and scrambled. It reminds me of when I was younger and "if" your parents had cable but didn't have Cinemax, late at night you could flip the channels back and forth really quick hoping in vein to see a breast for a split second....that's what the screen looks like.....(didn't mean to take it there but that is exactly what the screen reminds me of if you actually sit and watch one of these videos, streaming live or archive).
         To answer you second question, I've had the phone for over 3 years so I highly doubt a warranty still exists. Sense I've had my phone for so long I'm way over do for a upgrade which I have several being that I've had my phone for so long. That's not the point though, my phone still works great, I've taken excellent care of it and to top it off the screen still has no scratches. If for some reason I can't resolve this issue getting a new upgraded phone was going to be my next option, but would like to see if I can fix this before going that route.
    One thing I was thinking, may have happened, is maybe there was an update and for some reason it caused what is happening with my phone. Sense this has happened I've looked all over the internet to see if other people are experiencing what I've been dealing with and can't seem to find anyone. It seems like my case is isolated to say the least. I've experienced updates changing or effecting my apps in the past that's the only reason I was thinking maybe it had something to do with that, but that is pure speculation.
    Thanks for your reply and I'll be looking forward to hearing back from you.
    Mike

  • Reports issue with pdf

    Dear all,
    I have migrated a reports form 6i to 10gR1.
    We are facing an issue while printing with PDF.
    The printed page is not corresponding in term of margins to the initial print (with 6i).
    And we have some predefined paper and we cannot change them
    When, on my local PC, I'm trying to print it directly from Report, it is fine.
    It is really due to PDF format.
    The margins are identical, the paper size too.
    Why PDF file is not corresponding to the REPORTS?
    Any idea?
    Best regards,
    Sebastien

    While printing PDF, change PDF print settings:
    'Shrink oversized pages to paper size' as Checked (selected)
    This may solve this issue.

  • Crystal Report Layout With Prompts SAP BO v8.8

    Forum members,
    I can successfully import a Crystal Report with parameters as a REPORT type into SAP BO 8.8.  But when I attempt to upload the same report as a LAYOUT type, I receive the error, "Missing Parameters" and the import process halts even when I set a value as the default value for the parameters.  I have two questions:
    1.  Does SAP BO v8.8 support Crystal Report parameters in print layouts?  If it does,
    2.  How do I resolve this error message and get this functionality to work?
    Thanks!
    Gregg

    I ended up submitting this to SAP support as a bug.  Found that we can successfully print using the preview button first and then printing from that interface but sending the report directly to the printer or pdf generates an error.
    Edited by: Gregg Horwitz on Mar 30, 2010 8:30 AM

  • Visual report issue with PP 2010 - Displaying too many years

    Hi,
    I am using project pro 2010.  When I display a report (e.g. Resource Cost Summary), and if I add the Monthly Calendar field in the report, it displays 7 columns from 2010 to 2016 even though there is data only for 2014 and 2015. I need to manually
    filter out all years with no data.
    Is there a setup that would display only the years and months with data?
    It was working fine before I update MS Proj.
    Thanks!

    Benoit1 --
    First of all, do you have your copy of Microsoft Project 2010 patched with the most recent Service Packs and Cumulative Updates?  If not, I would strongly recommend you do that.
    I am not able to duplicate your problem, but there is a way to work around it.  In the Excel PivotTable, click the Year pick list, deselect the years you do not want to see in your Visual Report, and then click the OK button.
    Hope this helps.
    Dale A. Howard [MVP]

  • Sap Query Web Reporting - Issues with accents

    Hi,
    We was using Web Reporting for Sap Querys, throw this tool we can generate automatically web reports.
    When we go to generated web report, selection screen show us character &#56292; instead accent letters.
    In addition to this, generated web report shows two buttons with german text: "report ausf?" and "Werte zur?zen".
    Guaranteed Rewards points.

    Hi Peluka,
    are these web report generate by SAp Query ITS based. If yes this is the right forum to ask, if no I would sugest to ask in the BI forum.
    Best regards,
    Klaus

Maybe you are looking for

  • EFI update 2.1 for lion recovery in Mountain lion

    When the EFI update 2.1 for lion recovery in Mountain lion is done and when i restart my Macbook, the sleep indicator flashes and the machine makes a beeping sound for about 3 seconds and the machine starts up. Any thing to be worried about..? I bele

  • What's the simplest way to transfer photos from iPhone to MacBook

    Since AirDrop evidently is worthless, how do you quickly move pictures from your iPhone (or iPad) to you computer?  I've used various services like DropBox and DeskConnect, even email.  Is there something built in to the OS that would let me do this

  • BP contacts query

    Hi All Please help me with a query showing all contacts added to a BP within a specified time. This is what I have so far: SELECT T0.[CardCode], T1.CARDNAME, T0.NAME as 'Contact Person' , T0.Cellolar, T0.[updateDate],  T2.U_NAME as 'User' FROM ACPR T

  • Returnable packaging matrl in Delievery

    Hi, IN STO from Manufacturing plant to Depot within Company code. We are tranfering material material assume Chlorine,For transfering Chlorine Turner is required as a Returnable Packaging material. At the time Of delievery(VL02N) we are attaching Ret

  • Title in Charts

    Hello All, I have a requirement where in i want to Display the chart TITLE like as below, "XYZ Organisation Report From 01-May-2001 to 05-May-2005" Am able to display the 1st line i.e "XYZ Organisation Report", but am not able to get the second line