Bussiness blue print for SFC

Hi all,
How to prepare business blue print for SFC(shop floor control) in PP.What are all aspects we need to consider to prepare blue print.if you have any document plz mail me at [email protected]
Thanks a lot
pavan

Check the following LInks,
http://www.abs-europe.com/assets/Image/FAQ/What_is_an_SAP_Business_Blueprint.pdf
http://help.sap.com/saphelp_sm40/helpdata/en/45/f6da633a292312e10000000a11466f/content.htm
http://www.sapfans.com/sapfans/asap/be_04_e.htm
http://www.idi.ntnu.no/emner/tdt4730/pdf/ch2.pdf

Similar Messages

  • Bussiness blue print for MM Module

    Hi MM Experts,
    Can anybody give  me bussiness blueprint of MM module.
    Thanks in advance

    Check the following LInks,
    http://www.abs-europe.com/assets/Image/FAQ/What_is_an_SAP_Business_Blueprint.pdf
    http://help.sap.com/saphelp_sm40/helpdata/en/45/f6da633a292312e10000000a11466f/content.htm
    http://www.sapfans.com/sapfans/asap/be_04_e.htm
    http://www.idi.ntnu.no/emner/tdt4730/pdf/ch2.pdf

  • Bussines blue print for PP

    Hi All,
    I am designing bussiness blue print for production orders and planned orders.
    Could anybody explain me what are the standard data sources,DSO and cubes I need to involve for both prod order and planned order bussines blue print.
    thanks
    raj

    Hi,
    Check this out for an initial analysis and do a simulation of the business content to check the same
    http://help.sap.com/saphelp_nw70/helpdata/en/28/500b3c56488e6be10000000a114084/frameset.htm
    Regards
    Raja

  • BW bussiness blue print

    Hi Every one,
    can anyone plz send the documents for bussiness blue print to my mail id
    [email protected]
    Thanks in advance. plz help me in this regard.
    bye all
    ravi

    Hi Ravi,
    here is the doc you need:
    http://help.sap.com/bp_biv335/BI_EN/documentation/SolutionScope_EN.doc
    Business Blueprint
    In this phase you create a blueprint using the Question & Answer database (Q&Adb), which documents your enterprise’s requirements and establishes how your business processes and organizational structure are to be represented in the SAP System. You also refine the original project goals and objectives and revise the overall project schedule in this phase.
    check these link's as well.
    what does business blue-print consist?
    http://iris.tennessee.edu/Blueprint/BW/BW-Blue%20Print-Final.doc
    http://help.sap.com/bp_biv235/bi_en/html/BWspecific_Info.htm
    http://help.sap.com/bp_biv235/bi_en/documentation/Multi-dimensional_modeling_EN.doc
    https://www.sdn.sap.com/irj/servlet/prt/portal/prtroot/docs/library/uuid/2b50ac90-0201-0010-d597-8d833833f9e0
    https://www.sdn.sap.com/irj/servlet/prt/portal/prtroot/docs/library/uuid/828d9590-0201-0010-95a7-ea8cf8814b94
    https://www.sdn.sap.com/irj/servlet/prt/portal/prtroot/docs/library/uuid/1b439590-0201-0010-ea8e-cba686f21f06
    Also for Bw case studies u can refer to these links
    http://help.sap.com/bp_biv135/index.htm
    http://service.sap.com/bi .
    Check this post:
    /message/1447350#1447350 [original link is broken]
    Hope it helps.
    ****Assign Points If Helpful****
    Regards,
    Ravikanth

  • Blue Print for a Portal project

    Hi,
    Can anyone let me know where I can find a template or sample of a blue print for a portal project? If possible can anyone mail it to me: [email protected] ?
    Thanks and Regards,
    Reena

    Hi Michael,
    Thanks for your reply.
    I tried searching on SAP service marketplace, SDN and help.sap.com. I found many blue prints for non portal projects. Im looking for a portal project blue print. I would appreciate it, if you could point out the exact location of these documents.
    Thanks and Regards,
    Reena

  • Blue print for BP Creation & Base Customization

    Hi i am Kalyan,
    Can any one send me the sample blue print for BP Creation & Base Customization how it will be in a real time project scenario's..
    and documents related to Base Customization/soft copy plz send to my mail id
    Send that to my mail ID : [email protected]
    Thanks in advance
    Kalyan

    Hello,
    Maybe you could check the best practices documents :
    http://help.sap.com/bp_crmv250/CRM_DE/index.htm.
    Regards,
    Fred
    PS: you should post this kind of question to the other CRM forum
    SAP CRM: Webclient UI - Framework

  • Blue print for DP-APO

    Hi All,
    Can anyone please send blue print and any good pdf's for DP  to my email id.
    [email protected]
    I will assign the points definitely.
    Thanks,
    Rakesh

    Hi Rakesh,
             You can find the information on DP in our WIKI (https://wiki.sdn.sap.com/wiki/display/SCM/Main) and also check the below link.
    http://help.sap.com/bp_scmv150/BBLibrary/HTML/BBLibrary_EN_DE.htm
    Regards,
    Siva.

  • BLUE PRINT FOR MM

    Hi friends,
    im having having lot of confusions in how the business blue print is prepared and any standardized formats are available, if not available in what format should it be prepared.
    please help me in this regard..

    hi
    check the following
    http://www.sapdb.info/sap-business-blueprint-2/
    http://www.sapdb.info/how-to-prepare-a-business-blueprint/
    http://www.sapdb.info/sap-business-blueprint/
    regards
    kunal

  • Best Practice: A J2EE Blue-Print for a Typical Web App

    Consider a typical synchronous Struts-based Web application which does a simple DB search and post. What are some of the main patterns and components that should be used if following the �industry best practices�
    Does the following flow seem accurate?
    Strust Action creates a TransferObject , and passes it to a Business Delegate. Delegate finds the appropriate BusinessObject, the Business Object uses the Data Access Object�.the CRUD operation happens and the result is sent back to the Action in the same TransferObject.
    Which one of these components need an interface?
    What's the best way for this components to interact with each other (factory, etc.)?
    Message was edited by:
    kmkiani
    Message was edited by:
    kmkiani

    There are 3 tiers in a Java EE application. (Presentation, Business, Integration).
    The BusinessDelegate in this scenario would be a Presentation-tier business delegate. This guy would interact with a Session Facade who lives on the Business-tier. The SessionFacade is the abstraction on the Business-tier and the Business Delegate is the abstraction on the Presentation-tier. It is these guys that have direct communication. This design enables low coupling between the actual implementations of each area. If done properly, you could go from EJB to Web Service to POJO business models without ever having to change anything in the Presentation-tier.
    These object-oriented design patterns are primarily for Enterprise applications with extensive Quality-of-Service requirements.
    In your scenario, the Presentation-tier would contain a MVC-based web application, i.e. Struts. The business model and business/domain requirements would be implemented in the Business-tier.
    Presentation Tier - Struts Web Application
    Business Tier - (EJB | POJO | WEB SERVICES) Application
    Integration Tier - (Relational Database | File System | XML Database | EIS)

  • Blue print for Purchasing

    Hi gurus
    Can I have some preconfigured project blueprint with name of reports ( specific to purchasing ) to understand my current assignment more efficiently?
    Thanks

    Ketul
    You could check this in ASAP Documents
    https://websmp202.sap-ag.de/~form/sapnet?_SHORTKEY=01100035870000420636&_SCENARIO=01100035870000000202
    Also check this Best Practice Guide for Purchasing
    http://help.sap.com/bp_biv335/BI_EN/documentation/BW/I13_BPP_EN_DE.doc
    Hope this helps
    Thnaks
    Sat

  • Required example blue prints doc  for practice

    Dear gurus,
    pls send blue prints for practice, practice is over but real time project idea don't have pls send some examples of preparation of blue prints , or prepared blue print
    document file
    pls send to this mail     [email protected]
    thanx , bhaskar

    Hi,
    Business Blue Print (BBP) is confidential file. No one will forward to you.
    I will give some Directions to make your own BBP.
    As per my Knowledge…………..
    BBP means systematic explanation what we are doing in SAP.Functional Consultant will prepare respective module BBP.For Example  HR/HCM Module have
    *Section 1                                 Introduction     *
    1.1Organization of the Document     
    1.2Purpose     
    1.30Definitions     
    1.4Acronyms     
    1.5References     
    1.6Audit Summary     
    *Section 2                     Enterprise Structure     *
    2.1Purpose     
    2.2Scope     
    2.2 1In     
    2.2.2Out     
    2.3Business Requirements     
    2.4Configurable Items     
    2.4.Company Code     
    2.4.2Personnel Area     
    2.4.3Personnel Subarea     
    2.4.4Employee Group     
    2.4.5Employee Subgroup
    2.4.6Assignment of Personnel Area to Company Code
    and etc….., For every sub module we explain.

  • Need Questionnaire for WM blue print preperation

    Dear Experts,
    I need a Questionnaire for SAP WM blue print preperation.These questions will help me analyze the requirements and prepare blue print for warehouse management system.
    Thanks in advance

    Hi Madhu,
    Could you please forward if any document you have on the same topic.
    Your expalanation and examples are very good on this. But I could not see the diagrams you mentinedin that.
    If you have any document on the same topi,could you please forward the same to my ID.
    I appreciate your help.
    Regards
    Sreehari

  • BI blue print

    My mail id:
    [email protected]
    I have to do Blue printing for the BI as an part of implementation going in our company ( partner is SAP india), i need some document sample which helps me in Blue printing the BI.
    thanks,
    regards.

    thanks, i will go through it?
    we have adopted SAP best pratice, and working with Solution manager.
    what else should we have to do while blue printing of BI.
    as here all functional consultant as per solution manager defining :
    org element, bussiness senario and bussiness process using solution manager.
    how to do BI blueprinting with solution manager?
    regards,
    dushaynt.

  • Blue print developement

    Hi
    I am new to  impelmentation what are the details I have to follow & I should know and proceed for blue printing for my module- are there any module specific steps? I am a MM consultant. How the blue print is generated and what are the question I should ask for to the client before finalising.  I hope i am not asking a dumb question. Thanks for the understanding
    Thanks
    Samuel
    Edited by: samuel mendis on Apr 28, 2009 8:28 AM

    Hi,
    The Business Blueprint gives you a general idea of how your business processes could be mapped in one or more SAP Systems. The Business Blueprint documents in detail the scope of business scenarios, business processes, process steps, and the requirements of an SAP solution implementation.
    A Business Blueprint compises the following structure elements in a hierarchy:
    ·        Organizational Units
    ·        Master data
    ·        Business scenarios
    ·        Business processes
    ·        Process steps
    You assign content, for example, project documentation, Business Configuration Sets, or transactions to individual structure elements, in the SAP Solution Manager.
    You can also create structure elements for organizational units and master data, below a business scenario. You only use these structure elements if the organizational units and master data are only relevant to the business process above them in the structure.
    The Business Blueprint is the prerequisite in the Solution Manager for configuration and test organization:
    You configure your business processes with reference to the Business Blueprint project structure. You can also display and edit the project documentation from the Business Blueprint phase.
    You base all test plans that you create during test organization, on the Business Blueprint project structure. The transactions which you assign in Business Blueprint process steps, are put in test plans when you generate them. You can run these transactions as function tests, to test the transactions.

  • Blue print / or as is

    Please aif any one of ou wiz's can forard a Blue print for FICO, MM , pp or SD modules... pl
    reqrads ..no probs  +  a dinner at pune is promised my id is [email protected]

    Hi All
    please find below link
    http://www.sceis.sc.gov/Default.aspx?tabid=45
    if you cant open this link, let me know I will mail you.
    looking for rewards
    regards
    Srinivas

Maybe you are looking for

  • Error during installation of IDES 4.7 on Windows 2003 Server OS

    Hi.... I'm getting the following error during the installation of the IDES 4.7. Request someone to guide me. The error part of the log file is produced below Thanks Ashwin See 'D:\oracle\ora92/bin/lsnrctl stat' output in 'D:\SAPinst ORACLE KERNEL\lsn

  • During Itunes download for windows 7 64bit, error message says "Service Apple Mobile device" failed to start

    During Itunes installation on my Windows 7 64 bit computer.. I get the following message which won't allow installation: Service "Apple Mobile Device" failed to start. Verify that you have sufficient privileges to start system services. This occurred

  • Java Card Please Help!

    Please I am doing my final year project on secure mobile application using Java Card Technology. I need to write and an application that can send SMS on a SIM card to another SIM card with the same application. The application will have a server side

  • Vi running in the background

    Hi, I try to write a VI running in the background -- but it doesn't work properly. The VI is supposed to do the following: hide the panel write 1st time (actual time) to c:\temp\wtft.txt wait 5 sec write 2nd time (actual time) to c:\temp\wtft.txt sho

  • ADF Faces ..PPRResponseWrite...

    just wondering what the below messages are and what causes them... they don't seem to be affecting my app... at the moment: 09:22:41,343 INFO [STDOUT] Oct 7, 2005 9:22:41 AM oracle.adfinternal.view.faces .ui.laf.base.xhtml.PPRResponseWriter$PPRTag fi