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

Similar Messages

  • 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

  • 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

  • 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

  • Print for Purchase Order

    Print for Purchase Order
    Hello All,
    My client wants messages default for Purchase order print in me22n.Now we are giving manually u201COut Put typeu201D,u201DMediemu201D, Language , etc.
    Please advise me how I can get those fields default.
    Thanks in advanceu2026

    Just maintain the condition record in MN04 for the Output type.
    NEU for the Key combination select Pur org/Document type
    Here maintain your pur organization then document type and Partner function as VN
    then in the top you find communication there enter the Local printer name or LOCL what ever.
    Save the condition record.
    Then for every PO this message setup will automatically come in PO.
    Check this link for further details:
    Re: No message generated for output of purchasing document
    Re: PO output determination...

  • 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

  • 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

  • Need help choosing a Tabloid copier/printer for purchase

    I need your help! I am replacing a B&W Toshiba Model 2860 tabloid copier, and possibly HP LaserJet 4000TN printer. LaserJet still works great, Toshiba is failing. I need ethernet networking, 11x17 paper and glass, affordable consumables, and of course, excellent Macintosh compatibility. I do not require color, but would have some use for it. The copier function really needs to be top notch. My budget is under $2000.00. Thanks in advance for your advice.

    The last proof-printer the company I work at purchased is an EPSON 7900 and while our daily proof-quantity is pretty uneven it performs fairly well.
    Apart from that we have an EPSON 4000 and an EPSON 9800.
    The 4000 is worst with black and white images and has the smallest gamut of the three, but it performs pretty steadily, too.
    We do turn it off nights and weekends, though, and it is situated in a permanently air-conditioned room, so thermal conditions are pretty stable.
    Is your 4000 possibly exposed to fluctuations in temperature and/or humidity?

  • 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)

  • 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

  • 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

  • Blueprint for Purchasing

    Hi,
    Do anyone have the blue print for SCM-Purchasing impementation ? Can you please send me .
    Thanks.

    Hi Vaishali,
    I don't have any blue print, but here is the business content :
    http://help.sap.com/saphelp_nw2004s/helpdata/en/ed/62073c44564d59e10000000a114084/frameset.htm
    The main extractor are 2LIS_02_SCL, 2LIS_02_ITM, and 2LIS_02_HDR. And the Infocube is 0PUR_C01. And for the backlog you have the infocube 0PUR_C10, it's interesting.
    Hope this help.
    Dimitri.

  • 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.

Maybe you are looking for

  • PDFMaker-Macro

    Ich suche den Source von diesem PDFMaker-Macro, das es in WinWord gibt! danke im Voraus Uwe

  • I do not have "save as" listed on my file menu. Am I missing something?

    I am missing the "save as" command on my toolbar in Pages. Therefore I am not able to save an existing document with a different name. Any suggestions?

  • Error in customised SAP script for F-58

    Hi experts, I'm facing one strange error. While doing F-58 transaction along with any Z-sapscript , the values are getting populated into fields of table REGUH (Settlement data from payment program). One field REGUH-ZADNR (Payee's Address Number) the

  • Regarding change process for CRM Lease contracts

    Hi Frenzzzz, I need to create a standalone program which is used for change process for a lease contract.... The change process mainly used in my requirement is (Change of Location) & (Change of Ownership).... I found out two function modules CRM_FS_

  • Dreamweaver CS3 in Virtualbox on Ubuntu Intrepid

    Has anyone successfully installed and run Dreamweaver CS3 in virtualbox on Ubuntu Intrepid? Is there a definitive guide on how to do so? Any problems with network (wireless connectivity)? Any issues attaching to remote servers? Any noticeable perform