Avoid "percent" 20 symbol in downloads

How do I avoid getting "%20" each time I down load a file with spaces in its name?
I am using Safari and remote mail via Exchange server. Each time I download a document with spaces in the title, the spaces are replaced with "%20".
Is there a setting I can use to correct this? Even if it replaced the spaces with "_".
Mike, Perth, WA

Hi ,
Doing NODIM , should not do anything with the Key Figure header.
When u drag in the newly created CKF or formula Column part of query designer you edit the description of the formula or CKF as "%" that will always be there and have no impact of NODIm function.
thanks
Mukesh

Similar Messages

  • Do we have option to avoid the automatic popup to download the photos/videos from iphone, once we connect to the Laptop/Desktop

    Can you help me to update my phone settings..
    Do we have option to avoid the automatic popup to download the photos/videos from iphone, once we connect to the Laptop/Desktop
    Thanks
    Uday

    That is a Windows option - not a phone option. You need to modify your Autoplay options on your PC

  • In Mail, is there any way to prevent the ampersand 20 symbol in downloaded attachments?

    Long title, but as it suggests, every time I download an attachment in Mail that has a space in the title, Mail puts in %20 to replace the space (ascii symbol for space).  I'd like to prevent this and have attachments stored under the name they are sent.  Any way to do this?

    Is there any way to prevent the OS from querying the Superdrive when start
    No
    he OS queries the drive slot to see if there is a disc present.
    How can you tell? Based on the noise it makes?

  • Field Symbols in Download to excel FM

    Hi All,
    I am trying to use something like below.
    field-symbols : <gt_outtab> type any.
    Here <gt_outtab> is a dynamic internal table.
    It gives me an error message saying ""
    i might be asking very silly question but am not able to find a solution.
    Is the below code wrong...then is there any FM which supports usage of field symbols in FM to download data with field names.
    another thing...is there any way to read the Component names in a field symbol...I am able to read the contents of the same using Assign component though.
    CALL FUNCTION 'GUI_DOWNLOAD'
           EXPORTING
                filename   = 'C:\test1.xls'
                filetype   = 'ASC'
                append     = 'X'
           TABLES
                data_tab   = <gt_outtab>
                fieldnames = gt_fieldcat.
    Any help is appreciated.
    BR,
    Krishna.

    Hi Max,
    thanks for that...I did get the structure and was able to create a Dynamic table using the Field catalog fieldnames.
    Now I have all my values in <gt_outtab> table and the dynamic table created from the field catalog is <gt_fieldcat> .
    DATA: it_create    TYPE REF TO cl_alv_table_create,
            it_dinamica     TYPE REF TO data,
            it_fieldcat_lvc TYPE lvc_t_fcat.
    CALL METHOD it_create->create_dynamic_table(
                  EXPORTING it_fieldcatalog = gt_save_fieldcat
              IMPORTING ep_table                = it_dinamica ).
      ASSIGN it_dinamica->* TO <fs_dinamica>.
    All I want is to Move corresponding from one fieldsymbol to another.
    something like      move-corresponding <gt_outtab> to <gt_fieldcat> . But it gives me an error saying its not a structure etc.
    I tried another way as well.
    loop at <gt_outtab> assigning <gs_outtab>.
    ASSIGN COMPONENT   MY_STRUCT->COMPONENTS-NAME
    OF STRUCTURE <gs_outtab> TO <fs1>.
    All I have now is a fieldcatalog..a table with all values...
    Move corresponding doesn't work as it says this is not a structure or an internal table.
    as this is not a static structure that I am referring to it doesnt allow me to do this.
    I think there is no concept of type casting a Field Symbol like another field symbol at runtime.
    like : field-symbols : <fs>, <fs1> , <fs2> type itab1.
    assign <fs2> to <fs> casting.  which then transforms <fs2> to structure <fs>.
    for e.g :
    <gt_fieldcat>  :
    orderno itemno adsize date price
    <gt_outtab> has below values
    orderno itemno price   date               adsize
    400         10       200   10.10.2010        45
    500         20       150   11.09.2010        55
    All i need is the same field catalog and the rows in as per the fields in the <gt_fieldcat>.
    When there is something gt_sp_groups while passing into the below method, the fieldcat and the output table are in same structure but after this method if I try to read the current Field catalog using method " get_frontend_fieldcatalog" ...it gives me a different one after applying the Groups etc.,in such cases I think the ALV excel download doesnt work. I tried checking SAP Notes for the same, but could not find anything. It will be helpful if I can get any notes related to that.
    e.g.
    CALL METHOD gr_alvgrid->set_table_for_first_display
      EXPORTING                                        
        is_layout                     = gs_layout      
        it_special_groups             = gt_sp_groups   
        it_toolbar_excluding          = gt_exclude .    
    Any one any ideas please....at the moment the only way i am trying is forcing all the fields as characters into the Excel which obvisouly limits if it is a Price columns.
    Many thanks,
    Krishna.
    Edited by: Krishna on Nov 11, 2010 2:24 AM
    Edited by: Krishna on Nov 11, 2010 5:56 PM

  • Avoiding Error: referenced symbol not found in STL matrix

    Hi,
    in Sun WorkShop 6 update 2 C++ 5.3 2001/05/15 there is a well known problem when STL classes are used. For example, the following code:
    #include <vector>
    int main()
    std::vector<int> myVector;
    myVector.push_back(1);
    will cause a linking error:
    symbol std::vector::__insert_aux : referenced symbol not found.
    There is a workaround in:
    http://forum.java.sun.com/thread.jspa?forumID=850&threadID=5069680
    Some recommended link options are provided in:
    http://forum.java.sun.com/thread.jspa?forumID=850&threadID=5104725
    Once solved this problem, something similar happens when I try to build a matrix using nested templates std::vector:
    // Matrix defined in my class.
    class myClass
    public:
    std::vector<std::vector<double> > matrix;
    Of course, I want to use the matrix dynamically:
    int main ()
    myClass object;
    // Create a matrix with Nrows rows.
    object.matrix = std::vector<std::vector<double> > (Nrows);
    // etc ...
    This code will cause the following referenced symbol not found error at linking:
    $ echo __1cDstdGvector4n0AGvector4Cdn0AJallocator4Cd____n0AJallocator4n0C____2G6Mrk1_r1_ | c++filt
    std::vector<std::vector<double,std::allocator<double> >,std::allocator<std::vector<double,std::allocator<double> > > >&std::vector<std::vector<double,std::allocator<double> >,std::allocator<std::vector<double,std::allocator<double> > > >::operator=(const std::vector<std::vector<double,std::allocator<double> >,std::allocator<std::vector<double,std::allocator<double> > > >&)
    so the matter is that the operator = is not found for matrix as a nested template. std::vector::push_back method cannot also be used, as shown above.
    I have found a workaround to avoid this linking error:
    int main ()
    myClass object;
    // Create a matrix with Nrows rows.
    std::vector<std::vector<double> > auxiliarMatrix (Nrows);
    object.matrix.swap (auxiliarMatrix);
    // Now matrix can be filled:
    for(int nCont=0; nCont < Nrows; nCont++)
    std::vector<double> auxiliarVector;
    // Vector must be filled first...
    object.matrix[nCont] = auxiliarVector;
    // etc ...
    std::vector::swap method exchanges auxiliarMatrix and object.matrix, so now I have a matrix with the required size. And, very important, doesn't cause linking error in my case.
    Hope this may be useful for somebody.
    Bye.

    Hi,
    in Sun WorkShop 6 update 2 C++ 5.3 2001/05/15 there is a well known problem when STL classes are used. For example, the following code:
    #include <vector>
    int main()
    std::vector<int> myVector;
    myVector.push_back(1);
    will cause a linking error:
    symbol std::vector::__insert_aux : referenced symbol not found.
    There is a workaround in:
    http://forum.java.sun.com/thread.jspa?forumID=850&threadID=5069680
    Some recommended link options are provided in:
    http://forum.java.sun.com/thread.jspa?forumID=850&threadID=5104725
    Once solved this problem, something similar happens when I try to build a matrix using nested templates std::vector:
    // Matrix defined in my class.
    class myClass
    public:
    std::vector<std::vector<double> > matrix;
    Of course, I want to use the matrix dynamically:
    int main ()
    myClass object;
    // Create a matrix with Nrows rows.
    object.matrix = std::vector<std::vector<double> > (Nrows);
    // etc ...
    This code will cause the following referenced symbol not found error at linking:
    $ echo __1cDstdGvector4n0AGvector4Cdn0AJallocator4Cd____n0AJallocator4n0C____2G6Mrk1_r1_ | c++filt
    std::vector<std::vector<double,std::allocator<double> >,std::allocator<std::vector<double,std::allocator<double> > > >&std::vector<std::vector<double,std::allocator<double> >,std::allocator<std::vector<double,std::allocator<double> > > >::operator=(const std::vector<std::vector<double,std::allocator<double> >,std::allocator<std::vector<double,std::allocator<double> > > >&)
    so the matter is that the operator = is not found for matrix as a nested template. std::vector::push_back method cannot also be used, as shown above.
    I have found a workaround to avoid this linking error:
    int main ()
    myClass object;
    // Create a matrix with Nrows rows.
    std::vector<std::vector<double> > auxiliarMatrix (Nrows);
    object.matrix.swap (auxiliarMatrix);
    // Now matrix can be filled:
    for(int nCont=0; nCont < Nrows; nCont++)
    std::vector<double> auxiliarVector;
    // Vector must be filled first...
    object.matrix[nCont] = auxiliarVector;
    // etc ...
    std::vector::swap method exchanges auxiliarMatrix and object.matrix, so now I have a matrix with the required size. And, very important, doesn't cause linking error in my case.
    Hope this may be useful for somebody.
    Bye.

  • How to avoid to open files after download in mavericks

    Hi Guys:
    I download a lot of internet content (mostly jpg); its very frustrating mavericks open every file.
    How I can avoid it!
    Thanks in advance.

    Barney-15E, you are the best!
    Your answer really works!
    Thank you a lot.

  • Can we avoid the message  while opening downloaded excel file.

    Hi,
    I have an interesting issue.
    In my scenario I am downloading characteristics value from COID.
    Through background job we are getting that report in our Out look mail box. Report format is XLS.
    While opening the attached XLS file we are getting one message.
    The message is as follows
    The file is not in a recognizable format
    •     If you know the file is from another program which is incompatible with Microsoft excel click cancel, then open this file in its original application. If you want to open the file later in Microsoft excel. Save it in a format that is compatible, such as text format.
    •     If you suspect the file is damaged, click help for more information about solving the problem.
    •     If you still want to see what text is contained in the file, click OK. Then click finish in the text import wizard
    if we ok it the file is opening properly
    So My question is Can we avoid this message ?
    Edited by: amit kulkarni on Apr 10, 2008 9:01 AM

    Hi,
    can you check with your ABAPer on this or post this thread to ABAP Developement forum
    Regards,
    Sankaran

  • How to avoid the "filter cells" during download to Excel from WAD

    How can we avoid seeing the "filter cells" in the link:
    http://help.sap.com/saphelp_nw04/helpdata/en/f1/0a54dbe09411d2acb90000e829fbfe/content.htm
    which we have every time a Bex query is downloaded to Excel from Web application designer?
    The objective is to find a way to avoid the filter cell rows from happening period.... and not asking the users to manually delete the excel rows.
    Edited by: Sharon West on Nov 26, 2008 12:12 PM

    Why is your topicstart all in bold?

  • Is there a Symbol Font download available?

    I am using InDesign CS6 and have been having issues with my Symbol fonts. First, InDesign automatically substitutes Symbol TT for all symbol fonts, but this does not translate correctly, particularly with Greek glyphs. I have downloaded an OTF symbol font, along with Symbol Lt Book and Symbol Lt Medium. The Symbol OTF, generally, converts glyphs correctly; however, it is only available in a regular style (no bold or italic). I have been trying to use the Symbol Lt fonts for the bold and italic, but these convert the same way Symbol TT converts. I have also been having conversion problems with math symbols. I work with a variety of documents that include a wide range of symbols (with thousands of pages in each document), so I cannot simply replace each and every glyph. I need a solution! Is there a font package specifically for InDesign that I can download from Adobe to solve this issue?

    Have you tried Segoe UI Symbol?

  • There is a big white X on top of the firefox symbol after download, what is it for?

    I downloaded the update for firefox but after I open it up there is a big white x over the top of it. What is that? I tried downloading a second time and same thing.

    Firefox 4 doesn't run on a PowerPC Mac.
    Firefox 4 requires at least OS X 10.5 and an Intel Mac.
    * http://www.mozilla.com/firefox/4.0/system-requirements/
    For Mac OS X 10.4.11 or Mac OS X 10.5.8 you can look at:
    * http://www.floodgap.com/software/tenfourfox/
    Firefox 3.6.x can be found here:
    * http://www.mozilla.com/en-US/firefox/all-older.html

  • Apex 4 - How to avoid  2 times doublequotes while download report as csv

    Hi,
    I have created a report which will show text like. Report output has double quotes as typed below
    This is my "test" "report" with 1 column
    This is my "test" "report" with 1 column
    This is my "test" "report" with 1 column
    I have export CSV=YES with link name as download and filename
    when I run this report, it shows me text as shown above but when I click on download link, text file is opened/saved but it has all "(double quotes) shown twice. How can I get it in file as it is
    sample output I get in file is as below
    This is my ""test"" ""report"" with 1 column
    This is my ""test"" ""report"" with 1 column
    This is my ""test"" ""report"" with 1 column
    I want output in file as displayed in report
    Please help

    enable csv output = yes
    seperator =,
    enclosed by = "
    link lable=download
    filename=abc.sql
    When report is displayed it show single column as
    exec insert_db "DPSO",504312,"myserver1.com","T10ELF01","SYMANTEC_I3_U2","C","D"
    exec insert_db "DPSO",504312,"myserver2.com","T10ELF01","VERITAS_I3_ORCL_P1","C","D"
    exec insert_db "DPSO",504312,"myserver3.com","T10OPA02","VERITAS_I3_ORCL_P2","C","D"
    but when i click on download link, it opens/(ask to save) new file but it has following data
    "exec insert_db ""DPSO"",504312,""myserver1.com"",""T10ELF01"",""SYMANTEC_I3_U2"",""C"",""D"""
    "exec insert_db ""DPSO"",504312,""myserver2.com"",""T10ELF01"",""VERITAS_I3_ORCL_P1"",""C"",""D"""
    "exec insert_db ""DPSO"",504312,""myserver3.com"",""T10OPA02"",""VERITAS_I3_ORCL_P2"",""C"",""D"""
    I also tried below but did not help
    enable csv output = yes
    seperator =<blank>
    enclosed by = <blank>
    link lable=download
    filename=abc.sql
    I want exact same output in file as shown in report. Please help/advice

  • How to avoid the JRE dialogbox if downloading applet from secured site

    If that applet makes contact with that site again it ask the username and password, can this be avoided? I had allready logged in with the browser.

    i have the same problem , not solved yet ...

  • HT4854 Anyone know how to avoid the hours-long double download?

    Apple says just do multiple downloads- on DSL this is about 3 hours.  Anyone know how to boot installer into more than one CPU?

    Download the installer; right after the download is done, dismiss the installer and find it in the Applications folder. Copy it to a safe place/external hard drive. Then go ahead and install - the installer will self destruct when finished. Copy the installer to the other machine and install (keep a copy of it in a safe place).

  • Is it possible to avoid dependencies on too new symbols in libCstd.so?

    Hello,
    I'd like to know if it's possible to somehow tell the Solaris linker to avoid
    using the symbols with versions newer than the given one. E.g. on my
    snv_111b OpenSolaris system there are a couple of symbols with SUNW_1.4.2
    version:
    % pvs -o -s -C -d /usr/lib/libCstd.so.1|fgrep SUNW_1.4.2|c++filt
    /usr/lib/libCstd.so.1 - SUNW_1.4.2: bool std::operator==<char,std::char_traits<char>,std::allocator<char> >(const std::basic_string<__type_0,__type_1,__type_2>&,const __type_0*);
    /usr/lib/libCstd.so.1 - SUNW_1.4.2: bool std::operator==<char,std::char_traits<char>,std::allocator<char> >(const __type_0*,const std::basic_string<__type_0,__type_1,__type_2>&);These symbols are not present in libCstd.so on the customers Solaris 10
    machines so I'd like to ensure that they are not used in the libraries which I
    build. Unfortunately I couldn't find any clean way to ensure this. In fact the
    only way I did find was to edit /opt/sunstudio12.1/prod/include/CC/Cstd/string
    and to comment out the declarations of these operators there. Which is not
    only dirty and unmaintainable but also actually more than I need to do
    because, as these operators are inline, most often they're indeed inlined and
    it's not a problem to use them. It's only a problem to depend on these (too
    new) symbols in the library.
    So the question is whether I can somehow coax the linker to give an error
    when these symbols are used?
    Thanks in advance for any ideas!
    VZ

    _VZ_ wrote:
    So the question is whether I can somehow coax the linker to give an error
    when these symbols are used?I guess you can - with a bit of a hack. You an probably use a map file telling linker to use only version SUNW_1.4.1 (or whatever version your client machines' have). This way you'll get errors about missing definitions up front:
    $ cat mapfile
    libCstd.so - SUNW_1.1.1 $ADDVERS=SUNW_1.1.1;
    $ CC -M mapfile  a.cc
    Undefined                       first referenced
    symbol                             in file
    std::string::~basic_string() a.o  (symbol belongs to unavailable version /export/opt/sunstudio12.1/lib/sparc/libCstd.so (SUNW_1.2))
    std::basic_ostream<__type_0,__type_1>&std::operator<<<char,std::char_traits<char>,std::allocator<char> >(std::basic_ostream<__type_0,__type_1>&,const std::basic_string<__type_0,__type_1,__type_2>&) a.o  (symbol belongs to unavailable version /opt/sunstudio12.1/lib/sparc/libCstd.so (SUNW_1.2))
    void std::string::__unLink() a.o  (symbol belongs to unavailable version /opt/sunstudio12.1/lib/sparc/libCstd.so (SUNW_1.2))
    ld: fatal: Symbol referencing errors. No output written to a.outSee Linker and Libraries Guide, section "Binding to Additional Version Definitions" (http://docs.sun.com/app/docs/doc/819-0690/chapter5-81344?l=en&a=view) for explanation and an example.

  • Download cloud symbol not responsive for movies or tv programmes on ios7

    The download of movies or tv programmes on my iPad Mini Retina has thrown up a new issue, the cloud symbol with download arrow is not responsive. I can only download video from the cloud by going into the store and selecting purchases, from there all my movies and tv programmes are selectable on the cloud download symbol to start a download, as a work around this solves the problem but is not elegant. 
    I have hard reset the iPad, signed out and back in to the iTunes Store with no success, any ideas or is this a ios7 'feature'! All my software is up to date. I tried to download videos on my iPhone5  and it works perfectly, the iPad does not.

    Hello JeanQT,
    Thanks for using Apple Support Communities.
    For more information on this, take a look at:
    Apple TV (2nd and 3rd generation): Troubleshooting audio issues
    http://support.apple.com/kb/TS5150?viewlocale=en_US
    Best of luck,
    Mario

Maybe you are looking for

  • SQL Error: ORA-04092: cannot COMMIT in a trigger

    Trying to drop the table inside the trigger but i'm unable to do it. SQL Error: ORA-04092: cannot COMMIT in a trigger I need to drop the table based on the some condition say condition is the archive table with more than millions of records which is

  • Java Applet and MS SQL 7.0

    I wrote a Java application that connects to a local MS SQL 7.0. It works just fine. But when I converted it to a simple Java applet, then I connected to the database, an error occured: "java.security.AccessControlException:access denied(java.lang.Run

  • Non-existant Distributions

    We removed some distributions from eDir and now the distributor keeps displaying the following error msg [TED: Event Processing] Distribution directory for 004-application.DISTRIBUTIONS.ZFS.SERVICES.SRC does not exist Is there a way I can get rid of

  • Exporting chronologically by capture time without having to rename files

    Is there any way to export files by capture time without having to rename all the files? Right now they are always rearranged numerically by the file name and get all mixed up chronologically. Thanks, Kinsey

  • [Solved] Seeking solution to increase the font size in a base install

    I recently installed Arch onto a machine with the following hardware/software i686 AMD Semprom 3600+ ATI Radeon RS690 [X1200 series] NEC Multisync E1100+ monitor xf86-video-ati video driver Kernel 2.6.37-ARCH It works nicely.  That is not the problem