Crystal Web Elements in XI 3.0

Hi All,
Has anyone been able to get the Crystal Web Elements to work on XI 3.0.
For R2 the steps are simple to add the parameters in the web.xml file. I have tried the same for XI 3.0 and when the report is run it ain't working.
Is it still supported on XI 3.0 ????
Thanks in advance
Jacques

Try the following post:
Re: Web elements installation on 3.1
It worked for me to get HTML passthrough working on BOE XI R3.1 SP2 on .NET (WACS).
Regards,
Geoff.

Similar Messages

  • Year in drop down appears  using web elements as decimal

    Year field in database as number. I used crystal web element and deployed report in Infoview. But LOV for Year appear as decimal eg: 2,011.00. How to convert to number format as eg: 2011

    Hi,
    I am using the below code in sub report:
    stringvar field4:=left(replace(cstr({AllData.SLS_YR}),",",""),4);
    And using the below code in main report
    WESelect ("Year", P1L4,P1L4,cstr(year(CurrentDate)),MultiSelectfont)
    I am getting drop down with out decimals but current year is not appearing on top instead 2010 appears in infoview.
    Any help appreciated.

  • Add web element in Crystal report for SAP system

    Hi all,
    I have added web element in Crystal report for SAP system (BI or R/3) . But it does not show the control. It shows only scipt.It does not render the HTML.
    But if I add the webelement for Excel sheet ,It shows the control.
    How can I add web element for SAP System? Can't we use web controls in SAP system ?
    Help me in this regard.

    Hi All,
    i have the same issue on crystal report add-ins. Have you able to solve this without upgrading our sap business one to the latest version or patch level? Please see details below.
    OS: MS Windows 7 SP1
    SAP Business One 8.82 pl7
    Crystal report 2011
    Crystal report integration package installed under B1_SHare/Client
    But still the problem persist on the workstation.
    Please help me solve this problem.
    Thank you,
    ana

  • Crystal Reports XI Web Elements - populate WESelect element values from database field

    <p>Hi,</p><p>I am using Web Elements with Crystal Reports XI. I need to know how to populate the ElementValues and ElementDisplays arguments of the WESelect function from a database field. </p><p>In the function expert when I click on the ElementsValues and ElementDisplays values a drop down appears which will let me select a field or formula. However, when I try saving and leaving the formula workshop an error message is generated.</p><p> "A subscript must be between 1 and the size of the array".</p><p>I assume this is because the WESelect function is looking for the "|" separator in the ElementValues and ElementDisplays arguments.</p><p>Please advise.</p><p>Thanks</p>

    hello,Â
    in the webelements.zip download you should find a DCP report which shows the method for "rolling up" data using a subreport and passing these to a select control using shared variables.
    basically a string running total rolls up the values at run time and character separates them for use by the controls. for any type of select (drop down menu etc.) controls all of the values have to be made available before the main report is run so that's why you use this techique. you can think of it this way...instead of having an asp page that runs a database query and then populates a javascript array for the control, the subreport rolls up the values and passes them to the control.
    other types of controls that you wish to place directly on a group header or details section can be run off of main report fields or formulae...e.g. you can place a checkbox control on the details section without having to roll up the data in advance.
    by just putting a field name in the parameter for a select control, you will only get one value per control.
    i hope that this makes sense as it takes a bit to get used to at first,
    jamie

  • Web Elements in Crystal Reports on BOE XIr2

    <p>Hi</p><p>I am trying to set up my crystal report with multiple web elements controls and had a few questions.  Any assitance would be appreciated:</p><p>1) I have set up a radio button control and two drop down controls in my report.  When I post the report to BOE and view it in Infoview, I still see the initial parameter page pop up before getting to the report.  I have default values for each of the parameters and would like the report to bypass the parameter page and use the default values.  Once in the report, I am able to change the parameter values by using the web elements controls.  Any suggestions to get rid of the parameter page?</p><p>2) I also need to set up a hierarchical set of controls in the report.  I would like my radio button to be at the highest level and have the drop down box data be controlled by the radio button selection. How can I set this up?</p><p>3) Radio button - dynamic labels: I&#39;ve done this with a drop down box where the data gets populated from the result set data.  I was hoping to do that with a radio button as well, where the number of radio buttons and labels get dynamically generated based on the number of values in a column. </p><p> Appreciate any help with these.</p><p>Thanks<br />AJ</p>

    <p>hello AJ,</p><p>1) good question. once you&#39;ve built a custom page you never want to see that default prompt page again. what you should do is publish a hyperlink to your CMC that is an opendocument link with default prompt values to your report containing the controls. then hide the report itself in a folder that the end users can&#39;t see. this way only the hyperlink is available and no one will see that prompt page again.</p><p>2) if you open up the webelementsdcp.rpt from the webelements.zip folder, this is an example of heirarchical controls. for the first control in the ElementSet, substitute the WESelectCascade for a radio button control and you&#39;ll get the result you&#39;re looking for.</p><p>3) see #2...once you&#39;ve done the substitution above, the radio button will be using the same live data that the cascading select menu did.</p><p>cheers,</p><p>jamie</p>

  • Crystal Reports Web Elements - database write back question

    Hi,
    I have a question about Web Elements. In description of them on SAP site it says they can provide "write-backs to the database". This is something I would really like to see. I have a scenario:
    User sees a long report and sometimes she needs to add a quick note that should be saved into the database. That note can be entered into WETextArea I suppose and WESubmit button click can be an event  trigger for such a write back.
    I would like to see example of such functionality on Crystal Report rpt file.
    Please advise if anybody knows, I would highly appreciate your assistance.
    Regards, Grettir

    hello,
    webelements can be used for the interface to database writebacks...they don't do the writebacks themselves but create the interface to make it easier for an end user to add annotations etc...these values are then passed to a second report or a subreport. using the default prompting interface makes this quite difficult.
    here's where the database writebacks are done...since version 9 of crystal reports there have been command objects. command objects have the ability to use any database syntax that is compliant with the database connection. i.e. if the syntax can go through the odbc layer then you can do this in a command in crystal reports.
    commands will honour database securities so you don't have to worry about someone dropping a table if rights have been properly assigned. a word of caution there to ensure that database rights have been done properly as you don't want all end users to have the ability to write a report that can do database updates.
    commands are also database specific so you would have to check your database online help to see what syntax would be appropriate.
    the workflow would be to have 2 reports, one that had the webelements user interface and one that did the writeback. this user interface report would have the text object and submit button and using open document syntax, the values would be passed to the 2nd report that had the command object. the command object would have a prompt that would take the values from the open document url and then use the values in the write back.
    for example,
    1) the user interface report has one text object called "t1" and one submit button.
    2) the target command object report has a prompt called "t1".
    3) the target report command object has syntax like
    INSERT INTO yourtestable
    VALUES    ('{?t1}')
    SELECT     1
    4) yourtesttable in this case has only one text field
    5) the "SELECT 1" at the end of the command ensures that a dummy value is returned after running the update...to avoid a database error
    6) this syntax would be for sql server
    this is of course a very simplified example.
    if you are at tech ed phoenix, please drop by the business objects test drive area & i will be there. i can show you a bunch of different webelements examples and write back reports etc. until you become quite bored
    i hope that this helps,
    jamie

  • Navigation button and Web Elements with Crystal XIr2

    I'm very new to Web Elements.  I have a Crystal XI report that contains several subreports, each on a new page.  Is it possible to place forward and back buttons on the report for better navigation.  From this forum I here much talk about using the hyperlinks.  Are navigation buttons possible?
    Thanks in advance

    hello...actually that would just be subreport linking...i know...too many linking methods to keep track of  
    after reading what you wish to do (drill into a subreport and then try to get back to the main report) this will not be possible with report part linking...it only works if you are not drilled into a subreport. report part linking can be used to link back and forth between main report parts...for example you can put a text object on a report footer to bring the end user back to the report header...again, without reposting the report.
    in your case you'll want to use opendocument linking to get back to the report. create a link that will repost the same report. or if you want a button, you can use webelements to do that. a simple formula example would be
    stringvar path:=
    WETargetPath("rpt" , "Name", "yourreportsname", "");
    WESubmitButton ("start over", path, "")

  • How to populate data dynamically in WSelect web element.

    How to populate data dynamically in WSelect web element. what is the syntax of WSelect web element to populate data from the database

    Hi Jamie,
    There is no Url to download ackage, instead the link is taking here
    Crystal Reports webElements
    Can you give me correct link?

  • Web Elements 2.4 - Encoding Values

    I am using web elements 2.4 on XIR2.
    I have some cascading dropdown boxes populated with dynamic values from a subreport.
    This all works fine.
    However, some of the data has ampersand's in it such as 'B&P Level'
    Looking at the opendocument URL that the web element creates, it does not encode the values and so
    the & in the value is mistaken as the start of a new parameter.
    My question is, is there any update to web elements to handle non-standard characters and to encode the values in the javascript before it passes them to the opendocument URL?
    Thanks

    hey Brian,
    you have a couple of options when you have characters in the database that url's do not care for.
    option A
    if you use the extended (ext) cascading controls, they allow for a display value and an ID value to be passed. the ID is then used in your target report instead of your display value. this way the database values that you display in the controls do not have to be changed or encoded.
    option B
    you can use the urlencode function in crystal reports to change the value in the subreport that is rolling up the data.
    cheers,
    jamie

  • WEB Elements Usage

    <p>Can WEB elements be used by reports that are not viewed through Infoview?  For example a report being produced via a .NET application?  If so are there examples of this available? </p>

    hello,Â
    any html Crystal Reports viewer that can display passthrough HTML should be okay to use this function suite. viewers such as active x will not work.Â
    in order for the controls to pass the proper context from main to target report, opendocument syntax must be supported by your environment.
    even if you are using the business objects viewers, you do not need to present infoview to the end user...by creating a favourite that points to a "portal" report (i.e. a main report that has links, tree menus, tab menus that open up a report within an iframe or in a new window...) you can bypass infoview altogether. for example, if i have a report, webelementsdemoportal, i can use a favourite to access that report and not see any of the infoview wrapper using opendocument syntax similar to below...
    [http://machine:8080/businessobjects/enterprise115/desktoplaunch/opendoc/openDocument.jsp?sType=rpt&sIDType=Name&sDocName=WebElementsDemoPortal | http://machine:8080/businessobjects/enterprise115/desktoplaunch/opendoc/openDocument.jsp?sType=rpt&sIDType=Name&sDocName=WebElementsDemoPortal]
    watch in the next week or so for a package called "Crystal Reports Web Pack" which will have a portal example that uses the xtreme sample reports. there will also be an interactive quadrant report, and a yahoo maps integration report.
    i'm not familiar with any .net examples nor have i tried this. one main purpose of building the function suite was to allow the report developer to develop more aspects of their web application within crystal reports and without an additional development tool...to create things like simple reporting portals, jump pages, custom parameter pages, embedded controls, etc.
    let me know if it works out in your environment as i am curious.
    cheers, jamie

  • Web Elements

    Hi Webelements Masters,
    i am using the crystal with WEBELEMENTS...I have managed the webelemnts on to my report....but i actually struggling to connect. ex : i have a submit button or radio button or check box how can i link them?
    ex : i have submit button : when i click on it i want another report to display...but i dont get instead it says path is incorrect?
    stringvar path:= WETargetPath ("rpt", "Name", "jcalc", "weWindow=New");
    WESubmitButton ("update", path, "")
    am new to the web elements...
    pls looking for ur feed back.
    thank

    hello,
    on your report you should have a formula that contains a WEBuilder function. in this function, there is a "debug" mode that is either 1, 2, or 3.
    1) if you set it to 2, then when you press the submit button, an alert popup will appear that has the URL that is created by webelements. this uses opendocument syntax.
    2) you can write this URL down and then paste it into a new browser window and see if the path is correct there. most likely it will return the same error.
    3) you should then go into the Launchpad / InfoView portal and find the "jcalc" report to see if the name is correct. you may wish to change the path to use an ID instead of a name.
    i hope this helps,
    jamie

  • Back to Main Report-Web Elements

    Hi
    Based on the Web Elements prompts selection on the report we are displaying graph and table output which is an aggregarte information. On the same report, we are also using opendocument function called DetailReport to show detail information which shows the data in different report. On the other report we have kept BacktoMainReport using open document to show the Main report with graph and table output .
    Just wanted to know when we hitting on backtomain report with opendocument function, right now we are using query to go back to MainReport. Without doing that, is there any option to show the MainReport without generating query again .. i mean Report storing the information in cache,just showing that directly.
    Thanks
    Edited by: MUFIZA on Jan 25, 2010 8:31 PM

    hi Mufiza,
    if you are using cr2008 you can do this by saving a report to your enterprise system with the File > Save Data With Report option in conjunction with using the Saved Data Record Selection Formula. then every hit to that report will hit the data cache stored in the report as opposed to hitting the database.
    if you are using a lower version, the only thing you can do is cache your reports using the enterprise server settings. however, if you have parameter / prompts on the report in question, then this can become difficult. you can only hit a cached instance if that parameter / prompt combination has already been viewed within the caching time period, otherwise a database hit will be done.
    again, this is much easier to do with cr2008.
    also, you don't necessarily have to use opendocument linking either...to create a "back to main report" between 2 reports, here's a really easy way that uses Report Part linking:
    1) open up your 2 reports in the crystal reports designer (assuming that both are already stored in your enterprise system)
    2) on your "main report" Insert a Text Object on to the Report Header...leave it blank
    3) right click on the new Text Object and choose Copy
    4) on your 2nd report, Insert a Text Object on the Report Header and type in "Back to Main Report"
    5) right click on this new Text Object and choose Format Text > Hyperlink > Another Report Object and then Paste...this will paste the Report Part info from the Main Report into this 2nd report
    after saving the reports you can test the hyperlink in your enterprise viewer. for more info on Report Park linking see your online help in the Crystal Reports designer.
    cheers,
    jw

  • Pass values from report1 to report2 but without displaying the web element

    Need to pass a string value from report1 to report2.This can be done by using web elements. But in that case the web element is showing up when we run report1.So what is the way to avoid display of web element but still pass the value to report 2.
    Thanks

    if you have no need for webelements controls on a report and just need a simple hyperlink, use opendocument syntax in conjunction with an object's hyperlink properties in the formatting editor.
    see your online help for more info on opedocument.

  • Web Elements 2.0 Pass Thru HTML

    <font size="2"><font size="2"><p>Hello, </p><p>I am reading the Web Elements 2.0 doc from the ZIP file on the Diamond site and it says you need to enable pass thru html on the BO Enterprise Server.</p><p>Are they referring to the Internet Server here or the BOE XI server??</p><p>we are a distributed installation with BOE XI on one server and Microsoft IIS on another.</p><p>Here is the registry entry</p><p>[HKEY_LOCAL_MACHINE\SOFTWARE\Business Objects\Suite 11.0\Components\DHTMLViewer] &#39;EncodeHTMLForSingleLineFieldObjects"=no</p><p>Thanks,</p><p>Randy</p></font></font>

    <p>You are correct.</p><p>You need to enable pass through HTML on the Web Server not the BOE Server.   </p><p>Rob Horne<br /><a href="/blog/10">Rob&#39;s blog - http://diamond.businessobjects.com/blog/10</a></p>

  • Creating Web Elements with Photoshop or AE?

    OK, so I'm pretty fluent in Photoshop and After Effects.
    How can I use these skills to create interactive web elements?
    I'd rather not learn another product, but if I must, which one?
    Thanks!

    Nothing special about the link -
    <a href="blabla.pdf" alt="">White Paper</a>
    <a href="blabla.zip" alt="">White Paper</a>
    just be sure to zip the word documents to force a download
    dialog box
    "preciousjewels48" <[email protected]> wrote
    in message
    news:fpl92s$puo$[email protected]..
    >I am helping a friend with his webpage. NOT A
    PROFESSIONAL WEB DESIGNER,
    >just
    > know a little bit (smile)
    >
    > he wanted me to set up his page so when visitors come to
    his page they can
    > click and PDF or Word document will bring up a box for
    them to download
    > the
    > white paper.
    >
    > How do I do this with dreamweaver mx? or can it be done?
    I know I have
    > visited sites and I can click on a hyperlink and the pdf
    will display or I
    > can
    > download it.
    >
    > thanks,
    >
    > my email is [email protected]
    >

Maybe you are looking for