Publishing documents from local machine onto Infoview

Post Author: ak004
CA Forum: Publishing
Hi All,
I am trying to upload/publish documents from my local drive on to Infoview so users can see them in infoview. We can do that by clicking "New" button and selecting the document. But is there a way to do this programatically? I have to upload documents into different folders based on the type of the document.
My environment is Crystal Reports Server XI R2.
Appreciate your help.
thanks, Ajith

Post Author: tomw
CA Forum: Publishing
Two routes for this.
1) Install the local machine tools from your server disk, and use the publishing wizard.
2) Inside crystal reports - Click file -> Save As -> Enterprise and choose which folder to save it in

Similar Messages

  • Jabber 9.2, uploading the contact photo from local machine or PC.

    is it posssible to upload contact Photo from local machine to jabber from 'edit profile'? I did that but nothing happened! still no contact photo.
    Thanks,

    Hi Shane,
    in previous version of Jabber it was not possible, am I right? But I heard in 9.2.0 onwards we can do it.
    I will send you the problem on Monday once I get back to Customer Site.
    Thanks,

  • Restoring Mail from Time Machine onto a different Macbook

    My 2008 MBP died given the well known NVidia video card problem.  Since Apple called my MBP an "antique" and any service or warranty due to the video card issue is expired, I'm left with a heavy paperweight. 
    I'm not in a position to buy a new MBP currently but I'd like to at least restore my Mail archives and folders from Time Machine onto my Mail on my 2011 MBA.  Can I get some tips on the best way to do this?

    You could restore your mails from TimeMachine back up with Migration Assistant.

  • How to restore from Time Machine onto an external drive

    Hi all,
    I am a backup freak, and I don't feel entirely safe with Time Machine taking care of backing up my system unless I can test every now and then that I would be able to do a full restore. I've had problems in the past with .Mac/MobileMe's Backup.app, which would not be able to restore from an otherwise apparently successful backup, for one reason or another.
    So, is there a way to test a full restore from Time Machine onto an external hard drive?
    Thanks for your advice

    Allamistakeo wrote:
    Hi all,
    I am a backup freak, and I don't feel entirely safe with Time Machine taking care of backing up my system unless I can test every now and then that I would be able to do a full restore. I've had problems in the past with .Mac/MobileMe's Backup.app, which would not be able to restore from an otherwise apparently successful backup, for one reason or another.
    So, is there a way to test a full restore from Time Machine onto an external hard drive?
    of course. connect an external, boot from the snow leopard DVD and choose "restore system from backup" from the utilities menu. follow the instructions and choose the external drive as the restore destination. make sure it's properly formatted. it should be formatted mac os extended with GUID partition scheme.
    also, you might want to consider doing secondary backups in addition to TM by making a bootable clone on another external drive. use CCCloner or Superduper for such backups.
    Thanks for your advice

  • How do I get a .pdf document from my PC onto my ipadmini?

    How do I get a .pdf document from my PC onto my ipadmini?

    1. Email to your iPad Mini
    2. File Sharing in iTune
    3. Upload PDF to the cloud and share with computer and iDevice e.g. Dropbox

  • Uploading File to server from local machine

    how to Upload the File to server from local machine.
    Using java applet, how to upload the file to secure server.
    I dont know how to proceed the steps for uploading
    Reply me ASAP.......

    Hi Ozkantr,
    The osql utility is installed by SQL Server. You need to make sure the utility is installed on your colleague machine.
    To run SSIS package outside the BIDS, only the DTExec utility which is a client tool is not enough, the server components for Integration Services Service (SSIS runtime) is also required. To install SSIS runtime and DTExec utility, we must install the Integration
    Services shared feature from the SQL Server install media. So, you need to install SSIS service on the machine where the SSIS packages jobs run.
    References:
    http://www.bigator.com/2012/03/11/ways-to-execute-ssis-package/
    http://www.codeproject.com/Articles/219494/SSIS-Overview-Part-I
    Regards,
    +1
    You need to install Integration Services, which installs the necessary bytes on your computer and the SSIS service as well. The service can be disabled though, you don't need it to run packages.
    I wrote a blog post about it some time ago:
    When is DTEXEC installed?
    ps: osql is deprecated. Better start using sqlcmd.
    MCSE SQL Server 2012 - Please mark posts as answered where appropriate.

  • Java code to connect to remote windows machine from local machine

    Hi,
    I have developed a code to connecting remote windows M/C from local M/C by using SSH2 (ganymed-ssh2-build209.jar) API. when I run the code its giving below error. Can any one please help me how to resolve it. And also please let me know, is there any other way to connect remote windows system using java code.
    Exception.
    java.io.IOException: There was a problem while talking to <host name>:22
      at ch.ethz.ssh2.Connection.connect(Connection.java:642)
      at ch.ethz.ssh2.Connection.connect(Connection.java:460)
      at Connect.RemoteServer.ConnectWindowsServer.runCommand(ConnectWindowsServer.java:55)
      at Connect.RemoteServer.ConnectWindowsServer.main(ConnectWindowsServer.java:27)
    Caused by: java.net.ConnectException: Connection refused: connect
      at java.net.PlainSocketImpl.socketConnect(Native Method)
      at java.net.PlainSocketImpl.doConnect(Unknown Source)
      at java.net.PlainSocketImpl.connectToAddress(Unknown Source)
      at java.net.PlainSocketImpl.connect(Unknown Source)
      at java.net.SocksSocketImpl.connect(Unknown Source)
      at java.net.Socket.connect(Unknown Source)
      at ch.ethz.ssh2.transport.TransportManager.initialize(TransportManager.java:299)
      at ch.ethz.ssh2.Connection.connect(Connection.java:591)
      ... 3 more
    JAVA Code
    import ch.ethz.ssh2.Connection;
    import ch.ethz.ssh2.Session;
    public void setAuthenticationInfo(String hostname, String username,String password) {
           this.host = hostname;
           this.userid = username;
           this.password = password;      
           this.recentCommand = "";     
           System.out.println("setting authentication info completed for host=" + host );
      public void runCommand() throws Exception {
    try{
            // Setup ssh session with endpoint
           System.out.println("starting connection with " + host);
           Connection connection = new Connection(host);
           System.out.println("connection object created..");
           connection.connect();
           System.out.println("Connect to connection");
           connection.authenticateWithPassword(userid,password);
           System.out.println(connection.isAuthenticationComplete());
           Session session = connection.openSession();
          System.out.println("connected");
      }catch (Exception e) {
      e.printStackTrace();
    Regards,
    Praveen

    Hi baftos,
    I tried to telnet remote windows machine from my local machine on port 23, its not connected and given error message like "Connect failed".
    As your response, if we can telnet to remote windows machine from local machine then we can connect from Java. Is it correct ?.
    Can you please help me to resolve this issue. And also please confirm the port (23) is correct, which I was used to connect remote machine from telnet.
    Regards,
    Praveen

  • Store documents in local machine of file system not in sap dms

    Hi,
    Can i store documents in local machine not in sap Database . Client  will not use content server for storing document.
    so how to store document in local file system n how to configure ?
    please help.
    Dipak.

    Hello Sir,
    When I try to check in in storage as 'VAULT' it send error 'Attempt to set up connection to  failed'
    attaching screen shot of error
    I customize in DC20 for Vault:
    For: "Define data carrier type "vault""
    Data carr. type = ZD
    For: "Define vault"
    Data carr.name = ZDC_TEST
    Data carr. type= ZD
    Desprition = Test
    Vault path = \\10.181.210.10\_SAP Practice\SAP DMS\DMS_Data_carrier      -> this is the network path.
    For: "Define data carrier type "server, front end"
    Type (data carr. type) = DC
    Description = Frontend test
    Path = c:\temp\
    For: "Define mount ponts/logical drive"
    Data carr. = Default/ZDC
    Prefix for access path = c:\temp\
    Please tell me if have configured any wrong configuration or need to add any additional configuration
    Thanks.
    Dipak.

  • HT1349 i need to put the documents from the mac onto the mac book air

    i need to put the documents from the mac onto the mac book air.  How to I transfer my mac documents and music information to my macBook air?

    You have many options.
    Network the two Macs
    Use a Thunderbolt or FireWire cable and use FireWire Target Disk Mode
    Use Setup Assistant when you first set up a new Mac, or Migration Assistant at any time thereafter
    Use an inexpensive USB flash drive
    Email documents and files to yourself
    Use Dropbox or similar service
    Those are just a few. If you explain further or reply with the model of your "older" Mac and which OS version it is using, more specific information can be provided.
    You may find Apple Support Communities contributor Pondini's OS X tip useful: Setting-up a new Mac from an old one, its Backups, or a PC

  • Cannot run the code from local machine - works after deployment!!!

    Hi,
    I am totally new to application server. My problem is that the application code after it is 'deployed' from JDeveloper to Oracle Application Server - it works fine. I can go to the web application from the url and do a 'Submit' of forms and it works fine. The problem comes when I try to connect to dev. environment from local machine and try to do a 'Submit' (done for debugging purposes), I get a 500 Internal Server Error. Is there a configuration file or property I file I have to change? I am clueless.
    Basically addRequest can be considered as the 'Submit'.
    Javax.faces.FacesException: #{newRequestItem.addRequest}: javax.faces.el.EvaluationException: java.lang.IllegalAccessError: tried to access class javax.xml.rpc.FactoryFinder from class javax.xml.rpc.ServiceFactory
    At com.sun.faces.application.ActionListenerImpl.processAction(ActionListenerImpl.java:98)
    My application is built on ADF and JSF and connects to BPEL workflow and DRM. So it is using WebServices.
    Thanks.

    Hi,
    Top further pinpoint the issue, I can make the SSRS report work with the stored procedure by running
    SP_recompile 'myStoredProcedure'
    So, SQL Server has somehow messed up the execution plan for the sproc. But to repeat, executing the Sproc in Management Studio works just fine, I just look the exact sproc and parameters with SQL Profiler when it is not working in SSRS report, then run that
    same sproc manually and it works.
    After extensive debugging, it seems to raise from one specific SELECT row:
    SELECT
    cte.TIMEYEAR + 1 AS TIMEYEAR,
    where cte.TIMEYEAR is varchar. After changing that to
    SELECT
    CAST(cte.TIMEYEAR + 1 AS VARCHAR) AS TIMEYEAR,
    it started to work.
    What will probably remain forever unclear is that WHY the original select always breaks every now and then, and always starts to work with a simple sp_recompile. I could reproduce the error easily by running
    exec sp_msforeachtable @command1="EXEC sp_recompile '?'";
    after which the sproc raised error: "Conversion failed when converting nvarchar value 'Q1/2000' to data type int".
    ..aaaand then just by running SP_recompile 'myStoredProcedure' it again started working fine. I could reproduce this break & fix pair coherently.
    Still it makes no sense from SSRS report perspective, when sproc was broken in Management Studio query, it was always broken from SSRS report end as well, but sometimes when sproc was working from SSMS, it wasn't working from SSRS.

  • How can I get one value from local machine registry

    how can I get one value from local machine registry, I would like read one value of regitry. I have windows NT workstation. I need it to find the full path of iexplore.exe, this value is in 'HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\App Paths\IEXPLORE.EXE'
    Thanks.

    You can use the D2KWUTIL.pll library to read/write to the registry. You have to install the forms examples to get the library.
    The library d2kwut32.dll must also be installed at the clients.

  • Firefox 7.0 - Can not upload the file from local machine to server...gives "error 404 : file not found"

    firefox 7.0 - Can not upload the file from local machine to server...gives "error 404 : file not found"

    you have not understood my point
    how does this code will run on servlet when I want to upload a file from client's
    machine to server machine
    what I am doing is I am giving an option to the user that he/she can browse the file and then select any file and finally it's action is post in the jsp form for which I have sent the code
    All the computers are connected in LAN
    So how to upload a file from client's machine to server's machine
    Plz give me a solution

  • How to create a SSIS package to delete word documents from local system

    Hi All,
    How to create a small SSIS package to delete word documents from local system. Word documents might be one or two weeks ago.
    Thanks in advance for your help.

        Dim filename As System.IO.FileSystemInfo
            filename = My.Computer.FileSystem.GetFileInfo("c:\temp.doc")
            If (Now.DayOfYear - filename.CreationTime.DayOfYear) > 3 Then
                'filename.Delete()
            End If
    Best Regards,Uri Dimant SQL Server MVP,
    http://sqlblog.com/blogs/uri_dimant/
    MS SQL optimization: MS SQL Development and Optimization
    MS SQL Consulting:
    Large scale of database and data cleansing
    Remote DBA Services:
    Improves MS SQL Database Performance
    SQL Server Integration Services:
    Business Intelligence

  • Ifs Connection problem from local machine to Ifs server using API

    I am trying to make an API call to connect to Ifs database server running on different machine(UNIX) from local machine. I copied all jar files and /Lib/Ifs/Settings directory to my local machine. All these files are in the classpath of weblogic 6.0 environment. A jsp on weblogic server call a bean which has a responsibibility of connecting to Ifs server to get LibrarySession.
    From Visual Cafe 4.5 everything works fine but when i start weblogic 6.0 outside the visual cafe environment i get the error
    below. I included all the jar files and /Lib/Ifs/Settings in start up script of weblogic server
    Do you know if i missing some thing????
    java.lang.UnsatisfiedLinkError: do_open
    at oracle.jdbc.oci8.OCIDBAccess.do_open(Native Method)
    at oracle.jdbc.oci8.OCIDBAccess.logon(OCIDBAccess.java:309)
    at oracle.jdbc.driver.OracleConnection.(OracleConnection.java:198)
    at oracle.jdbc.driver.OracleDriver.getConnectionInstance(OracleDriver.ja
    va:251)
    at oracle.jdbc.driver.OracleDriver.connect(OracleDriver.java:224)
    at java.sql.DriverManager.getConnection(DriverManager.java:517)
    at java.sql.DriverManager.getConnection(DriverManager.java:177)
    at oracle.ifs.server.LibraryConnection.(LibraryConnection.java:235
    at oracle.ifs.server.ConnectionPool.createLibraryConnection(ConnectionPo
    ol.java:576)
    at oracle.ifs.server.ConnectionPool.(ConnectionPool.java:321)
    at oracle.ifs.server.S_LibraryService.(S_LibraryService.java:912)
    at oracle.ifs.server.S_LibraryService.startService(S_LibraryService.java
    :1129)
    at oracle.ifs.beans.LibraryService.connectLocal(LibraryService.java:408)
    at oracle.ifs.beans.LibraryService.connect(LibraryService.java:280)

    Have you installed the Oracle client software on the machine where you are running WebLogic and your custom iFS application (your bean)?
    It looks like the native JDBC libraries are not available to the JVM where WebLogic is executing your code. iFS uses JDBC to access the Oracle database, and it requires "thick" (OCI8) JDBC to do so. This means that you need Oracle client software to be installed (in an ORACLE_HOME directory) on a computer where you want to use the iFS API.
    If you do have the Oracle client software installed already, then perhaps the WebLogic environment isn't configured to have access to the native JDBC libraries. Normally, as long as $ORACLE_HOME/lib is in the LD_LIBRARY_PATH (on unix) or $ORACLE_HOME/bin is in the PATH (on windows), stuff should just work.
    See if you can find any information about including native libraries (for instance, to use JNI) in the WebLogic documentation. We don't certify with WebLogic, which is why I don't know the answer offhand.

  • Running CLIX commands from local machine

    Hello Experts,
    We have the following requirements in terms of clix commands
    Need to know the number of files in log/archieve/report folder - Is there any clix commands for this
    Want to run the clix commands manually from local machine (Windows), the mdm server is at linux environment. We dont want to automate the script and want to run when needed from local machine. Is that possible
    Thanks & Regards,
    Antony

    HI,A.Antony
    as far as i know ,clix can not count the number of files in the loglog/archieve/report folder.but there is a way out.you can get through the path:<driver>:\usr\sap\<instance>\MDS00\log to check it out.
    to run clix locally,you need to install the mdm-clix-7.1.<sp>.<patch>-win32.exe on your windows.then run the clix in the cmd circumstance.for the clix command Syntax,please refer to the MDM console reference guide,as for MDM7.1SP12,you may goto the Clix referece guide on help.sap.com.
    hope it helps.
    best regards
    Stephen

Maybe you are looking for

  • How to club 2 queries in one formatted search query

    Hi All, I have inserted a formatted search in the stock transfer for chnaging the 'From warehouse' based on series. I have written following query for same, SELECT $[$18.1.0]='08' WHERE $[OWTR.series] ='46' It is working Fine I want ot use same conce

  • E Business suite 11i with Database in ASM  - Cloning

    Hi All, We are planning to migrate the E Business suite database to ASM and wanted to know the best cloning method to perform the cloning from Production to non production. Applciation - 11.5.10.2 Database - 10.2.0.4 in ASM Since i dont see any speci

  • IBook G4 will not go to sleep

    Hello Everyone, This is a problem I've been having for about a year but now I'm finally trying to fix it. My iBook G4 will not go to sleep. It doesn't matter what method of putting it to sleep I use. Using software to select sleep, or the power butto

  • Where is Outline Numbering in RH7?

    We are converting projects from RH 5 to RH 7. All our documents have to be be formatted with "legal" numbering (e.g., 1.1, 1.2.1, 1.2.1.1, etc.) In RH 5, there were 3 tabs under Bullets and Numbering, as I recall. You had Bullets, Numbering, and Outl

  • Disaster-DVDSP4 won't open project anymore, looks for weird file

    I built a DVDSP4 project using as my intro movie a project I created in Motion. All was going well until tonight when I made some changes to the intro movie by using the "open in editor" command from within DVDSP. The modifications were saved. When I