Show report different at the client

hi for all
i design report by crystal report . when i run it from crystal i found all is right as i design but when i open the same report from application as report viewer i found the text is different (mean as symbol ( appear as symbol ))
what i do for this problem .
thanks for all

Hello,
This function returns the file name of the report being executed.
http://www.oracle.com/webapps/online-help/reports/10.1.2/topics/htmlhelp_rwbuild_hs/rwrefex/plsql/builtins/srw/srw_get_report_name.htm
Regards

Similar Messages

  • Mapviewer displaying maps differently from the client than from the server

    Can anyone explain to me why this is happening. I have been deploying my java server page to the server, and the way it works is to have multiple base routes which are not originally shown, but the user can 'check' them and they will display. On the server this works as one would expect, but on the client
    I originally couldn't get this to work through Jdeveloper, but now it works -- that's another story :(
    all of my base maps are displayed when the map first comes up. I don't want this to occur because it takes too long. Anyway, does anyone know why the map is working different from the client than it does when I deploy it to the server? Here is the significant code:
    var basemap1 = new MVBaseMap("ds_prod.prod_rdlg_qry");
    var basemap2 = new MVBaseMap("ds_prod.interstate", "", true);
    basemap2.setTransparent(true);
    var basemap3 = new MVBaseMap("ds_prod.primary", "", true);
    basemap3.setTransparent(true);
    mapview = new MVMapView(document.getElementById("map"), baseURL);
    mapview.addBaseMapLayer(basemap1);
    mapview.addBaseMapLayer(basemap2);
    mapview.addBaseMapLayer(basemap3);
    basemap1.setVisible (true);
    basemap2.setVisible (false);
    basemap3.setVisible (false);
    Any suggestions would be appreciated. Thanks.

    Hi
    Whitch version of mapviewer are you using? (MVBaseMap/addBaseMapLayer is for older versions, and in newer there is MVMapTileLayer/addMapTileLayer)
    I had similar difficulties displaying multiple tile layers in application with mapviewer ver. B080618. (not sute, may be in newer versions this works different)
    When adding all tile layers initially and then setting theig Visible properties, browser fetches from server data for ALL the layers (even if they were set to visible -> false)
    the workaround was to add aditional layers ony when this is needed.
    Michael

  • Role Menu in WAD is not showing reports as per the role attached

    Hello,
    I am using one role in the "ROLE MENU" web item in Web Application Designer(WAD).
    But, its not showing the reports attached to the role used in the WAD.
    What is the problem even if i am mentioning the correct role name in the properties of ROLE MENU.
    Please help me out.

    Hi Steve
    What BW Front-End Support Package are you using ?
    Sometimes it does matter especially with Role menu web item.Check with it
    -Doodle

  • Is there a way for a form field to show a name when the client sees it, but have the name disappear

    My client needs a PDF with fields. It's a letter. They want the areas for the header - names/addresses/company name/date, etc. to be variable, but when THEIR client looks at it, they want them to know what the field is. So they want the field labeled. But when the client then types in the field, they want that label to disappear.
    This one has me stumped! Thanks!

    In a text field, use Options > Default value. The user will have to delete what you write there when entering new text, or you'll get both.

  • Create a Bex report based on the client requirement

    Hi Experts
    We are using 3.5 version SAP BW.
    Our Client requirement is to create a report. as below
    CC01 Qty Ltr Ripple xxxxx.xx
    CC01 Qty Ltr Ripple xxxxx.xx
    CC01 Qty Ltr Ripple xxxxx.xx
    CC01 Profit Value Ripple xxxxx.xx
    CC01 Profit Value Ripple xxxxx.xx
    CC01 Profit Value Ripple] xxxxx.xx
    Where CC01 is Company Code
    QTY Ltr is the formula value that i have created for them
    Profit value also is the formula that i have created
    Ripple is the value that they want it to be seen in the reprot as a standard which is not available anywere in the multiprovider
    xxxxx.xx are the total values of Qty LTr and Profit values per month (eg: 01.2011)
    I have created the reprot and able to get the values but i do not get the CC01 for every line, and even Qty Ltr or the Profit Value in every line of the report , And i do not know how to hard code the Ripple.
    Please adivice hope i am clear.
    My repot displays this way. may be based on the company code.
    CC01 Qty Ltr Ripple xxxxx.xx
    xxxxx.xx
    xxxxx.xx
    Profit Value Ripple xxxxx.xx
    xxxxx.xx
    xxxxx.xx
    CC23 Qty Ltr Ripple xxxxx.xx
    xxxxx.xx
    xxxxx.xx
    Profit Value Ripple xxxxx.xx
    xxxxx.xx
    xxxxx.xx
    CC09 Qty Ltr Ripple xxxxx.xx
    xxxxx.xx
    xxxxx.xx
    Profit Value Ripple xxxxx.xx
    xxxxx.xx
    xxxxx.xx
    Thanks Regds
    Sri

    With the code, you've presumably logged on to the database. To insert objects on to a new report you'd want to use code along the following lines:
    private void AddTableFromDataSet(ref CrystalDecisions.CrystalReports.Engine.ReportDocument rpt, System.Data.DataSet ds)
    ISCDReportClientDocument rasReport = rpt.ReportClientDocument;
    // Convert the DataSet to an ISCRDataset object (something the ISCDReportClientDocument can understand)
    CrystalDecisions.ReportAppServer.DataDefModel.ISCRDataSet rasDS;
    rasDS = CrystalDecisions.ReportAppServer.DataSetConversion.DataSetConverter.Convert(ds);
    // Add the dataset as a data source to the report
    rasReport.DatabaseController.AddDataSource((object)rasDS);
    // Add a field to the report canvas
    // Note: This is quick and dirty. No positioning, resizing, formatting, etc.
    CrystalDecisions.ReportAppServer.Controllers.ISCRResultFieldController rfc;
    CrystalDecisions.ReportAppServer.DataDefModel.ISCRTable crTable;
    CrystalDecisions.ReportAppServer.DataDefModel.ISCRField crField;
    rfc = rasReport.DataDefController.ResultFieldController;
    crTable = rasReport.Database.Tables[0];
    crField = crTable.DataFields[2]; // Hardcoded field "Customer Name" in the Customer table from Xtreme Sample Database
    rfc.Add(-1, crField);
    // Save the report template to disk (without data)
    //object path = @"c:\documents and settings\administrator\desktop\";
    //rasReport.SaveAs("test.rpt", ref path, 0);
    //MessageBox.Show("Done!");
    For more info, see sample apps on the following link:
    http://wiki.sdn.sap.com/wiki/x/IgBmBQ
    Also, consult your 'Report Application Server .NET SDK Developer Guide" and  "Report Application Server .NET API Guide". I'd provide the appropriate links, but you do not mention the version of CR you are using...
    Thread moved to the '.NET - SAP Crystal Reports" forum.
    Ludek
    Follow us on Twitter http://twitter.com/SAPCRNetSup
    Got Enhancement ideas? Try the [SAP Idea Place|https://ideas.sap.com/community/products_and_solutions/crystalreports]

  • Create report output to the Client of the Application Server inst.of Server

    Hi,
    Please suggest the soution for the below:
    We are using SET_REPORT_OBJECT_PROPERTY and WEB.SHOW_DOCUMENT to create report. Now Requirement is to save the report output to Client instead of server. I tried to use WEBUTIL but web util can be used from form only becuase that is using form item.
    (1) We are calling all our report from a form. Is there any option to trigger a action when ever a report job is created in Application server (report server)
    (2) Please let me now is there any option to create the output directly to client of application server 10G R1WIN , 10GR2WIN or in 11G. If yes please let me know the details.
    Wtih Thanks & Regards
    K.Sundar
    Edited by: 870860 on Jul 13, 2011 10:27 PM

    Hi,
    Please suggest the soution for the below:
    We are using SET_REPORT_OBJECT_PROPERTY and WEB.SHOW_DOCUMENT to create report. Now Requirement is to save the report output to Client instead of server. I tried to use WEBUTIL but web util can be used from form only becuase that is using form item.
    (1) We are calling all our report from a form. Is there any option to trigger a action when ever a report job is created in Application server (report server)
    (2) Please let me now is there any option to create the output directly to client of application server 10G R1WIN , 10GR2WIN or in 11G. If yes please let me know the details.
    Wtih Thanks & Regards
    K.Sundar
    Edited by: 870860 on Jul 13, 2011 10:27 PM

  • Show Report Variable in the title

    Hi all,
    I need to know if it's possible to show in a title of Answer a report variable and, if it's possible, how can I do.
    Thanks a lot
    Steve

    Hallo Venkat,
    Thanks for your reply!
    I'd like to have the most recent loaddate in the title, that works fine now.
    However, i'm struggling with the format of the variable, maybe you have a tip how to change that.
    This is what i've done:
    1. Created repository initialization block "get most recent loaddate". This refreshes every day. The query is basicly a select on my loadtable to get the max date from the loadtable.
    2. Then i created a dynamic repository variable "get most recent loaddate" which retrieves from my initialization block.
    When i set default to '31-12-2007' (just for checking), i creates TIMESTAMP '2007-12-31 00:00:00'.
    3. So, when i use the variable in the title, i get all this text. I'd like to just see the date instead.
    Do you have a suggestion how i can set the datatype to date from the variable?
    Thanks
    Sandra

  • 3d painting issue - why is my selected value showing up different then the actual color I'm picking?

    Love the CS5's 3d painting features but I'm running into a really frustrating issue:
    When I select a value from the 3d object and try to paint with that value, it's showing up as a different value altogether (the image hopefully illustrates this much better than words).
    Not sure if it's got something to do the the lights setup or something else but I cannot figure it out.  Anyone else running into this or have a solution?
    Thanks!!!

    Ok, let me try to be explain the issue in more detail.
    Note: 
    All 3D layer settings are default.  No lights, ambient color setting, etc have been tweaked.
    Description:
    In order to paint out texture seams on a 3d character model, I have imported an .obj of the model into PS CS5 and applied a texture map to it which I have previously painted.
    Using the eye dropper I have selected a color value from the sides of the seam and have attempted to paint that value over the seam to remove it.
    Results:
    The color value picked from a texture applied to a 3d model which is 161,161,173, is not the same color value when painted directly back onto the model. It has now mysteriously turned into 152,152,177.
    Expected results:
    When a color value is picked from a texture applied to a 3d model (161,161,173) and painted back onto the textured model it should remain exactly the same (161,161,173)
    I hope lighting/shading is not figured in when color picking.  That would make your results completely unpredictable.  It could possibly be what is happening but is there a way turn this off or work around it?
    Thanks for the help.

  • Do I need to do anything different with the client or is it a server setting that needs modification

    I have a Flex based application which is using Flash Media Server (FMS) server (version 4.0) for live video streaming between two users (i.e. a one to one teleconferencing service). This streaming is one-to-one, as defined by business rules, so that no third person can join a teleconference. Either person can start the video stream via a browser-based Flex client and communication gets established once the second user joins. Validation for connecting the streams of the two users is implemented on the FMS server (as server side scripting defined in main.asc). I am facing three critical problems with our teleconferencing solution.
    1.Often times, full communication can not be established between the two users. One user can not usually see or hear the other user. There is a client side 'refresh' button that when clicked, attempts to establish a connection via the server side script. This sometimes works. Before implementing our current server side script, I tried establishing a stream by using methods found here: http://forums.adobe.com/thread/905613
    I think the method below may work as it would give me an array of subscribers to the stream.
    getLiveStreamStats(appInst:String, stream:String) : Object
    But the problem is that server returns the following:
    <result>
    <level>error</level>
    <code>Admin.API.MethodNotAllowed</code>
    <description>getlivestreams - Method not allowed!</description>
    <timestamp>8/7/2012 10:05:38 AM</timestamp>
    </result>

    Srr20 wrote:
    I bought a new iPad two days back. After moving all my stuff from iPad 2, I realized that the camera shutter is not opening . Is it a configuration issue or do I need to do anything to get it opertional
    Try a Hard Reset. Hold ON/OFF Button and Home Button at the same time until it reboots and Apple Logo appears, let go of buttons.
    Mybe that will do it...

  • Lync 2013 does not show normalized numbers in the client contact card.

    Hi,
    We are migrating from OCS 2007 to Lync 2013. Everything runs now in side by side topology.
    I have problems with contacts numbers shown in the Lync client.
    I've moved "Company_Phone_Number_Normalization_Rules.txt" file from OCS server to Lync. All rules works fine there, after running update-csaddressbook , Invalid_AD_Phone_Numbers.txt file is empty (no errors).
    We are using this format in AD for users: (613) 123-4567 Xdddd
    Normalization rule is:
    (\s*)\(?\s*(613)\s*\)?[\s()\-\./]*(123)[\s()\-\./]*(4567)[,\s\w]*(\d\d\d\d)
    +$5
    So it will normalize phone (613) 123-4567 X5656 to +5656 (We need it this way because we are using phone control)
    Problem is that this normalized phone does not shown in Lync client, but it perfectly works in old OCS environment.
    Thank you!

    Hi,
    I've replaced my old rule with one that you wrote, and it works as it should (ABServer.exe -testphonenorm 
    recognize it in the right way). Thank you for this advice!
    Then I run update-csaddressbook, removed .db and .idx files from user, re-lunched Lync client..but this number still not shown.
    Here are results of  Get-CsAddressBookConfiguration
    Identity                   : Global
    RunTimeOfDay               : 1:30 AM
    KeepDuration               : 30
    SynchronizePollingInterval : 00:05:00
    MaxDeltaFileSizePercentage : 20
    UseNormalizationRules      : True
    IgnoreGenericRules         : False
    EnableFileGeneration       : True
    MaxFileShareThreadCount    : 300
    EnablePhotoSearch          : True
    It looks strange, number can be normalized, but it's not shown for the user.

  • When the iPad 2 is plugged into the tv, can it show something different on the tv then on the iPad

    Like a second display on a computer

    I restored the iPod in iTunes and it worked.  Thanks for your help.

  • Group Policy for Desktop background applied but showing black desktop in the client end

     Trying to set wallpaper in group policy but it's coming up blank.We have windows 2008 and 2012 server.most of the computer is windows 7.

    Hi,
    Does this issue occur to all computers?
     Besides, can the users access the wallpaper?
    If this issue just happens to Windows 7, we can try applying the hotfix in the following article.
    The "Desktop Wallpaper" Group Policy setting is not applied in Windows 7 or in Windows Server 2008 R2
    http://support.microsoft.com/kb/977944/en-us
    If the issue persists, we can refer to the following thread to troubleshoot the problem.
    Black Desktop wall paper after implementing group policy
    http://social.technet.microsoft.com/Forums/windowsserver/en-US/0c36d7bf-4694-46e1-b408-d644111c0264/black-desktop-wall-paper-after-implementing-group-policy?forum=winserverGP
    Best regards,
    Frank Shen

  • Different display on client report builder and web reports

    Hi all, I have build a report in report 6i version Report Builder 6.0.8.13.1.And I set the page to 8.5*11 ,and it runs well in the client ,but when I put it on the UNIX SERVER,and run it from web URL,It displayed different from the client report builder.The web report is "smaller" than the client report ,but the font size is as same as the client .
    My HPUX is 11x,and display the Chinese report .
    Any body know why ?give me some advice ,thank u very much.

    Hi
    If you had built the report definition on Windows and then moved this to Unix server, you may find different fonts in use. This is becuase your Unix setup does not have the same fonts install. At design time, You need to use fonts which are available on Unix also. The same fonts shaould also be installed for printer in Unix i.e. the AFM/PFM font files should be kept under $ORACLE_HOME/guicommonX/tkXX/admin/AFM or PFM directory. This would give you the same output and would lessen the porting affect.
    Thanks
    Rohit

  • Display reports on PDF file on the client.

    I'm generating reports on web enviroment.
    I want to know how to display the report output on the client using a pdf file?????. Because by default the server generate an html file displayed on the web browser.
    David Alarid.

    Add "desformat=pdf" to your URL. Typically you're URL will look like:
    http://<server>:<port>/reports/rwservlet?report=<reportName>&destype=cache&desformat=pdf&...

  • Running statspack report remotely from a client?

    Hi!
    To get a statspack report I run @spreport.sql from an SQL*Plus session on the database server.
    Having to go to the DB server for that sometimes is a chore and I would prefer to get a report from any client, or even from within SQL Developer.
    Is there an easy way to achive this or is there a tool for that?
    Obviously, the spreport.sql might differ from Oracle DB version to version, so I would either need to have a series of these reports scripts on the client and the select the right one or I would need to have some mechanisum (stored proc?) that gets to rdbms/admin on the server, executed the spreport.sql script there, read the output and return that from to the client.
    Is there an easier way or anyone knows of a package that will do that?
    Thanks,
    Marcus

    Marcus,
    I don't think that I did get your question. Sorry but do you mean to say that you want a report from the client terminal , running locally over teh client only? That's what I got from this line,
    Having to go to the DB server for that sometimes is a chore and I would prefer to get a report from any client, or even from within SQL Developer. Or do you want the report to be available from the server side to the client's local machine?
    If you want the report to be given to you on the client side only, I am not sure that there is any way possibly there. What's the issue in fetching the report from the server though ? If one can connect to db as a valid db and o/s user, he can fetch the data as well. But its just a thought. I don't use any of the tools much so I guess, I shall just join you and see what others have to say about it.
    Aman....

Maybe you are looking for

  • Embedding linked PSD's in AI using AS/JS

    Hi, I am looking at a way of embedding linked PSD files into an AI doc using either Applescript or Javascript. The AI docs I work with already have the PSD's placed as linked images. I am using Illustrator CS2 (12.0.1) on a Mac, running OS 10.4.10. I

  • How do you backup the contents of your memory card...

    I have bought a much larger capacity memory card for my 6680. How can I backup the contents (total) of my old Nokia supplied card ? PC Suite 6.6 fails everytime when I try to use that. Does anyone have any suggestions ?

  • ClassCastException wile envoking web service

    Hi all, I have the following scenario: 1) I have created a portal service, which calls external ejb's (ear) and returns some    data from the backend. 2) I have exposed this portal service as a web service. 3) I have created a deployable proxy which

  • Anyone having issues with iphone 5 earphone jack? .

    Got my iphone early this week.  When I plugged in my earphone and only 1 earphone is audible.  Apple stored tested it and found it to be defective and ordered a replacement.  I just got a new replacement.  Came home, unpacked the box and tested my ip

  • When my bank website tries to access my scanner I get an unspecified error message.

    In order to make an electronic deposit, I access my bank account, click on "edeposits" and the website attempts to find my scanner. For the first time yesterday (this has always worked fine in the past) Firefox stopped the operation and posted an "ER