How to find the path of Files (e.g. *.PDF,DOC,XLS) seen on PLMCfolders web?

Hi,
I am working on a requirment "Passing Cfolders documents/attachments to a third party document managemnt system.
Question : Is it possible to see all the files which are uploaded in Cfolders like the ones seen in R/3 transaction AL11 at Unix level ? Do the files we see on the <b>PLM Cfolders web Browser</b> have a physical directory on SAP GUI from where we can view and download these files on the local machine ?
Comments are most welcome !
Regards,
Nilesh

Hi,
check CFX_API_DOC_DOCUMENT_ASURL to get the URL to the document. There are other functions out there to get the content then. Just select CFX_API_DOC_* in SE37.
Hope this helps.
Regards,
Jochen

Similar Messages

  • How to find the path of Files (e.g. *.PDF,DOC) seen on PLMCfolders web?

    Hi,
    I am working on a requirment "Passing Cfolders documents/attachments to a third party document managemnt system.
    Question : Is it possible to see all the files which are uploaded in Cfolders like the ones seen in R/3 transaction AL11 at Unix level ? Do the files we see on the <b>PLM Cfolders web Browser</b> have a physical directory on SAP GUI from where we can view and download these files on the local machine ?
    Thanks in advance !
    Regards,
    Nil

    Hi,
    check CFX_API_DOC_DOCUMENT_ASURL to get the URL to the document. There are other functions out there to get the content then. Just select CFX_API_DOC_* in SE37.
    Hope this helps.
    Regards,
    Jochen

  • How to find the right XML files

    Hi all
    I need to customize OBIEE according to the custommers needs,Is there any tool to find the xml source files where I can make the changes.
    Currently I'm using 'psoug' to edit the page source code , for example I want to modify those values:
    <tbody>
    <tr>
    <td class="XUISectionHeadingTitle">Columns</td>
    </tr>
    <tr>
    <td class="XUISectionHeadingText">
    Click on column names in the selection pane to add them to the request. Once added, drag-and-drop columns to reorder them. Edit a column's format, formula and filters by clicking the buttons below its name.
    and I don't find the xml file to update it.
    Anyone knows how I can find it?

    *(BIInstallDir)\OracleBI\web\msgdb\l_en\messages*
    Under this path you can find the list of XML files....
    These XMLs are named to indicate what type of info it contain..

  • How to know the path of file.

    i am facing a problem,i have prepared a jar file of an application, which should have a path-file in it & that path-file contains loaction from where applicatioin starts, and creates some file there. but i dont know loaction when i prepared the jar file.how to solve this problem.

    but it is not in my hand, My jar file will be used by a vendor to code a Servlet which will access the classes in the jar file. it cannot be solved by My jar file.
    My Question was
    I have to deliver a jar file which contains my classes. This jar file will be used by a vendor to code a Servlet which will access the classes in the jar file.
    One of the classes in this jar file is required to simulate a file-system (we call it "Repository"). Essentially, it creates a certain directory and reads-writes files into it.
    My problem is how to specify the path (i.e. directory location) of the "Repository". Following are the possibilities I could see :
    1. Hardcode the path in the java code - This is not desirable since we do not know it while I am preparing my jar-file.
    2. Create a properties file, put Repository.path=... as an entry and package it with the jar-file - The problem is that sine this properties file is packaged in the jar, it is read-only. Hence, it cannot be changed at runtime.
    I want to know what are the general approaches to this?

  • How to find the path of the file at enduser system

    Hi  Frndz..
    Am per my requirement i need to read XL file from enduser PC, for this i need to kno the path on the enduser PC i.e . ,lets assume that test.xsl file is there an enduser PC on his desktop , so i need the path where its like  "C:\Docsandsettings\desktop\test.xsl"..
    Plz suggest me
    Regards
    Rajesh

    Hi,
    You have to first upload this file using fileupload UI element.
    Then you can do the rest.
    Following tutorial will explain you it in detail
    https://www.sdn.sap.com/irj/sdn/go/portal/prtroot/docs/library/uuid/00062266-3aa9-2910-d485-f1088c3a4d71
    Regards
    Ayyapparaj

  • How to find the path of a PDF sent for email review

    Hi everyone
    We have a problem where the path linking an email review to the original source document has been changed. The emailed comments do not prompt the user to merged the comments with the original file.
    I assume there must we some way to identify the original file path so that it can be reinstated.
    Can anyone help us find this path information?
    Thanks
    Suze

    How about:
    URL url = ClassLoader.getSystemResource("testfile.txt");
    if (url == null) {
         System.out.println("not found");
    } else {
         System.out.println(url.getPath());
    }

  • How to find the number of files in an oracle directory through a storedproc

    hi
    i have an oracle directory or a directory in an ftp server
    is there any way.......through which..
    i can know the number of files in the directory ...?
    and whats the metadatacolumn that will indicate the name of the file?
    and is it possible to loop through each of the entries within oracle
    regards
    raj

    ops$tkyte@8i> GRANT JAVAUSERPRIV to ops$tkyte
      2  /
    Grant succeeded.
    That grant must be given to the owner of the procedure..  Allows them to read
    directories.
    ops$tkyte@8i> create global temporary table DIR_LIST
      2  ( filename varchar2(255) )
      3  on commit delete rows
      4  /
    Table created.
    ops$tkyte@8i> create or replace
      2     and compile java source named "DirList"
      3  as
      4  import java.io.*;
      5  import java.sql.*;
      6 
      7  public class DirList
      8  {
      9  public static void getList(String directory)
    10                     throws SQLException
    11  {
    12      File path = new File( directory );
    13      String[] list = path.list();
    14      String element;
    15 
    16      for(int i = 0; i < list.length; i++)
    17      {
    18          element = list;
    19 #sql { INSERT INTO DIR_LIST (FILENAME)
    20 VALUES (:element) };
    21 }
    22 }
    23
    24 }
    25 /
    Java created.
    ops$tkyte@8i>
    ops$tkyte@8i> create or replace
    2 procedure get_dir_list( p_directory in varchar2 )
    3 as language java
    4 name 'DirList.getList( java.lang.String )';
    5 /
    Procedure created.
    ops$tkyte@8i>
    ops$tkyte@8i> exec get_dir_list( '/tmp' );
    PL/SQL procedure successfully completed.
    ops$tkyte@8i> select * from dir_list where rownum < 5;
    FILENAME
    data.dat
    .rpc_door
    .pcmcia
    ps_data
    http://asktom.oracle.com/pls/asktom/f?p=100:11:4403621974400865::::P11_QUESTION_ID:439619916584
    Edited by: Salim Chelabi on 2009-04-21 10:37

  • How to find the path of the project directory in Flex AS3.0?

    I am working on a project in which I reference a lot of external files. I need a way to refer to them relative to the location of the project folder.

    I don't want to know the location of the installed app. When I am building the project there are various content files in the project folder that get compiled too. I want to know the location of the content folder. Now, since this content folder is in the main project folder in Flex Builder, if I can find the location of the project folder, I can easily locate what I need - the content. But, I don't know hot to find the location of the main project folder on the hard disk.

  • How to find the path where the program resides

    I need to use the path where the running program file resides.
    My purpose is to make a program where some parameters are in a separate file. I want to have it in the same directory as the .jar program is. This way I could start and run the program from a memory stick.
    Is there a way to get the program path?
    Urpo Pietil?
    Edited by: urpo on Feb 12,:12 AM
    Edited by: urpo on Feb 12,:12 AM

    This will tell you the directory that contains the running program:
    System.getProperty("user.dir")

  • How to find the original RAW file # from a Lightroom exported JPG?

    Hello, this is in regards to a Lightroom 3.5 exported JPG. This was a year ago when I had been told it was best to export files with simple renumbering of them from 1 to x... instead of retaining the original RAW 4-digit file name.
    I've currently lost the original files, and need to do a search for them via these 4 digits to see if I have them tucked away in any of my drives. I downloaded a metadata explorer, and it's telling me all the lightroom editing information, and everything else, but somehow does not have the simplest of information — that 4 digit original file name.
    Am I grasping at straws or is there likely to be any way to find this information out? I don't work with metadata, so there wouldn't have been any customizations to how Lightroom configures this....hoping that's in my favor. Any help is much appreciated!!!!

    A note about security (context: downloaded apps & plugins...).
    Anatomy of a URL:
    protocol://stuff.stuff.stuff.domain.domain-suffix/stuff/stuff?stuff=stuff
    None of this stuff matters much except:
    domain.domain-suffix (and protocol, to some extent).
    So if you download something from:
    http://ignafradifcawhatyousay.toolonganyway.my.server.com/gogafnoics...
    It's coming from server.com using http (web) protocol.
    But, if you download it from:
    http://my.server.com.badguy.tv/...
    It's coming from badguy.tv, NOT server.com, so if you want it from server.com - danger will robins...
    And, if you download from
    http://216.195.245.134/my.server.com
    It's coming from an unregistered internet address (216.195.245.134) - again: danger...
    (4 groups of up-to-3 digits separated by dots is the format for a literal internet (IP) address, instead of domain-name...)
    Summary: if you learn the anatomy of a URL, and pay attention to the URL's you are clicking on, or entering directly, you can take more responsibility for security, and assure (to a greater extent) you don't download from an unfriendly source.
    Disclaimer: I accept no legal responsibility for anything that happens as a result of anything written above...
    Rob

  • HOW TO FIND THE PATH TRAVELLED BY THE CLIENT'S REQUEST PACKET

    Hi,
    I want to know is there any way by which we can know the entire path or the hops travelled by the client request packet to reach the web-server.Say suppose the client machine is part of a large network in a corparate where there is a a personlaized WAN. I want to know whther i can achive this using the servlets.
    and i even want to know some information about the client's NIC Card Physical Address.If at all i use the HttpServletRequest.inetAddress() gives the public IP of the Client which is shared in the network.
    Please suggest me a way by which i can do this.
    Thanks in Advance!!!
    Regards,
    RAHUL

    hey i m back
    import java.net.Inet4Address;
    import java.net.InetAddress;
    import java.net.URL;
    import java.util.Arrays;
    import jpcap.JpcapCaptor;
    import jpcap.JpcapSender;
    import jpcap.NetworkInterface;
    import jpcap.NetworkInterfaceAddress;
    import jpcap.packet.EthernetPacket;
    import jpcap.packet.ICMPPacket;
    import jpcap.packet.IPPacket;
    import jpcap.packet.Packet;
    public class Traceroute {
         public static void main(String[] args) throws Exception{
              if(args.length<2){
                   System.out.println("Usage: java Traceroute <device index (e.g., 0, 1..)> <target host address>");
                   System.exit(0);
              //initialize Jpcap
              NetworkInterface device=JpcapCaptor.getDeviceList()[Integer.parseInt(args[0])];
              JpcapCaptor captor=JpcapCaptor.openDevice(device,2000,false,5000);
              InetAddress thisIP=null;
              for(NetworkInterfaceAddress addr:device.addresses)
                   if(addr.address instanceof Inet4Address){
                        thisIP=addr.address;
                        break;
              //obtain MAC address of the default gateway
              InetAddress pingAddr=InetAddress.getByName("www.microsoft.com");
              captor.setFilter("tcp and dst host "+pingAddr.getHostAddress(),true);
              byte[] gwmac=null;
              while(true){
                   new URL("http://www.microsoft.com").openStream().close();
                   Packet ping=captor.getPacket();
                   if(ping==null){
                        System.out.println("cannot obtain MAC address of default gateway.");
                        System.exit(-1);
                   }else if(Arrays.equals(((EthernetPacket)ping.datalink).dst_mac,device.mac_address))
                             continue;
                   gwmac=((EthernetPacket)ping.datalink).dst_mac;
                   break;
              //create ICMP packet
              ICMPPacket icmp=new ICMPPacket();
              icmp.type=ICMPPacket.ICMP_ECHO;
              icmp.seq=100;
              icmp.id=0;
              icmp.setIPv4Parameter(0,false,false,false,0,false,false,false,0,0,0,IPPacket.IPPROTO_ICMP,
                        thisIP,InetAddress.getByName(args[1]));
              icmp.data="data".getBytes();
              EthernetPacket ether=new EthernetPacket();
              ether.frametype=EthernetPacket.ETHERTYPE_IP;
              ether.src_mac=device.mac_address;
              ether.dst_mac=gwmac;
              icmp.datalink=ether;
              captor.setFilter("icmp and dst host "+thisIP.getHostAddress(),true);
              JpcapSender sender=captor.getJpcapSenderInstance();
              //JpcapSender sender=JpcapSender.openDevice(device);
              sender.sendPacket(icmp);
              while(true){
                   ICMPPacket p=(ICMPPacket) captor.getPacket();
                   //System.out.println("received "+p);
                   if(p==null){
                        System.out.println("Timeout");
                   }else if(p.type==ICMPPacket.ICMP_TIMXCEED){
                        p.src_ip.getHostName();
                        System.out.println(icmp.hop_limit+": "+p.src_ip);
                        icmp.hop_limit++;
                   }else if(p.type==ICMPPacket.ICMP_UNREACH){
                        p.src_ip.getHostName();
                        System.out.println(icmp.hop_limit+": "+p.src_ip);
                        System.exit(0);
                   }else if(p.type==ICMPPacket.ICMP_ECHOREPLY){
                        p.src_ip.getHostName();
                        System.out.println(icmp.hop_limit+": "+p.src_ip);
                        System.exit(0);
                   }else continue;
                   sender.sendPacket(icmp);
    }

  • How to find the corresponding application program of an application doc. ?

    hi,
      can anybody give me some good idea on how the creation of an application document invokes a message control? i am working on interface right now. also, i am interested in knowing the corresponding application program of an application document. kindly somebody help me getting these two informations.
    waiting eagerly to award some good points to good helps.
    thanks,
    max

    sse the FUnction module ..MASTER_IDOC_DISTRIBUTE..if it is used zreport or program
    that means the message type used in the program are manually triggered.
    Prabhudas

  • How can I convert a word file into a pdf and then upload to a web site?

    I need to convert a word document into a pdf and then upload it to a web site so people can read it from my
    site. How can I do this? Can anyone please help? I'm only a newbie. Thanking you in anticipation.

    Hi there,
    There's actually an easy streamlined way to do this using Acrobat.com. Here are the steps:
    1. Log in to Acrobat.com with your Adobe ID.
    2. On the left, you'll see a navigation menu that includes the item "Import and Edit". Click that.
    3. Choose the .doc (Word) file you want to convert and upload it to Buzzword.
    4. After making sure that it looks the way you want it to, go to the top menu (still in Buzzword now, not the organizer where all your files live) and click the document menu. There will be an option to "Export" - choose that.
    5. When prompted to select filetype, choose "Adobe PDF" and press OK.
    6. It'll save to your desktop, so now you have to get it into your acrobat.com organizer. To do that, close the Buzzword document by clicking the little "x" in the upper right corner, under the Sign Out button. This'll get you back to your organizer, where you can choose "Import" from the left nav menu again. This time choose your new PDF file.
    7. Select the  file icon in the organizer and click the Share button. Or, select Share  from the file context menu.
    8. Select Allow Anyone With A  Link To Share This Document to set the document to open access, and then  click Copy Embed Code. The necessary HTML code to embed the preview is  copied onto the clipboard.
    9. Open the HTML file and paste  the code into the file. The Flash previewer can display any file type  that you can convert to PDF.
    Hope this helps! Good luck, and let us know how it works out.
    Rebecca

  • Cant find the path to install an update

    getting error that says cant find the path or file when try to download itunes upgrade on computer   how can i fix???

    Try deleting the file and try again
    IPSW file location for Mac and Windows
    Try a manual install using the directions here:
    iDevice Troubleshooting 101 :: iPhone, iPad, iPod touch

  • How do I find the path to a TestStand sequence file using LabVIEW

    My LabVIEW application launches a bunch of teststand sequences, provided it has the complete path to each of them. I want to make it more flexible by providing it just the name of the TestStand sequence so that it will go and find the path to the sequence by searching a directory structure. TestStand has a neat FindFile() function that can do this, but I need to do this from within LabVIEW. Is there a way to do it?

    There are a few ways to do this depending on how you are getting the sequence files.  If you are calling the GetSequenceFileEx method, you can just pass the GetSeqFile_FindFile (0x20) flag in the SequenceFileFlags property.  If you are using the ApplicationMgr.OpenSequenceFile method, this is automatically done for you.
    If you want to use the FindFile function in general, you can use the Engine.FindFile method.
    Allen P.
    NI

Maybe you are looking for