Publishing a BI-report as a Widget on the CRM home page

Hello,
I'm trying to publish a BI-report on the CRM home page in the WebUI.
I've created a Widget link and added the widget to the home page.
As URL for the widget I've entered the following code:
[http://electro.marvel.local:50000/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=ZCRM_APP_SURV_DEMO]
When I log on to the WebUI, the Widget is displayed with the logon screen for the BI-system. (I have not set up single-sign on.)
When I log on to BI, the browser goes crazy and just refreshes and refreshes.
What could be the issue here?
Kind regards
Johan Wigert
Edited by: Johan Wigert on Oct 2, 2009 12:07 PM

Hi Johan,
I'm trying to do the same and I have 2 questions:
1) How do you create URL for a Widget?
2) What was the issue and how did you fix it?
Thanks,
Deepali

Similar Messages

  • How do I add a new widget to the Desk Home Dock?

    Hello,
    I gave up on the built-in Accuweather widget as it was always 1-2 days behind in weather syncing.
    I am trying the Fancy Widget weather widget, which seems to sync up very well.
    I would like to add this widget to my Desk Home Dock, but when I select "Dock Widgets", the Fancy Widget is not shown as a selectable item.
    How do I add widgets that are not from the "built-in" list?
    Thanks.
    Bryan Hunt

    Moto Dock only shows the smaller widgets because it only have a limited space, Fancy widgets do not have a 1x1 size widget and this is why it will not show in the list.  Try Car Dock Home v3 at http://www.appbrain.com/app/car-dock-home-v3/net.cwfk.ig88.carhome3
    +

  • Home page report doesn't automatically generate

    user has to click on link before report generates. how can i get the report to pregenerate like all the other home page reports

    Phone customer care and ask them to turn on the "Execute report immediately" option and then edit your home page report web applet and there will be a tick box to execute it immediately.
    cheers
    Alex

  • Report with Prompt on Home Page

    I have created a report with column prompt. I have also included this report in 'My Home Page custom report'. But when i access 'My Home Page' i dont see the Prompt, i only see the report with all columns & data. Have i skipped some step to include prompt on home page ? Thx for help

    Hi,
    When we display a report on the homepage, the Prompt is not shown instead a link will shown in place of the report stating 'Click here to Generated Analysis'.
    Even though you have the prompt on the report it will not show on the homepage, as homepage reports are usually detailed report.
    You can add filter instead of using a prompt on the report.
    Hope this helps.
    Thanks

  • I am getting an FTP error message when publishing, it goes okay until it reaches home page.  The home page does not appear correctly.  Any help greatly appreciated

    I have a website using iweb and am having problems publishing.  When I try to publish it appears to be going through then stops at home page and I get an FTP error message.  I talked to my website host and they checked it from their end on two brosers and it is fine.  There suggestion was to contact this support group.  They thought it had something to do with iweb code writing.

    What version of iWeb are you using?  What are you using to upload the site files to your FTP server?
    I talked to my website host and they checked it from their end on two brosers and it is fine
    What did they check?  Have you tried viewing your site that's online to see if the changes went thru?  Before you do so clear your browser's cache (Command+Option+E for Safari) and then load the site.
    OT

  • Global Web Applets and My Custom Home Page Report

    Hello,
    I setup a custom "My Home Page Report" which is great but does not display the report when you load the home page without clicking the "Generating analysis... Click here to view the results" link. Is there a way around this?
    I then setup a a Global Web Applet and embedded this on the main home page. When doing this I found you cannot have 1 section that spans the entire width of the page as you can with a report (To my knowledge?). I then tried putting two Custom Web Applets side by side to display the graph and report I wanted. This works however, I have vertical scroll bars although the reports are perfectly displayed and do not require any scrolling. Is there a way to get rid of the scroll bars?
    Regards
    Innoveer

    Innoveer, you can contact customer care and ask them to provision your On Demand application with the custom homepage "Execute Report Immediately" option. However, you want to make sure that this custom report loads quickly - if not it will delay the loading of your homepage.

  • How do you download third party apps (widgets) onto the iphone?

    i have a cool new iphone. when i go to http://iphonewidgetlist.com/ there are lots of cool 3rd party apps which i would like to download but i can't figure out how to download anything nor do i understand how to transfer said 'download' to the iohone. any ideas?

    What you're looking at are web pages, expressly designed to run on the iPhone Safari browser's miniature screen. "Weblets", if you will.
    It is extremely unfortunate that people started calling them by the cute, but misleading name of "widget", since that really refers to something different.
    Anyway, you're expected to either bookmark your favorite weblets, or at least bookmark one of the pages that act as home pages for your favorites.
    (The latter are trying to look like the real Home page, which is where everyone wants these. And to tell the truth, it would make perfect GUI sense to let you place such a bookmark on your Home page, just as you can on a desktop. After all, the idea is to hide from the user what/where/how something works. But the iPhone is obviously still very much a work in progress.)
    Touchscreen laptop   Other OS  

  • Problem calling XML Report Publisher from Oracle Reports

    Hi,
    I'm facing a problem in calling XML Report Publisher from Oracle Reports.
    Basically, I'm trying to customise Dunning Letter program. The program which is submitted calls another program. I have customised the second program and added a call to a stored procedure which in turn calls XML Report Publisher.I have created a template and attached it to the second program as well.
    The procedure code is as follows.
    v_request_id := FND_REQUEST.SUBMIT_REQUEST(application => 'AR'
    ,program => 'ARDLP_NON_SRS'
    ,description => 'Dunning Letter Print from Dunning Letter Generate'
    ,sub_request => FALSE
    l_status := fnd_concurrent.WAIT_FOR_REQUEST
    ( REQUEST_ID => v_request_id,
    INTERVAL => 15,
    MAX_WAIT => 180,
    PHASE => l_phase,
    STATUS => l_status_code,
    DEV_PHASE => l_dev_phase,
    DEV_STATUS => l_dev_status,
    MESSAGE => l_message );
    v_xml_req_id := FND_REQUEST.submit_request(application => 'XDO',
    program => 'XDOREPPB',
              argument1 => v_request_id,
    argument2 => 'FLS DE AR Dunning Letter Print - German',
    argument3 => 603, -- changed 665 -- was 551,
    argument4     => NULL,
    argument5 => 'N',
    argument6     => 'RTF',
              argument7     => 'PDF');
    Now, there are two problems I'm facing...
    1. when the second program('Dunning Letter Print from Dunning Letter Generate') gets called it executes this procedure ... logically the 'Dunning Letter Print from Dunning Letter Generate' should get called twice ... second time from the procedure. Its getting called multiple times .. as many as 15 - 20 times.
    2. The Xml Report Publisher program ultimately gets called but its erroring out with the following error:
    java.sql.SQLException: No corresponding LOB data found :SELECT L.FILE_DATA FILE_DATA, DBMS_LOB.GETLENGTH(L.FILE_DATA) FILE_LENGTH, L.LANGUAGE LANGUAGE, L.TERRITORY TERRITORY, B.DEFAULT_LANGUAGE DEFAULT_LANGUAGE, B.DEFAULT_TERRITORY DEFAULT_TERRITORY,B.TEMPLATE_TYPE_CODE TEMPLATE_TYPE_CODE, B.USE_ALIAS_TABLE USE_ALIAS_TABLE, B.START_DATE START_DATE, B.END_DATE END_DATE, B.TEMPLATE_STATUS TEMPLATE_STATUS, B.USE_ALIAS_TABLE USE_ALIAS_TABLE, B.DS_APP_SHORT_NAME DS_APP_SHORT_NAME, B.DATA_SOURCE_CODE DATA_SOURCE_CODE, L.LOB_TYPE LOB_TYPE FROM XDO_LOBS L, XDO_TEMPLATES_B B WHERE (L.LOB_TYPE = 'TEMPLATE' OR L.LOB_TYPE = 'MLS_TEMPLATE') AND L.APPLICATION_SHORT_NAME= :1 AND L.LOB_CODE = :2 AND L.APPLICATION_SHORT_NAME = B.APPLICATION_SHORT_NAME AND L.LOB_CODE = B.TEMPLATE_CODE AND ( (L.LANGUAGE = :3 AND L.TERRITORY = :4 ) OR (L.LANGUAGE = :5 AND L.TERRITORY = :6) OR (L.LANGUAGE= B.DEFAULT_LANGUAGE AND L.TERRITORY= B.DEFAULT_TERRITORY ) )
    I have checked from database that the XDO_LOBS/ XDO_TEMPLATES_B table has corresponding registration data.
    I don't know what's creating the problem.
    If anyone has customised the Dunning Letter program before or having any idea about this problem, please help me out ..
    Thanks

    satrajit,
    Now I am getting the same error you got, Can you please tell me the solution you found?.
    XML Report Publisher 5.0
    Updating request description
    Waiting for XML request
    Retrieving XML request information
    Preparing parameters
    Process template
    --XDOException
    java.sql.SQLException: No corresponding LOB data found :SELECT L.FILE_DATA FILE_DATA, DBMS_LOB.GETLENGTH(L.FILE_DATA) FILE_LENGTH, L.LANGUAGE LANGUAGE, L.TERRITORY TERRITORY, B.DEFAULT_LANGUAGE DEFAULT_LANGUAGE, B.DEFAULT_TERRITORY DEFAULT_TERRITORY,B.TEMPLATE_TYPE_CODE TEMPLATE_TYPE_CODE, B.USE_ALIAS_TABLE USE_ALIAS_TABLE, B.START_DATE START_DATE, B.END_DATE END_DATE, B.TEMPLATE_STATUS TEMPLATE_STATUS, B.USE_ALIAS_TABLE USE_ALIAS_TABLE FROM XDO_LOBS L, XDO_TEMPLATES_B B WHERE L.LOB_TYPE = :1 AND L.APPLICATION_SHORT_NAME= :2 AND L.LOB_CODE = :3 AND L.APPLICATION_SHORT_NAME = B.APPLICATION_SHORT_NAME AND L.LOB_CODE = B.TEMPLATE_CODE AND ( (L.LANGUAGE = :4 AND L.TERRITORY = :5 ) OR (L.LANGUAGE = :6 AND L.TERRITORY = :7) OR (L.LANGUAGE= B.DEFAULT_LANGUAGE AND L.TERRITORY= B.DEFAULT_TERRITORY ) )
         at oracle.apps.xdo.oa.schema.server.TemplateInputStream.initStream(TemplateInputStream.java:309)
         at oracle.apps.xdo.oa.schema.server.TemplateInputStream.<init>(TemplateInputStream.java:187)
         at oracle.apps.xdo.oa.schema.server.TemplateHelper.getTemplateFile(TemplateHelper.java:776)
         at oracle.apps.xdo.oa.schema.server.TemplateHelper.processTemplate(TemplateHelper.java:1269)
         at oracle.apps.xdo.oa.cp.JCP4XMLPublisher.runProgram(JCP4XMLPublisher.java:807)
         at oracle.apps.fnd.cp.request.Run.main(Run.java:148)

  • BI publisher report is not showing all the data

    Hi All,
    I have created a report using BI Publisher in R12. The report is not showing all the records.
    I have checked the result XML it is also not having all the data. My query returns 846 rows but my report only has 662 rows.
    what might be the issue.please give me some idea to resolve this issue.
    Thanks in advance.
    Regards,
    P.Kalidoss

    Hi Arun,
    In the following code: public SelectItem[] getAllPrinters() {
    if (allPrinters == null) {           // allPrinters is not defined. what type of object it is
    PrintService[] printers = PrintServiceLookup.lookupPrintServices(null, null);
    allPrinters = new SelectItem[printers.length];
    for (int i = 0; i < printers.length; i++) {
    SelectItem printer =
    new SelectItem(printers.getName(), printers[i].getName());
    allPrinters[i] = printer;
    return allPrinters;;;
    Variable allPrinters is not defined. what type of object it is?
    And also the same variable is referenced here <af:selectOneChoice label="Available Printers" partialTriggers="cb1"
    value="#{pageFlowScope.applicationPrinterBean.selectedPrinter}"
    id="soc1"
    autoSubmit="true">
    <f:selectItems value="#{pageFlowScope.applicationPrinterBean.allPrinters}" id="si1"/>
    </af:selectOneChoice>.
    Thanks.

  • Dynamic publishing of crystal report in portal.

    Hi All,
    My understanding of publishing Crystal Report in portal is using the URL iview, is my understanding correct.
    I have checked this in [Integration of BOE XI3.1 into the SAP Enterprise Portal 7.x|http://wiki.sdn.sap.com/wiki/display/BOBJ/IntegrationofBOEXI3.1intotheSAPEnterprisePortal+7.x] wiki
    and my question is, when publishing the crystal report from Crystal Report Designer, it is published in BI via the bw publisher and saved under some BW role. Is it possible to display the saved report in portal with out creating the url iview as an object of pcd in portal, i mean the report which is saved under BW role needs to be displayed dynamically in portal with out iview creation. Is this possible.
    Can someone comment on this.
    Many Thanks,
    Ansar

    Hi Ansar,
    The Crystal reports can be used for publishinh good quality gralha and charts through BW. though making a URL iView is not the only option.
    Good examples of Crystal report usage have been explained in the link below:
    [Crystal Report with BW|http://www.bi-expertonline.com/article.cfm?id=3666]
    Regards,
    Shailesh

  • How to publish a Crystal Report in Business One

    Hi
    Please can anyone tell me how I publish a Crystal report (which is now inbuilt in SAP B1) so it is available to all users?  I have full administrator/manager user rights. I have so far created the report and saved it to my SAP server machine on it's C:drive.
    Thank you very much for any help and info.
    Matt

    Hi, I worked out how to do it. I had to first enable the Crystal Add on from within SAP and then open the Crystal Reports Administration menu under Administration and then select "Manage Crystal Reports". From there you can browse to the report you have created and select the module for where you want it to appear under in SAP.
    Edited by: matth76 on Jun 25, 2009 4:14 PM

  • How to publish non-Crystal Report files in BO XI R2?

    Development Environment:  Visual Studio 2005, C#
    I'm working on a project where I need to publish non-Crystal Report files - specifically Excel and Text files - to a specified folder in BusinessObjects XI R2.  However, I'm having a very hard time finding any samples for how to do that.  I know how to publish Crystal Report files, so I figure I'll need to instantiate a PluginManager object of the correct type, but I'm not sure how to load the file from there.
    Can anyone provide some sample code or point me in the right direction so that I can figure this one out?  Thanks!
    -Dell

    A code snippet for Text:
            txtPath = @"C:\mytext.txt";
            ceSession = (new SessionMgr()).Logon(username, password, cmsname, authtype);
            InfoStore infoStore = new InfoStore(ceSession.GetService("InfoStore"));
            int folderID = ((InfoObject) infoStore.Query("Select TOP 1 SI_ID From CI_INFOOBJECTS "
                                                         + " Where SI_KIND='Folder' "
                                                         + " And SI_NAME='" + folderName + "'")[1]).ID;
            InfoObjects txts = infoStore.NewInfoObjectCollection();
            Txt         txt  = (Txt) txts.AddEx("Txt");
            txt.Title = "Test Text";
            txt.Files.Add(txtPath);
            txt.ParentID = folderID;
            infoStore.Commit(txts);
    Ted Ueda

  • Error on publishing new CR-Report in BO XI R2 on Suse Linux

    Hi!
    We're quite fresh to BO and are currently experimenting with our new system. A few days ago I managed to create a Crystal Report and published it via Infoview and the CMC. Today I changed the report and tried to upload it to the Server but got an error.
    When I try to upload it via Infoview I get the message that "An unexpected error has occurred" - no code, no further information.
    When I try to upload it via the CMC the message is
    "Fehler beim Abrufen der Daten vom Server: Daten aus Berichtdatei /opt/bo/bobje/tomcat/temp/bericht.rpt konnten nicht gelesen werden. Grund: Interner Fehler: Die temporäre Datei /opt/bo/bobje/tomcat/temp/bericht.rpt kann nicht erstellt werden
    For the non-german speaker: The temporary file /opt/bo/bobje/tomcat/temp/bericht.rpt could not be created.
    Two files are created in my log directory:
    wca_20080612_131454_17372.log
    ReportAdd_20080612_142135_792.log
    The corresponding entry in the wca-logfile is:
    [Thu Jun 12 14:21:25 2008]      17372   1536674720      assert failure: (ObjectAdminPage.cpp:8551). (SUCCEEDED( client_data->GetPostValue( CComBSTR(PARAM_NEW_
    OBJ_CAT_SEARCH_OLD_CATS), &bstrOldSelCats )) : no message).
    and the ReportAdd says:
    Timestamp       ProcessID       ThreadID        Message
    [Thu Jun 12 14:21:35 2008]      792     1128363120      assert failure: (FromCrpe.cpp:109). (FALSE : Failed to make temporary file).
    The rights for the tomcat/tmp-directory are IMHO OK - the BO-user is the owner of the directory and has read-write-execute-access.
    I can upload other documents without an error, just CR-Reports don't work.
    Does anybody have an idea?
    Thanks in advance,
    René

    The ReportAdd trace is the relevant one.
    When you publish a Crystal Report via CMC or InfoView, it spawns a process for the ReportAdd executable to create a temp copy of the rpt file and parse it for relevant parameters.
    You have CMC/InfoView deployed on a Java Web App Server - default is Tomcat. 
    Is the OS credentials under which the app server running have access to the temp folder?
    Sincerely,
    Ted Ueda

  • Business Objects Enterprise and publishing Access Database reports

    Hi,
    I have searched the forum but cannot find anything to help me so any help would be appreciated
    I have an access database on a shared drive that I want to publish a report for.
    On the BO server I created a system DSN to the database through a mapped drive.
    I use the publishing wizard to configure the report but I am getting the following error when I try and run the report:
    Unable to connect: incorrect log on parameters. Details: [Database Vendor Code: -1023 ]
    I have also gone in on the Business View Manager and created the connection and it connects successfully.
    I have successfully published Sybase and SQL reports but I just cannot get the connection to the Access Database to work.
    Thanks in advance,
    Sinead

    Try using UNC to point to the database.  In other words,
    servername\sharepoint.
    Also, make sure the service account of the server processing the report (I don't think you mentioned what type of report it was) is running under a domain user account that has access to the share (rather than the default local system).  You can set this in the CCM.

  • XML Publisher - can we specify multiple SQL statements in the report?

    Hi there,
    can we specify multiple SQL statements in the report with XML Publisher?
    Regards,
    Liviu

    Could we eventually generate with the Wizards available in XML Publisher desktop 5.6.2 an xml file with a structure like the one given below? The reason is to facilitate creation of the two rowsets. Thanks, Liviu.
    <?xml version="1.0" encoding="UTF-8"?>
    <DATA>
         <ROWSET2>
              <ROW2>
                   <FIELD1>Query1</FIELD1>
                   <FIELD2>field2</FIELD2>
                   <FIELD3>field3</FIELD3>
              </ROW2>
         </ROWSET2>
         <ROWSET>
              <ROW>
                   <FIELD1>Query2</FIELD1>
                   <FIELD2>field2</FIELD2>
                   <FIELD3>field3</FIELD3>
              </ROW>
         </ROWSET>
    </DATA>

Maybe you are looking for

  • How to embed Font in as3?

    Hi guys, I want to embed font "RUPEE_FORADIAN" in as3? how can i do that? can you please tell me? Thanks in Advance!!!!! Regards, JaxNa

  • Storing file contents in a Collection

    Hi All, Im trying to read a csv file, break the lines by comma, then store them and sort them. I have the test code working from: http://java.sun.com/docs/books/tutorial/collections/interfaces/order.html I am reading the file, but when I System.out.p

  • Returned MacBook Pro, recieved a different model?

    hey i bought a MacBook Pro on jun. 17 from the apple store and was told that it was the newest model. A few weeks later, the screen started shuting off randomly so i called up apple customer support and we did a full system restore (we formatted the

  • Conversion failed when converting the varchar value to data type int

    Hi, I am unable to resolve this error and would like some assistance please. The below query produces the following error message - Msg 245, Level 16, State 1, Line 1 Conversion failed when converting the varchar value 'NCPR' to data type int. Select

  • Submit pdf to web service as xml

    I want to do the following: a) Create a pdf form that the user can fill out and save using their laptop. b) The user goes back to the office, opens the pdf, and clicks a submit button. c) The submit button contacts a web service (that I will write) a