Display Master



I just noticed that Tidal displays “MASTER” now on MQA tracks where before it would kick down to “HIFI” - has SONAS started supporting MQA? My understanding before was that even if you were playing the master quality music, it would downgrade to hifi and this was reflected in the display. Process: MM03 displays a material master record, including such information as whether the material is CDM Relevant, hazardous, or contains latex; the unit of measure, part number, distributor, and manufacturer; and the moving price. While, the second level master is −. Output condition; Create a Customer Master Record. The customer master data contains the information about business transaction and how transactions are recorded and executed by the system. A Master contains the information about the customers that an organization uses to do business with them.

-->

by Scott Mitchell

Download Code or Download PDF

Looks at setting the content page's master page programmatically via the PreInit event handler.

Introduction

Since the inaugural example in Creating a Site-Wide Layout Using Master Pages, all content pages have referenced their master page declaratively via the MasterPageFile attribute in the @Page directive. For example, the following @Page directive links the content page to the master page Site.master:

The Page class in the System.Web.UI namespace includes a MasterPageFile property that returns the path to the content page's master page; it is this property that is set by the @Page directive. This property can also be used to programmatically specify the content page's master page. This approach is useful if you want to dynamically assign the master page based on external factors, such as the user visiting the page.

In this tutorial we add a second master page to our website and dynamically decide which master page to use at runtime.

Step 1: A Look at the Page Lifecycle

Free downloads for mac games. Whenever a request arrives at the web server for an ASP.NET page that is a content page, the ASP.NET engine must fuse the page's Content controls into the master page's corresponding ContentPlaceHolder controls. This fusion creates a single control hierarchy that can then proceed through the typical page lifecycle.

Figure 1 illustrates this fusion. Step 1 in Figure 1 shows the initial content and master page control hierarchies. At the tail end of the PreInit stage the Content controls in the page are added to the corresponding ContentPlaceHolders in the master page (Step 2). After this fusion, the master page serves as the root of the fused control hierarchy. This fused control hierarchy is then added to the page to produce the finalized control hierarchy (Step 3). The net result is that the page's control hierarchy includes the fused control hierarchy.

Figure 01: The Master Page and Content Page's Control Hierarchies are Fused Together during the PreInit Stage (Click to view full-size image)

Step 2: Setting theMasterPageFileProperty from Code

What master page partakes in this fusion depends on the value of the Page object's MasterPageFile property. Setting the MasterPageFile attribute in the @Page directive has the net effect of assigning the Page's MasterPageFile property during the Initialization stage, which is the very first stage of the page's lifecycle. We can alternatively set this property programmatically. However, it is imperative that this property be set before the fusion in Figure 1 takes place.

At the start of the PreInit stage the Page object raises its PreInit event and calls its OnPreInit method. To set the master page programmatically, then, we can either create an event handler for the PreInit event or override the OnPreInit method. Let's look at both approaches.

Start by opening Default.aspx.cs, the code-behind class file for our site's homepage. Add an event handler for the page's PreInit event by typing in the following code:

From here we can set the MasterPageFile property. Update the code so that it assigns the value '~/Site.master' to the MasterPageFile property.

If you set a breakpoint and start with debugging you'll see that whenever the Default.aspx page is visited or whenever there's a postback to this page, the Page_PreInit event handler executes and the MasterPageFile property is assigned to '~/Site.master'.

Alternatively, you can override the Page class's OnPreInit method and set the MasterPageFile property there. For this example, let's not set the master page in a particular page, but rather from BasePage. Recall that we created a custom base page class (BasePage) back in the Specifying the Title, Meta Tags, and Other HTML Headers in the Master Page tutorial. Currently BasePage overrides the Page class's OnLoadComplete method, where it sets the page's Title property based on the site map data. Let's update BasePage to also override the OnPreInit method to programmatically specify the master page.

Because all our content pages derive from BasePage, all of them now have their master page programmatically assigned. At this point the PreInit event handler in Default.aspx.cs is superfluous; feel free to remove it.

What About the@PageDirective?

What may be a little confusing is that the content pages' MasterPageFile properties are now being specified in two places: programmatically in the BasePage class's OnPreInit method as well as through the MasterPageFile attribute in each content page's @Page directive.

The first stage in the page lifecycle is the Initialization stage. During this stage the Page object's MasterPageFile property is assigned the value of the MasterPageFile attribute in the @Page directive (if it is provided). The PreInit stage follows the Initialization stage, and it is here where we programmatically set the Page object's MasterPageFile property, thereby overwriting the value assigned from the @Page directive. Because we are setting the Page object's MasterPageFile property programmatically, we could remove the MasterPageFile attribute from the @Page directive without affecting the end user's experience. To convince yourself of this, go ahead and remove the MasterPageFile attribute from the @Page directive in Default.aspx and then visit the page through a browser. As you would expect, the output is the same as before the attribute was removed.

Trove

Whether the MasterPageFile property is set via the @Page directive or programmatically is inconsequential to the end user's experience. However, the MasterPageFile attribute in the @Page directive is used by Visual Studio during design-time to produce the WYSIWYG view in the Designer. If you return to Default.aspx in Visual Studio and navigate to the Designer you'll see the message, 'Master Page error: The page has controls that require a Master Page reference, but none is specified' (see Figure 2).

In short, you need to leave the MasterPageFile attribute in the @Page directive to enjoy a rich design-time experience in Visual Studio.

Figure 02: Visual Studio Uses the @Page Directive's MasterPageFile Attribute to Render the Design View (Click to view full-size image)

Step 3: Creating an Alternative Master Page

Because a content page's master page can be set programmatically at runtime it's possible to dynamically load a particular master page based on some external criteria. This functionality can be useful in situations where the site's layout needs to vary based on the user. For instance, a blog engine web application may allow its users to choose a layout for their blog, where each layout is associated with a different master page. At runtime, when a visitor is viewing a user's blog, the web application would need to determine the blog's layout and dynamically associate the corresponding master page with the content page.

Let's examine how to dynamically load a master page at runtime based on some external criteria. Our website currently contains just one master page (Site.master). We need another master page to illustrate choosing a master page at runtime. This step focuses on creating and configuring the new master page. Step 4 looks at determining what master page to use at runtime.

Create a new master page in the root folder named Alternate.master. Also add a new style sheet to the website named AlternateStyles.css.

Figure 03: Add Another Master Page and CSS File to the Website (Click to view full-size image)

I've designed the Alternate.master master page to have the title displayed at the top of the page, centered and on a navy background. I've dispensed of the left column and moved that content beneath the MainContent ContentPlaceHolder control, which now spans the entire width of the page. Furthermore, I nixed the unordered Lessons list and replaced it with a horizontal list above MainContent. I also updated the fonts and colors used by the master page (and, by extension, its content pages). Figure 4 shows Default.aspx when using the Alternate.master master page.

Note

ASP.NET includes the ability to define Themes. A Theme is a collection of images, CSS files, and style-related Web control property settings that can be applied to a page at runtime. Themes are the way to go if your site's layouts differ only in the images displayed and by their CSS rules. If the layouts differ more substantially, such as using different Web controls or having a radically different layout, then you will need to use separate master pages. Consult the Further Reading section at the end of this tutorial for more information on Themes.

Figure 04: Our Content Pages Can Now Use a New Look and Feel (Click to view full-size image)

When the master and content pages' markup are fused, the MasterPage class checks to ensure that every Content control in the content page references a ContentPlaceHolder in the master page. An exception is thrown if a Content control that references a non-existent ContentPlaceHolder is found. In other words, it is imperative that the master page being assigned to the content page have a ContentPlaceHolder for each Content control in the content page.

The Site.master master page includes four ContentPlaceHolder controls:

  • head
  • MainContent
  • QuickLoginUI
  • LeftColumnContent

Some of the content pages in our website include just one or two Content controls; others include a Content control for each of the available ContentPlaceHolders. If our new master page (Alternate.master) may ever be assigned to those content pages that have Content controls for all of the ContentPlaceHolders in Site.master then it is essential that Alternate.master also include the same ContentPlaceHolder controls as Site.master.

To get your Alternate.master master page to look similar to mine (see Figure 4), start by defining the master page's styles in the AlternateStyles.css style sheet. Add the following rules into AlternateStyles.css:

Next, add the following declarative markup to Alternate.master. As you can see, Alternate.master contains four ContentPlaceHolder controls with the same ID values as the ContentPlaceHolder controls in Site.master. Moreover, it includes a ScriptManager control, which is necessary for those pages in our website that use the ASP.NET AJAX framework.

Testing the New Master Page

To test this new master page update the BasePage class's OnPreInit method so that the MasterPageFile property is assigned the value '~/Alternate.master' and then visit the website. Every page should function without error except for two: ~/Admin/AddProduct.aspx and ~/Admin/Products.aspx. Adding a product to the DetailsView in ~/Admin/AddProduct.aspx results in a NullReferenceException from the line of code that attempts to set the master page's GridMessageText property. When visiting ~/Admin/Products.aspx an InvalidCastException is thrown on page load with the message: 'Unable to cast object of type 'ASP.alternate_master' to type 'ASP.site_master'.'

These errors occur because the Site.master code-behind class includes public events, properties, and methods that are not defined in Alternate.master. The markup portion of these two pages have a @MasterType directive that references the Site.master master page.

Also, the DetailsView's ItemInserted event handler in ~/Admin/AddProduct.aspx includes code that casts the loosely-typed Page.Master property to an object of type Site. The @MasterType directive (used this way) and the cast in the ItemInserted event handler tightly couples the ~/Admin/AddProduct.aspx and ~/Admin/Products.aspx pages to the Site.master master page.

To break this tight coupling we can have Site.master and Alternate.master derive from a common base class that contains definitions for the public members. Following that, we can update the @MasterType directive to reference this common base type.

Creating a Custom Base Master Page Class

Add a new class file to the App_Code folder named BaseMasterPage.cs and have it derive from System.Web.UI.MasterPage. We need to define the RefreshRecentProductsGrid method and the GridMessageText property in BaseMasterPage, but we can't simply move them there from Site.master because these members work with Web controls that are specific to the Site.master master page (the RecentProducts GridView and GridMessage Label).

Display Master 4

What we need to do is configure BaseMasterPage in such a way that these members are defined there, but are actually implemented by BaseMasterPage's derived classes (Site.master and Alternate.master). This type of inheritance is possible by marking the class and its members as abstract. In short, adding the abstract keyword to these two members announces that BaseMasterPage hasn't implemented RefreshRecentProductsGrid and GridMessageText, but that its derived classes will.

We also need to define the PricesDoubled event in BaseMasterPage and provide a means by the derived classes to raise the event. The pattern used in the .NET Framework to facilitate this behavior is to create a public event in the base class and add a protected, virtual method named OnEventName. Derived classes can then call this method to raise the event or can override it to execute code immediately before or after the event is raised.

Update your BaseMasterPage class so that it contains the following code:

Next, go to the Site.master code-behind class and have it derive from BaseMasterPage. Because BaseMasterPage is abstract we need to override those abstract members here in Site.master. Add the override keyword to the method and property definitions. Also update the code that raises the PricesDoubled event in the DoublePrice Button's Click event handler with a call to the base class's OnPricesDoubled method.

After these modifications the Site.master code-behind class should contain the following code:

We also need to update Alternate.master's code-behind class to derive from BaseMasterPage and override the two abstract members. But because Alternate.master does not contain a GridView that lists the most recent products nor a Label that displays a message after a new product is added to the database, these methods do not need to do anything.

Referencing the Base Master Page Class

Now that we have completed the BaseMasterPage class and have our two master pages extending it, our final step is to update the ~/Admin/AddProduct.aspx and ~/Admin/Products.aspx pages to refer to this common type. Start by changing the @MasterType directive in both pages from:

To:

Rather than referencing a file path, the @MasterType property now references the base type (BaseMasterPage). Consequently, the strongly-typed Master property used in both pages' code-behind classes is now of type BaseMasterPage (instead of type Site). With this change in place revisit ~/Admin/Products.aspx. Previously, this resulted in a casting error because the page is configured to use the Alternate.master master page, but the @MasterType directive referenced the Site.master file. But now the page renders without error. This is because the Alternate.master master page can be cast to an object of type BaseMasterPage (since it extends it).

There's one small change that needs to be made in ~/Admin/AddProduct.aspx. The DetailsView control's ItemInserted event handler uses both the strongly-typed Master property and the loosely-typed Page.Master property. We fixed the strongly-typed reference when we updated the @MasterType directive, but we still need to update the loosely-typed reference. Replace the following line of code:

With the following, which casts Page.Master to the base type:

Display Master

Step 4: Determining What Master Page to Bind to the Content Pages

Our BasePage class currently sets all content pages' MasterPageFile properties to a hard-coded value in the PreInit stage of the page lifecycle. We can update this code to base the master page on some external factor. Perhaps the master page to load depends on the preferences of the currently logged on user. In that case, we'd need to write code in the OnPreInit method in BasePage that looks up the currently visiting user's master page preferences.

Let's create a web page that allows the user to choose which master page to use - Site.master or Alternate.master - and save this choice in a Session variable. Start by creating a new web page in the root directory named ChooseMasterPage.aspx. When creating this page (or any other content pages henceforth) you don't need to bind it to a master page because the master page is set programmatically in BasePage. However, if you do not bind the new page to a master page then the new page's default declarative markup contains a Web Form and other content supplied by the master page. You'll need to manually replace this markup with the appropriate Content controls. For that reason, I find it easier to bind the new ASP.NET page to a master page.

Note

Because Site.master and Alternate.master have the same set of ContentPlaceHolder controls it doesn't matter what master page you choose when creating the new content page. For consistency, I'd suggest using Site.master.

Figure 05: Add a New Content Page to the Website (Click to view full-size image)

Update the Web.sitemap file to include an entry for this lesson. Add the following markup beneath the <siteMapNode> for the Master Pages and ASP.NET AJAX lesson:

Before adding any content to the ChooseMasterPage.aspx page take a moment to update the page's code-behind class so that it derives from BasePage (rather than System.Web.UI.Page). Next, add a DropDownList control to the page, set its ID property to MasterPageChoice, and add two ListItems with the Text values of '~/Site.master' and '~/Alternate.master'.

Add a Button Web control to the page and set its ID and Text properties to SaveLayout and 'Save Layout Choice', respectively. At this point your page's declarative markup should look similar to the following:

When the page is first visited we need to display the user's currently selected master page choice. Create a Page_Load event handler and add the following code:

The above code executes only on the first page visit (and not on subsequent postbacks). It first checks to see if the Session variable MyMasterPage exists. If it does, it attempts to find the matching ListItem in the MasterPageChoice DropDownList. If a matching ListItem is found, its Selected property is set to true.

We also need code that saves the user's choice into the MyMasterPage Session variable. Create an event handler for the SaveLayout Button's Click event and add the following code:

Note

Display Masters

By the time the Click event handler executes on postback, the master page has already been selected. Therefore, the user's drop-down list selection won't be in effect until the next page visit. The Response.Redirect forces the browser to re-request ChooseMasterPage.aspx.

With the ChooseMasterPage.aspx page complete, our final task is to have BasePage assign the MasterPageFile property based on the value of the MyMasterPage Session variable. If the Session variable is not set have BasePage default to Site.master.

Note

I moved the code that assigns the Page object's MasterPageFile property out of the OnPreInit event handler and into two separate methods. This first method, SetMasterPageFile, assigns the MasterPageFile property to the value returned by the second method, GetMasterPageFileFromSession. I made the SetMasterPageFile method virtual so that future classes that extend BasePage can optionally override it to implement custom logic, if needed. We'll see an example of overriding BasePage's SetMasterPageFile property in the next tutorial.

With this code in place, visit the ChooseMasterPage.aspx page. Initially, the Site.master master page is selected (see Figure 6), but the user can pick a different master page from the drop-down list.

Figure 06: Content Pages are Displayed Using the Site.master Master Page (Click to view full-size image)

Figure 07: Content Pages are Now Displayed Using the Alternate.master Master Page (Click to view full-size image)

Summary

When a content page is visited, its Content controls are fused with its master page's ContentPlaceHolder controls. The content page's master page is denoted by the Page class's MasterPageFile property, which is assigned to the @Page directive's MasterPageFile attribute during the Initialization stage. As this tutorial showed, we can assign a value to the MasterPageFile property as long as we do so before the end of the PreInit stage. Being able to programmatically specify the master page opens the door for more advanced scenarios, such as dynamically binding a content page to a master page based on external factors.

Happy Programming!

Further Reading

For more information on the topics discussed in this tutorial, refer to the following resources:

About the Author

Scott Mitchell, author of multiple ASP/ASP.NET books and founder of 4GuysFromRolla.com, has been working with Microsoft Web technologies since 1998. Scott works as an independent consultant, trainer, and writer. His latest book is Sams Teach Yourself ASP.NET 3.5 in 24 Hours. Scott can be reached at mitchell@4GuysFromRolla.com or via his blog at http://ScottOnWriting.NET.

Special Thanks To

This tutorial series was reviewed by many helpful reviewers. Lead reviewer for this tutorial was Suchi Banerjee. Interested in reviewing my upcoming MSDN articles? If so, drop me a line at mitchell@4GuysFromRolla.com

SAP S/4HANA Article Master

Hi ?,

This article blog is about the Article master or Material Master life cycle. In this blog post, I have tried to explain about the approach on how to define article structures in SAP S/4HANA, the cycle of material master and how to load it to SAP S/4HANA

When I started my Material master career, I had struggled with the below questions.

What is Material/Article?

How many types of Materials (and relationships among them) would be there and how to differentiate?

What is the structure in SAP S/4HANA?, etc.

Let’s start the technical part

The material master contains information on all the materials that a company procures or produces, stores, and sells. It is the company’s central source for retrieving material-specific data. This information is stored in the individual material master record

In a layman language, The Article Master or Material Master is all about what a company produces and sells. To keep all the information from product to product and its selling information along with different varieties available including final offering price to customers/end-user.

The material master is used by all components in the SAP Logistics System. The integration of all material data in a single database object eliminates redundant data storage. In the SAP Logistics System, the data contained in the material master is required.

Article Category

The article type (MARA-ATTYP) determines fundamentally, how the article will be stored on the database and how it will react. Essentially the following values are possible:

  1. Single material (industry) (MARA-ATTYP initial): ‚Standard’-Materials of non-Retail systems, created for instance by MM01.
  2. Single article (MARA-ATTYP = 00): Individually created articles like standard-materials.
  3. Generic article (MARA-ATTYP = 01): Generic articles do not exist physically and are not sold but do only exist as a data reference for variants.
  4. Variants (MARA-ATTYP = 02): Article of the kind of the generic article, but with special characteristic values. To the generic article ‘shirt’ for example, one can have the variant: shirt, white, size XL’.
  5. Sales Set (MARA-ATTYP = 10): A set is a combination of several articles that are bought individually and sold together, for example, a bottle of wine together with two wine glasses. The components are been deposit in the basic data view at the button ‘components’. Technically, a set is handled like a BOM and stored in BOM database tables. You should not maintain a set by BOM transactions, however.
  6. Prepack (MARA-ATTYP = 11): A lot is a collection of different articles that are bought together and sold individually, thus more or less the opposite of a set. Shoes would be a good example: They are bought also a collection of shoes with different sizes (for example one of size 39 three of size 40 … two of size 45 etc.). Prepack allocation plans are maintained in transaction WSTN11. From a technical point of view, prepacks are also plant independent BOMs.
  7. Display (MARA-ATTYP = 12): A Display is a collection of articles that are, like prepack, bought together and sold individually, including special packaging. An example would be at Christmas time the paper figure of Santa Claus, holding different types of chocolate: the manufacturer delivers the whole figure, the store sells the individual chocolates. Again, this is technically a BOM.
  8. Material group article (MARA-ATTYP = 20)
  9. Hierarchy article (MARA-ATTYP = 21)
  10. Group material (MARA-ATTYP = 22)
  11. Material group reference article (MARA-ATTYP = 30)

Let’s talk about a few main(regularly used) material types like single, generic, variant, PIR, displays and BOMS.

Single-Article

Individually created a standard article in SAP retail systems. A single article has no variant defining characteristics, such as; flavor, size and/or color. Single articles are not connected to any other article in standard functionalities

Generic-Article

Generic-Articles are not real articles and cannot be sold. They serve only as a data reference for variants/varieties. Although generic articles exist in the systems, they have no inventory management. Generic-Article can be regarded as “parents” of the individual variant articles.

Generic Article is a special type of configurable article that can be used for structuring and maintaining variants of an article. Variants are articles that differ only in certain characteristics such as color, size, or flavor. They grouped together as generic articles.

In Layman language –> Generic articles do not exist physically and are not sold but exist as a data reference for variants. Generic articles exist in systems but have no inventory management.

Variant article

Child article of the generic article, but with special characteristic values assignment, like flavors. Variant articles are always created via generics and will inherit characteristics from the generic.

Display article

A Display is a collection of articles that are like the prepack, bought together and sold individually. As components, you are not restricted to use either single articles or variants of different generic articles. Within display articles, it is possible to use articles from different Merchandise Categories.

Purchase info record

Serves as a source of information for Purchasing. The purchasing info record contains information on a specific material and a vendor supplying the material. For example, the vendor’s current pricing is stored in the info record.

Sales set

A set is a combination of several articles that are bought individually and sold together, for example, a bottle of wine together with two wine glasses. Individual components can have a different price, different tax code but will be sold together with one price.

Prepack

A prepack is a collection of different articles that are bought together and sold individually. Within prepacks you are restricted to use only variant articles. All variant articles must be assigned to the same merchandise category.

BOM (bill of materials)

A formally structured list of the components that make up a product or assembly. The list contains the object number of each component, together with the quantity and unit of measure.

Let’s start creating a material

Step 1:

Go to transaction code MM41 to create a material

There you can see multiple types of material types as below

Hp scan for mac os x. Step 2:

Select your material type, in our example, I have selected some sample material type and other details like material group, material category, sales org, etc.

Now a screen appears for all view(w) in Tab screen.

  1. Select the Basic Data1 tab.
  2. Enter the material category–> Here we are creating single material, hence select ’00’
  3. Enter the material group.

Step 3:

Once after filling the details, get into views to fill the values as below:

Step 4:

Go to sales, purchasing and other tabs as per your requirement and fill details

Sales:

and enter sales organization details as follows:

Step 5:

Once filled the required views, save it.

Let us see our created material

Transaction code:

MM43

Step 6:

Tcode MM43 shows the materials been created.

Step 7:

Select the views which were created as follows(like basic, sales, purchasing, and POS)

In this case, I have created basic, sales, purchase as well.

I am selecting only basic and purchase.

Step 8:

The Basic view would be shown as below once created.

Step 9:

DC View:

If you want to change the material details the go to transaction code MM42and make necessary changes and save it.

Step 10:

Change the material details with MM42 TCODE as explained above

In my next blog for the continuation to this material blog, i will try to put up the differentiation between single, generic and variants nad display with more examples.

In the next blog posts, we can discuss more on processing.

That’s all about this blog post.

Display Master Data Sap

Thanks for reading, please provide your feedback. 🙂

Happy Learning, see you in my next blog 🙂

Display Master Flags

Thanks,

Master Displays High Point Nc

Venkatesh Golla