How to find Brows() path?

I am working with flash.net.FileReference, I am using the brows function, and I know how to find the chosen file name, but I need the whole path, now how can I do that?

So I can use images from my user machine directly insteed of
uploading/downloading them.
2009/8/24 p_m_williams <[email protected]>
This information is not available on FileReference. As far as I know it
is for security reasons. What do you need the path for?
>

Similar Messages

  • HOW TO FIND MENU PATH FOR A TCODE

    PLZ TELL ME HOW TO FIND MENU PATH FOR A TCODE .
    I HAVE MADE A MENU ENHANCEMENT  WITH TCODE +DW2.
    IT MENU PATH IS NOT TRACEABLE.

    Hi Madan,
    It is in the transaction code <b>S001</b>.
    Check my previous post on this.
    It is not listed on the SAP Menu. Thats why SEARCH_SAP_MENU returns nothing...
    <b>Go to the Initial Screen and then type /n in the TCODE.
    From there now type S001 to go to transaction S001.</b>
    The other ways do not work. Like combining both in a single step : "/ns001".

  • How to find a path in Application server?

    Hi,
    I have a reqirement that i need to download the original document which is attached in the DIR links for each line item in the PO.
    Say for Eg. user is uploading the original document in CV03n.
    Through program i have to download it and save it in local desktop.
    But as per my concern when user uploads that document in CV03N,  it should get updated in application server.
    I wants to know how can i find that path through the document got updated in AL11.
    Please let me know if you have any idea on this.
    Also please let me know if my question is not clear.
    Regards,
    Prabu

    Hi Prabu,
    It depends on how DMS is implemented in your place.
    If DMS is implemented along with CONTENT SERVER, then the actual document uploaded is stored in CONTENT SERVER and only a link is saved in SAP DB and whenever you refer to this link the image is being retrieved and displayed.
    If you dont have content server then the uploaded documents are stored in your application server only. Generally the big companies which implement DMS do have a content server otherwise DB size will grow enormously in no time.
    Once you check out the basics of ur requirement, then search through FM's available related to DMS.
    Hope this answer helps.
    Regards,
    Lakshmi Narayana

  • How to find  full path

    Hi,
    how to find the directory total path where my java programm is running programatically?
    thanks in advance....

    hi,
    Try
    System.out.println("Working directory: " + new File(".").getAbsolutePath());
    Anil.
    Developer Technical Support
    Sun Microsystems Inc,
    http://www.sun.com/developers/support

  • How to find Application Path

    Hi
    How to get Application Path from form module (Any Built Ins)

    Hi,
    declare
    curform varchar2(100);
    begin
    curform:=get_application_property(current_form);
    end;
    hope it helps u..
    navneet jain
    [email protected]

  • 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 complete path of a file in computer by java

    Hi frens !!
    i want to have a simple java program which takes the input file name say one.html and yields the complete path of the that file ,which is already stored somewhere in computer.
    my problem is that i am not getting the method in java ,which could do the same.i am using jdk 1.4.
    Thanks
    Allwyn

    simply PATHETIC !!!
    btw thanks for advise.The options are:
    - Search your computer manually for the file, TELL your code where it is by typing in the path.
    - Have some operating system tool (e.g. Windows Explorere) search your hard drive for you. When it finds it, TELL your code where it is by type in the path.
    - TEACH your code how to search your entire computer, all hard drives, all directories, for the file by that name.
    - Create a new file by that name, either in the 'current' directory (which it appears you alraedy have), or some other path you give it.
    - go hungry

  • How to find mounted path of Adobe Drive?

    Hello,
    I want to find out mounted path(on mac) of Adobe Drive 4 on client machine from inside of my plugin code and want to write it to some properties file. I am not able to find any API to do this.
    Can someone please help? Its urgent....
    Thanks.

    On Mac it's under "/Volumes/my_dam_server_name"

  • 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 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 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 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 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

  • 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 Oracle Home Directory Path...

    Hello,
    I am working on deployment of java web service on Oracle Application Server(LINUX) 10g, EBS - R12.
    I am working on other system and i want to deploy web service remotely on application server.
    And i am not getting the oracle home directory path. I want to find the home directory path remotely.
    so suggest me how to find out path of that.
    or weather i have to install jdevloper on server system and than i have to deploy it,
    or any other alternative way is available.
    Reply as soon as possible......

    Thanks for your reply.
    It's precisely the registry key which got tampered, and there's no ORACLE_HOME environmental variable(Or that too is tampered)
    Now,how to set it to one of the Oracle home directories?
    Regards,
    Bhagat
    !!!!!!!!!!!!!!!!!!!!

Maybe you are looking for

  • TS4002 Icloud data restore from one Apple ID to another?

    I had to replace my 4S with another.  I originally set up icloud on phone "1" (now not working) to back up contact, data, etc with a specific Apple ID.  The person who set up icloud on phone "2" used a different aApple ID.  How do I get the data from

  • MIRO : User-exit to block an invoice

    Hello, I try all miro user-exits and badi and nothing works. I need to block some invoices in MIRO. The badi is good but no export parameters (I try dynamic assignment but it dumped !!) I you've any idea, I will reward Thanks

  • Numbered headers with centered text: the numbers are off to the side.

    Hi, I'm trying to create typical numbered headers as they appear in law reviews. For example, (I used underscore characters here to represent characters): ___________________III.Judge-made law However, Pages seems to only do this: III._______________

  • System preferences icon bug?

    Hey, Look at this: http://tagus.ist.utl.pt/~pedro.nogueira/hum.jpg You'll surely notice two icons that are wrong! Those on/off switches in place of the Software Update and Startup Disk icons... I made a clean install a few days ago... and I dont thin

  • HT4864 My iCloud account will not receive messages from Craigslist

    My me.com account doesn't seem to be getting craigslist emails.