Very simple but practically? any one?

hey friends,
i  have a simple questions..for u all before giving answer plz any one check once practically and gve me answer.i want to have a field in one table of currency type where i can give ruppes or dollars along with paise and cents...
example..5 rupes 20 paise...
10 dollars 40 cents..
10.40 $
i tried with currecny along with reference field cuky..
curr is for money and cuky is for whcih currency..type i.e. which type of currency is useful..? i ahve tabken as total 10 in currency 10 8 for normal and 2 for decimal ok
plz help me as earley as u can friends..ok..

Hi satish,
look at the main financial items database table BSEG.
Use the data elemet WRBTR for the amount in document currency, give a reference to the curreny key defined with data element WAERS.
Every thing will be fine if, at the time of input and output of the field in screen or list field, the refernce is established.
Don't worry if what you see in debugger looks different. For historical reasons, currency amounts are handled and stored in packed decimal fields with 2 decimals. The referenced currency key will determine the number of decimals used for input/output and calculations. The information is stored in the respective TCUR* tables of the system.
Regards,
Clemens

Similar Messages

  • Very simple, but not working Table to Flat File

    I'm new to ODI, but I am having too much difficulty in performing a very basic task. I have data in a table and I want to load the data to a flat file. I've been all over this board, all over the documentation, and all over the Googles, and I can not get this to work. Here is a run down of what I have done thus far:
    1. created a physical schema under FILE_GENERIC that points to my target directory
    2. created a logical schema that points to my new physical schema
    3. imported a test file as a model (very simple, two string columns, 50 chars each)
    4. set my parameters for my file (named columns, delimited, filename resource name, etc.)
    5. created a new interface
    6. dragged my new file model as the target
    7. dragged my source table as well
    8. mapped a couple of columns
    9. had to select two KMs: LKM - SQL to SQL (for the source) & IKM - SQL to File Append (for the target)
    10. execute
    Now, here is where I started hitting problems. This failed in the "load data" step with the following error:
    +7000 : null : java.sql.SQLException: Column not found: C1_ERRCODE+
    I found a note on the forum saying to change the "Staging Area Different From Target" setting on the Definition tab. Did that and selected the source table's schema in the dropdown, ran again. Second error:
    +942 : 42000 : java.sql.SQLException: ORA-00942: table or view does not exist+
    This occurred in the "Integration - insert new rows" step.
    The crazy thing is that in a step prior to this ("Export - load data"), the step succeeded and the data shows up in the output file!
    So why is ODI trying to export the data again? And why am I getting an ORA error when the target is a file?
    Any assistance is appreciated...
    A frustrated noob!
    Edited by: Lonnie Morgan (CALIBRE) on Aug 12, 2009 2:58 PM

    I found the answer. But still not sure why this matters...
    Following this tutorial, I recreated my mapping:
    [http://www.oracle.com/technology/obe/fusion_middleware/ODI/ODIproject_table-to-flatfile/ODIproject_table-to-flatfile.htm]
    I was still getting the same error. I reimported my IKM and found that the "Multi-Connections" box was unchecked before and now it was checked. I may have unchecked it in my trial & error.
    Anyway, after running the mapping again with the box checked, the extract to a file worked.
    So, I'm happy now. But, I am also perturbed with the function of the this checkbox and why it caused so much confusion within ODI.

  • Web pages content looks very "simple" but looks normal with IE/GC?

    Computer is running Windows 7.. with the latest firefox version. Not sure what is causing this but when I log onto Facebook, banking sites, craigslist - everything looks very simple as if there is no page layout or graphics. Some pages look more simple than others but no website seems to load properly. I've checked that the page style option isn't checked on "No style" already.
    I tried to take a screen shot of what FB looks like when I log on.
    *http://i84.photobucket.com/albums/k40/naughtykobra/fbpage.jpg
    Seemed to notice the change after a Java update - so I did a system restore to before that update with no luck.
    Loaded the same websites on Google chrome and everything works fine!?

    Hi,
    You may also have to make sure that '''Allow pages to choose their own colors, instead of my selections above''' is selected in '''Tools''' ('''Alt''' + '''T''') > '''Options''' > '''Content''' > '''Colors'''. [https://support.mozilla.org/en-US/kb/Options%20window%20-%20Content%20panel Options > Content]
    [https://support.mozilla.org/en-US/kb/Options%20window Options]
    If the problem persists, please also try a [https://support.mozilla.org/en-US/kb/Managing-profiles new profile]. You can later [https://support.mozilla.org/en-US/kb/Recovering%20important%20data%20from%20an%20old%20profile?s=profile&r=1&e=sph&as=s copy the personal data] from the previous profile to this. Firefox stores the personal settings and data separate from its [http://kb.mozillazine.org/Installation_directory installation and files].
    [https://support.mozilla.org/en-US/kb/Profiles?s=profile&r=2&e=sph&as=s Profiles Howto]
    [http://kb.mozillazine.org/Profile_folder_-_Firefox Firefox Profile Folder & Files]

  • It is Very simple but intresting...........plz give me ans of my simple pro

    <h4>
    Hi friends ,
    I have some probs. that i can not understood the
    logic behind this......if any one know plz reply me.
    This is one sample prog.
    class test
         public static void main(String str[])
              int i=10;
              int j=i++;
              System.out.println(j + " " + i);
    output : i=11 and j=10
    =================================================================
    now if i change this prog.
    class test
         public static void main(String str[])
              int i=10;
              i=i++;
              System.out.println(i);
    now it display value of i is : 10
    why ? the rule of post increment is that first
    assign the value and then increment the value of the
    variable. But when i m using same var. as left side
    it will not increment.
    Can any one help me why is it?
    plz reply me if u know...
    Thank You in Advance.
    </h4>

    ThomHehl wrote:
    I'm just kinda spitballing here, but you have to think about the way this gets translated into machine code.
    When you do an assignment, it moves a value from one memory location to another. When it sees both assignments and that there are further operations to do on the sending part, in order to prevent the value from getting "stepped on" it first creates a new memory location to store the value, then continues processing what is still in the register. In this case, it increments i after the new location has been created.
    This is how it would operate if precedence is to work properly and you had further operations that were lower priority than assignment. Make sense?No.
    Whenever we have LHS = RHS; RHS is evaulated completely and the value of the RHS expression is then stored in the LHS variable. In the case of i = i++; we first evaluate the i++, which has the side effect of incrementing i. Then the value of the expression i++ is stored in the LHS--in i.
    Since the value of i++ is i's original value (Remember, the post-increment operator increments the variable after getting its current value), that's what's stored in the LHS as a result of the assignment.
    int i = 1;
    i = i++;
    // is equivalent to
    int i = 1;
    tmp = i; // get original value of i as the value of the expression i++, tmp = 1
    i = i + 1; // increment i, i = 2
    i = tmp; // this is the "i = " part

  • Hi my sons iphone got pinched by someone at school and they tried numerous codes locking it out we asked a mobile phone shop who said conect toi tunes and you restore and this will reset we tried but noluck any one help as scrren just shows connect to i t

    be gratefull if any one can help

    This is the normal procedure to fix
    http://support.apple.com/kb/HT1212

  • HELP please.. Very simple, but I can't do it...

    Hi,
    How can i make and int be between 1 and 10? I'm using bluej. So I'm declaring the variable enjoyability as an int and then starting directly in the constructor like:
    public class Book
    private String author;
    private String title;
    private String cost;
    private String numberOfPages;
    private int enjoyability;
    private String genre;
    public Book(String author, String title, String cost, String numberOfPages, int enjoyability, String genre)
    this.author = author;
    this.title = title;
    this.cost = cost;
    this.numberOfPages = numberOfPages;
    this.enjoyability = enjoyability;
    this.genre = genre;
    public String author()
    return author;
    public String title()
    return title;
    public String cost()
    return cost;
    public String numberOfPages()
    return numberOfPages;
    public int enjoyability()
    return enjoyability;
    public String genre()
    return genre;
    public void print()
    System.out.println("\n############ LIBRARY ############");
    System.out.println("----------Book Details-----------");
    System.out.println(" Author: " + author() );
    System.out.println(" Title: " + title() );
    System.out.println(" Cost: " + cost() );
    System.out.println(" Number of pages: " + numberOfPages() );
    System.out.println(" Enjoyability: " + enjoyability() );
    System.out.println(" Genre: " + genre() );
    and then I have another class that stores the book I made and print it to the console:
    public class Library
    private ArrayList items;
    * Constructor for objects of class Library
    public Library()
    items = new ArrayList();
    public void addBook(Book newBook)
    items.add(newBook);
    public void alphaAdd()
    public int numberOfItems()
    return items.size();
    public void print()
    for(Iterator iter = items.iterator(); iter.hasNext(); ){
    Book book = (Book)iter.next();
    book.print();
    System.out.println();
    How can i limited it to be between 1 and 10?? Thanks

    public class Book
    private String author;
    private String title;
    private String cost;
    private String numberOfPages;
    private int enjoyability;
    private String genre;
    public Book(String author, String title, String cost, String numberOfPages, int enjoyability, String genre)
    this.author = author;
    this.title = title;
    this.cost = cost;
    this.numberOfPages = numberOfPages;
    this.enjoyability = enjoyability;
    this.genre = genre;
    public String author()
    return author;
    public String title()
    return title;
    public String cost()
    return cost;
    public String numberOfPages()
    return numberOfPages;
    public int enjoyability()
    return enjoyability;
    public String genre()
    return genre;
    public void print()
    System.out.println("\n############ LIBRARY ############");
    System.out.println("----------Book Details-----------");
    System.out.println(" Author: " + author() );
    System.out.println(" Title: " + title() );
    System.out.println(" Cost: " + cost() );
    System.out.println(" Number of pages: " + numberOfPages() );
    System.out.println(" Enjoyability: " + enjoyability() );
    System.out.println(" Genre: " + genre() );
    and then I have another class that stores the book I made and print it to the console:
    public class Library
    private ArrayList items;
    * Constructor for objects of class Library
    public Library()
    items = new ArrayList();
    public void addBook(Book newBook)
    items.add(newBook);
    public void alphaAdd()
    public int numberOfItems()
    return items.size();
    public void print()
    for(Iterator iter = items.iterator(); iter.hasNext(); ){
    Book book = (Book)iter.next();
    book.print();
    System.out.println();
    }

  • What does 'kernel bug in process suhelperd' mean in very simple terms please

    what does 'kernel bug in process suhelperd' mean in very simple terms please

    Hi,
    Any that ends in a "d" tends to be a dameon process used by the System as a whole.
    As in launchd is the process that make sure all the Extensions and Kexts that run the OS are started.
    helper would refer to a specific thing  (the info you posted offers no reference to that and I don't know off the top of my head)
    The su would probably refer to the permissions this item has at that moment in time (su is normally a Terminal Instruction allowing temporary but high level access).
    Without more info about a possible link to an action within the OS or an app it would be hard to say if it is a real concern.
    It seems to refer to a conflict.  It could be that the item is not written for the current OS, is outdated via Upgrades for instance, or written in a way that is now Protected by the way the current OS works.
    Console Messages can be helpful when you can attribute them to specific events such as a Crash Log or the Action in an App matching a Time in the Log (you generally have to be watching).
    9:18 pm      Tuesday; January 6, 2015
    ​  iMac 2.5Ghz i5 2011 (Mavericks 10.9)
     G4/1GhzDual MDD (Leopard 10.5.8)
     MacBookPro 2Gb (Snow Leopard 10.6.8)
     Mac OS X (10.6.8),
     Couple of iPhones and an iPad

  • I downloaded update 10.5 and now i have lost all my apps can any one help

    be very much appreciated if any one could help me out

    As long as the apps are still available in the store, and you use the same iTunes account as you originally used to buy them, then you should be able to re-download them for free : http://support.apple.com/kb/HT2519 . If you download them to your computer's iTunes you could then try restoring to your backup and see if that restores them and their settings/content back to your device - a backup doesn't contain the actual apps, just their content/settings, so for the restore to work fully iTunes needs access to the apps so that it can restore them.

  • Does any one know how can I implement a LaTeX to MathML convertor ?

    I know this isn't the right place to ask this question, but if any one can help me with some documentation or ideas of how can I do this please post a reply.
    Thanks!
    Cristian

    Not sure what you mean by "re-flowable"    in iBooks Author if  you copy  a few pages of text from Word or pages and paste into a flowing text template - it will flow and  open  pages..ditto import from Word or Pages. But once in  place... its fixed to the reader.

  • Would any one tell me how to use java.lang.ref.*

    Hello!
    I am a recruit. I need to write something with java.lang.ref.
    I can't understand the description in API of J2SE very well. Would any one tell me where could I get some more detail or tutorial or example?
    Thanks!
    wooing

    check it out
    http://developer.java.sun.com/developer/technicalArticles/ALT/RefObj/

  • I have questions about Nokia N900..can any one ans...

    any one know if nokia n900 will support N-gage games or not and does it  have good and fast responsive  touch screen as that in Iphone or not and will it have Scratch-resistant surface or not and will it support  Multi-touch input method ??
    I konw that this mobile still not present in markets yet but if any one know answers to these questions so plz answer them..Thanks

    tito_66 wrote:
    thanks everybody for your answers..but what do you mean cpitchford by Maemo 6 ,is this update to Maemo 5 or it is separate Maemo edition for devices which will come after N900 ??
    Maemo 6 (aka Harmattan) is the next maemo OS (think XP to Vista) There isn't any firm guarantee it will run on the N900, but it is due out 2011 by which time the N900 will be quite old in phone terms.
    DRM is something Nokia seems to love. They back Microsofts DRM heavy media formats (wma, wmv), they use DRM to manage their games, they use DRM to manage the ring tones on the devices!! Even Nokia music store sells music with DRM (how 2007 of them!! Seriously, DRM on music downloads?? *YAWN* get with the times, Nokia, please!! I can't sync my phone with Nokia music as it copies every track every time I connect my phone and your technical support haven't given me any assistence, so WHY would I pain myself further by using your DRM heavy online music store!?!)
    DRM requires kernel (and potentially hardware) level intervention. Maemo traditionally uses a fairly stock Linux kernel and as such DRM doesn't really feature that much..if you have "root" access on the device you could potentially fairly easily circumvent it.. (why? to gain access to stuff you already own?)
     To overcome the issues, DRM needs to be fixed into the kernel OR factor in other DRM hardware. It may come on the N900 already, dunno, haven't seen it yet.. but if not I don't think we're going to see it before Maemo6
    In terms for future proofing..
    The N810, announced end of 2007, ran OS2008 (maemo 4) which is already end of life.. under 2 years later..
    To answer your question, Maemo 6 will be for future devices and *may* be available for the N900..
    Don't get me wrong, though.. I don't see this as a problem.. I've owned a 770, N800 and N810 and I will own an N900 when its out.. each time the hardware got a lot better.. more RAM, camera, keyboard, CPU.. 

  • Very simple EJB 3.0 MDB but I get NullPointerException

    I tried to create a very simple EJB 3.0 Message Driven Bean in JDeveloper 10.1.3.2 as follows:
    Message Driven Bean Class:
    import javax.ejb.MessageDriven;
    import javax.jms.Message;
    import javax.jms.MessageListener;
    @MessageDriven(mappedName="MDBQueue")
    public class MDB implements MessageListener {
    public void onMessage(Message message) {
    System.out.println("Got message!");
    Application Client:
    import javax.annotation.Resource;
    import javax.jms.*;
    public class MDBAppClient {
    @Resource(mappedName="MDBQueueConnectionFactory")
    private static QueueConnectionFactory queueCF;
    @Resource(mappedName="MDBQueue")
    private static Queue mdbQueue;
    public static void main(String args[]) {
    try {
    QueueConnection queueCon = queueCF.createQueueConnection();
    QueueSession queueSession = queueCon.createQueueSession
    (false, Session.AUTO_ACKNOWLEDGE);
    QueueSender queueSender = queueSession.createSender(null);
    TextMessage msg = queueSession.createTextMessage("hello");
    queueSender.send(mdbQueue, msg);
    System.out.println("Sent message to MDB");
    queueCon.close();
    } catch(Exception e) {
    e.printStackTrace();
    But I get the following error:
    java.lang.NullPointerException
         at model.MDBAppClient.main(MDBAppClient.java:17)
    I read similar problem in the this thread:
    Re: message driven bean on ejb 3.0 does not work
    some one said that the version in ejb-jar.xml must be changed from 2.1 to 3.0
    but in this case there is no ejb-jar.xml.
    ( I have other cases with ejb-jar.xml file but I can't change the version in ejb-jar.xml)
    the version in web.xml is 2.4 but it not accept any value except 2.4 and an error occur when I tried to change it to 3.0
    please can you tell me why I get NullPointerException and how can I allow EJB 3.0 MDB and JMS to work in JDeveloper

    Note that you can't run MDBs in the embedded OC4J in JDeveloper - try deploying to a stand-alone install of OC4J and see if it works there.

  • Read from 2 tables, write only to one. Simple, but impossible??

    I've been messing about with various annotations for quite a while now, and I can't seem to figure out how to accomplish this seemingly simple task. I'm hoping somebody could explain to me the probably very obvious and simple mistake that I am making.
    I realize that question would otherwise point to problems in my database design and persistence strategy, but I can't seem to read from 2 tables, and write to only one. I have an entity bean that refers mainly to one table, but needs just one column of information from another table. It should not attempt to alter the secondary table, just join on it to get the one field it needs. So far, I've got the following:
    @Entity
    @Table(name = "ventureprofile")
    @SecondaryTable(name = "venture",
                    pkJoinColumns = @PrimaryKeyJoinColumn(name="ventureid"))
    @NamedQueries( {
            @NamedQuery(name = "Ventureprofile.findByVentureprofileid", query = "SELECT v FROM Ventureprofile v WHERE v.ventureprofileid = :ventureprofileid"),
            @NamedQuery(name = "Ventureprofile.findByVentureid", query = "SELECT v FROM Ventureprofile v WHERE v.ventureid = :ventureid"),
            @NamedQuery(name = "Ventureprofile.findByVenturesummary", query = "SELECT v FROM Ventureprofile v WHERE v.venturesummary = :venturesummary"),
            @NamedQuery(name = "Ventureprofile.findByLogoimagelocation", query = "SELECT v FROM Ventureprofile v WHERE v.logoimagelocation = :logoimagelocation"),
            @NamedQuery(name = "Ventureprofile.findByVisible", query = "SELECT v FROM Ventureprofile v WHERE v.visible = :visible ORDER BY v.venturename")
    public class Ventureprofile implements Serializable {
        @Id
        @GeneratedValue(strategy=GenerationType.AUTO, generator="Ventureprofile.ventureprofileid.seq")
        @SequenceGenerator(name="Ventureprofile.ventureprofileid.seq", sequenceName="ventureprofile_ventureprofileid_seq", allocationSize=1) 
        @Column(name = "ventureprofileid", nullable = false)
        private BigInteger ventureprofileid;      
        @Column(name = "ventureid", table="ventureprofile", nullable = false)
        private Long ventureid;
        @Column(name = "venturesummary")
        private String venturesummary;
        @Column(name = "logoimagelocation")
        private String logoimagelocation;
        @Column(name = "visible", nullable = false)
        private boolean visible;  
        @Column(table = "venture", name = "venturename", nullable=false, insertable=false, updatable=false)
        private String venturename;
    //... The extra column of data is "venturename", the tables are related by the column "ventureid". I contest, that since I have specified for read/write access no fields mapped to the 'venture' table (I specified with 'table=' any ambiguous columns), and described the table relationship via my @PrimaryKeyJoinColumn annotation, that toplink should not try to persist anything to the 'venture' table. However, I am getting the following exception:
    Exception [TOPLINK-4002] (Oracle TopLink Essentials - 2.0 (Build b58g-fcs (09/07/2007))): oracle.toplink.essentials.exceptions.DatabaseException
    Internal Exception: org.postgresql.util.PSQLException: ERROR: null value in column "venturename" violates not-null constraint
    Error Code: 0
    Call: INSERT INTO venture (ventureid) VALUES (?)
            bind => [220]
    Query: InsertObjectQuery(VCMarkWeb.db.entity.Ventureprofile[ventureprofileid=220])
            at oracle.toplink.essentials.exceptions.DatabaseException.sqlException(DatabaseException.java:311)
    ...It seems pretty clear that toplink is trying to insert an empty row into the secondary table, and barfing since it is inserting no values, including those constrained to be nonnull. Anyway...I hope it's clear what's going on here, and perhaps somebody knows the right way to do this. Thanks fot your help!

    Tom and Cornelius,
    Thank you both for your ideas. This what I think I will do:
    1) Drive up to OWC (fortunately they are only about 15 miles away from where I live) and get a bigger HD and some more RAM.
    2) Copy the OS9 applications on the existing HD to a thumb drive.
    3) Install the new hard drive and memory
    4) Install OSX TIger and 9.2.2
    5) Maybe do the 4.1.8 firmware update also, maybe.
    6) Look around for a Superdrive and if I can get one for a good price, I'll do it otherwise I'll just use USB thumb drives if I need to copy something off the PB.
    One thing that I was fighting with the other day was that when I had the yoyo power supply plugged in and attached when the PB was in the kitchen, the batteries would not charge although the yoyo was outputting +24 VDC.
    I move everything to the garage, where I originally fixed the yoyo power supply, plug it in out there and the batteries started charging!!! Scratching my head...then I check the voltage between the metal barrel (with the Vsensing resistor attached between the metal shell and the ground wire) of power supply plug and the +24 VDC wire and there is 22 to 23 VDC with the batteries being charged. In the kitchen when they were not being charged, it was about 1.0 VDC. So I rotate the plug a little bit and the batteries start charging. Rotate it more and the batteries don't charge. Something else to do when I have spare time.
    Anyway, thanks for the help and suggestions.
    John

  • I have contacted your support, wordpress's and feedburner to change my itunes description and image. I have been going round myself for ever now all are helpful but I reached nowhere. Can any one help me????

    Hi All,
    I started bloging and podcasting about two years ago and I tried more than one platform for blogging and for podcasting. At last I settled on wordpress.com for blogging and through which I started my podcast on itunes. After sometime I found that it was important to change the image as well as the description found on itunes. Here all the problems started. I have been trying for about one year to change how my podcast looks on itunes but there is no hope. I contacted itunes support and wordpress support who are both very helpful but they told me that the problem is not from their side. I tried to change my feed through feedburner more than once but nothing changed.
    The blog url: http://casa-egypt.com/
    The itunes url: https://itunes.apple.com/us/podcast/mhtt-kasa-msr-casa-egypt-broadcast/id3981772 21?mt=2&ign-mpt=uo%3D4
    There are two feeds shown here:           http://feeds.feedburner.com/CasaEgyptBroadCast
                                                              http://feeds.feedburner.com/imananddinasbroacast
    I sure have played a lot and I think that I messed up my blog and my feed and my podcast but really I do not know exactly where I messed things up. This is one of the mails that I sent to both itunes and wordpress support with some modifications and I am sending it now on this forum in case anyone could help me.
    I have always thought that I have one podcast but on the itunes program on my computer I found two almost identical podcasts with the title "محطة كاسا مصر" (this is written in Arabic only) and another one with both Arabic and English "محطة كاسا مصر- Casa Egypt Broadcast". When I right clicked the image on the left I found a "Show Description" button in the drop down menu. I clicked it for both podcasts and I found that the image of the Arabic podcast (the upper one on the itunes image) disappeared but the description was updated unlike the the Arabic English one in which the exact opposite happened. I tried to open both in itunes store but both showed the old unchanged image and description.
    I really don't know which one is the correct one for my blog as both display the same episodes. By the way, I used to have a lot of other posts but I do not know where they went. Now I don't care about those lost or hidden episodes as much as I care about the other issues I have.
    This is the Arabic only one. (I want the description but there is no image here)
    This is the Arabic English one. (I want the image but not the description).
    As you can see from both images that the url shown in both information boxes are different. I am trying to contact any one from feedburner support but I do not know how to reach them as I think that the problem is in it. Or can you tell me how to edit my feed so as to be able to change my itunes looks?
    Your help will be really appreciated.
    Thanks,
    Dina

    Hi Roger
    Thank you for your reply.
    My original feed is: http://casa-egypt.com/feed/
    However, because I modified the feed http://feeds.feedburner.com/imananddinasbroadcast and nothing changed, I redirected it to another feed and then I deleted this feed.
    Is there any way to change the feed in itunes? The only feed I have now is  http://feeds.feedburner.com/CasaEgyptStation
    I tried to restore the feed http://feeds.feedburner.com/imananddinasbroadcast but feedburner refused.
    I know that I missed things up but I still have hope in working things out.
    Thanks is advance.
    Dina
    Message was edited by: dinadik

  • My problem is very simple......firefox wont allow me save my downloads to any other location than my c drive....for example i have gone into options and set sav

    ''locking this thread as duplicate, please continue at [https://support.mozilla.org/en-US/questions/986549 /questions/986549]''
    my problem is very simple......firefox wont allow me save my downloads to any other location than my c drive....for example i have gone into options and set save downloads to my e drive....but still firefox keeps saving them to my c drive....i have 4 internal hard drives in my rig....and have tried saving downloads to them all.......why this is happening i cant understand....i have tried lots of suggestions....and have re-installed firefox multiple times

    hello, there's a general regression in firefox 27 that won't allow files to download directly into a root drive. please try to create a subfolder (like ''E:\Downloads'') and set this as default location for downloads...
    also see [https://bugzilla.mozilla.org/show_bug.cgi?id=958899 bug #958899].

Maybe you are looking for