Monthly Archives: September 2010

What are the different business components in mySAP R/3

mySAP R/3 can be classified into the following business components: Financial applications Human resource applications Logistics Sales and distribution applications

Posted in Introduction | Leave a comment

What are the different products of mySAP ERP?

mySAP ERP includes the following products: mySAP Enterprise Resource Planning (ERP). mySAP Supply Chain Management (SCM). mySAP Supplier Relationship Management (SRM). mySAP Customer Relationship Management (CRM). mySAP Product Life Cycle Management (PLM).

Posted in Introduction | Leave a comment

What are the advantages of mySAP ERP application

The mySAP ERP application has the following advantages: Mobile infrastructure, which improves workforce mobility. Transparency through a business intelligence framework. Delivery of people-centric services. Faster access to information, which facilitates quick decision making. Seamless integration of processes throughout the business.

Posted in Introduction | Leave a comment

What is mySAP ERP?

mySAP ERP is the next-generation ERP application from SAP AG in Germany, and was fi rst launched in 2003. The mySAP ERP application has all the features of previously released SAP ERP software, such as SAP R/3 and SAP Strategic … Continue reading

Posted in Introduction | Leave a comment

What is the history of the SAP software

The SAP software was developed by a company of the same name. SAP (the company) was founded in 1972 by fi ve former IBM employees: Dietmar Hopp,Hans-Werner Hector, Hasso Plattner, Klaus Tschira, and Claus Wellenreuther. SAP released its mainframe product, … Continue reading

Posted in Introduction | Leave a comment

What is SAP? How is it used in industries?

SAP is the most popular enterprise resource planning (ERP) software application used to provide enterprise business solutions. It was first introduced in 1972 in Mannheim, Germany. SAP stands for Systems, Applications, and Products in Data Processing. SAP provides complete business … Continue reading

Posted in Introduction | 1 Comment

Media Mime Types in HTML 5

Configure your servers to serve content for the following MIME types in HTML 5 AddType audio/ogg .oga AddType audio/wav .wav AddType video/ogg .ogv .ogg AddType video/mp4 .mp4

Posted in HTML 5 | Leave a comment

Handling Media Events in HTML 5 audio and video

Example which allows to play the given video: <!DOCTYPE HTML> <head> <script type="text/javascript"> function PlayVideo(){ var v = document.getElementsByTagName("video")[0]; v.play(); } </script> </head> <html> <body> <form> <video width="300" height="200" src="/html5/foo.mp4"> Your browser does not support the <video> element. </video> <input … Continue reading

Posted in HTML 5 | Leave a comment

Audio Attribute Specification in HTML 5

The HTML5 audio tag can have a number of attributes to control the look and feel and various functionalities of the control: Attribute Description autoplay This boolean attribute if specified, the audio will automatically begin to play back as soon … Continue reading

Posted in HTML 5 | Leave a comment

Embedding Audio in HTML 5 Pages

HTML5 supports audio tag which is used to embed sound content in an HTML or XHTML document as follows. <audio src="foo.wav" controls autoplay> Your browser does not support the <audio> element. </audio> The current HTML5 draft specification does not specify … Continue reading

Posted in HTML 5 | Leave a comment

Video Attribute Specification in HTML 5

The HTML5 video tag can have a number of attributes to control the look and feel and various functionalities of the control: Attribute Description autoplay This boolean attribute if specified, the video will automatically begin to play back as soon … Continue reading

Posted in HTML 5 | Leave a comment

Embedding Video in HTML 5 Pages

The HTML5 audio and video tags make it simple to add media to a website. You need to set src attribute to identify the media source and include a controls attribute so the user can play and pause the media. … Continue reading

Posted in HTML 5 | Leave a comment

Square translated by 25 pixels vertically and horizontally in Silverlight

The TranslateTransform element allows you to define how to transfer an element from one location to another. <Rectangle Width="50" Height="50" Fill="Green" Stroke="Black"> <Rectangle.RenderTransform> <TransformGroup> <TranslateTransform X="25" Y="25"/> </TransformGroup> </Rectangle.RenderTransform> </Rectangle>

Posted in .NET Silverlight | Leave a comment

Basic square skewed by 18 degrees on both the x and y-axes in Silverlight

A SkewTransform warps the coordinate space in a divergent manner. By skewing or shearing an element, you basically slant the element in a direction. <Rectangle Width="75" Height="75" Fill="Green" Stroke="Black" Canvas.Left="12" Canvas.Top="12"> <Rectangle.RenderTransform> <TransformGroup> <SkewTransform AngleX="18" AngleY="18"/> </TransformGroup> </Rectangle.RenderTransform> </Rectangle>

Posted in .NET Silverlight | Leave a comment

Square that has been scaled by a magnitude of 2.5 using scaletransform in Silverlight

<Rectangle Width="30" Height="30" Fill="Green" Stroke="Black" Canvas.Left="35" Canvas.Top="35"> <Rectangle.RenderTransform> <TransformGroup> <ScaleTransform ScaleX="2.5" ScaleY="2.5"/> </TransformGroup> </Rectangle.RenderTransform> </Rectangle>

Posted in .NET Silverlight | Leave a comment

A square that has been rotated by 30 degrees using rotatetransform in Silverlight

<Rectangle Width="50" Height="50" Fill="Green" Stroke="Black"> <Rectangle.RenderTransform> <TransformGroup> <RotateTransform Angle="30"/> </TransformGroup> </Rectangle.RenderTransform> </Rectangle>

Posted in .NET Silverlight | Leave a comment

Available transformation options in silverlight

RotateTransform Rotates an object by a specific Angle. ScaleTransform Provides a zoom in or out effect by specified amounts SkewTransform Tilts an element by defined amounts TranslateTransform Moves an element by specified amounts TransformGroup Not a type of transform; rather, … Continue reading

Posted in .NET Silverlight | Leave a comment

Caching a group of elements in a StackPanel

<Grid x:Name="LayoutRoot" Background="White" CacheMode="BitmapCache"> <Rectangle Height="60" Width="50" Fill="Green" /> <Ellipse Height="30" Width="200" Opacity="0.75" Fill="Blue" /> <Path Stroke="Orange" StrokeThickness="10" Height="200" Width="200" Data="M 10,80 C 150,5 100,0 200,50 H 100" /> <Path Stroke="Purple" Height="100" Width="300" StrokeThickness="10" Data="M 80,10 C 350,5 100,0 100,55" … Continue reading

Posted in .NET Silverlight | Leave a comment

Moving a TextBlock five pixels with GetValue and SetValue in Silverlight

<Canvas x:Name="parentCanvas" Width="400" Height="400" Background="LightGray"> <TextBlock x:Name="myTextBlock" Text="Click Me" Cursor="Hand" MouseLeftButtonUp="MyTextBlock_Click" FontFamily="Verdana" /> </Canvas> private void MyTextBlock_Click(object sender, MouseButtonEventArgs e) { double top = (double)(myTextBlock.GetValue(Canvas.TopProperty)); double left = (double)(myTextBlock.GetValue(Canvas.LeftProperty)); myTextBlock.SetValue(Canvas.TopProperty, (top+5)); myTextBlock.SetValue(Canvas.LeftProperty, (left+5)); }

Posted in .NET Silverlight | Leave a comment

Layout rounding in action with two rectangles

<Grid x:Name="LayoutRoot" Background="White"> <Rectangle Margin="10.5" UseLayoutRounding="True" HorizontalAlignment="Left" VerticalAlignment="Top" Fill="Transparent" Stroke="Black" StrokeThickness="1" Width="150" Height="30" /> <Rectangle Margin="20.5" UseLayoutRounding="False" Fill="Transparent" HorizontalAlignment="Left" VerticalAlignment="Top" Stroke="Black" StrokeThickness="1" Width="150" Height="30" /> </Grid>

Posted in .NET Silverlight | Leave a comment