Getting Current  Stock Prices in a Numbers 08 spreadsheet

Can anybody give me detailed instructions to get different data regarding stock market values into a Numbers 08 spreadsheet in a way that the data can be updated by a query? I searched the forum for this but could not find anything. I am looking for data like current stock value, p/e, yield , 52 week range etc.
I can put the stock values on the dash board and that seems to be linked to Yahoo Finance but I can find no link or help articles on how to do that in Numbers 08 and to refresh the query in Numbers to get current values.
Thanks in advance.

Barry is right, my script was written for Numbers '09 which offer some scriptable features.
None of them are available in Numbers '08.
So if you really need it and have no plan to upgrade (not to iWork '09 but to its highly wished successor) I may drop the code dedicated to Numbers '09 and stop the process with the datas stored in the clipboard so that you would be able to paste them in a table by yourself.
Let me know if you are interested by such a stripped version;
I'm very busy so I don't wish to spent time on a project which is not clearly useful.
Yvan KOENIG (VALLAURIS, France) lundi 24 janvier 2011 15:16:29

Similar Messages

  • Want to show NSE/BSE current stock price on my web page?

    Want to show NSE/BSE current stock price on my web page?
    I am in the process of developing a website for a broking firm. I want to show the live
    market price of NSE/BSE on my web-page & Also xyz company
    Plz help for the same

    i am try to put stock price & pickup one particular company, how can i do that. eg link is given below
    http://www.google.com/ig/directory?type=gadgets&url=hosting.gmodules.com/ig/gadgets/file/1 00012867032945674529/XSensex.xml

  • How do i get Current location price(currency) in my application ?

    Hello I am using in app purchase and in this i want to use local curency using Itunes.
    So is there any idea ? or Other option to do this?

    Specifically what subdirectory are you looking for. I'd suggest your issue may be with using Open Office, have you attempted any help forums from that app?

  • STOCK  PRICE LIST

    HI I need to get the stock price from SAP every week (500 products) to get the updated and new price list currently iam using mmbe to get to excel sheet is any way we can link to excel , or to download from sap (t-codes) other than mmbe

    Hi
    In MB52 in input screen, select the radio button Non-hierarchical representation under the display options section.
    Upon execution, press ctrl + shift + f9, in the following pop up box you can select spreadhseet & then save it into excel.
    Hope it clarifies.
    Regards,
    Vivek

  • Objects, Overloading, and Stock Prices

    The problem - Write a program that has the following:
    Data:
    A string field named symbol for the Stock’s symbol.
    A a string named sName for the Stock’s name.
    A double field named previousClosingPrice that stores the stock’s prices form the previous day.
    A double data field named currentPrice that stores the stock price for the current time.
    Behaviors: (i.e. methods)
    A default Constructor.
    An overloaded Constructor that takes a stock with a specific symbol, name, and last closing price. ** Note values for current stock price will have to be initialized to zero.
    A toString(); function that returns the current stock’s name, Symbol, and current price.
    A method named getChangePercent(); that returns the percentage changed between previousClosingPrice and currentPrice.
    A method named setCurrentPrice(double); that allows the setting of the current stock price.
    Write a test program that creates a Stock object with the symbol ORCL, the name Oracle Corporation, and the previous closing price of 34.5.
    Also, have the test program call the toString(); method to see it’s definition.
    Lastly, set the new stock price to 34.35 and then display the price change percentage.
    My problem is the math aspect to calculate the percentage. My result is "Infinity", which is obviously wrong. What am I missing here?
    package stockPrice;
    public class Stock {
    //Set Data fields
         public String symbol;
         public String sName;
         public double previousClosingPrice;
         public double currentPrice = 0;
    //Default Constructor
         public Stock(){
    //Constructor with previous closing price parameter
         public Stock(String newSymbol, String newSName, double newPreviousClosingPrice) {
              this.symbol = newSymbol;
              this.sName = newSName;
              this.currentPrice = newPreviousClosingPrice;
    //Return Percent Change
         double getChangePercent(){
              return (((previousClosingPrice - this.currentPrice)/previousClosingPrice)*100);
    //Set a new Current Price
         double setCurrentPrice(double newCurrentPrice){
              this.currentPrice = newCurrentPrice;
              return this.currentPrice;
         @Override
         public String toString() {
              // TODO Auto-generated method stub
              String total = "The symbol is: " + this.symbol + " and the name is: " + this.sName + " and the previous closing price is: " + this.currentPrice;
              return total;
    }Driver:
    package stockPrice;
    public class Driver{
         public static void main(String[] args) {
         //Driver Program for all testing and Instantiation     
              Stock stock1 = new Stock ("ORCL", "Oracle Corporation", 34.5);
              System.out.println(stock1.toString());
              stock1.setCurrentPrice(34.35);
              System.out.println(stock1.toString() + ". The percent change is: " + stock1.getChangePercent());
    }

    So is setting the price as simple as this? (Keeping in mind this is my first JAVA class I am taking)...
    package stockPrice;
    public class Stock {
    //Set Data fields
         public String symbol;
         public String sName;
         public double previousClosingPrice = 34.5;
         public double currentPrice = 0;
    //Default Constructor
         public Stock(){
    //Constructor with previous closing price parameter
         public Stock(String newSymbol, String newSName, double newPreviousClosingPrice) {
              this.symbol = newSymbol;
              this.sName = newSName;
              this.currentPrice = newPreviousClosingPrice;
    //Return Percent Change
         double getChangePercent(){
              return (((previousClosingPrice - this.currentPrice)/previousClosingPrice)*100);
    //Set a new Current Price
         double setCurrentPrice(double newCurrentPrice){
              this.currentPrice = newCurrentPrice;
              return this.currentPrice;
         @Override
         public String toString() {
              // TODO Auto-generated method stub
              String total = "The symbol is: " + this.symbol + " and the name is: " + this.sName + " and the previous closing price is: " + this.currentPrice;
              return total;
    }

  • How to get item stock from bin location with serial numbers?

    Dear experts
    I want to write query for getting item stock from bin location with serial numbers..
    Thank you
    Santosh Dhere.

    Hi Santosh,
    Try this:
    SELECT T0.[ItemCode], T5.[DistNumber], T5.[MnfSerial], T5.[LotNumber], T3.[OnHandQty]
      , T1.[BinCode], T1.[WhsCode]
    FROM  [dbo].[OIBQ] T0
      INNER  JOIN [dbo].[OBIN] T1  ON  T0.[BinAbs] = T1.[AbsEntry]  AND  T0.[OnHandQty] <> 0
      LEFT OUTER JOIN [dbo].[OBBQ] T2  ON  T0.[BinAbs] = T2.[BinAbs]  AND  T0.[ItemCode] = T2.[ItemCode]  AND  T2.[OnHandQty] <> 0
      LEFT OUTER  JOIN [dbo].[OSBQ] T3  ON  T0.[BinAbs] = T3.[BinAbs]  AND  T0.[ItemCode] = T3.[ItemCode]  AND  T3.[OnHandQty] <> 0
      LEFT OUTER  JOIN [dbo].[OBTN] T4  ON  T2.[SnBMDAbs] = T4.[AbsEntry]  AND  T2.[ItemCode] = T4.[ItemCode]
      LEFT OUTER  JOIN [dbo].[OSRN] T5  ON  T3.[SnBMDAbs] = T5.[AbsEntry]  AND  T3.[ItemCode] = T5.[ItemCode]
    WHERE T1.[AbsEntry] >= (0)  AND  (T3.[AbsEntry] IS NOT NULL)
    UNION ALL
    SELECT T0.[ItemCode], T5.[DistNumber], T5.[MnfSerial], T5.[LotNumber], T0.[OnHandQty]
      , T1.[BinCode], T1.[WhsCode]
    FROM  [dbo].[OIBQ] T0
      INNER  JOIN [dbo].[OBIN] T1  ON  T0.[BinAbs] = T1.[AbsEntry]  AND  T0.[OnHandQty] <> 0
      LEFT OUTER  JOIN [dbo].[OBBQ] T2  ON  T0.[BinAbs] = T2.[BinAbs]  AND  T0.[ItemCode] = T2.[ItemCode]  AND  T2.[OnHandQty] <> 0
      LEFT OUTER  JOIN [dbo].[OSBQ] T3  ON  T0.[BinAbs] = T3.[BinAbs]  AND  T0.[ItemCode] = T3.[ItemCode]  AND  T3.[OnHandQty] <> 0
      LEFT OUTER  JOIN [dbo].[OBTN] T4  ON  T2.[SnBMDAbs] = T4.[AbsEntry]  AND  T2.[ItemCode] = T4.[ItemCode]
      LEFT OUTER  JOIN [dbo].[OSRN] T5  ON  T3.[SnBMDAbs] = T5.[AbsEntry]  AND  T3.[ItemCode] = T5.[ItemCode]
    WHERE T1.[AbsEntry] >= (0)  AND  (T2.[AbsEntry] IS NULL   AND  T3.[AbsEntry] IS NULL)
    UNION ALL
    SELECT T0.[ItemCode], T0.[SRNDistNumber], T0.[SRNMnfSerial], T0.[SRNLotNumber], T0.[IBQOnhandQty] - T0.[OnHandQty]
      , T0.[BinCode], T0.[WhsCode]
    FROM  (
      SELECT T0.[BinAbs], T0.[ItemCode], MAX(T0.[OnHandQty]) AS 'IBQOnhandQty', SUM(T2.[OnHandQty]) AS 'OnHandQty', N'' AS 'BTNDistNumber', N'' AS 'BTNMnfSerial'
      , N'' AS 'BTNLotNumber', N'' AS 'SRNDistNumber', N'' AS 'SRNMnfSerial', N'' AS 'SRNLotNumber', MIN(T5.[AbsEntry]) AS 'AbsEntry', MIN(T1.[BinCode]) AS 'BinCode'
      , 10000044 AS 'SnbType', MIN(T5.[AbsEntry]) AS 'BTNAbsEntry', MIN(T5.[AbsEntry]) AS 'SRNAbsEntry', MIN(T1.[WhsCode]) AS 'WhsCode', MIN(T1.[SL1Code]) AS 'SL1Code'
      , MIN(T1.[SL2Code]) AS 'SL2Code', MIN(T1.[SL3Code]) AS 'SL3Code', MIN(T1.[SL4Code]) AS 'SL4Code', MIN(T1.[SL1Abs]) AS 'SL1Abs'
      , MIN(T1.[SL2Abs]) AS 'SL2Abs', MIN(T1.[SL3Abs]) AS 'SL3Abs', MIN(T1.[SL4Abs]) AS 'SL4Abs'
      FROM  [dbo].[OIBQ] T0
      INNER  JOIN [dbo].[OBIN] T1  ON  T0.[BinAbs] = T1.[AbsEntry]  AND  T0.[OnHandQty] <> 0
      LEFT OUTER  JOIN [dbo].[OBBQ] T2  ON  T0.[BinAbs] = T2.[BinAbs]  AND  T0.[ItemCode] = T2.[ItemCode]  AND  T2.[OnHandQty] <> 0
      LEFT OUTER  JOIN [dbo].[OSBQ] T3  ON  T0.[BinAbs] = T3.[BinAbs]  AND  T0.[ItemCode] = T3.[ItemCode]  AND  T3.[OnHandQty] <> 0
      LEFT OUTER  JOIN [dbo].[OBTN] T4  ON  T2.[SnBMDAbs] = T4.[AbsEntry]  AND  T2.[ItemCode] = T4.[ItemCode]
      LEFT OUTER  JOIN [dbo].[OSRN] T5  ON  T3.[SnBMDAbs] = T5.[AbsEntry]  AND  T3.[ItemCode] = T5.[ItemCode]
      WHERE T1.[AbsEntry] >= (0 )  AND  (T2.[AbsEntry] IS NOT NULL)
      GROUP BY T0.[BinAbs], T0.[ItemCode]
      UNION ALL
      SELECT T0.[BinAbs], T0.[ItemCode], MAX(T0.[OnHandQty]) AS 'IBQOnhandQty', SUM(T3.[OnHandQty]) AS 'OnHandQty', N'' AS 'BTNDistNumber', N'' AS 'BTNMnfSerial'
      , N'' AS 'BTNLotNumber', N'' AS 'SRNDistNumber', N'' AS 'SRNMnfSerial', N'' AS 'SRNLotNumber', MIN(T4.[AbsEntry]) AS 'AbsEntry', MIN(T1.[BinCode]) AS 'BinCode'
      , 10000045 AS 'SnbType', MIN(T4.[AbsEntry]) AS 'BTNAbsEntry', MIN(T4.[AbsEntry]) AS 'SRNAbsEntry', MIN(T1.[WhsCode]) AS 'WhsCode', MIN(T1.[SL1Code]) AS 'SL1Code'
      , MIN(T1.[SL2Code]) AS 'SL2Code', MIN(T1.[SL3Code]) AS 'SL3Code', MIN(T1.[SL4Code]) AS 'SL4Code', MIN(T1.[SL1Abs]) AS 'SL1Abs'
      , MIN(T1.[SL2Abs]) AS 'SL2Abs', MIN(T1.[SL3Abs]) AS 'SL3Abs', MIN(T1.[SL4Abs]) AS 'SL4Abs'
      FROM  [dbo].[OIBQ] T0
      INNER  JOIN [dbo].[OBIN] T1  ON  T0.[BinAbs] = T1.[AbsEntry]  AND  T0.[OnHandQty] <> 0
      LEFT OUTER  JOIN [dbo].[OBBQ] T2  ON  T0.[BinAbs] = T2.[BinAbs]  AND  T0.[ItemCode] = T2.[ItemCode]  AND  T2.[OnHandQty] <> 0
      LEFT OUTER  JOIN [dbo].[OSBQ] T3  ON  T0.[BinAbs] = T3.[BinAbs]  AND  T0.[ItemCode] = T3.[ItemCode]  AND  T3.[OnHandQty] <> 0
      LEFT OUTER  JOIN [dbo].[OBTN] T4  ON  T2.[SnBMDAbs] = T4.[AbsEntry]  AND  T2.[ItemCode] = T4.[ItemCode]
      LEFT OUTER  JOIN [dbo].[OSRN] T5  ON  T3.[SnBMDAbs] = T5.[AbsEntry]  AND  T3.[ItemCode] = T5.[ItemCode]
      WHERE T1.[AbsEntry] >= (0 )  AND  (T3.[AbsEntry] IS NOT NULL)
      GROUP BY T0.[BinAbs], T0.[ItemCode]
      ) T0
    WHERE T0.[IBQOnhandQty] > T0.[OnHandQty]
    Regards,
    JC.

  • How to calculate current sale price like VA01

    Hi,
    I am developing one report, in which I am showing open sales order.
    Now, I wanted to calculate the current sales price from pricing procedures and conditions. Means I need the current sales price of the Item, like I am creating the new sales order today,
    Client wanted the difference between the sales order price and the current price.
    How can I get the current sales price, any Function Module for that?? Or I have to manually take all prices from condition tables and KONP, and calculate?
    I need a Function Module instead to code like..........
    Standard SAP pricing is try to get the price from top to down pricing hierarchy, if 1st level not find, then base on the combination of next level, try to get it,
    if no found, just keep going until reach the last pricing Level ( if found on any level then it will skip & pick up that price )
    For example
    ZPR0 has 3 Level
    Sales Org/DC/Currency/Customer/Material/Stor.Location
    Sales Org/DC/Currency/Customer/Material
    Sales Org/DC/Currency/Material
    If the combination of 1st level no price there, there it will go to the 2nd level until it reach the end.
    Thanks,
    Chetan Shah

    Hi,
    The Procedure for calculating MAP is :-
    Case 1 :- PO at different price
    If in Material Master your MAP is 0.8GBP & closing stock of 30Nos, value is 24GBP
    In PO if the price is 0.9GBP & qty is 10nos, then after Goods Receipt Total Value of the GR i.e. Qty * Price + any other delivery cost will be added to the material stock value.  Qty is also updated.  New Total Value / New Stock Qty will be MAP.
    In this case Qty received 10 & price is 0.9 that means value would be 9GBP.
    Total Value becomes 24GBP (Present Stock) + 9GBP (Goods Receipt) = 33GBP
    Total Qty becomes 30Nos + 10Nos (Goods Receipt) = 40Nos
    MAP becomes = 33GBP / 44Nos = 0.75
    Case 2 : Invoice Posting (MIRO) at different price than PO
    While doing MIRO is we post at different price system will check whether sufficient stock posted in GR is available.  In the above case it is 10Nos,
    If it is there, then the above logic as in case 1 will take place
    If not available, to the extent of stock availability system will post the different value & adjust MAP & remaining is posted to Price Difference Account.
    In your case it would be like this :
    1. MAP 0.8 for 30Nos (Value would be 24GBP)
    2. Invoice Posting 1.74GBP for 1No.  That means value would be 24GBP + 1.74GBP = 25.74GBP
         Qty would be 30+1 = 40
         MAP = 25.74 / 40   = 0.64GBP
    Hope this clarifies your doubt
    regards,
    JP

  • In which field is the current valuation price (FIFO) stored?

    We need the current valuation price of FIFO-related items
    Previously, the valuation price was stored in oitm.avgprice or oitw.avgprice. In the current version these fields are not filled.
    How can you determine the current price of a FIFO-related item?
    Valuation Price = (sum of single FIFO prices of the items in stock) : (inventory)
    A similar problem occurs with charge-off. So far, the total booking price was stored in ige1.stocksum, but in SAP8.8 it is not. For a recalculation we need the value actually posted at the item level. This is the reason why the price cannot be determined from the posting journal jdt1, because there, a sum of all entries calculated.
    Is there a reliable way, which works with both SAP2007 and SAP8.8?
    regards
    M.Heigl

    Hello János
    Thanks a lot for your advice, this helps me to advance
    Unfortunately, the calcprice is not filled correctly.
    Example:
    Number of decimals in Price = 2
    Posting in 1 piece
    Factor = 1000 (1000 pc are posted),
    Total price 0.05 u20AC,
    Single Price = 0.00005,
    now in oitm.calcprice is stored : 0, in oinm.openvalue=0.05u20AC, in the jounrnal (jdt1) 0.05u20AC
    Alternatively, the field  u201Copenvalueu201D may be used?
    To get out the correct average inventory value, the following SQL statement would be correct:
    select sum (openvalue / openqty) from where oinm itemcode = N'test_fifo 'and openqty! = 0
    At charge off, the total value is determined via
    select sum (-1 * transvalue) from where oinm transtype=60 and createdby=164 and itemcode = N'test_fifo'
    In this test, I have also found an error:
    If the single price (oinm.calcprice) = 0, for example because it was posted with a large factor, the item cannot be issued anymore.
    Error message "acquisition price" is missing (...)
    Tested with 2007ASP1PL9 and SAP  8.8 (8.80.230) SP0PL12
    I assume that for FIFO evaluation SAP uses the calcprice and not the total price, the single price is determined, which in this case is 0 because of rounding.
    Apart from this error: Are my assumptions and SQL statements correct?
    Regards,

  • What is the mac os x software update path from v10.5.8 to get current?

    what is the mac os x software update path from v10.5.8 to get current?

    Upgrading to Snow Leopard, Lion, or Mountain Lion
    You can upgrade to Mountain Lion from Lion or directly from Snow Leopard. Mountain Lion can be downloaded from the Mac App Store for $19.99. To access the App Store you must have Snow Leopard 10.6.6 or later installed.
    Upgrading to Snow Leopard
    You must purchase Snow Leopard through the Apple Store: Mac OS X 10.6 Snow Leopard - Apple Store (U.S.). The price is $19.99 plus tax. You will be sent physical media by mail after placing your order.
    After you install Snow Leopard you will have to download and install the Mac OS X 10.6.8 Update Combo v1.1 to update Snow Leopard to 10.6.8 and give you access to the App Store. Access to the App Store enables you to download Mountain Lion if your computer meets the requirements.
         Snow Leopard General Requirements
           1. Mac computer with an Intel processor
           2. 1GB of memory
           3. 5GB of available disk space
           4. DVD drive for installation
           5. Some features require a compatible Internet service provider;
               fees may apply.
           6. Some features require Apple’s MobileMe service; fees and
               terms apply.
    Upgrading to Lion
    If your computer does not meet the requirements to install Mountain Lion, it may still meet the requirements to install Lion.
    You can purchase Lion by contacting Customer Service: Contacting Apple for support and service - this includes international calling numbers. The cost is $19.99 (as it was before) plus tax.  It's a download. You will get an email containing a redemption code that you then use at the Mac App Store to download Lion. Save a copy of that installer to your Downloads folder because the installer deletes itself at the end of the installation.
         Lion System Requirements
           1. Mac computer with an Intel Core 2 Duo, Core i3, Core i5, Core i7,
               or Xeon processor
           2. 2GB of memory
           3. OS X v10.6.6 or later (v10.6.8 recommended)
           4. 7GB of available space
           5. Some features require an Apple ID; terms apply.
    Upgrading to Mountain Lion
    To upgrade to Mountain Lion you must have Snow Leopard 10.6.8 or Lion installed. Purchase and download Mountain Lion from the App Store. Sign in using your Apple ID. Mountain Lion is $19.99 plus tax. The file is quite large, over 4 GBs, so allow some time to download. It would be preferable to use Ethernet because it is nearly four times faster than wireless.
         OS X Mountain Lion - System Requirements
           Macs that can be upgraded to OS X Mountain Lion
             1. iMac (Mid 2007 or newer)
             2. MacBook (Late 2008 Aluminum, or Early 2009 or newer)
             3. MacBook Pro (Mid/Late 2007 or newer)
             4. MacBook Air (Late 2008 or newer)
             5. Mac mini (Early 2009 or newer)
             6. Mac Pro (Early 2008 or newer)
             7. Xserve (Early 2009)
         Are my applications compatible?
             See App Compatibility Table - RoaringApps.
         Am I eligible for the free upgrade?
             See Apple - Free OS X Mountain Lion upgrade Program.
         For a complete How-To introduction from Apple see Upgrade to OS X Mountain Lion.

  • Report for Reorder point, safety stock, current stock and fixed lot size

    Hi,
    Purchasing Dept. is looking for a report which can give list of materials falling below the reorder point, so that they can go ahead and create procurement proposals for those materials.
    They also want to see the Reorder Point, Safety Stock, current stock and fixed lot size in the same report.
    Let me know if there ia any standard report availbale which displays the same or any approach to get the same.
    Thanks in Advance.
    Regards,
    Shankar Goud.

    Hi,
    There is no standard report because this is meant to be managed by the MRP run.
    The MRP lists show all materials that have a problem (such as stock below reorderpoint) but MRP generates requirements for these anyway and so all you need to do is to look for the MRP generated requirements (requisitions?) and you have your list?
    Are you using MRP?
    If so then please use the standard functions in MRP to get this.
    If not, then WHY NOT?
    Steve B

  • Report on current stock and safety stock

    Hi,
    I want to have the report on current stock and safety stock.
    In MC.9 it gives wrong safety stock. When I go to cross check the safety stock in material master & in MC.9 I see differences.
    Thanks,
    Kiran

    You can user tcode MC.9 or MC.5 to know valuated stock available at given plant. Stock lying in Returns (MB52) will not be a part of this report as it non-valuated stock.
    The stock in the accounting view of the material master considers stock at plant level including stock in Transit (Intra & Inter plant stock trasnfers) & special stock like stock issued to vendor , consigment stock etc which is valuated at plant level.
    whereas and stock in the plant stock view of the material master does not consider such special stocks hence there will always difference in both veiws.
    For Physical stock as on particular date you can consider MB5B report with radio button "Storage location/Batch Stock" wherein you will get Quantity issued & Qunatity received in those SLOC along with Opening stock & Closing stock for the specified period.
    use tcode
    MBLB to know stock at vendor.
    MB54 - Consignment Stock.

  • Logic to build report to get the stock on a particular date

    Dear Guru's,
    We are trying to build a report for getting the stock on a particular date. It is not possible to copy MB5B that option is ruled out. We have also tried to get the data from MBEWH but that is also  not helping as the table is not updated for all the periods.
    Please advice
    Thanks,
    Sam

    Dear Sameer,
    You can copy MB5B report and can modify as per your reuirement.
    If you want get stock a paticular date.It is hard to get, why because you have to fetch all the Material documents
    and you have to use MBEW table to get the current date stock and you have to do add/subtract from calculated stock.
    Due to this there will performance issues also.
    So try to copy MB5B and change as per your requirement.
    regards
    Subhash

  • I need help highlighting an expiration date on my Numbers '09 spreadsheet. I want the text/fill of a cell to change color when the expiration date of an item is within 180 days of the current date.

    I need help highlighting cells on my Numbers '09 spreadsheet.  I want the cell text/fill to change color when the date is 180 days or less from the current date.  I already have a cell with the current date in it.  I also know how to change the fill/text colors.  All the cells have been formatted to show date only.  I am having trouble with the formula.  I can get to the Conditional Formatting menu and select "With Dates" but after that I am lost.  Can anyone help?
    Thank you for any assistance.
    B

    Set a Conditional Format rule as shown in the illustration below. The rule has been applied to all dates in column B of the table.
    Regards,
    Barry

  • I am in need of a weather and stock widget, similiar to the ones on the iphone 4s, that allow you to display current stocks and weather in the notification window but i need it for the ipad2.

    the iphone 4s came with a weather and a stock widget.  these could be configured in notifications to CONSTANTLY display stock prices and the days weather whenever you pulled down the notification window.  the ipad2 doesn't have these programs and i have spend a small fortune and time looking for this same feature.  does anyone out there know off a weather and stock program that will let you program stocks into the notification window and then stream the stocks and prices acrossthe screen continously when you open the notification window.  Also does anyone know of a weather program that will display the days current conditions ALL THE TIME, not just when the wind picks up or it snows.
    the ipad2 doesn't have these built in programs and i can't find similiar ones in the app store.
    Thanks for your help.
    [email protected]

    I have this question too. Have you had any replies?

  • Fm to get current + next 3 fiscal months name

    hi all,
    In my alv report , i need to populate the stock of current fiscal month plus stock for succeeding 3 months.Using fm 'GET_CURRENT_YEAR' i am getting current month details with input sydatum and company code.
    But how to get next 3 fiscal months?Is there any fm to do the same?

    Hi,
    try this:
    DATA: PERIOD LIKE T009B-POPER,
          YEAR   LIKE T009B-BDATJ,
          DATE   LIKE SY-DATUM.
    DATE = SY-DATUM.
    CALL FUNCTION 'DETERMINE_PERIOD'
      EXPORTING
        DATE                = date
        VERSION             = 'K4'
      IMPORTING
        PERIOD              = PERIOD
        YEAR                = YEAR
      EXCEPTIONS
        PERIOD_IN_NOT_VALID = 1
        PERIOD_NOT_ASSIGNED = 2
        VERSION_UNDEFINED   = 3
        OTHERS              = 4.
    write: / date, period, year.
      CALL FUNCTION 'RE_ADD_MONTH_TO_DATE'
        EXPORTING
          MONTHS  = 1
          OLDDATE = DATe
        IMPORTING
          NEWDATE = date.
    CALL FUNCTION 'DETERMINE_PERIOD'
      EXPORTING
        DATE                = date
        VERSION             = 'K4'
      IMPORTING
        PERIOD              = PERIOD
        YEAR                = YEAR
      EXCEPTIONS
        PERIOD_IN_NOT_VALID = 1
        PERIOD_NOT_ASSIGNED = 2
        VERSION_UNDEFINED   = 3
        OTHERS              = 4.
    write: / date, period, year.
      CALL FUNCTION 'RE_ADD_MONTH_TO_DATE'
        EXPORTING
          MONTHS  = 1
          OLDDATE = DATe
        IMPORTING
          NEWDATE = date.
    CALL FUNCTION 'DETERMINE_PERIOD'
      EXPORTING
        DATE                = date
        VERSION             = 'K4'
      IMPORTING
        PERIOD              = PERIOD
        YEAR                = YEAR
      EXCEPTIONS
        PERIOD_IN_NOT_VALID = 1
        PERIOD_NOT_ASSIGNED = 2
        VERSION_UNDEFINED   = 3
        OTHERS              = 4.
    write: / date, period, year.
      CALL FUNCTION 'RE_ADD_MONTH_TO_DATE'
        EXPORTING
          MONTHS  = 1
          OLDDATE = DATe
        IMPORTING
          NEWDATE = date.
    CALL FUNCTION 'DETERMINE_PERIOD'
      EXPORTING
        DATE                = date
        VERSION             = 'K4'
      IMPORTING
        PERIOD              = PERIOD
        YEAR                = YEAR
      EXCEPTIONS
        PERIOD_IN_NOT_VALID = 1
        PERIOD_NOT_ASSIGNED = 2
        VERSION_UNDEFINED   = 3
        OTHERS              = 4.
    write: / date, period, year.
    Regards, Dieter

Maybe you are looking for