Can anyone take me in step by step to understand MVC design pattern

Hi Everybody,
I just killed myself trying to understand what is MVC and how to apply it to flash (AS3) the easy way but I could not, there is a lot of information on MVC on google but it is very hard I can not understand it and apply it to anykind of application or game, I had created a lot of games but using flash timeline (puzzle, multipel choice, simple physics interaction) and I understand that we must separte the design interface and the data of the application and the code into diffrent blocks, but what I understand is:
1- making a SWC for the design. (View)
2- use XML or TEXT file for the data.(Model)
3- classes for the code.(Controller)
this is MVC that I understand, but all the tutorials on the net is about creating 3 classes and calling each other in a very diffuclt code to understand, I realy need to work the proffessional way but it is very hard and far away from my understanding.
if any body have a way to let me understand it like making a template for every MVC application or game and explain to me his/her code it will be great, some of my questions are:
1- how we say about a class that it is the view part of the pattern while we have a SWC that hold the intreface graphics?
2- dose making a sepreate class to load and fetch external data sources like xml and text means I had created the model part of the pattern, and why the tutorials on the net do not say that if it is true?
3- making the logic of the application or game sepreated into class for each logic block, makes the controller part of the pattern?
I realy do not know what to ask more because I do not understand the MVC design pattern
Please note: if someone can chat with me on skype it will be great, but if you want to explain here also good but I need to understand it is making me crazy!
thanks in advance

I'm not a pro in this either, but a few things about it make sense to me.
First you don't need to have only three parts, but all the parts you have should be one of the three things (maybe). And they don't need to be a swc, XML/text, or a class.
I recommend the Clock tutorial from Colin Moock's book, Essential Actionscript.And here is someone walking you through it. http://flylib.com/books/en/4.14.1.137/1/
In that example there is a model which keeps track of time like the hours, minutes, seconds, if the clock is running.
There is a controller that lets you set the time, reset the clock, stop the clock, that kind of stuff. This isn't the buttons and stuff that allow you to do that, this is the code that takes the input from the buttons and communicates with the model.
So there would be a view of the buttons that the user would want to push to set the clock or what have you.
And there is a view presenting the time. Now there might be two (or more views). For example you might have an analog clock and a digital clock.
Work through that tutorial. It helped me.

Similar Messages

  • Can anyone recommend a good tutorial on how to use pre-designed website templates in Dreamweaver? Thks

    I am fairly new to Dreamweaver (cs6), having previously designed and maintained a few sites using Freeway. I purchased a template from TemplateMonster.com in the hope that this would simplify the creation of a new site. The template came without any instructions other than how to unzip the file. Their helpline really isn't helpful at all. Can anyone recommend an online tutorial on how to use a predesigned template? Lynda.com doesn't have one. Thanks!

    I found this page :
    http://www.templatemonster.com/dreamweaver-templates.php
    Followed a link. Ended up here :
    http://www.webdesign.org/tutorials/html-and-css/page-1.html
    Did a search. Found this :
    http://www.webdesign.org/search.html?keywords=dreamweaver&category=6
    Then this :
    http://www.webdesign.org/web-design-basics/templates-tuning/working-with-templat e-using-html-editor.1546.html

  • I have a file where I am running out of memory can anyone take a look at this file and see?

    I am trying to make this file 4'x8'.
    Please let me know if anyone can help me get this file to that size.
    I have a quad core processor with 6 gig of ram and have gotten the file to 50"x20", but I run out of memory shortly thereafter.  Any help would be appreciated.
    Thanks,

    Where to begin? You should look into using a swatch pattern instead of those repeating circles. Also, I see that each circle in your pattern is actually a stack of four circles, but I see no reason why. Perhaps Illustrator is choking on the huge number of objects required to make that patterns as you haave constructed it.
    Here is a four foot by eight foot Illustrator file using a swatch pattern. Note that, despite the larger size, the file is less than one 16th the size.

  • Can anyone explain me step by step procedure for creating badi?

    hi all,,
    Can anyone explain me about badi with step by step procedure with an example like trsn code mm01, xd01 etc.
    And what is the significance of badi?
    regs
    hari

    Hi
    Business Add-Ins
    Business Add-Ins are a new SAP enhancement technique based on ABAP Objects. They can be inserted into the SAP System to accommodate user requirements too specific to be included in the standard delivery. Since specific industries often require special functions, SAP allows you to predefine these points in your software.
    As with customer exits (SMOD/CMOD [Page 40]), two different views are available:
    • In the definition view, an application programmer predefines exit points in a source that allow specific industry sectors, partners, and customers to attach additional software to standard SAP source code without having to modify the original object.
    • In the implementation view, the users of Business Add-Ins can customize the logic they need or use a standard logic if one is available.
    In contrast to customer exits, Business Add-Ins no longer assume a two-system infrastructure (SAP and customers), but instead allow for multiple levels of software development (by SAP, partners, and customers, and as country versions, industry solutions, and the like). Definitions and implementations of Business Add-Ins can be created at each level within such a system infrastructure.
    SAP guarantees the upward compatibility of all Business Add-In interfaces. Release upgrades do not affect enhancement calls from within the standard software nor do they affect the validity of call interfaces. You do not have to register Business Add-Ins in SSCR.
    The Business Add-In enhancement technique differentiates between enhancements that can only be implemented once and enhancements that can be used actively by any number of customers at the same time.
    In addition, Business Add-Ins can be defined according to filter values. This allows you to control add-in implementation and make it dependent on specific criteria (on a specific Country value, for example). All ABAP sources, screens, GUIs, and table interfaces created using this enhancement technique are defined in a manner that allows customers to include their own enhancements in the standard.
    A single Business Add-In contains all of the interfaces necessary to implement a specific task. In Release 4.6A, program and menu enhancements can be made with Business Add-Ins. The actual program code is enhanced using ABAP Objects. In order to better understand the programming techniques behind the Business Add-In enhancement concept, SAP recommends reading the section on ABAP Objects
    DEFINING THE BADI
    1) execute Tcode SE18.
    2) Specify a definition Name : ZBADI_SPFLI
    3) Press create
    4) Choose the attribute tab. Specify short desc for badi.. and specify the type :
    multiple use.
    5) Choose the interface tab
    6) Specify interface name: ZIF_EX_BADI_SPFLI and save.
    7) Dbl clk on interface name to start class builder . specify a method name (name,
    level, desc).
    Method level desc
    Linese;ection instance methos some desc
    8) place the cursor on the method name desc its parameters to define the interface.
    Parameter type refe field desc
    I_carrid import spfli-carrid some
    I_connid import spefi-connid some
    9) save , check and activate…adapter class proposed by system is
    ZCL_IM_IM_LINESEL is genereated.
    IMPLEMENTATION OF BADI DEFINITION
    1) EXECUTE tcode se18.choose menuitem create from the implementation menubar.
    2) Specify aname for implementation ZIM_LINESEL
    3) Specify short desc.
    4) Choose interface tab. System proposes a name fo the implementation class.
    ZCL_IM_IMLINESEL which is already generarted.
    5) Specify short desc for method
    6) Dbl clk on method to insert code..(check the code in “AAA”).
    7) Save , check and activate the code.
    Some useful URL
    http://www.esnips.com/doc/e06e4171-29df-462f-b857-54fac19a9d8e/ppt-on-badis.ppt
    http://www.esnips.com/doc/10016c34-55a7-4b13-8f5f-bf720422d265/BADIs.pdf
    http://www.esnips.com/doc/43a58f51-5d92-4213-913a-de05e9faac0d/Business-Addin.doc
    http://www.esnips.com/doc/1e10392e-64d8-4181-b2a5-5f04d8f87839/badi.doc
    www.sapgenie.com/publications/saptips/022006%20-%20Zaidi%20BADI.pdf
    http://www.sapdevelopment.co.uk/enhance/enhance_badi.htm
    http://help.sap.com/saphelp_nw04/helpdata/en/04/f3683c05ea4464e10000000a114084/content.htm
    http://help.sap.com/saphelp_nw04/helpdata/en/e6/d54d3c596f0b26e10000000a11402f/content.htm
    http://help.sap.com/saphelp_nw2004s/helpdata/en/c2/eab541c5b63031e10000000a155106/frameset.htm
    Now write a sample program to use this badi method..
    Look for “BBB” sample program.
    “AAA”
    data : wa_flights type sflight,
    it_flights type table of sflight.
    format color col_heading.
    write:/ 'Flight info of:', i_carrid, i_connid.
    format color col_normal.
    select * from sflight
    into corresponding fields of table it_flights
    where carrid = i_carrid
    and connid = i_connid.
    loop at it_flights into wa_flights.
    write:/ wa_flights-fldate,
    wa_flights-planetype,
    wa_flights-price currency wa_flights-currency,
    wa_flights-seatsmax,
    wa_flights-seatsocc.
    endloop.
    “BBB”
    *& Report ZBADI_TEST *
    REPORT ZBADI_TEST .
    tables: spfli.
    data: wa_spfli type spfli,
    it_spfli type table of spfli with key carrid connid.
    *Initialise the object of the interface.
    data: exit_ref type ref to ZCL_IM_IM_LINESEL,
    exit_ref1 type ref to ZIF_EX_BADISPFLI1.
    selection-screen begin of block b1.
    select-options: s_carr for spfli-carrid.
    selection-screen end of block b1.
    start-of-selection.
    select * from spfli into corresponding fields of table it_spfli
    where carrid in s_carr.
    end-of-selection.
    loop at it_spfli into wa_spfli.
    write:/ wa_spfli-carrid,
    wa_spfli-connid,
    wa_spfli-cityfrom,
    wa_spfli-deptime,
    wa_spfli-arrtime.
    hide: wa_spfli-carrid, wa_spfli-connid.
    endloop.
    at line-selection.
    check not wa_spfli-carrid is initial.
    create object exit_ref.
    exit_ref1 = exit_ref.
    call method exit_ref1->lineselection
    EXPORTING
    i_carrid = wa_spfli-carrid
    i_connid = wa_spfli-connid.
    clear wa_spfli.
    u can find BADI's in different ways...
    1>First go to any transaction->iN THE menu bar SYSTEM->STATUS->Get the program name ->double click->u will go to the program attached to the tcode.Now search term will be CALL CL_EXITHANDLER.Now u will get list of BADI'S available..
    2>Goto SE24->Give class name as CL_EXITHANDLER->Display->double click on get_instance mathod->Now u will go inside the method->Now put break point on the cl_exithandler.Now go to any transaction code and pass dat..U will see that it will be stopped on the break point which u set on the cl_exithandler...In the exit name u can find list of badi's attached to the tcode..
    There are multiple ways of searching for BADI.
    • Finding BADI Using CL_EXITHANDLER=>GET_INSTANCE
    • Finding BADI Using SQL Trace (TCODE-ST05).
    • Finding BADI Using Repository Information System (TCODE- SE84).
    1. Go to the Transaction, for which we want to find the BADI, take the example of Transaction VD02. Click on System->Status. Double click on the program name. Once inside the program search for ‘CL_EXITHANDLER=>GET_INSTANCE’.
    Make sure the radio button “In main program” is checked. A list of all the programs with call to the BADI’s will be listed.
    The export parameter ‘EXIT_NAME’ for the method GET_INSTANCE of class CL_EXITHANDLER will have the user exit assigned to it. The changing parameter ‘INSTANCE’ will have the interface assigned to it. Double click on the method to enter the source code.Definition of Instance would give you the Interface name.
    2. Start transaction ST05 (Performance Analysis).
    Set flag field "Buffer trace"
    Remark: We need to trace also the buffer calls, because BADI database tables are buffered. (Especially view V_EXT_IMP and V_EXT_ACT)
    Push the button "Activate Trace". Start transaction VA02 in a new GUI session. Go back to the Performance trace session.
    Push the button "Deactivate Trace".
    Push the button "Display Trace".
    The popup screen "Set Restrictions for Displaying Trace" appears.
    Now, filter the trace on Objects:
    • V_EXT_IMP
    • V_EXT_ACT
    Push button "Multiple selections" button behind field Objects
    Fill: V_EXT_IMP and V_EXT_ACT
    All the interface class names of view V_EXT_IMP start with IF_EX_. This is the standard SAP prefix for BADI class interfaces. The BADI name is after the IF_EX_.
    So the BADI name of IF_EX_CUSTOMER_ADD_DATA is CUSTOMER_ADD_DATA
    3. Go to “Maintain Transaction” (TCODE- SE93).
    Enter the Transaction VD02 for which you want to find BADI.
    Click on the Display push buttons.
    Get the Package Name. (Package VS in this case)
    Go to TCode: SE84->Enhancements->Business Add-inns->Definition
    Enter the Package Name and Execute.
    Here you get a list of all the Enhancement BADI’s for the given package MB.
    The simplese way for finding BADI is
    1. chooes Tcode Program & package for that Tcode.
    2. Go to Tcode se18
    3. Press F4
    4. search by package or by program.
    http://help.sap.com/saphelp_nw04/helpdata/en/eb/3e7cf7940e11d295df0000e82de14a/frameset.htm
    and
    http://help.sap.com/saphelp_nw04/helpdata/en/eb/3e7cf7940e11d295df0000e82de14a/frameset.htm
    Badihttp://help.sap.com/saphelp_erp2005/helpdata/en/73/7e7941601b1d09e10000000a155106/frameset.htm
    http://support.sas.com/rnd/papers/sugi30/SAP.ppt
    http://www.sts.tu-harburg.de/teaching/sap_r3/ABAP4/abapindx.htm
    http://members.aol.com/_ht_a/skarkada/sap/
    http://www.ct-software.com/reportpool_frame.htm
    http://www.saphelp.com/SAP_Technical.htm
    http://www.kabai.com/abaps/q.htm
    http://www.guidancetech.com/people/holland/sap/abap/
    http://www.planetsap.com/download_abap_programs.htm
    http://help.sap.com/saphelp_nw04/helpdata/en/c8/1975cc43b111d1896f0000e8322d00/content.htm
    /people/thomas.weiss/blog/2006/04/03/how-to-define-a-new-badi-within-the-enhancement-framework--part-3-of-the-series
    /people/thomas.weiss/blog/2006/04/18/how-to-implement-a-badi-and-how-to-use-a-filter--part-4-of-the-series-on-the-new-enhancement-framework
    http://esnips.com/doc/e06e4171-29df-462f-b857-54fac19a9d8e/ppt-on-badis.ppt
    http://esnips.com/doc/43a58f51-5d92-4213-913a-de05e9faac0d/Business-Addin.doc
    http://esnips.com/doc/10016c34-55a7-4b13-8f5f-bf720422d265/BADIs.pdf
    http://esnips.com/doc/1e10392e-64d8-4181-b2a5-5f04d8f87839/badi.doc
    http://esnips.com/doc/365d4c4d-9fcb-4189-85fd-866b7bf25257/customer-exits--badi.zip
    http://esnips.com/doc/3b7bbc09-c095-45a0-9e89-91f2f86ee8e9/BADI-Introduction.ppt
    http://help.sap.com//saphelp_470/helpdata/EN/eb/3e7cee940e11d295df0000e82de14a/frameset.htm
    sample code for Purchase requisition
    BAdI Name: ZPUR_RFQ (Implementation name) Purchase Requisitions
    Definition Name: ME_REQ_POSTED
    Interface Name : IF_EX_ME_REQ_POSTED
    Implementing Class: ZCL_IM_PUR_REQ
    Method :            POSTED
    METHOD if_ex_me_req_posted~posted .
      DATA : v_mtart TYPE mtart.
      DATA l_s_eban TYPE ueban.
      LOOP AT im_eban INTO l_s_eban.
        IF l_s_eban-estkz NE 'B'.
          CLEAR v_mtart.
          SELECT SINGLE  mtart INTO v_mtart FROM mara WHERE matnr = l_s_eban-matnr.
          IF v_mtart EQ 'ZERS' OR v_mtart EQ 'FHMI' OR v_mtart EQ 'UNBW'.
            MESSAGE e000(zm_msg) WITH 'You are not allowed' 'to create PR for stock items'.
          ENDIF.
        ENDIF.
        IF  l_s_eban-knttp NE 'F' OR l_s_eban-pstyp NE '9'.
          IF l_s_eban-knttp NE 'A'.
            IF ( l_s_eban-pstyp NE '9' AND l_s_eban-pstyp NE 'D' )  AND l_s_eban-matnr EQ
    space.
              MESSAGE e000(zm_msg) WITH 'You cannot create' 'a PR without material number'.
            ENDIF.
          ENDIF.
        ENDIF.
      ENDLOOP.
    ENDMETHOD.
    <b>Reward points for useful Answers</b>
    Regards
    Anji

  • Step by step reports creation

    Hi,
    We are doing one migration project i.e. already it is production to some sompany.We have to do develop exactly and we have no system access and document we have only portal access and SAP R/3 data.
    We have identified infoobects characteristics and keyfifures and we mapped charstics with source field mapping.We identified datasources and extractors also and we identified infocubes and ods and multiproviders also.we have to develop 70 reports.What next step we have to take .Can anyone explain in detail.What next steps we have to do step by step in detail level.
    Sridhar

    Dear sridhar k  ,
    You have to check out the pros and cons before
    creating report
    -Whether the business had the necessary skills to
    complete the task
    -The complexity of the reports
    -The sensitivity of data
    -Using report painter/writer
    - whether to use SAP Query
    -the difference between inner and outer joins and also,
    table access to reconcile the data before signing off
    the reports.
    Again, it depends on your business.
    How to generate reports through BEx
    http://help.sap.com/saphelp_nw04/helpdata/en/9d/76563cc368b60fe10000000a114084/frameset.htm
    Tools for creating Reports
    http://help.sap.com/saphelp_nw70/helpdata/EN/f1/0a55dfe09411d2acb90000e829fbfe/frameset.htm
    Abab programs for creatinfg Reports
    http://www.geocities.com/mpioud/Abap_programs.html
    Hope it helps
    regards
    Bala

  • Step by step installation for java card kit 2.2.2

    can anyone help me with a complete step by step installation information for java card kit 2.2.2, i already tried to follow the instruction given in the software i download n still stuck in setting the java path. any recommendation
    thanks for the help

    The javacard API is for developing applets on card. Java 6 is for developing clients off-card.
    yes u can use any java IDEs like netbeans or jcreator. But you will have to select the libraries within the downloaded java card kit folder for ur IDE in order to compile successfully.
    try reading up the documentation and run the samples in the java card kit. thats a good place to start.

  • Can anyone let me know how to integrate crystal reports with bi 7?

    HI all,
    Can anyone pls let me know the steps involved in integrating crystal reports with bi 7?
    thanks
    Pooja

    1.install BO client tools
    2. install crystal reports
    3.install sap integration kit
    once you install in above sequence you will be able to pull data from BW system.

  • XI - BPM step by step  tutorial

    Hi all
    I am trying to understand how XI-BPM engine works.. Reading documment, i got pretty good high level understanding but trying to find  example so that i can test my understanding in our Sandbox environment..
    Can anyone please point to me to  step by step XI-BPM tutorial..
    Thanks all

    Hi Ravi srivastave  ,
    Business Process Management (BPM) has become a critical part of enterprise development.business process management
    Business process management (BPM) is a systematic approach to improving an organization's business processes. BPM activities seek to make business processes more effective, more efficient, and more capable of adapting to an ever-changing environment. BPM is a subset of infrastructure management, the administrative area of concern dealing with maintenance and optimization of an organization's equipment and core operations.
    A business process is a set of coordinated tasks and activities, conducted by both people and equipment, that will lead to accomplishing a specific organizational goal. The Business Process Management Initiative (BPMI), a non-profit organization, exists to promote the standardization of common business processes, as a means of furthering e-business and business-to-business (B2B) development. To this end, the organization has developed the Business Process Modeling Language (BPML), an Extensible Markup Language (XML)-based metalanguage for modeling business processes.
    BPM(Business Process Management) is a structured approach that models an enterprise's human and machine tasks and the interactions between them as processes. BPM software uses a dashboard interface that offers a high-level view of the operation that typically crosses departmental boundaries. The dashboard integrates with all the applications that perform processes as well as related databases and can be used to trigger the start of a unit of work.
    Evolving from document management, workflow and enterprise application integration (EAI), a BPM system can monitor and analyze tasks in realtime and set off alerts when specified limits are exceeded or a response is not received within a specified time.
    Management for People/Machine Systems
    For decades, systems that are entirely automated have more or less taken care of themselves. However, operations requiring a mix of people and machine procedures employ BPM as a higher-level management system that keeps track of them both.
    Over time, a BPM system can provide historical data of human-machine interactions that might be extremely difficult to obtain from information systems, especially disparate systems from several departments or systems running on different platforms.
    The BPM Suite (BPMS)
    A BPM system may comprise a variety of independent packages or a comprehensive business process management suite (BPMS), which includes tools for modeling and analysis, application integration, business rules support, business intelligence (BI), activity monitoring and optimization. Advanced BPMSs provide a development tool for creating forms-based applications, which are often the start of many business processes.
    An introduction to Business Process Management
    http://www.avelon.nl/downloads/Introduction_BPM.pdf
    business process management
    http://whatis.techtarget.com/definition/0,,sid9_gci1088464_tax304528,00.html
    BUSINESS PROCESS MANAGEMENT WITH SAP NetWeaver™
    http://www.sap.com/platform/netweaver/pdf/BWP_NetWeaver_BPM.pdf
    Business Process Management Essentials
    http://www.glintech.com/downloads/BPM%20Essentials%20with%20Open%20Source.pdf
    Business Process Management
    http://www.seeburger.es/fileadmin/es/pdf/SEEBURGER_-_Business_Integration_Server__TA000714BPM_.pdf
    BPM Process Patterns Repeatable Designs for BPM Process Models
    http://edocs.bea.com/albsi/docs55/pdfs/BPM%20Process%20Patterns%20White%20Paper.pdf
    Business Process Management -Modeling to Execution
    http://www30.sap.com/korea/company/events/techday05/img/data_06.pdf
    BUSINESS PROCESS MANAGEMENT (BPM)
    https://www.sdn.sap.com/irj/servlet/prt/portal/prtroot/docs/library/uuid/ed49db90-0201-0010-c4a5-c520866a19c7
    BPM Process Patterns:Repeatable Design for BPM Process Models
    http://www.bptrends.com/publicationfiles/05%2D06%2DWP%2DBPMProcessPatterns%2DAtwood1%2Epdf
    Patterns: SOA Foundation - Business Process Management Scenario
    http://www.redbooks.ibm.com/redbooks/pdfs/sg247234.pdf
    A BPM Roadmap
    /people/marilyn.pratt/blog/2007/10/12/clubhouse-las-vegas-a-bpm-roadmap
    cheers!
    gyanaraj
    ****Pls reward points if u find this helpful

  • I receive the following error message when trying to publish site changes to iweb: "Can't create the file "shapeimage_2_link_0.png." The disk may be damaged or full, or you may not have sufficient access privileges." Can anyone assist?

    I receive the following error message when trying to publish site changes to iweb:
    "Can’t create the file “shapeimage_2_link_0.png.” The disk may be damaged or full, or you may not have sufficient access privileges."
    Can anyone assist?

    Try the troubleshooting steps under "Fix iWeb" here...
    http://www.iwebformusicians.com/iWeb/iWeb-Tips.html
    ... and then republish.

  • SCCM 2012 R2 Mac Management - Step-by-Step

    Hi,
    Can anyone please shed some lights on steps I have taken to manage Mac?
    Active Directory:
    Create 2 groups and named them as follow
    ConfigMgr_IIS_SERVERS_CERTIFICATE
    ConfigMgr_MAC_ENROLLMENT_USERS
    PKI:
    Duplicate following templates
    Web Server Authentication ==> Duplicate and Rename it to ConfigMgr_WEBSERVER_CERT
    ==>Allow Read and Enroll Permission to
    ConfigMgr_IIS_SERVERS_CERTIFICATE Group
    Authenticated Session ==> Duplicate and Rename it ConfigMgr_Mac_CERT
    Workstation Authentication ==> Duplicate and Rename it to ConfigMgr_DistributionPoint_CERT ==> Allow Read and Enroll Permission to
    ConfigMgr_IIS_SERVERS_CERTIFICATE Group ==> Click on Subject tab
    and change subject name format:” to Command name and uncheck “User principle name (UPN)” box
    SCCM 2012:
    Let's say for example there would be a dedicated server to support Mac Management and called it
    "SCCM MAC SERVER". Add following roles on this server
    Enrollment Point
    Enrollment Proxy Point
    Management Point (Client Connections: HTTPS, "Allow mobile devices and Mac computers to use this management point" option checked)
    Distribution Point (HTTPS, Allow intranet and internet connections)
    Add "SCCM MAC SERVER" to AD group "ConfigMgr_IIS_SERVERS_CERTIFICATE"
    Open SCCM Console on CAS -> Administrations -> Client Settings -> Default Settings --> Properties -> Enrollment. Make following changes
     Allow users to enroll mobiledevices and mac computers ->YES
    Click on Set Profile button to create new profile
    Give a name "ConfigMgr - Mobile and Mac Profile"
    Click on Add button, select Enterprise CA authority
    Select ConfigMgr_Mac_CERT and click OK to save the profile
    Assign desired users to AD group ConfigMgr_MAC_ENROLLMENT_USERS
    I will highly appreciate if anyone can give their feedback as if I missed any step in here or I am good to proceed with mac management.
    Thank you and Regards,
    Hunzai

    I think you are correct with 3, I have 4 but have one for Windows clients too.
    1 Web Server.
    1 Distribition Point
    1 Windows client
    1 Mac client.
    I have used this blog which I found helpful.
    http://sccmguy.com/2013/11/26/pki-certificates-for-configuration-manager-2012-r2-part-1-of-4-web-server-certificate/
    There are 4 parts with links, they are just an exact replica from Microsoft with the exact same wording but pictures too.
    http://technet.microsoft.com/en-us/library/gg682023.aspx
    Mac cert details here:
    http://technet.microsoft.com/en-us/library/gg682023.aspx#BKMK_MacClient_SP1

  • HT4539 i have downloaded free books but can not open. can anyone help

    Hi, as above, I have downloaded free books, but am unable to open to ready,
    Can anyone help.
    Please go through steps in idiot fasion for me.
    Thanks
    Tyrone

    If you mean iBooks, most can only be viewed on an iOS device (iPhone, iPad, iPod touch) in the iBooks app. Only the public domain Project Gutenberg books can be read on a computer, and for that you will need an application that can open ePub files.
    If that's not what you meant, please explain further where you are getting these books and how you are attempting to view them.
    Regards.

  • BI 7 Step By Step manual - Book

    Hi Frnds,
    Can anyone send me the BI 7 step by step Materail. It would be helpful for me to practise well. Please send to my mail id. [email protected]
    Thanks and Regards,
    Ravi Basavaiah.

    Hi Ravi,
    Plz refer the following link to get online e-book for SAP BW step-by-step guide.
    http://safari.phptr.com/0201703661/app04
    Regards
    jayaprakash j

  • Purchase Order Step-by-Step

    Dear All Experts,
                               Can anyone help me out with the step-by-step configuration process of creating a Purchase order. this will help me to go ahead.
    Thanks to all,
    Mohit.

    Hello Mohit,
    Please check configuration documents in SAP Solution Manager. or
    <a href="http://service.sap.com/ibc-srm">http://service.sap.com/ibc-srm</a>
    Regards,
    Masa

  • Step by Step procedure in broadcasting the web templates?

    Hi,
    Can anyone help me in giving the step by step procedure for broadcasting the webtemplates.
    In how many ways, we can broadcast the webtemplates?

    Hi Siva,
    I have a problem like broadcasting webtemplates is not taking place for certain users.
    The problem is like:
    An error came while using Web Aplication Designer functionality.
    Can you please help me to resolve this issue.
    X person Developed a web template, but when Y person attempted to broadcast the associated query result, an error message returned indicating access was denied: part of error message Form: PHIO_GET_CONTENT_ACCESS of program SAPLSDCI.
    The same X person developed a web template, but when he attempted to broadcast the associated query result, an error message was returned indicating access was denied.
    From these test results it appears as though the errors encountered are authorization related. It is a requirement that web templates developed by X to be broadcasted.
    I need to understand what permissions the X person requires in order for this to work so that his access can be changed.
    Waiting for quick response.
    Thanks & Regards.

  • Step by step procedure to create Enhancement spots, points and sections

    Hi all,
    Can anyone of you please provide a step by step procedure to create Enhancement spots, Enhancement points and Enhancement Sections and also give a brief explanation about the same ?
    Regards,
    Pramod

    Hi Pramod,
    The enhancement spots are used to manage explicit enhancement options. Enhancement spots carry information about the positions at which enhancement options were created. One enhancement spot can manage several enhancement options of a Repository object. Conversely, several enhancement spots can be assigned to one enhancement option.
    Use
    You create an explicit enhancement option when processing a Repository object with the relevant tool by creating an enhancement spot element definition at a point where this is possible. This enhancement option can then be called at different points using enhancement spot element calls. The enhancement spot element definition and the corresponding enhancement spot element calls make up the definition of an enhancement option. For example, when editing an ABAP program with the ABAP Editor, you can define explicit enhancement options in the form of the ENHANCEMENT-POINT statement, which also represents the element definition and element call.
    Each enhancement spot element definition must be assigned to at least one enhancement spot. For this, an enhancement spot element definition is assigned one or more simple enhancement spots, which in turn are assigned to at least one composite enhancement spot. Simple and composite enhancement spots are Repository objects that form a tree-like structure, where the leaves and branches represent simple and composite enhancement spots respectively. A simple enhancement spot is always assigned to exactly one enhancement technology (ABAP source code enhancement or BAdI).
    Composite enhancement spots are used for the semantic grouping of simple enhancement spots. A composite enhancement spot contains either one or more simple enhancement spots and/or one or more composite enhancement spots of the relevant type. You can use composite enhancement spots to combine simple enhancement spots into meaningful units.
    The statement ENHANCEMENT-POINT can either be entered directly or created by choosing Edit &#8594; Enhancement operations &#8594; Create enhancement in the Enhancement Builder.
    Kindly Reward Points If You Found The Reply Helpful,
    Cheers,
    Chaitanya.

Maybe you are looking for

  • Tree view in applet

    I want to show the file system in my hard-disk in the form of a tree, in a JSP page. Iam calling an applet in that jsp page. This applet in turn calls a java program which prepares a JTree object. But am getting an exception while calling this applet

  • What is a Transient Variable and when should it be used

    Hello everyone, I just want to know the details regarding the transient variable and when should we use it. what is the significance of this variable?

  • TS2972 apple tv and iPhone library issue

    hi, I have an apple tv set up and I can see my computers library on the list on the tv, my question is how / can I set apple tv up so that I can see my wife's music from her iPhone on apple tv?

  • Vendors wanting payment in more than 1 currency

    I have an issue whereby some vendors want to be paid in different currencies dependant on the how a given material was set up, for example material X set up as Euro - material Y set up as GBP I really don't want the same legal entity set up twice at

  • Single slash to Double Slash Convertion

    hi all, i want to replace single slash (\) by double slash( ) in a path , ex : ...\..\.. should become ..   when i m trying to do so,it takes it as an escape sequence character. Can anyone help me plz