How do I include stock market index on webpage?

Hi,
My client wants a webpage that has the index numbers of the
Ney York stock Exchange, the DOW, The Nikkei, several European
Stock Market Index, etc. Can anyone point me to a service that
supplies this for a website? I expect there are apps/scripts
available that I can include in the HTML. I imagine there is a
subscription involved, which is fine.
Tx for any help you can offer!
Rogier
The Netherlands

I use Camtasia Studio to record computer screen captures.  I created a tutorial for editing Camtasia Studio footage in Premiere Pro:
Bellune Digital Video Services - Tutorials - Adobe Premiere Pro - Using Camtasia Studio Footage in Premiere
Jeff

Similar Messages

  • CNBC does not load stock market indexes

    I can not get the CNBC site to load stock market indexes after installing Safari 5.1. The exact same CNBC URLs using Safari on my iPad2 work fine along with the CNBC iPad app.  I realize that the iPad Safari browser is differnt than the SL version.  I submitted a problem record to customer care on CNBC and have provided the same problem description. The only change I made to Safari 5.1 is adding Click to flash 2.3.1 because the old version of click to flash is not supported by the new Safari version...any suggestions? thanks a lot.

    Java was already enabled, I am running OS X 10.6.8 and I update SW regularly and automatically that is how Safari 5.1 was installed last week. I do not have an ad-blocker installed. I just have pop up windows blocked checked  as in previous Safari releases... I only have the Click to Flash extension newly installed when the new Safari was installed and the old click to flash is not supported.
    The links are http://www.cnbc.com/id/15839285  and http://www.cnbc.com/id/17689937..
    Thanks in advance...My next step would be to uninstall the Click to Flash extension...
    Please advise..thanks for the help!!

  • How can I include a pdf on my webpage?

    I ahve published a series of articles that I'd like to post on my webpage, but have not found a way to do other than just the front page of the pdf file. Is there a way to post the whole pdf?

    Handling PDFs is covered here...
    http://www.iwebformusicians.com/iWeb/PDFs.html
    Not all browsers will handle a PDF in an iframe satisfactorily so its better to export the doc as html...
    http://www.iwebformusicians.com/Website-Email-Marketing/HTML-iFrame.html
    .. or use something like Google Doc Viewer...
    http://www.iwebformusicians.com/Website-Email-Marketing/Google-Doc-Viewer.html

  • How can I make the Stock Market Panel load AFTER the User Enters correct password?

    Can someone PLEASE help me. I need the Second part of this code(the Stock Market Panel) to be display after the user enters the correct username and password I have predefine. I really need to complete this project for school, Last Semester and i want to finally graduate!
    <?xml version="1.0"?>
    <mx:Application xmlns:fx="http://ns.adobe.com/mxml/2009"
                                     xmlns:mx="library://ns.adobe.com/flex/mx"
                                     xmlns:s="library://ns.adobe.com/flex/spark">
              <fx:Script>
                        <![CDATA[
                                  import mx.controls.Alert;
                                  public var u:String;
                                  public var p:String;
                                  public function log():void
                                            u=user.text.toLowerCase();
                                            p=pass.text.toLowerCase();
                                            if((u==''||u!='webmultimedia')||(p==''||p!='abc'))
                                                      Alert.show('Wrong userid or Password','Sorry',Alert.OK | Alert.CANCEL);
                                            else
                                                      Alert.show('Hi','Welcome',mx.controls.Alert.OK);
                                  public function clear():void
                                            user.text='';
                                            pass.text='';
                        ]]>
              </fx:Script>
              <mx:Panel id="NewForm" title="Please Log In" height="214" width="285" horizontalAlign="center" verticalAlign="middle" horizontalCenter="23" verticalCenter="2">
                        <mx:Label id="User Name" text="User Name"/> 
                        <mx:TextInput id="user" />
                        <mx:Label id="password" text="Password"/>
                        <mx:TextInput id="pass" displayAsPassword="true"/>   
                        <mx:Button id="submit" label="Submit" click="log()"/>
              </mx:Panel>
              <mx:Panel width="349" height="383" chromeColor="#1B8905" color="#FFFFFF" focusColor="#0F3CFF"
                                    fontFamily="Georgia" fontSize="21" fontWeight="bold" paddingBottom="10"
                                    paddingLeft="10" paddingRight="10" paddingTop="10" title="Stock Market">
                        <!--First Pane Of TabNavigator-->
                        <mx:TabNavigator borderStyle="solid">
                                  <mx:VBox y="71" width="371" height="334" label="Dow Jones"
                                                       chromeColor="#0A741C">
                                            <mx:Image id="loader1" source="http://dl.dropbox.com/u/8861424/stock1.png"/>
                                            <mx:RichTextEditor id="myRTE" width="355" height="286" borderVisible="true"
                                                                                       color="#000000" text="Enter Stock Comment"/>
                                  </mx:VBox>
                                  <!-- Second pane of TabNavigator -->
                                  <mx:VBox label="SandP" width="500" height="350">
                                            <mx:Image id="loader2" source="http://dl.dropbox.com/u/8861424/Untitled.png"/>
                                            <mx:RichTextEditor id="myRTE2" width="355" height="286" borderVisible="true"
                                                                                       color="#000000" text="Enter Stock Comment"/>
                                  </mx:VBox>
                                  <!-- Second pane of TabNavigator -->
                                  <mx:VBox label="Nasdaq" width="500" height="350">
                                            <mx:Image id="loader3" source="http://dl.dropbox.com/u/8861424/stock2.png"/>
                                            <mx:RichTextEditor id="myRTE3" width="355" height="286" borderVisible="true"
                                                                                       color="#000000" text="Enter Stock Comment"/>
                                  </mx:VBox>
                        </mx:TabNavigator>
              </mx:Panel> 
    </mx:Application>

    it's probably not the correct way to do it but I am more familiar with Flex4 (which use states) but this works
    however i had to remove your Alert they were throwing an error
    <mx:Application xmlns:fx="http://ns.adobe.com/mxml/2009"
                                            xmlns:mx="library://ns.adobe.com/flex/mx"
                                            xmlns:s="library://ns.adobe.com/flex/spark">
              <fx:Script>
                        <![CDATA[
                                  import mx.controls.Alert;
                                  public var u:String;
                                  public var p:String;
                                  public function log():void
                                            u = user.text.toLowerCase();
                                            p = pass.text.toLowerCase();
                                            if ((u == '' || u != 'webmultimedia') || (p == '' || p != 'abc'))
                                                      //Alert.show('Wrong userid or Password', 'Sorry', Alert.OK | Alert.CANCEL);
                                            else
                                                      //Alert.show('Hi', 'Welcome', mx.controls.Alert.OK);
                                                      stockMarket.visible = true;
                                                      NewForm.visible = false;
                                  public function clear():void
                                            user.text = '';
                                            pass.text = '';
                        ]]>
              </fx:Script>
              <mx:Panel id="NewForm"
                                    title="Please Log In"
                                    height="214"
                                    width="285"
                                    horizontalAlign="center"
                                    verticalAlign="middle"
                                    horizontalCenter="23"
                                    verticalCenter="2">
                        <mx:Label id="UserName"
                                              text="User Name" />
                        <mx:TextInput id="user" />
                        <mx:Label id="password"
                                              text="Password" />
                        <mx:TextInput id="pass"
                                                        displayAsPassword="true" />
                        <mx:Button id="submit"
                                               label="Submit"
                                               click="log()" />
              </mx:Panel>
              <mx:Panel id="stockMarket"
                                    visible="false"
                                    width="349"
                                    height="383"
                                    chromeColor="#1B8905"
                                    color="#FFFFFF"
                                    focusColor="#0F3CFF"
                                    fontFamily="Georgia"
                                    fontSize="21"
                                    fontWeight="bold"
                                    paddingBottom="10"
                                    paddingLeft="10"
                                    paddingRight="10"
                                    paddingTop="10"
                                    title="Stock Market">
                        <!--First Pane Of TabNavigator-->
                        <mx:TabNavigator borderStyle="solid">
                                  <mx:VBox y="71"
                                                       width="371"
                                                       height="334"
                                                       label="Dow Jones"
                                                       chromeColor="#0A741C">
                                            <mx:Image id="loader1"
                                                                  source="http://dl.dropbox.com/u/8861424/stock1.png" />
                                            <mx:RichTextEditor id="myRTE"
                                                                                       width="355"
                                                                                       height="286"
                                                                                       borderVisible="true"
                                                                                       color="#000000"
                                                                                       text="Enter Stock Comment" />
                                  </mx:VBox>
                                  <!-- Second pane of TabNavigator -->
                                  <mx:VBox label="SandP"
                                                       width="500"
                                                       height="350">
                                            <mx:Image id="loader2"
                                                                  source="http://dl.dropbox.com/u/8861424/Untitled.png" />
                                            <mx:RichTextEditor id="myRTE2"
                                                                                       width="355"
                                                                                       height="286"
                                                                                       borderVisible="true"
                                                                                       color="#000000"
                                                                                       text="Enter Stock Comment" />
                                  </mx:VBox>
                                  <!-- Second pane of TabNavigator -->
                                  <mx:VBox label="Nasdaq"
                                                       width="500"
                                                       height="350">
                                            <mx:Image id="loader3"
                                                                  source="http://dl.dropbox.com/u/8861424/stock2.png" />
                                            <mx:RichTextEditor id="myRTE3"
                                                                                       width="355"
                                                                                       height="286"
                                                                                       borderVisible="true"
                                                                                       color="#000000"
                                                                                       text="Enter Stock Comment" />
                                  </mx:VBox>
                        </mx:TabNavigator>
              </mx:Panel>
    </mx:Application>

  • Stock market short selling ( what a cool way to make money )

    Hi
    This was on BBC internet today...
    There are also proposals for new guidelines on short selling, including requiring managers to regularly disclose information on important short positions to national authorities.
    Short selling is a technique that sees investors borrow an asset, such as shares, currencies or oil contracts, from another investor and then sell that asset in the relevant market hoping the price will fall.
    The aim is to buy back the asset at a lower price and return it to its owner, pocketing the difference.
    On Monday, a key committee of Euro MPs backed a directive that may lead to greater supervision of the hedge fund industry.
    Finance ministers must now negotiate with the European parliament over the legislation. Talks will begin on 31 May before a final vote in July.
    If I remember right...in 1971 at Merrill Lynch Pierce Fenner and Smith...this is what happened:  Keep in mind there was only one "baby bond" or baby stock house...where you could have an account for less than about $10,000...in other words, all accounts were institutional, corporate etc...not individuals unless they were fairly wealthy....certainly not joe blow from next door.  Right off the bat I gotta say I can't cover "who owns the exchanges - the deregulation of banks and the effect on trading and underwriting...hedge funds and so on....it's very different today than it used to be...
    But anyway, this is a day in the life of Bob The Buy-In-Clerk at Merrill in 1971...
    Bob looks at a computer printout of fanned pages with a list of failed trades...
    What's a failed trade ?
    You make a trade on the exchange...buying 10 shares of ATT at $10---   Being the seller.  You are a broker ( Kidder and Peabody ).  You have a customer that wanted to sell the ATT.  You do that for him.  You get a commission.  You have the shares in your vault because your customer didn't want them in his house. You sold to Merrill because THEY have a customer that wanted ATT.  Merrill will keep the shares in their vault so the customer doesn't have to keep them in his house.
    Simple....BUT NOW WHAT ?  You have 5 days ( 5 business days ) to complete the trade.  5 Days for Kidder and Peabody to get a guy on a bicycle to run the 10 shares over to Merrill and hand them over through a window that looks like a bank teller's window....  ( THIS IS CALLED OVER THE COUNTER ...the window...which is where that term comes from re: trading between brokers that doesn't go through the exchanges )
    If somebody goes to get the ATT from the vault at Kidder Peabody and discovers they are not there then what ?  Perhaps there was a death in the family of the customer and the shares are being broken up according to the estate settlement / last will ......like a piece of paper that says 30 shares on it needs to get broken into 3 pieces of paper that says 10 on them...This is called legal transfer...
    Point being....whoops, the shares are at the bank being reprinted and the old one destroyed...( bank being the underwriter with the plates to make prints ) so you can't deliver the stuff.... After 5 days of not getting the ATT from Peabody it becomes a FAILED Trade...and Merrill is now within it's legal right to buy the shares it needs from someone else....another broker.....
    If the price has gone down Merrill can buy the 10 shares and still collect ( from Peabody ) the money (difference) paid originally. Merrill keeps the difference, not their customer .......If the price has gone up Merrill still collects the difference but since you had to pay more you don't have any left over to keep for yourself....you just get the shares to your customer.....So buying and selling on failed trades ( a very common practice since it's unavoidable for legitimate reasons ) was the genesis of "selling short"......
    Everyone knows you have 5 days to make a trade good.  Everyone knows that with credit from the broker and some nice deregulation..(naked short sell....you don't need to actually own the stock at all !!!  Like a miracle !!! Sell stuff you don't even have ....How cool is THAT ! ).you can make a trade (SELL ) betting the price will go down within 5 days...then buy it for less than you bought if for !   Like finding money growing on trees !!!!!
    5 days was in 1971...  I have no idea how much time people have now in that market, and if it's over the counter it's not even going through the SEC dictated 5 day thing....so I'm out of luck about knowing much about what goes on nowadays....and I don't miss it a bit...
    What used to be a function of making good on trades has turned into a betting system all it's own....not to make good on trades, but just to make the money tree shake....and so there's the down tick rule and up tick rule...haha....
    Now the result to someone like Mr. Long Term investor like me...of short selling...and result to the Doggy Biscuit Company Inc....
    I have stock in Doggy Biscuit...it's a nice company...with some cash on hand but some debt as well...it has a line of credit from a nice big bank. It's line of credit is based on it's assets ( worth )...It has a few shares of this and that on it's books ( other doggy products it has invested in )....
    There is some bad news about some distribution system ( UPS goes on strike and now many companies like Doggy Biscuit can't get certain stuff to make the biscuits and has trouble delivering said biscuits...)...and some people who hear about it figure they will sell Doggy Biscuit short...yipee...almost guaranteed money off the money tree !!!!  Share prices go down....Doggy Biscuit can't understand why it's going down so fast and so far !!!  This isn't a deal breaker...the strike will end, the dogs will get the biscuits....it's just a little burp in the quarter....but Doggy Biscuit, thanks to all the many short sellers ( yippeeee  ....free money !!!! ) Doggy Biscuit tanks out losing 50% of it's worth in a couple days.  It's line of credit shrinks.  It gets called ( margin call ) on some debt and has to sell it's stock in the other doggy products at a loss....and Doggy Biscuit is on the ropes.  Mr. Long Term investor like me now has Doggy Biscuit stock worth about one half what I bought it for....I have lost tons of money on the share price....
    That is the wonderful world of short selling.... lets do more of it !!!!!!!!!!
    Rod

    More cool info about the marketplace:
    http://www.investopedia.com/university/futures/default.asp
    Found the above link tutorial on futures market...very good tutorial...
    below is a segment of one section that applies more or less to my amazement over the proposed idea of a futures market in motion pictures...
    After you read it , think of the possibilities of "influencing" the marketing and success / failure of a particular movie ( with movie stars...a rich source of material for publication ---news items etc )....  and or the overall health of a studio ( distributer - independent productions etc )  It boggles the mind...The effect of piracy in certain countries etc...
    How far does the futures market for the price of grain, for example ( leading to the spot market and actual delivery of commodity ) skew off into the realm  of whacky speculation when considering world wide distribution of a movie making a certain profit or not....   and who in the world could possibly oversee that kind of derrivative or settle disputes ?
    Rod
    portion of tutorial below
    Speculators
    Other market participants, however, do not aim to minimize risk but rather to benefit from the inherently risky nature of the futures market. These are the speculators, and they aim to profit from the very price change that hedgers are protecting themselves against. Hedgers want to minimize their risk no matter what they're investing in, while speculators want to increase their risk and therefore maximize their profits.
    In the futures market, a speculator buying a contract low in order to sell high in the future would most likely be buying that contract from a hedger selling a contract low in anticipation of declining prices in the future.
    Unlike the hedger, the speculator does not actually seek to own the commodity in question. Rather, he or she will enter the market seeking profits by offsetting rising and declining prices through the buying and selling of contracts.
    Trader
    Short
    Long
    The Hedger
    Secure a price now to protect against future declining prices
    Secure a price now to protect against future rising prices
    The Speculator
    Secure a price now in anticipation of declining prices
    Secure a price now in anticipation of rising prices
    In a fast-paced market into which information is continuously being fed, speculators and hedgers bounce off of - and benefit from - each other. The closer it gets to the time of the contract's expiration, the more solid the information entering the market will be regarding the commodity in question. Thus, all can expect a more accurate reflection of supply and demand and the corresponding price.

  • Script to find duplicate index and how can we tell if an index is REALLY a duplicate?

    Does any one have script to find duplicate index? and how can we tell if an index is REALLY a duplicate?
    Rahul

    One more written by Itzik Ben-Gan
    The first query finds exact matches. The indexes must have 
    the same key columns in the same order, and the same included columns but in any order. 
    These indexes are sure targets for elimination. The only caution would be to check for index hints. 
    -- exact duplicates
    with indexcols as
    select object_id as id, index_id as indid, name,
    (select case keyno when 0 then NULL else colid end as [data()]
    from sys.sysindexkeys as k
    where k.id = i.object_id
    and k.indid = i.index_id
    order by keyno, colid
    for xml path('')) as cols,
    (select case keyno when 0 then colid else NULL end as [data()]
    from sys.sysindexkeys as k
    where k.id = i.object_id
    and k.indid = i.index_id
    order by colid
    for xml path('')) as inc
    from sys.indexes as i
    select
    object_schema_name(c1.id) + '.' + object_name(c1.id) as 'table',
    c1.name as 'index',
    c2.name as 'exactduplicate'
    from indexcols as c1
    join indexcols as c2
    on c1.id = c2.id
    and c1.indid < c2.indid
    and c1.cols = c2.cols
    and c1.inc = c2.inc;
    The second variation of this query finds partial, or duplicate, indexes 
    that share leading key columns, e.g. Ix1(col1, col2, col3) and Ix2(col1, col2) 
    would be considered duplicate indexes. This query only examines key columns and does not consider included columns. 
    These types of indexes are probable dead indexes walking. 
    -- Overlapping indxes
    with indexcols as
    select object_id as id, index_id as indid, name,
    (select case keyno when 0 then NULL else colid end as [data()]
    from sys.sysindexkeys as k
    where k.id = i.object_id
    and k.indid = i.index_id
    order by keyno, colid
    for xml path('')) as cols
    from sys.indexes as i
    select
    object_schema_name(c1.id) + '.' + object_name(c1.id) as 'table',
    c1.name as 'index',
    c2.name as 'partialduplicate'
    from indexcols as c1
    join indexcols as c2
    on c1.id = c2.id
    and c1.indid < c2.indid
    and (c1.cols like c2.cols + '%' 
    or c2.cols like c1.cols + '%') ;
    Be careful when dropping a partial duplicate index if the two indexes differ greatly in width. 
    For example, if Ix1 is a very wide index with 12 columns, and Ix2 is a narrow two-column index 
    that shares the first two columns, you may want to leave Ix2 as a faster, tighter, narrower index.
    Best Regards,Uri Dimant SQL Server MVP,
    http://sqlblog.com/blogs/uri_dimant/
    MS SQL optimization: MS SQL Development and Optimization
    MS SQL Consulting:
    Large scale of database and data cleansing
    Remote DBA Services:
    Improves MS SQL Database Performance
    SQL Server Integration Services:
    Business Intelligence

  • How to resrve the stock to the customer against the sales order

    hi,
    sap gurus,
    good morning to all,
    how to reserve the stock to the customer against the sales order if this process is not MAKE TO
    ORDER SCENARIO.
    the prices of the products will be often changing drastically so
    he is following MAKE TO STOCK Process in his production process.
    so with out using m.t.o. process how to reserve it against the customer.
    for eg:
    in the market when the customer/dealer/stockist coems to know that prices are going to increase
    then obviously he tends to purchase in bulk quantities and reserve it in godown.
    so how to map that process.
    help me on this.
    regards,
    balaji.t
    09990019711

    Dear Balaji,
         This can be done By MM consultant through movement type. to move the stock from unresticted stock to customer stock.
    Regards,
    Sudhir

  • Can someone pls help me with java on my macbook pro because after i download the mountain lion java has died and i need java to see streaming quotes from stock market

    can someone pls help me with java on my macbook pro because after i download the mountain lion java has died and i need java to see streaming quotes from stock market

    Java is no longer included in Mac OS X by default. If you want Java, you will have to install it.
    However, note that you should think twice before installing Java for such a trivial need as looking at stock market quotes. There are other ways to get that information that don't involve Java, and using Java in your web browser is a HUGE security risk right now. Java has been vulnerable to attack almost constantly for the last year, and has become a very popular, frequently used method for getting malware installed via "drive-by downloads." You really, truly don't want to be using it. See:
    Java is vulnerable… Again?!
    http://java-0day.com

  • How to check if table or index bound to data cache loaded in memory?

    In my system, thare are many named data caches created and certain objects bind to those data cache.
    For example, I have a large table mytab which is bound to data cache mycache.
    When I issue a sql like select * from mytab where x=y, run it at first time is is very slow.  run it again and again. then it very fast. it means data loaded in cahce and ready for same query.
    Question:
    1. How can I know if the table mytab has been loaded in data cache mycache?
    2. How to load mytab into data cahce mycache one time for all query in the feature?

    one way to monitor is:
    select CacheName,DBName,OwnerName,ObjectName,IndexID,sum(CachedKB) as "CachedKb"
    from master..monCachedObject
    group by CacheName,DBName,OwnerName,ObjectName,IndexID
    order by CacheName,DBName,OwnerName,ObjectName,IndexID
    But, you should understand that caches have a finite size, and caches contain "pages" of objects including data pages, index pages, and LOB pages.  Also, caches may have different pool sizes, so a page can be in only one cache pool.  So, if you want  a table and all of it's indexes, text/image pages  to be loaded into a dedicated cache, you need a large enough cache to fit all of those pages, and decide which buffer pool you want them in (typically either the 1 page pool, or the 8 page pool).
    Then, simply execute SQL (or dbcc) commands that access all of those pages in the manner you wish to find them in the cache.  For example, two statements, one that scans the table using 2k reads, and another that scans the index (mytab_ind1) using 2k reads.
    select count(*) from mytab plan '( i_scan mytab_cl mytab) ( prop mytab ( prefetch 2 ) ( lru ) )'
    select count(*) from mytab plan '( i_scan mytab_ind1 mytab) ( prop mytab ( prefetch 2 ) ( lru ) )'
    etc etc.
    used count(*) to limit result sets of examples

  • How can I include merged projects in the printed documentation?

    I have a master project with several merged projects. This works splendid with online documentation, but when I am asked to provide a printed version, it seems I have to create separate documents for each merged project.
    Is there any setting or fix that enables print also of merged projects and topics when I create printed documentation?
    Pretty please with sugar on top :-)

    Hm - there is a contract with the customer, saying that he wants documentation both as word and pdf, and as we now aim at only writing online documentation, these tasks create extra work, as we are delivering updates each month
    But yes - two beasts, where only chm is actually needed we think.
    -Tone
    Date: Tue, 3 May 2011 06:53:04 -0600
    From: [email protected]
    To: [email protected]
    Subject: How can I include merged projects in the printed documentation?
    Hi there
    I'm a bit curious as to the reasoning behind your "persuation process for using chm-files only".
    CHM files and printed documentation are two entirely different beasts.
    Cheers... Rick
    | http://www.robowizard.com/pc.gif | Helpful and Handy Links
    http://www.Adobe.com/cfusion/mmform/index.cfm?name=wishform&product=38
    http://www.gooberguides.com/ProductPages/RoboHelp/RoboHelp82Day.htm
    http://www.ShowMeSolutions.biz
    http://sorcererstone.wordpress.com/
    http://www.gooberguides.com |
    >

  • How can I include text lines in Service Invoice?

    Dear Experts,
    I realized unlike Item Invoice, Service Invoice does not have the "Type" column for me to include Text into the document?
    How can I include a free text into 1 row of the Service Invoice? without any GL Account, Qty and Total input?
    Thanks!
    Warmest Regards,
    Chinho

    Hi Chinho,
    Try to use the Description(100 characters) Field
    but if you want to add more characters at row level in single field.
    Try to add a UDF(500 Characters) on Marketing Documents.
    Regards,
    Madhan.

  • How upload the IM stock in to WM.

    Hi WM Expt,
    Currently in IM having stock. My company implemented WM. How upload the IM stock in to WM.
    What is process ?
    Which movement type can use for this purpose..
    Regards
    Manoj-KSA

    HI,
    It is like extending the stocks from IM to WM.No accounting documents will be created for WM
    transaction.As i said take one material goto TC-LT01.Put mvmt 561 or 999.material,qty(should be same
    as IM qty),plant storage location(Have assigned the same s.loc Wwhich is holding stock to WM?).If
    batch is their enter batch.press enter.In the second screen from storage type-998 & bin AUFNAHME.In
    TO put ur stor type & bin.Then save.Check in LT12 whether confirmation has been done or nor if not
    confirm.U stocks will be updated in WM.No accounting document wil be cretaed in WM.After testing
    manually create LSMW nad upload stks.Pl be careful to include confirmation in ur LSMW otherwise u
    will have to confirm manullay or reverse everthing.
    regards
    murugan

  • MVC with stock market type game

    Hi there all,
    I have a game that is based on the stock market only that the stocks are soccer teams. I've managed to download the team prices and then save it to a database. I'm now looking at displaying this info as various views, a JList that will display the team and its current price and then a graph with the price over a set period such as day or week. I've created the Model to be a Team. Each team has a name and price attribute. The name is set is the instantiation and the price can be set using a setPrice method. Once the setPrice method is updated this triggers the observers(list and graph). Unfortunately I'm not quite sure how to tie the views to the observer because I have many teams that I want to add to the list. My other problem arrises that the I'm not sure how to implement a controller for updating the team information. The controller for the list will be non visible as it is updated whenever I retrieve the price information off the Internet but this is handeled by another class. Any one with some suggestions??

    Would need to know what system you have (S20,D20,D30?).  I'm assuming you've done the homework to ensure your aftermarket PSU is working correctly and powerful enough to support the AMD card you're running.
    With the AMD card installed, what is the first thing you see when the system boots?  Is it the windows splash screen?  If you start hitting F1 as soon as the keyboard light comes on, are you able to get into BIOS?  It could be a matter of the display you're using not responding fast enough, or there could be something else going on in BIOS.  Hard to say since we've not really looked at that card at all.

  • How to maintain Safty Stock ?

    Dear all ,
    how to maintain Safety stock for STO ,
    means if i have maintained 100 for safety stock , and available quantity is 100 when user going to transfer material plant a to plant b ,error message will display  ,
    how i will do ?
    Regards
    shiv

    Hi,
    spro > Materials Management > Purchase Order > Set up Stock Transport Order > Define Checking Rule select the checking rule which you are using & go to detais &  tick the check box of include safety stock it  Indicates whether, during an availability check, the system adds the safety stock to the available inventory in the respective plant. If you want the system to add in the safety stock, mark the field.
    Then go to Material master and maintain the safety stock in MRP view -1 when you are tryng to Outbound delivery then PGI system throws error. As system occupies the available stock as safety stock and will proposes the PGI.

  • How to assign free stock

    Hi Friends,
    I want to know the process regarding the assigning of free stock...
    What is free stock?How to assign free stock? what is going to happen after assigning free stock....
    with regards

    Hi,
    If you consider Sales order there are 2 cases Exclusive & Inclusive
    Take an eg for 10 qty  in Sales order to customer
    Exclusive means -- you will be having 10 qty in order + 1 free good. so totally 11 qty will be delivered to customer.
    here the free goods may be same or other can also be consider as free.
    ( eg for 10 bucket 1 mug is free like that)
    Inclusive meand --, you will be getting one free in that 10 items. so order will 9 qty & free qty is 1 item , so total will be 10 qty only
    Here the free item will be same as main item.
    ( For 9 bucket 1 bucket is free)
    You can include this free stock as separate line item in the Sales order.
    rgds
    gsc

Maybe you are looking for

  • Alternate Xorg session with desktop [SOLVED]

    My goal is to run multiple X sessions with separate openbox and KDE enviroments. I open TTY6 with alt+ctrl+F6 and run xinit /usr/bin/openbox -- :1 and my new and shiny openbox opens nicely. The problem is, that when I return to my KDE with alt+ctrl+F

  • Live Corners - Can't move smaller objects

    Anyone else have a hard time moving smaller sized objects without adjusting the corners or distorting the shape of the object? Its driving me nuts. Is there a short key or something that temporarily deactivates the live corner function so you can mov

  • Robohelp 7 freezes when trying to insert an image

    Not sure how this happened, but now I can't insert images into my RoboHelp 7 project. Now when I attempt to go to Insert > Image and then click the folder to browse for an image to insert, Robohelp freezes until I hit the escape button. This is surel

  • JTextArea:  How do I force a JTextArea to refresh?

    Hi All, I have a JTextArea that I append data do when I'm in a while loop. The JTextArea displays the text after the loop has finished, not as data is appended to it during the while loop. How can I force the JTextArea to refresh immediately after te

  • Publication and Prompt values

    Hi, I am on customer site with BOE XI 3.1 FP 1.6. We are creating publications with a WebI source report. The WebI report has a series of prompts. Eg. posting period. The publication is pushed to 2 groups of reciepients. Each group has a different pr