Wednesday, November 27, 2019

Macys Swot Analysis free essay sample

The SWOT analysis provides an in depth picture of the rganizations business and operations. The internal Factors of the organization for Macys include the strengths, and weaknesses. The strengths are the areas where Macys stands out as an upscale retailer store. The strengths include skilled management, positive cash flow, and well- known highly regarded brands (Bateman Snell, 2009). We will write a custom essay sample on Macys Swot Analysis or any similar topic specifically for you Do Not WasteYour Time HIRE WRITER Only 13.90 / page The weaknesses on the other hand are the areas where Macys retail stores lack and perhaps need to improve in order to stay ahead of competition. The External factors of Macys include the opportunities and threats. These factors play a big role in helping the business grow or hurting the business. The opportunities may include ads on wireless mobile to attracted more customers and reach bigger numbers of sales. The threats on the other hand might include the possibility that competitors will enter the underserved niche once it has been shown to be more profitable (Bateman Snell, 2009). The SWOT analysis will draw a good understanding of the business situation Macys retail store are in the market and against other competitors. Macys is a retail store that started as a freestanding store and now became a national department store offering a one stop shopping experience for all consumers throughout the country. It has volved and grew into a bigger and more stable type of retail store. In fact it became a national brand throughout the years. Macys incurred some changes throughout these years in addition to being a national brand it had to become part of a more stable and efficient business. In 1994, Macys merged with the Federated Department store creating the worlds largest department store company (Tsiantar, 2006). This is one of the many moves a company chooses to excel in its position in the retail market industry. One also believe this particular move gave Macys expansion it opportunity to be bigger and reach more states and then became globally. Now this paper is about the SWOT analysis of Macys as a retail store business. The SWOT analysis: strengths, weaknesses, opportunities, threats for Macys (Tsiantar, 2006) Macys strengths include economic scales, purchasing power, efficiencies in the market, and chains into the singular Macys brand, Federated department store can expects greater economies of scale. Good business practice produces a steady and continuous flow of consumers. The purchasing power of Macys is one of many recently found strengths is it size. In terms of purchasing power, Macys could rival Wal-Mart in its ability to use continuous volume to secure the best prices. Again, Macys have greater leverage in making sure that it secures the hottest merchandise for its consumers. The marketing efficiencies for Macys are through national campaigns. The option of splitting resources for campaigns, Macys is able to buy more national advertisements. The article reports Macys the company recorded revenues of $23,489 million during the financial year ended January 2010 (Aarkstore, 2010). The mixed old and new paths includes to competition with pure play internet retailers, Macys has a strong position in being able to leverage the storefront and the internet. On a national scale give Macys storefronts the ability to cross promote the internet by its actual presence. All consumers of Macys have the luxury of buy online and having the security of being able to return a particular product. This special idea placed by Macys Management enable Macys with a competitive advantage over other internet retailers (Tsiantar, 2006). The weaknesses Macys have to rebrand most of it product from a regional brand to Macys brand. The branding obviously takes time and this period of time for product to reach the store is crucial in order to secure profits. Thus Macys must try everything to speed up the process to secure a profit through a brand. Some regional brands have value and customers have a relationship with the regional stores. Such stores have spent many years promoting their regional brand with the consumers psyche. Impersonality of a national brand Macys must understand that the availability of a store regionally is because it provides appropriate products and service experiences. Also, replacing the so called affordable luxury labeled brands like Liz Claiborne, Calvin Klein, Jones New York, and Ralf Lauren to better or more defined brand names. Ultimately these affordable uxury brands are placing Macys within the middle of the department store food chain. The recent consumers are more into researching online different options before deciding to go the retail store. Also, different seasons alter sale and profit margin according to the article sales should either be flat or will decline slightly (Mallas, 2008). The article was comparing Macys to Wal-mart, and Targets sales and earnings for the year of 2008 (Tsiantar, 2006). Opportunities for Macys with new shoppers are through first impression. First impression usually has a strong impact on loyal customers of the regional department stores. Macys has a power of influence on the suppliers. Macys can influence these suppliers to make the latest and hottest product on the market. Federated the department stores need to minimize the number of stores and consolidate them to Macys (Tsiantar, 2006). Then the lesser names in the market the better Macys brand becomes and the stronger it will be amongst other stores. Strengthening the position of Macys in the financial market allows it to better facilitates its funds and cut on cost thus more profit. Threats: Macys have many threat from all kind of competition stores like Wal-Mart, Kohls, and specialty stores. If the competition keeps increasing on Macys market, Macys is going to be in serious troubles. Other threats like higher gas prices, higher lesser profit margin. In conclusion Federated Department Store- Macys hold a huge market value within the retail industry. Weighing the internal and external factors Macys should be in better and healthier business position. One believe the internal factors precisely the strengths of Macys can and will always make it more valued to all consumers. The name Macys should peak out in the consumers interest and get the consumers into the store to increase profit margin. The federated Department Store has many challenges and one of them is to make Macys the department store that once was.

Saturday, November 23, 2019

The Birth, Life and Death of a Delphi Form

The Birth, Life and Death of a Delphi Form In Delphi, every project has at least one window the programs main window. All windows of a Delphi application are based on TForm object. Form Form objects are the basic building blocks of a Delphi application, the actual windows with which a user interacts when they run the application. Forms have their own properties, events, and methods with which you can control their appearance and behavior. A form is actually a Delphi component, but unlike other components, a form doesnt appear on the component palette. We normally create a form object by starting a new application (File | New Application). This newly created form will be, by default, the applications main form - the first form created at runtime. Note: To add an additional form to Delphi project, select File|New Form. Birth OnCreateThe OnCreate event is fired when a TForm is first created, that is, only once. The statement responsible for creating the form is in the projects source (if the form is set to be automatically created by the project). When a form is being created and its Visible property is True, the following events occur in the order listed: OnCreate, OnShow, OnActivate, OnPaint. You should use the OnCreate event handler to do, for example, initialization chores like allocating string lists. Any objects created in the OnCreate event should be freed by the OnDestroy event. OnCreate - OnShow - OnActivate - OnPaint - OnResize - OnPaint ... OnShowThis event indicates that the form is being displayed. OnShow is called just before a form becomes visible. Besides main forms, this event happens when we set forms Visible property to True, or call the Show or ShowModal method. OnActivateThis event is called when the program activates the form - that is, when the form receives the input focus. Use this event to change which control actually gets focus if it is not the one desired. OnPaint, OnResizeEvents like OnPaint and OnResize are always called after the form is initially created, but are also called repeatedly. OnPaint occurs before any controls on the form are painted (use it for special painting on the form). Life The birth of a form is not so interesting as its life and death can be. When your form is created and all the controls are waiting for events to handle, the program is running until someone tries to close the form! Death An event-driven application stops running when all its forms are closed and no code is executing. If a hidden form still exists when the last visible form is closed, your application will appear to have ended (because no forms are visible), but will in fact continue to run until all the hidden forms are closed. Just think of a situation where the main form gets hidden early and all other forms are closed. ... OnCloseQuery - OnClose - OnDeactivate - OnHide - OnDestroy OnCloseQueryWhen we try to close the form using the Close method or by other means (AltF4), the OnCloseQuery event is called. Thus, event handler for this event is the place to intercept a forms closing and prevent it. We use the OnCloseQuery to ask the users if they are sure that they realy want the form to close. procedure TForm1.FormCloseQuery(Sender: TObject; var CanClose: Boolean) ;begin    if MessageDlg(Really close this window?, mtConfirmation, [mbOk, mbCancel], 0) mrCancel then CanClose : False;end; An OnCloseQuery event handler contains a CanClose variable that determines whether a form is allowed to close. The OnCloseQuery event handler may set the value of CloseQuery to False (via the CanClose parameter), aborting the Close method. OnCloseIf OnCloseQuery indicates that the form should be closed, the OnClose event is called. The OnClose event gives us one last chance to prevent the form from closing. The OnClose event handler has an Action parameter, with the following four possible values: caNone. The form is not allowed to close. Just as if we have set the CanClose to False in the OnCloseQuery.caHide. Instead of closing the form you hide it.caFree. The form is closed, so its allocated memory is freed by Delphi.caMinimize. The form is minimized, rather than closed. This is the default action for MDI child forms. When a user shuts down Windows, the OnCloseQuery event is activated, not the OnClose. If you want to prevent Windows from shutting down, put your code in the OnCloseQuery event handler, of course CanCloseFalse will not do this. OnDestroyAfter the OnClose method has been processed and the form is to be closed, the OnDestroy event is called. Use this event for operations opposite to those in the OnCreate event. OnDestroy is used to deallocate objects related to the form and free the corresponding memory. When the main form for a project closes, the application terminates.

Thursday, November 21, 2019

HRM Essay Example | Topics and Well Written Essays - 2750 words

HRM - Essay Example Achieving strategic integration is one of the policies described in the Harvard model by David Guest (1987, 1989a, 1989b, 1991) and it is the ability of the organization to integrate HRM issues into its strategic plans, ensure that the various aspects of HRM cohere, and provide for the line managers to incorporate an HRM prospective into their decision making (Armstrong, M 2000; p 13). Wright and McMahan (1992: 298) define SHRM as â€Å"the pattern of planned human resource deployments and activities intended to enable an organization to achieve its goals†. Schuler and Jackson (1987) have quoted few examples of HR strategies associated with a few strategic outcomes associated with achieving competitive advantage for organizations to achieve, such as cost reduction, quality enhancement and Innovation. For example, strategic practices to achieve Quality Enhancement would require good recruitment and selection, comprehensive induction programmes, empowerment and high discretion jobs, high levels of training and development, harmonization, highly competitive pay and benefits packages, and a key role of performance appraisal. The integration or strategic-fit model is regarded central to the concept of strategic HRM. This is also referred to as the matching model. According to this model, the HR strategy should be an integral part of the business strategy contributing to the business planning process. The strategic integration happens in two ways, the vertical and the horizontal. The HR strategy aligned to the business strategy is referred t o as the vertical integration, and the integration between different elements of the people strategy is referred to as the horizontal strategy (Shields, 2007). The SHRM version of Miles and Snow model (1984) suggests that organizations follow generic strategy and then develop a structure