Rpt file storage and deployment

Hello all-
I have a few questions I'm hoping someone can answer.
Currently we deploy an application with around 1100 reports. Due to customer security the report must be stored locally by them on their server with no outside access. Due to this we currently ship them new and updated reports which are stored in a standard \reports folder. One of the problems with this is the integrity of the rpt file itself. Storage of the reports in this manner allows the users to open the reports (if they have CR installed) and make changes which then are manifested when ran within the application.
I would like to store / deploy the reports in a different manner but I don't know that much about it and I am not sure what methodology would work the best.
Being that out data is stored in a SQL server can rpt files be stored in a SQL table (like a blob?) If so if it easy to call the reports from the table?
Can you store rpt files in DLLs?
I know we could assemble the reports inside the application itself but that would require a release when one off report changes take place.
Am I barking up the wrong tree here or if what I am thinking about possible?
Thanks a lot for any and all responses!
Rob

Hi,
What version are you using crystal report .rpt? Thats why new crystal report are now integrated for security purposes so that .rpt files cannot be shown. For my experience you cant but you can still store the reports in a folder that they cant open the file. Do not install the whole package of the CR but instead just register the DLL so that it can be recognized by the OS.
REgards,
Clint

Similar Messages

  • Publishing iweb in file storage and sharing service?

    I am not very versed in creating webpages. I need to upload the iweb website that I made to my school's "file storage and sharing service" otherwise known as CITES Netfiles. I know that somehow I upload my iweb html files SOMEWHERE on this thing and it will show up as my website but i cant seem to figure it out and the the "help" on the phone cant seem to waste their time trying to help me understand. if anybody has any experience with this i would appreciate your help! thanks!

    Welcome to the Forum!
    Only the people who setup the Netfiles system will know exactly where you are supposed to upload your files, and also, what your URL is.
    I found this support page for the University of Illinois system. You may be using it since you are from Ill. or maybe the page will help you understand the information your tech support people are telling you:
    http://www.cites.illinois.edu/netfiles/web-publish.html
    I checked the linked page about how to upload files to the system, and it's a little out of the ordinary. Netfiles appears to use a browser based "Upload Manager" as it's "Front End". http://www.cites.illinois.edu/netfiles/manage.html#upload
    Netfiles does appear to support WebDAV (but not FTP)
    http://www.cites.illinois.edu/netfiles/desktop.html
    So you would have to tell iWeb to publish your site to a local folder, then use a program like "CyberDuck", "Transmit" or a program named "Goliath" to upload the site folder that's inside the folder that iWeb created. Special features like blogs and RSS feeds will probably not work with a server like this, although there are ways to link other blog services to your site.
    Programs like Dreamweaver support uploading directly to a WebDAV server, but iWeb does not make those settings available, yet.

  • Programmatically read .rpt file, datasource and write it to word using ..

    I am using Crystal Reports 2008. The default editable rtf export format is tab based, really not useful for table formatted data.
    I would like to read rpt file along with data (e.g. saved xml source data) and write it to ms word format using com objects. Is this possible? If yes and supporting tutorial  or information.
    2nd: Is there any available ready software/tool to a true word format conversion?
    Thanks in advance.

    I would like to read rpt file along with data (e.g. saved xml source data) and write it to ms word format using com objects. Is this possible? If yes and supporting tutorial or information.
    - Export to XML(?)
    Sample; vbnet_win_export.zip at [this|http://wiki.sdn.sap.com/wiki/display/BOBJ/CrystalReportsfor.NETSDK+Samples] link.
    Developer Help files:
    https://boc.sdn.sap.com/developer/library
    [Crystal Reports for Visual Studio 2005 Walkthroughs|http://www.sdn.sap.com/irj/scn/go/portal/prtroot/docs/library/uuid/2081b4d9-6864-2b10-f49d-918baefc7a23]
    Above will apply to your version of CR and .NET also.
    Is there any available ready software/tool to a true word format conversion?
    - Not from SAP. Perhaps some 3rd party software(?).
    Oh, and the wiki [Available Export Formats, Crystal Reports 9.1 to Crystal Reports 2008|http://wiki.sdn.sap.com/wiki/display/BOBJ/AvailableExportFormats%2CCrystalReports9.1toCrystalReports+2008] may be good to have also.
    - Ludek

  • WAR files (Tomcat) and deployment descriptor

    Hello,
    I am currently writing a small utility to package a web application for Jakarta Tomcat as a .war file.
    I have a functional version that imports the deployment descriptor web.xml, but I'd like to make it possible for the user to edit or create from scratch that file. I use the DOM API to make a logical model of my web.xml, but the parser won't accept the external dtd definition :
    <!DOCTYPE web-app
    PUBLIC "-//Sun Microsystems, Inc.//DTD Web Application 2.2//EN"
    "http://java.sun.com/j2ee/dtds/web-app_2_2.dtd">
    Here is my parser :
    private void parse(File in) {
    try {
    DocumentBuilderFactory factory = DocumentBuilderFactory.newInstance();
    factory.setNamespaceAware(true);
    factory.setValidating(true);
    DocumentBuilder builder = factory.newDocumentBuilder();
    document = builder.parse(in); (((*)))
    catch (...)
    }//parse
    ---------------------------------------------It seems I have no further controls on DocumentBuilder and DocumentBuilderFactory.
    The builder.parse call generates this exception :
    java.net.NoRouteToHostException: Operation timed out: no further information
    at java.net.PlainSocketImpl.socketConnect(Native Method)
    at org.apache.crimson.parser.Resolver.resolveEntity(Resolver.java:389)The problem seems to be located in DOM's DefaultHandler entity resolver, but I don't ee clearly what to do.
    Thanks for helping.

    Hi,
    I already tried every combination of settings with
    DocumentBuilderFactory.setNamespaceAware
    DocumentBuilderFactory.setValidating
    DocumentBuilderFactory.setCoalescing
    DocumentBuilderFactory.ExpandEntityReferencesI had the same result. Here is the exact dump :
    java.net.NoRouteToHostException: Operation timed out: no further information
            at java.net.PlainSocketImpl.socketConnect(Native Method)
            at java.net.PlainSocketImpl.doConnect(PlainSocketImpl.java:312)
            at java.net.PlainSocketImpl.connectToAddress(PlainSocketImpl.java:125)
            at java.net.PlainSocketImpl.connect(PlainSocketImpl.java:112)
            at java.net.Socket.<init>(Socket.java:273)
            at java.net.Socket.<init>(Socket.java:100)
            at sun.net.NetworkClient.doConnect(NetworkClient.java:50)
            at sun.net.www.http.HttpClient.openServer(HttpClient.java:331)
            at sun.net.www.http.HttpClient.openServer(HttpClient.java:517)
            at sun.net.www.http.HttpClient.<init>(HttpClient.java:267)
            at sun.net.www.http.HttpClient.<init>(HttpClient.java:277)
            at sun.net.www.http.HttpClient.New(HttpClient.java:289)
            at sun.net.www.protocol.http.HttpURLConnection.connect(HttpURLConnection
    .java:379)
            at sun.net.www.protocol.http.HttpURLConnection.getInputStream(HttpURLCon
    nection.java:472)
            at org.apache.crimson.parser.Resolver.resolveEntity(Resolver.java:389)
            at org.apache.crimson.parser.ExternalEntity.getInputSource(ExternalEntit
    y.java:88)
            at org.apache.crimson.parser.Parser2.pushReader(Parser2.java:2986)
            at org.apache.crimson.parser.Parser2.externalParameterEntity(Parser2.jav
    a:2721)
            at org.apache.crimson.parser.Parser2.maybeDoctypeDecl(Parser2.java:1154)
            at org.apache.crimson.parser.Parser2.parseInternal(Parser2.java:488)
            at org.apache.crimson.parser.Parser2.parse(Parser2.java:304)
            at org.apache.crimson.parser.XMLReaderImpl.parse(XMLReaderImpl.java:433)
            at org.apache.crimson.jaxp.DocumentBuilderImpl.parse(DocumentBuilderImpl
    .java:179)
            at javax.xml.parsers.DocumentBuilder.parse(DocumentBuilder.java:161)
            at DOMView.main(DOMView.java:96)This shows that the entity resolver tries to access the distant DTD, so I tried to implement myself the EntityResolver interface, but I didn't well understood
    what to do with that InputStream it has to return.

  • WebHelp Output files distribution and deployment regarding

    Hi,
    I am just starting to try, learn RH7 to generate WebHelp.
    I successfully did a very simple and basic test project and
    our developer displayed the topic help on pressing F1.
    Good.
    Our application is a backoffice payment system. Currently the
    application is deployed on the Application Server which is
    Macromedia JRUN 4 with the OS - MS Windows 2003 std edition SP1.
    My compnay is planning for the following:
    The application shall be deployed on the Application Server
    Weblogic 10x on a UNIX box (could be IBX AIX/HP UX).
    The application is bundled as .WAR.
    Could you please clarify this for us?
    - Should the WebHelp output folder be bundled along with the
    above .WAR?
    - Can the Help files reside on Application server or the Web
    Server (only the Help not the application) and
    can still work effectively? (We prefer the Help to be on the
    App Server tho')
    Well, if I am not clear, I'll be glad to get you more
    details.
    Thanks in advance for your help.
    Radha Renganathan

    Hi Radha.
    Don't get confused between the generated and the published
    output. The published output is the actual output required to be
    placed where your users will access it. The location is defined in
    the final part of the WebHelp single source layout. The help can
    reside just about anywhere. You may want to check out our resident
    WebHelp juru Peter Grainge's
    website
    which has all the options on calling webhelp plus all manner of
    other stuff.

  • Changes to rpt file not recognised

    Post Author: annedonnelly
    CA Forum: General
    Hi,I've been asked to help a company whose software supplier is being a bit awkward. The software is a stock control package and some of the reports are created using Crystal.They want to make some minor changes to the reports - moving fields about, changing labels, etc. The supplier told them to purchase Crystal v10, told them where the reports are and said to make the changes required and save them in the appropriate folder.We tried all of that yesterday with no success. Although we made obvious changes to a report the changes weren't displayed when the report was printed by the stock control system. Is the stock control system not using the .RPT file? Should we be saving the report in another format? I tried removing the .RPT file temporarily and the stock control system was still happy to print the report so I suspect it's either compiled into the executable or it's another file altogther.We tried all the obvious things like restarting the stock control software (even rebooting the machine). We weren't able to preview the report in Crystal as the data source (an XML file) is apparently created at runtime. I used Crystal many years ago but have no experience with recent versions.Any hints would be welcome.ThanksAnne 

    Post Author: synapsevampire
    CA Forum: General
    "Is the stock control system not using the .RPT file? Should we be saving the report in another format? I tried removing the .RPT file temporarily and the stock control system was still happy to print the report so I suspect it's either compiled into the executable or it's another file altogther."
    You don't even tell us the name of the software package, yet you expect us to respond intelligently about its inner workings?
    I think that you've taken all of the right steps, you seem knowledgable about software. What I would do is a search of the machine for all RPT files. You don't bother to mention HOW this app launches reports either, is it browser based, a Windows program, and idea of the language or the API used?
    Do you know how to add in new reports? You might be able to delete the old ones and then publish a new one.
    If you require further assistance, please include information about the application.
    -k

  • How to create a custom ear file and deploy it onto a freshly created oc4j

    Hi,
    Wanted to know that how should i go about creating a custom EAR file or for that matter any application and deploy it onto a test oc4j instance created within the 10.1.3 Home of Oracle Apps R12.
    I believe in a standalone Application server installation it is quite simple to deploy an application by creating an oc4j instance using the AS console ,but not very sure about how to go about it in Oracle Apps .
    N.B:I have been able to create a test oc4j instance by the name of Test and able to start and stop it using the opmn of 10.1.3 oracle home.
    Any help in this regard will be appreciated.

    Hi,
    can you please post this question to one of the Apps forums if your main concern is to deploy applications in the context of Oracle Apps?
    It seems that you don't have a problem in creating the EAR file in JDev.
    Frank

  • My home network has an Airport Extreme w/Time Capsule as the base and then an Airport Express and a second Airport Extreme to reach different areas of the house.  Is there a way to use the second Airport Extreme for file storage on this network?

    My home network has an Airport Extreme w/Time Capsule as the base and then an Airport Express and a second Airport Extreme to reach different areas of the house.  Is there a way to use the second Airport Extreme for file storage on this network?  Network is administered through an iMac running OS X Yosemite 10.10.2.  Ideally, would like for the second Airport Extreme hard drive to appear on the list of devices in the Finder window.

    Ok.. gottcha
    The problem is network wise.. Yosemite is about equal to tin cans and string.. pathetic.
    Here is my usual set of instructions to get anything working on Yosemite.
    The best way to fix problems is a full factory reset of all the AE in the network.
    Factory reset universal
    Power off the AE.. ie pull the power cord or power off at the wall.. wait 10sec.. hold in the reset button.. be gentle.. power on again still holding in reset.. and keep holding it in for another 10sec. You may need some help as it is hard to both hold in reset and apply power. It will show success by rapidly blinking the front led. Release the reset.. and wait a couple of min for the AE to reset and come back with factory settings. If the front LED doesn’t blink rapidly you missed it and simply try again. The reset is fairly fragile in these.. press it so you feel it just click and no more.. I have seen people bend the lever or even break it. I use a toothpick as tool.
    Then redo the setup from the computer with Yosemite.
    1. Use very short names.. NOT APPLE RECOMMENDED names. No spaces and pure alphanumerics.
    eg AEgen5 and AEwifi for basestation and wireless respectively.
    Even better if the issue is more wireless use AE24ghz and AE5ghz with fixed channels as this also seems to help stop the nonsense.
    2. Use all passwords that also comply but can be a bit longer. ie 8-20 characters mixed case and numbers.. no non-alphanumerics.
    3. Ensure the AE always takes the same IP address.. this is not a problem for AE which is router.. it is a problem for AE which is bridged.. you will need to set static IP in the main router by dhcp reservations or use static IP in the AE which is tricky.
    4. Check your share name on the computer is not changing.. make sure it also complies with the above.. short no spaces and pure alphanumeric..
    5. Make sure IPv6 is set to link-local only in the computer. For example wireless open the network preferences, wireless and advanced / TCP/IP.. and fix the IPv6. to link-local only.
    6. Now mount the disk of the second AE in finder... manually.
    Use Go, Connect to Server and type in the AE ip address.
    SMB://10.0.1.2
    Where you will replace that address with the actual address. The network resource should be discovered and then it will request the password.. type that in and make sure you tick to save it in your keychain.
    There is a lot more jiggery pokery you can try but the above is a good start.. if you find it still unreliable.. don't be surprised.
    Do as much as you want of the above... not all of it is necessary.. only if you want it reliable.. or as reliable as Yosemite in its current incarnation can manage.
    The most important thing is point 6.. mount the disk using direct IP address and not names.. dns in Yosemite is fatally flawed.
    See http://arstechnica.com/apple/2015/01/why-dns-in-os-x-10-10-is-broken-and-what-yo u-can-do-to-fix-it/

  • Uploading par files in nwds and deploying back

    Hi all,
    I wanted to work with the masthead iview in nwds, so found it on the server as the par file and imported it into NWDS. Changed the headeriview jsp and deployed it back to the portal. But it is not working. Saw in another sdn thread that when you create the project in nwds, it does not bring up all the components from the par file as required and some class files are missing. I think this is the problem in my case. The solution to it was not given in that thread.
    Would anybody help please.
    thanks.
    Lm

    Hi
    the following are the steps to modify a masthead.
    1.Find the PAR file and copied to a temporary directory and renamed to the customer namespace taking off .bak extension.
    2.Import the PAR file now using File->import option.
    3.make necessary modifications.
    4.once the JSP is edited, the PAR file needs to be created ans uploaded to the portal.If JDK is installed just login into portal and deploy the pAR file otherwise use PortalAnywhere to deploy it.
    5.Now goto Content Administration->Portal Content->right click the folder you wish to create the mastheadiView.Select New from Portal Archive-?iView from the context menu.Select new masthead.
    6. select poratal component Default and choose next.
    7.enter the properties for masthead and next.
    8.edit the Iview and saved it.
    9.add the iView to Framework Page in portal catalog and edit page layout.
    10.select iView from catalog and add it as Delta link and position it accordin to your need.
    Hope this helps you to modify the masthead.
    Regards
    Victoria

  • Steps to compile and deploy files on jsap

    steps to compile and deploy files on jsap
    classpath that has to be set
    where to put the .class files
    (Where to fnd JNDI tab)

    jsas-sun java application Server
    I like to depoy servlet files on this server
    But it requires cloudscape to be started
    (database server)
    i have not even a single entry in the name of cloudscape

  • Exporting to PDF from rpt file and charts within not exported properly

    I am having issues when export .rpt file to pdf report using crystal report java. When exporting from Crystal Report, it displays the charts and boarders properly but when exporting using Java application the back ground colors and boarders disappears or fades. It makes the report look unprofessional. I am using version 2.0.
    Looking at this release note  at  the this link (http://www.businessobjects.com/products/dev_zone/eclipse/cr4e-updates-readme.pdf )  I see a reference to "JRC SDK RTF exporting is not consistent with CR RTF exporting" has been fixed in Release Update 8. I tried the latest release but it seems it has release update 4 only. So, my question is where do I get Release update 8? I am hoping that will fix my issue or if anybody has any suggestions that will help me resolve it. If you can reply at your earliest, I would really appreciate it.
    Thanks for your help in advance.
    Edited by: selomabebe on Jul 6, 2010 8:18 PM

    Here is snippet of code how I am exporting rpt file to pdf file. I didn't include every code here but I am hoping this will give you the idea. Please let me know if you need more info.
    public byte[] runReport(RPTParameters para) throws SQLException {
    byte[] reportData = null;
    ReportClientDocument reportClientDocument = null;
    try {               
         reportClientDocument = new ReportClientDocument();
         reportClientDocument.setReportAppServer(ReportClientDocument.inprocConnectionString);
         reportClientDocument.open(ReportDataConstants.CPS_RPT_FILE, OpenReportOptions._openAsReadOnly);
         ExportOptions exportOptions = new ExportOptions();               
         PDFExportFormatOptions pdfOptions = new PDFExportFormatOptions();
         exportOptions.setExportFormatType(ReportExportFormat.PDF);
         exportOptions.setFormatOptions(pdfOptions);
         ParameterFieldController paramFieldController = reportClientDocument.getDataDefController().getParameterFieldController();               
         paramFieldController.setCurrentValue("", "@ba", para.getBusinessAgreement());
         paramFieldController.setCurrentValue("", "ReportMonth", para.getMonth());
         paramFieldController.setCurrentValue("", "ReportYear", para.getYear());
         InputStream reportInputStream = reportClientDocument.getPrintOutputController().export(exportOptions);     
         reportData = new byte <reportInputStream.available()>;
         reportInputStream.read(reportData);
    catch (ReportSDKException e) {
    finally {
    return reportData;

  • I am having issues related to storage and I believe this is causing my computer to slow down. "Other" files part is the major occupier(180 GB). I have done Omni disk and multiple other cleaning(iTunes-device, restart, etc), yet have not been able to empty

    I am having issues related to storage and I believe this is causing my computer to slow down. "Other" files part is the major occupier(180 GB). I have done Omni disk and multiple other cleaning(iTunes-device, restart, etc), yet have not been able to empty any more space, nor to speed up my computer? Any suggestions? All your contributions are welcomed. Thanks. Mehmet Mazhar Celikoyar

    Below is the result:
    Hardware Information:
              MacBook Pro (15-inch, Mid 2009)
              MacBook Pro - model: MacBookPro5,3
              1 3.06 GHz Intel Core 2 Duo CPU: 2 cores
              4 GB RAM
    Video Information:
              NVIDIA GeForce 9400M - VRAM: 256 MB
              NVIDIA GeForce 9600M GT - VRAM: 512 MB
    Audio Plug-ins:
              BluetoothAudioPlugIn: Version: 1.0
              AirPlay: Version: 1.9
              AppleAVBAudio: Version: 2.0.0
              iSightAudio: Version: 7.7.3
    Startup Items:
              HP IO - Path: /Library/StartupItems/HP IO
    System Software:
              OS X 10.9 (13A603) - Uptime: 3 days 22:8:6
    Disk Information:
              ST9500420ASG disk0 : (500.11 GB)
                        EFI (disk0s1) <not mounted>: 209.7 MB
                        Macintosh HD (disk0s2) /: 499.25 GB (220.49 GB free)
                        Recovery HD (disk0s3) <not mounted>: 650 MB
              HL-DT-ST DVDRW  GS23N 
    USB Information:
              Apple Inc. Built-in iSight
              Apple Internal Memory Card Reader
              Apple Inc. Apple Internal Keyboard / Trackpad
              Apple Computer, Inc. IR Receiver
              Apple Inc. BRCM2046 Hub
                        Apple Inc. Bluetooth USB Host Controller
    FireWire Information:
    Thunderbolt Information:
    Kernel Extensions:
              com.rim.driver.BlackBerryUSBDriverInt          (0.0.64)
              com.livedrive.filesystems.livedrivefs          (2.1.14)
    Problem System Launch Daemons:
    Problem System Launch Agents:
    Launch Daemons:
              [loaded] com.adobe.fpsaud.plist
              [loaded] com.adobe.versioncueCS4.plist
              [loaded] com.creativebe.MainMenuHelper.plist
              [loaded] com.macpaw.CleanMyMac2.Agent.plist
              [loaded] com.magican.castle.plist
              [loaded] com.microsoft.office.licensing.helper.plist
              [loaded] com.rim.BBDaemon.plist
              [failed] com.zeobit.MacKeeper.plugin.AntiTheft.daemon.plist
    Launch Agents:
              [loaded] com.adobe.CS4ServiceManager.plist
              [loaded] com.hp.messagecenter.launcher.plist
              [loaded] com.hp.productresearch.plist
              [loaded] com.rim.BBLaunchAgent.plist
    User Launch Agents:
              [loaded] com.adobe.ARM.[...].plist
              [failed] com.macpaw.CleanMyMac2Helper.diskSpaceWatcher.plist
              [failed] com.macpaw.CleanMyMac2Helper.scheduledScan.plist
              [failed] com.macpaw.CleanMyMac2Helper.trashWatcher.plist
              [failed] com.UninstallerTool.plist
              [failed] com.VolumeWatcherTool.plist
              [failed] com.zeobit.MacKeeper.Helper.plist
    User Login Items:
              BlackBerry Device Manager
              HP Scheduler
    3rd Party Preference Panes:
              Adobe Version Cue CS4
              DC30 Xact Driver Panel
              Flash Player
              Flip4Mac WMV
              Perian
    Internet Plug-ins:
              AdobePDFViewer.plugin
              AdobePDFViewerNPAPI.plugin
              Default Browser.plugin
              Flash Player.plugin
              FlashPlayer-10.6.plugin
              Flip4Mac WMV Plugin.plugin
              iPhotoPhotocast.plugin
              JavaAppletPlugin.plugin
              OfficeLiveBrowserPlugin.plugin
              QuickTime Plugin.plugin
              SharePointBrowserPlugin.plugin
              Silverlight.plugin
    User Internet Plug-ins:
              OctoshapeWeb.plugin
    Bad Fonts:
              None
    Time Machine:
              Mobile backups: OFF
              Auto backup: NO
              Volumes being backed up:
                        Macintosh HD: Disk size: 499.25 GB Disk used: 278.75 GB
              Destinations:
                        TOSHIBA EXT [Local] (Last used)
                        Total size: 2 TB
                        Total number of backups: 5
                        Oldest backup: 2013-10-24 23:21:31 +0000
                        Last backup: 2013-10-25 02:59:08 +0000
                        Size of backup disk: Excellent
                                  Backup size 2 TB > (Disk size 499.25 GB X 3)
    Top Processes by CPU:
                   3%          WindowServer
                   1%          EtreCheck
                   1%          Microsoft PowerPoint
                   0%          BBLaunchAgent
                   0%          fontd
                   0%          aosnotifyd
    Top Processes by Memory:
              168 MB             Microsoft PowerPoint
              123 MB             Safari
              86 MB              Mail
              74 MB              WindowServer
              45 MB              com.apple.WebKit.Networking
              45 MB              com.apple.WebKit.WebContent
              41 MB              Finder
              41 MB              PluginProcess
              41 MB              mds_stores
              33 MB              Notes
    Virtual Memory Statistics:
              72 MB              Free RAM
              1.27 GB            Active RAM
              1.24 GB            Inactive RAM
              667 MB             Wired RAM
              2.58 GB            Page-ins
              111 MB             Page-outs

  • Localization of CrossTab row and column label Crystal Report RPT file

    Dear all,
    Does anyone know how to support multiple locale texts (English and French) in CrossTab Row and Column Header labels and grand total labels? Is there a way to parameterize text objects CrossTab in one single Crystal Report RPT file to use some sort of locale resource file containing text string for different languages based on the users of RPT at runtime? The idea is to use one single RPT file to generate report for different locale text for CrossTab Row and Column abels and grand total labels  instead of creating RPT files per locale?

    Hi,
    Does the database have a column that identifies the language? If it does, then you could create two separate cross-tabs and place them in different sections and conditionally suppress the section depending on the language from the database.
    That's the only thing that can be done in my opinion.
    -Abhilash

  • I've just updated my Macbook to Mavericks and all my .avi files storaged in a Lacie Rugged aren't opening but converting one by one I opened; are they not compatible?. Is there a way to converting all of them simultaneously and faster? Thanks a lot guys

    I've just updated my Macbook to Mavericks and all my .avi files storaged in a Lacie Rugged aren't opening but converting one by one I opened; are they not compatible?. Is there a way to converting all of them simultaneously and faster? Thanks a lot guys

    Have you tried using VLC media player it seems to play almost any codec without converting.
    https://www.macupdate.com/app/mac/5758/vlc-media-player

  • Online file storage with access control and file manager integrated to APEX website

    I have APEX 4.2 website with few user accounts. I would like to share approximately 100 GB of documents to users. Some documents will be public (in some public folder) and everyone with account in my website will be able to download that public files. And some files/folders will be with restricted access and only user with appropriate credentials will be able to download it.
    I would like to find some cheap cloud file storage.
    Some storage that offers plugin/component = file manager that will be integrated to my APEX website and authentication will be transparent to my users (authentication with some API or URL). Every user will see only his files. I want some ready to use component and call only minimum API.
    I would like to integrate that storage to my website or call some user specific URL and redirect my user to some page with file manager.
    All files will be read only for all users.
    Thanks for some tips

    what will you be using for your file manager?  Or do you even know yet?
    I do not have tons of experience but if I had to come up with a solution I would build the interface with APEX and use the database to store the files inside so you can control access.
    You can create a procedure that takes in parameters like username, session id, encrypted session id from the browser cookie and either return the file or give the user an error message letting them know they arent authorized.  You could use plugins to give the users a better file managing experience like the 'multiple file upload' plugin that allows AJAX based multiple file uploading.
    Id put this on an amazon EC2 cloud micro instance.  It's uber cheap.

Maybe you are looking for

  • My 5800 is not starting help.....

    I have nokia 5800 and it is not starting nor vibrating at startup plz help...........

  • IOS native extension for networkinfo throws an error

    Hello, I'm trying to check wether the active connection on a device is Wifi or mobile data connection. On android this works fine but on iOS there is a problem. A native extension exists for this see here.  The problem is that the line below throws a

  • PDF into Interactive

    I have a pdf file that I need to make into an interactive pdf file with fields that can be filled in. Actually I have a few things that I would love to do this for. I am just the average user so the instructions would need to be step-by-step. Thank y

  • What is a good Contacts Manager for OS X 10.8.2?

    Hello, I am looking for a contacts manager software that runs on Mountain Lion. Aside from features typically found in most databses, I am looking for a product that has the following features: - Can import/export existing data from external sources

  • How to edit the PageSize(25) Settings for Targets Homepage?

    Default Pagesize is 25(no of lines) for GC --> Targets -->Host I have total around 28 hosts/databases.I dont want to go next page for just 3 host. I want to save "Show All" to change 25 to 50. Is there any properties file which can be edited to achiv