Choosing the average of a KF in BEX at aggregation or calculations?

Hi All,
we have a problem in reporting due to KF that are "average" in our planning area in SAP APO but not average as Infobject.
due to this most reports have completely wrong values.
most of our infoobject KF are Quantity, and SUM like aggregation and Summation like Exception Aggregat.
what should we do in this case?
should we change the KF Exception Aggregat. to Average and this fix the problem? i saw that we have 4 types of average.
if we change the Exception Aggregat. of our KF should we before move the KF from all the cube? or we can do the change without problem?
if we want to fix this at BEX side, where should we decide the average? at aggregation tab or at calculations type?
what are differences between these 2 options?
Thanks
Bilal

Hi,
As I understood you have Key Figure display in Planning Area as average and you want to replicate the same in report.
Noramaly Key Figures are saved as normal quantities not as average so you should not change the exsiting structure.
there are various option as you saind for your requirement.
The priority or approach should be as following.
Try to change at Formula level at calculation type (As in exception aggrigation you may provide one refence charcteristics and as I assume that is not your need so go for calcultion type).
If this doesn't work then go for basi Kasic Key figure diaply proeprties change and still not able to find your results then go for Key Figure definitions change at Info object level. If you do that then movement of cube is required so try to avoid that.
I hope this approach will work.
Thanks,
S

Similar Messages

  • How to find the average a key figure in bex

    Hi All,
    I have a fey kigure (ZAMOUNT) which is amout field. So if there are 'n' records, I need to calculate the average of the amount field(AVERAGEAMT) for those n records.
    Example:
                         EMPLOYEE      ZAMOUNT        AVERAGEAMT
    record1:         employee1         $5000.00          5000.00
    record2:         employee2         $7000.00          5000.00
    record2:         employee3         $3000.00          5000.00
    So I need to the result something like this.
    (500070003000)/3 =  $5000.00

    HI,
    in the bex analyzer go the key figure for which you want-> right click-> properties i->calculate result as -> average.
    Thanks

  • Bex report for the average calculation

    Dear All,
    I like to make a Bex report. On that I like to distribute the last 3 months data on daily average basis.
    From there what will be the stock out of the particular day ( in no.s and from the average value), it should be shown in one line rather than all value.
    Please, guide me how to do.
    regards,
    Balaram

    Hi,
    Try the following
    Create variable1 against 0calmonth with ready for input ....Manual Input --- Mandatory
    Create Variable2 on 0calmonth with out ready for input --- customer exit - interval
    go to cmod write customer exit variable to to populate value for variabl2
    eg. if variable1 = 03.2011  Then variable2 should be between 01.2011 - 03.2011 (If you need coding please let me know)
    Free Char
    Row
    0calday/ Sales Document Date / Billing Date (choose which one you need and select only out of them )
    Column
    Sales Qty 
    --Create New Selection and name as 'Avg Qty 3 Month' 
    --add sales Qty in to new selection
    --Drag and drop 0calday/ Sales Document Date / Billing Date (choose which one you need and select only out of them )
    --Right Click on it and restrict with 0calmoth variable2.
    --Context menu of 0calday/ Sales Document Date / Billing Date (choose which one you need and select only out of them ) and tick constant . 
    make it hide in property
    Create New formula
    Avg Qty 3 Month / 90
    Please note there is leap year also ... it better to calculate no of days between rage in formula...
    Hope this will help you to sole the issue...
    Thanks
    BVR

  • MDX - How to group results to calculate the average

    Hi,
    I have the following MDX query which selects total unique visits per day between a range of my choosing:
    WITH MEMBER [Measures].[MyAvg] AS
    Round( AVG(
    EXCEPT([Dim Date].[Day Of Week].Members,
    {[Dim Date].[Day Of Week].[All].&[1],[Dim Date].[Day Of Week].[All].&[7],[Dim Date].[Day Of Week].[All].UNKNOWNMEMBER}
    ), [Measures].[UniqueVisitsDay]
    ), 2)
    SELECT { [Measures].[MyAvg] } ON COLUMNS,
    NON EMPTY { [Dim Date].[Year Month Date].[PK Date].&[2013-03-01T00:00:00]:[Dim Date].[Year Month Date].[PK Date].&[2013-03-31T00:00:00] } ON ROWS
    FROM
    [MyCube];
    Which gives me the following results:
    01/03/2013 634
    02/03/2013 16
    03/03/2013 19
    04/03/2013 698
    05/03/2013 704
    06/03/2013 692
    07/03/2013 774
    08/03/2013 755
    09/03/2013 9399
    10/03/2013 19990
    11/03/2013 775
    12/03/2013 835
    13/03/2013 868
    14/03/2013 900
    15/03/2013 844
    17/03/2013 19
    18/03/2013 248
    19/03/2013 920
    20/03/2013 958
    21/03/2013 1092
    22/03/2013 798
    23/03/2013 21
    24/03/2013 10
    25/03/2013 731
    26/03/2013 770
    27/03/2013 537
    28/03/2013 300
    29/03/2013 28
    30/03/2013 8
    31/03/2013 4
    What I need to do is get the average of this set of results over the month.  I am expecting this answer:
    1478.233333 (which is total unique hits - 44347 / total rows - 30)
    But when I change my MDX code to this:
    WITH MEMBER [Measures].[MyAvg] AS
    Round( AVG(
    EXCEPT([Dim Date].[Day Of Week].Members,
    {[Dim Date].[Day Of Week].[All].&[1],[Dim Date].[Day Of Week].[All].&[7],[Dim Date].[Day Of Week].[All].UNKNOWNMEMBER}
    ), [Measures].[UniqueVisitsDay]
    ), 2)
    SELECT { [Measures].[MyAvg] } ON COLUMNS,
    NON EMPTY { [Dim Date].[Year Month].[Mar 2013]:[Dim Date].[Year Month].[Mar 2013] } ON ROWS
    FROM
    [MyCube];
    I get the following result:
    MyAvg
    Mar 2013 9868
    Actual: 9868  
    Expected: 1478.233333
    What am I doing wrong?
    Thanks,
    Rob

    Hi Rob,
    In SQL Server Analysis Serviceswe do not have a measure Average aggregation type. Fortunately, we have Sum and Count, and since Average = Sum / Count, we can build our own Average aggregation when we need one. Here is a blog about how to create a average
    measure, please refer to the link below.
    Average Aggregation in Analysis Services
    Regards,
    Charlie Liao
    TechNet Community Support

  • How I manually calculate the Average Valuated Stock Value like in MC.3

    In the R/3 transaction MC.3  the  "Average Valuated Stock Value" help window shows a formula to calculate it.
    AVSV = ( begining stock value + n stock value at months end ) / ( n + 1 )
    What is the meaning of the N?. Where is this value come from.?
    I'd really appreciate any help.

    Hi
    N is the number of periods. The calculation with an example is as follows:
    Op. Stock Value on 1.12.2006: 40
    Cl. Stock Value on 31.12.2006: 80
    Op. Stock Value on 1.1.2007: 80
    Cl. Stock Value on 31.1.2007: 120
    The above can be viewed in MB5B
    In MC.3, if you choose the period 12.2006 to 01.2007, the calculations are as follows:
    AVSV for 12.2006: {40+(1*80)}/2 = 60  [N = 1 period]
    AVSV for 01.2007: {80+(1*120)}/2 = 100  [N = 1 Period]
    Total AVSV for 12.2006 to 01.2007: {40+(2*120)}/3 = 93.33 [N = 2 Periods]
    Hope this clarifies.
    Thanks

  • How do I change this so the average has a decimal and zero?

    I'm trying to get this so that instead of like 90 I'll get 90.0
    oneString = JOptionPane.showInputDialog("Choose a test score 0-100");
              one = Integer.parseInt(oneString);
              twoString = JOptionPane.showInputDialog("Choose another test score");
              two = Integer.parseInt(twoString);
              threeString = JOptionPane.showInputDialog("Choose another test score");
              three = Integer.parseInt(threeString);
              fourString = JOptionPane.showInputDialog("Choose another test score");
              four = Integer.parseInt(fourString);
              fiveString = JOptionPane.showInputDialog("Choose another test score");
              five = Integer.parseInt(fiveString);
              sixString = JOptionPane.showInputDialog("Choose another test score");
              six = Integer.parseInt(sixString);
              sevenString = JOptionPane.showInputDialog("Choose another test score");
              seven = Integer.parseInt(sevenString);
              eightString = JOptionPane.showInputDialog("Choose another test score");
              eight= Integer.parseInt(eightString);
              nineString = JOptionPane.showInputDialog("Choose another test score");
              nine = Integer.parseInt(nineString);
              tenString = JOptionPane.showInputDialog("Choose another test score");
              ten = Integer.parseInt(tenString);
              elevenString = JOptionPane.showInputDialog("Choose another test score");
              eleven = Integer.parseInt(elevenString);
              twelveString = JOptionPane.showInputDialog("Choose another test score");
              twelve = Integer.parseInt(twelveString);
              thirteenString = JOptionPane.showInputDialog("Choose another test score");
              thirteen = Integer.parseInt(thirteenString);
              sum = (one+two+three+four+five+six+seven+eight+nine+ten+eleven+twelve+thirteen);
              mean = (sum / 13);
              System.out.println("The average of the scores is "+mean);

    I advise you to look at your code and ask yourself if it's efficient. What is you wan to add a few numbers to your program? You'll have to add a lot of lines of code.
    Ah well, here's the answer to your question (partially):
        double sum = (one+two+three+four+five+six+seven+eight+nine+ten+eleven+twelve+thirteen);
        double mean = (sum / 13);
    //...

  • How to choose the good Network Interface on a server ?

    Hi all,
    On server you have generally more than one ip address so ...How to choose the good Network Interface on a server for the NoSQL Node ?
    Thank you for all
    C.Pruvost.

    Hi Charles I only consider storage nodes and their replicated nodes.
    Actually I show an error in the logs saying that one of my storage node use a loopback address. On my laptop I have a network interface and a loopback address (disabled)...when starting sn1 I show that the port 5000 is only linked to the ip address 0.0.0.0 so it is not the good ip address..although i use for configuring :
    java -jar ..\lib\kvstore-2.0.23.jar makebootconfig -root root1 -port 5000 -admin 5001 -host ipaddress_of_my_laptop -harange 5010,5020
    and after
    java -jar ..\lib\kvstore-2.0.23.jar start -root root1
    If you have a sample tutorial that explains how simulate on the same laptop an Oracle NoSQL architecture running on 3 disctinct servers please give us this information.
    Thank you for all.
    Christophe.
    PS : error message
    Failures: Task 1 ERROR at 2013-01-15 07:23:19 UTC: DeploySN sn3(pruv
    ost-pc:5200): 1/DeploySN failed.: Register: Cannot mix loopback and non-loopback
    addresses in the same store. The store value is not configured to use loopback
    addresses but storage node pruvost-pc:5200 is a loopback address. (11.2.2.0.23)
    : Register: Cannot mix loopback and non-loopback addresses in the same store. T
    he store value is not configured to use loopback addresses but storage node pruv
    ost-pc:5200 is a loopback address. (11.2.2.0.23) java.lang.IllegalStateException
    : Register: Cannot mix loopback and non-loopback addresses in the same store. T
    he store value is not configured to use loopback addresses but storage node pruv
    ost-pc:5200 is a loopback address.
    at oracle.kv.impl.sna.StorageNodeAgent.register(StorageNodeAgent.java:15
    48)
    at oracle.kv.impl.sna.StorageNodeAgentImpl$2.execute(StorageNodeAgentImp
    l.java:194)
    at oracle.kv.impl.sna.StorageNodeAgentImpl$2.execute(StorageNodeAgentImp
    l.java:188)
    at oracle.kv.impl.fault.ProcessFaultHandler.execute(ProcessFaultHandler.
    java:90)
    at oracle.kv.impl.sna.StorageNodeAgentImpl.register(StorageNodeAgentImpl
    .java:186)
    at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
    at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.
    java:39)
    at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAcces
    sorImpl.java:25)
    Edited by: chpruvos on Jan 14, 2013 11:24 PM
    And my ipconfig
    Windows IP Configuration
    Wireless LAN adapter Wireless Network Connection 2:
    Media State . . . . . . . . . . . : Media disconnected
    Connection-specific DNS Suffix . :
    Ethernet adapter Local Area Connection 3:
    Connection-specific DNS Suffix . :
    IPv4 Address. . . . . . . . . . . : 172.20.10.2
    Subnet Mask . . . . . . . . . . . : 255.255.255.240
    Default Gateway . . . . . . . . . : 172.20.10.1
    Ethernet adapter Local Area Connection* 24:
    Media State . . . . . . . . . . . : Media disconnected
    Connection-specific DNS Suffix . :
    Wireless LAN adapter Wireless Network Connection:
    Media State . . . . . . . . . . . : Media disconnected
    Connection-specific DNS Suffix . :
    Ethernet adapter Local Area Connection:
    Media State . . . . . . . . . . . : Media disconnected
    Connection-specific DNS Suffix . :
    and
    C:\Users\cpruvost>ping pruvost-pc
    Pinging PRUVOST-PC.fr.oracle.com [172.20.10.2] with 32 bytes of data:
    Reply from 172.20.10.2: bytes=32 time<1ms TTL=128
    Reply from 172.20.10.2: bytes=32 time<1ms TTL=128
    Reply from 172.20.10.2: bytes=32 time<1ms TTL=128
    Reply from 172.20.10.2: bytes=32 time<1ms TTL=128
    Ping statistics for 172.20.10.2:
    Packets: Sent = 4, Received = 4, Lost = 0 (0% loss),
    Approximate round trip times in milli-seconds:
    Minimum = 0ms, Maximum = 0ms, Average = 0ms
    Edited by: chpruvos on Jan 14, 2013 11:25 PM

  • How can we remove the commas from the Formula value in SAP BW BEx query

    Hi All,
    How can we remove the commas from the Formula value in SAP BW BEx query
    We are using the formula replacing with characteristic.The characteristic value needs to be display as number with out commas.
    Regards
    Venkat.

    Do you want to remove the commas when you run the query on Bex Web or in RSRT?
    Regards

  • Choosing the Right Power Supply

    First things first. If you've got a poor-quality and/or faulty power supply, nothing else you do will work to solve your problems. Stick to the basics before you go further...The short answer is to buy a hi-powered, brand name supply, like the new ENERMAX line (430 W or higher) or ANTEC True550. Almost nothing else will do with today's computers. In over 30 years of electronic/computer service, I have found that 85% or more of problems were power-related.
    If you want to know more, read on...
    Choosing The Right Power Supply
    If you’re reading this, there’s a good chance that one of my colleagues or I believe that you could be experiencing problems with your power supply, based upon the symptoms you mentioned in your post, and provided you with this link. Relax, you’re not alone. In 30 years of electronic and computer troubleshooting, I’d say that the majority of the electronic, mainframe, mini, and microcomputer problems I’ve diagnosed and repaired were with the basic power the problematic device was receiving. The symptoms often included random reboots, crashing, the BSOD, lockups, etc.
    (As the national support technician for few major computer service companies, working US Defense contracts, I was often the person that had to fly in and correct the problem, or “walk through” the on-site technician as he closely followed my instructions. I achieved success in my career by carefully reading the manuals, knowing where to go for more information that was otherwise unavailable to me, and/or systematically troubleshooting until the problems were discovered and repaired. I never had the option of giving up.)
    The most overlooked component when building or upgrading a PC is the power supply unit (PSU). Some people use their old case and PSU when they upgrade. Some use the PSU that came with their new case. Some people even buy a new PSU. And most inexperienced builders all make the same mistake: The PSU that they’re trying to use is simply inadequate for the job.
    Suppose you’re upgrading to a new motherboard, CPU, ram, and video card, but still using the old case and PSU. It’s most likely that you’re upgrading in order to build a machine that is more powerful, faster, has a more colorful display, can number-crunch more quickly, play the latest games, etc. These gains in performance all have one thing in common: They require more raw power. However, have you thought about where that power comes from?
    Suppose you’re building a new system with a new case and PSU. Has it occurred to you that the company that you bought the case/PSU from might make more money if they skimp on the supply, even if the supply has a large wattage rating? Most bulk power supply manufacturers don’t make good PSU’s. They use older, cheaper technology, and slap on labels that represent the PSU’s peak outputs, and not their continuous output rating. These companies are intentionally misleading you in order to sell you an inferior product. Brands I avoid when building/repairing my friends’ and family’s computers: Allied, Q-Tec, Chieftech, and many others.
    For those of you who bought a power supply separately, did you know that you’re only supposed to run a power supply continuously at 30-70% (with 50% being optimal) of its continuous rating for maximum efficiency (which means less heat to you)? Most inexperienced builders either buy PSU’s that are matched to their equipment’s continuous power usage, or ones that are even less powerful than they need. Why? Because they’re trying to save money.
    I mean, what’s the fun in a power supply? You don’t get any games with it, there’s no more storage, hardly ever any more bells and whistles, etc. A power supply is boring, and it’s supposed to be, because it’s supposed to provide a stable, reliable platform upon which the rest of the equipment can easily access the amount of power it needs, and when it’s needed. In almost EVERY review of powers supplies, the same point is stressed: Better safe than sorry.
    But what does safe vs sorry mean? It can mean that you don’t have to waste money on the wrong PSU in the first place, but it can also mean that you don’t have to replace your expensive ram, CPU, video card, etc. NEEDLESSLY, or because your cheap PSU destroyed them. What? A cheap power supply can wreck your computer? YES IT CAN. A cheap power supply can cause thermal damage, not only from the heat it produces, but also the heat it can create in your components as well. RAM is especially sensitive to heat, and there’s RAM in your CPU, your video cards, and, well, your RAM too. A cheap switching power supply, run at its maximum, or peak, continuously can also destroy components by creating RF (Radio Frequency) signals on your power rails, signals which the components on your peripheral devices were not equipped to handle in the first place.
    So this begs the question, how does one choose the right power supply? I’ll illustrate this using my own PC as the example. This is my setup that I use for video processing:
    K7N2G-ILSR
    Athlon 2500+ Barton @ 2125Mhz
    AMD Retail Heatsink/Fan
    2 - 512MB DDR333 w/Thermaltake Spreaders (slot 1&3)
    MSI TV@nywhere Video Capture
    ATI Radeon 9600
    120GB Maxtor DiamondMax Plus 9 SATA
    30GB Quantum IDE
    TEAC DV-W50E DVD/CD-R/W
    BTC DVD-ROM Drive
    Artec CD-R/W
    Using this Power Supply Calculator link:
    http://www.jscustompcs.com/power_supply/
    I plug in all my equipment values, but some of this can be a little tricky. For example, since I often run the CPU like an XP 3000, I choose the 3000 as my processor; it’s the same chip run at the faster rate. I also choose the ATI Radeon video card, and I select the RAM wattage for 2 sticks of DDR. I also choose every card I have, like my video capture card, but I also select the boxes for the separate cards that correspond to the functions that my ILSR provides as well (and that I use), like sound, USB, Firewire, NIC, etc.  Although I use the onboard SATA controller, I don’t select the SCSI PCI card, because, in truth, I’ve probably made up for it by selecting all the other corresponding devices, including cards that the motherboard replaces. I check the boxes for the fans and drives I use, and I’m done, right?
    Not yet.
    I just remembered that I plan to upgrade soon, so I go back and change the values to reflect my impending changes. I mean, I want to make sure that I have enough power to begin with so that I don’t have to replace the power supply again, right?
    Ok. Done. I look at the bottom and see that it tells me that I need a 468 watt PSU. So a 480 watt supply will do, right? Wrong.
    Remember that, for efficiency, long-life, and less heat, you want your actual power consumption to fall between 30-70% of the PSU’s rating, so add 30% (minimum) to the 468, and you get 468 + (468*.30)= 608 Watts! Holy Cow!
    However, I’d only need a 608-Watt supply if I was using all the devices at once, and I don’t. But, in truth, with video and audio processing, I often get close when I process, burn, and monitor at the same time. (Hardcore gamers also get close a lot, as they blast the sound and push that video to its limits.) So, let’s take off 10% (maximum) of 608, for a total of 541 Watts.
    I need a 550 Watt supply, but not just ANY 550 watt PSU. I need a supply that can give me enough power on the critical 3.3, 5, and 12V rails combined. I also want a supply from a trusted, name-brand manufacturer, so I start hitting the many online reviews. Here are just two from Tom’s Hardware:
    http://www6.tomshardware.com/howto/20030609/index.html
    http://www6.tomshardware.com/howto/20021021/index.html
    Read these in their entirety. I didn’t post them because they’re pretty links.
    In the end, I chose Antec, because they’ve got the reputation, the recommendation, and because the Antec True550 has better specs than the rest of the 550 Watt competition. I also bought it from a reputable company I found on Pricegrabber.com, for the lowest price I could find, $95.00 shipped to my door. (In truth, I wanted two mini-redundant supplies, like the hospitals and military use, but they were too expensive.)
    The result? Not only are the random reboots, crashing, the BSOD, lockups, etc., gone like magic, but I also now have “peace of mind” in that whatever might happen to my equipment in the future, I know almost for certain that the PSU is NOT the problem. I also bought an UPS, because the East Coast Blackout proved to me that even the Antec True550 isn’t going to provide me any power for emergency shutdown if it doesn’t get its power from somewhere.
    Even if your problem doesn’t lie in the PSU completely, it gives you a GREAT platform for troubleshooting further. If you’re not reasonably certain that the supply is the cause, borrow one, or buy one that you can return once you’ve solved the problem. But, above all else, BUY THE RIGHT SUPPLY before you do anything else! Otherwise, you could be plugging and unplugging components, buying and blowing up expensive memory, and causing even further damage, until you give up or die.
    I mean, I assume you built your own system to enjoy “more bang for your buck,” right? What’s the fun of a random reboot in the middle of Unreal Tournament 2003?
    William Hopkins
    Former Staff Sergeant, USAF
    B.A., B.S., with Honors
    The University of California, San Diego
    [email protected]
    P.S. It should be noted that while Enermax, ThermalTake, Zalman, Fortron, and others make great PSU’s, and I compared and considered them, the Antec still won out overall in my critical evaluation, like it did in so may others’ reviews. You’d probably be ok if you went with another reputable manufacturer as listed above, but pick a supply that gives you at least 230 watts on the 3.3 and 5V lines combined, and still meets the 30% criteria as stated above. Remember, if the manufacturers don’t give you maximum combined specs up front, they’re untrustworthy right off the bat. With power supplies, you definitely end up getting what you pay for. Don’t say nobody warned you.
    P.P.S. Update! After recent developments, it looks like Enermax is the leader, but only the latest line of PSU's.

    Ok, as an electrical engineer...I have to step in here! LOL
    First, these amp rating are for 2 +12 rails. That is why you see a protection of around 15-18A on the +12 rail. That means each Rail is allowed up to 18A lets say for the new Enermax 1.2 version like the one I have.
    Now, Lets say 18A for 12V....well as you know the Abit NF7-S uses the 12V for powering the CPU.
    Lets say you have a Barton like me and you want it stable at around 2.4-2.5Ghz. You will have to put lets say around 2V to the cpu to get it stable at that kinda speed, specially if you have high FSB like I do. So 12V * 18Amps = 216W ....well the converter on the NFS-7 is really bad, its loss on the step down convertion is probably around 25% along with the PSU lost cuz its not running at 25oC (another 15%)....you will actually only get around 100-120W for the CPU.
    Now, if you go into Sandra and see how much a Barton eats up at 2.4Ghz you will see its around 110Watts.
    So, if you wanna push more, dont even think about it! Prime Power test fails and your +12 rail will drop as low as 11.60 Volts.
    Now, lets say you got yourself a AMD 64 bit chip and you wanna overclock it....I bet it will need more than 110Watts.
    So, what im saying is, dont buy nothing less than a 500 Watt PSU!
    You really need around 20-22 A on the main +12 along with really really good cooling on the case and PSU so it is running at a 100%.
    http://forums.amdmb.com/showindex.php?s=&threadid=287828
    i found this quite interesting especially the bit re the power loss turning the 12v into 1.6v or what ever cpu needs

  • When I try to save a webpage as a bookmark, the options window where I choose the folder where I will save it is disappearing when I try selecting it

    Step 1. I open a web page.
    Step2. I press ctrl+d.
    Step3. I do not see the window where I choose the folder I wish the bookmark to be saved in.
    Step4. I clicked the star button on the right corner of location bar.
    Step5. I see the window now.
    Step 6. When I move the cursor down that window to choose the folder it again disappears.
    Step 7. I randomly click at a spot in the area where the window disappeared.
    Step 8. I realize that it does not go away but stays hidden disappearing.[http://www.youtube.com/watch?v=WV050BObT9I]

    hello bdavis106, please refer to [[Find and manage downloaded files]].

  • Can i choose the resolution of my external display for when the lid is closed when my lid is open

    When I close the lid of my MacBook Pro for an external display apple chooses a resolution that isn't compatible with my display can I choose the resolution when the lid is open in any way of my external display for the mode when the lid is closed?

    Hi there, I had a similar problem and was unable to resolve it.  I spent about an hour on the phone with a very helpful AppleCare rep who was also completely stuck.  It would seem that the only solution is to choose a setting with trial and error while the lid is closed.
    My MacBook ended up getting stuck on a closed-lid reoslution that wasn't supported, so I had to do a screen-share with another device to see what the video card was sending to the external display and change it back that way.

  • HT201240 This process does not appear to work for me.  I'm running 10.8.3.  I created a new user for a guest staying with me.  They have gone now and I am attempting to either change the password or delete the user.  It won't allow me to choose the user I

    This process does not appear to work for me.  I'm running 10.8.3.  I created a new user for a guest staying with me.  They have gone now and I am attempting to either change the password or delete the user.  It won't allow me to choose the user I created.  I am logged in as myself and it states that I am an "Admin".  The user I'm attempting to change is listed as a "standard" user and there is a white checkmark inside an orange circular background on the user pic in the list of users. 
    Can someone help me?  I am having a hard time believing that OSx will allow me to create users and allow them use of my computer and it's drives, yet it will not allow me to change the password so I can monitor what they might have been doing while logged on?  What if this were my child?  This guest left under sketchy circumstances, and I'd really like to be able to ensure they were not using my computer to do illegal things or to have illegal communications.
    Any help would be appreciated.  (It's odd that it was so simple to "create" a user and set a password for them.......but it's complicated or a little known process to reverse.
    Thanks.

    Here are two screen shots to show you what I am seeing.  The first screen shot shows it allowing me to select (highlighted in blue) my admin user (which is what I am locced in as).  The second screen shot shows it allowing me to select the "Guest" user (highlighted in blue).  However when I click on the user "Orion" nothing happens.  It will not change to highlight that user.

  • All of a sudden I can't forward my emails because when I go to choose the people to send them too the window won't pop up. The same thing for any other site that uses a pop up window. What do I do?

    It happened all of a sudden, any site that requires a new window to open to sign up for something or to choose something it just won't do it. I can't forward any emails because in order to choose the people I'm sending the email to, a new small window with my address book pops up and Mozilla won't let it happen. How can I change this back to the way it was?

    Mike,
    Are any of your other applications going wonky, or is it just Logic?
    I'm afraid I've never heard of this particular problem before, but if it were happening to me the first thing I would do is delete my "com.apple.logic.express.plist" file in Library>Preferences, then repair permissions in Disc Utility, and finally restart my computer.  Then I would launch Logic and see if the problem has been corrected.  It's amazing how much these two steps can accomplish.
    If that doesn't resolve the issue I would launch Logic and go to Preferences>Audio Units Manager to see if all my plug-ins are properly validated.

  • In the report builder 6i when I choose the query  type as Express Query .....

    In the report builder 6i when I choose the query type as Express Query and go to next step where on pressing the connect button I am getting the following error.
    REP-6029 : Express error.
    How can I solve this problem ?
    Thanks
    Nanda Kishore

    DiId you download Oracle Reports Developer/Server Release 6i for Express, Files for Oracle8i for Windows NT from OTN?
    If so, could you provide me wih more information?
    Thanks
    Elaine

  • Unable to open the photos in reviewer, every time I click on the photo on , it says do not have permission to view the photo. Please open the item in the finder choose the item and click on get info . What am I suppose to change in the setting on getinf

    Unable to open the photos in reviewer, every time I click on the photo on , it says do not have permission to view the photo. Please open the item in the finder choose the item and click on <get info>. What am I suppose to change in the setting on <get info>

    Back up all data.
    This procedure will unlock all your user files (not system files) and reset their ownership and access-control lists to the default. If you've set special values for those attributes on any of your files, they will be reverted. In that case, either stop here, or be prepared to recreate the settings if necessary. Do so only after verifying that those settings didn't cause the problem. If none of this is meaningful to you, you don't need to worry about it.
    Step 1
    If you have more than one user, and the one in question is not an administrator, then go to Step 2.
    Triple-click anywhere in the following line on this page to select it:
    { sudo chflags -R nouchg,nouappnd ~ $TMPDIR..; sudo chown -R $UID:staff ~ $_; sudo chmod -R u+rwX ~ $_; chmod -R -N ~ $_; } 2>&-
    Copy the selected text to the Clipboard by pressing the key combination command-C.
    Launch the built-in Terminal application in any of the following ways:
    ☞ Enter the first few letters of its name into a Spotlight search. Select it in the results (it should be at the top.)
    ☞ In the Finder, select Go ▹ Utilities from the menu bar, or press the key combination shift-command-U. The application is in the folder that opens.
    ☞ Open LaunchPad. Click Utilities, then Terminal in the icon grid.
    Paste into the Terminal window by pressing command-V. I've tested these instructions only with the Safari web browser. If you use another browser, you may have to press the return key after pasting.
    You'll be prompted for your login password. Nothing will be displayed when you type it. You may get a one-time warning to be careful. If you don’t have a login password, you’ll need to set one before you can run the command. If you see a message that your username "is not in the sudoers file," then you're not logged in as an administrator.
    The command may take a few minutes to run, or perhaps longer if you have literally millions of files in your home folder. Wait for a new line ending in a dollar sign ($) to appear, then quit Terminal.
    Step 2 (optional)
    Take this step only if you have trouble with Step 1, if it frightens you, or if it doesn't solve the problem.
    Start up in Recovery mode. When the OS X Utilities screen appears, select
    Utilities ▹ Terminal
    from the menu bar. A Terminal window will open.
    In the Terminal window, type this:
    res
    Press the tab key. The partial command you typed will automatically be completed to this:
    resetpassword
    Press return. A Reset Password dialog will open. You’re not going to reset a password.
    In the dialog, select the startup volume ("Macintosh HD," unless you gave it a different name) if it's not already selected.
    Select your username from the menu labeled Select the user account if it's not already selected.
    Under Reset Home Directory Permissions and ACLs, click the Reset button.
    Select
     ▹ Restart
    from the menu bar.

Maybe you are looking for

  • Upgraded to v. 6.0.1, can no longer burn CDs.  Details below.  Please help!

    Like many other users, I can no longer burn CDs since my recent upgrade to version 6.0.1. I was able to burn CDs with no problems before this upgrade, but now when I click "Burn Disc", iTunes freezes with no error message. I have to exit out using Ct

  • Clearing the 7344 commands buffer ?

    Problem Statement: If an e-stop or other condition occurs while one of my axes is in motion, the hardware-hardwiring will disable the servo drive(s). After recovering from an e-stop or another fault condition, if I re-enable the servo drive the servo

  • Customer Exit For Variable

    Hi Experts, Currently i am using SAP BI 7.0, I dont have much ABAP knowledge. Requirement : I need to create a Customer exit on variable to derive Fiscal period from the date entered manually by user.The date is in mm/dd/yyyy format and i need to der

  • TS1702 why has my apple id been disabled and how do i fix it

    Why has my apple id been disabled and how do i fix it??

  • How do I stop pop ups every time I click a link

    Im using safari 6.1.6 and OS X 10.8.5 and whenever I click on legitimate websites I get pop ups. This could have been cause by mistakenly downloading something I shouldn't have. Im not sure if its related but now when I try and do a google search I g