Templates of Functional & Technical Specifications

Can any body send the template how the Functional Specification document and Technical document look.

Hello Bhaskar,
  These documents are organisation specific. Contact your colleagues or team leaders to get a copy of these documents.
Regards,
Manoj

Similar Messages

  • Functional specification and technical Specification Templates for MDM

    Hi All,
    I am looking for some Functional Specification and Technical Specification Templates  for MDM project. If anyone have such kind of documents then please send it to me.
    Please if any one have any other useful documents  for MDM implementation for example, transport strategy then please also send those to my ID [email protected]
    Points will be rewarded to the helpful answers.
    Thanks,
    Shiv.

    Hi Shiv
    I'd like you to refer these URLs
    Re: MDM Implementation Methodology
    <a href="http://hosteddocs.ittoolbox.com/RD021507b.pdf">PDF Document</a>
    Regards,
    Krutarth

  • FUNCTIONAL SPECIFICATION AND TECHNICAL SPECIFICATION

    hi Experts,
    how does a functional specification looks and a technical specification looks.
    can i have these requirements with samples..
    or any helpful link wher i can get in template form.
    thanks i advance

    Functional Specification:
    The Functional Specification describes the features of the desired functinality.. It describes the product's features as seen by the stake holders,and contains the technical information and the data needed for the design and developement.
    The Functional Specification defines what the functionality will be of a particulat area that is to be precise a transaction in SAP terminology.
    The Functional Specification document to create a detailed design document that explains in detail how the software will be designed and developed.
    Technical Specification
    Technical Specification is the document prepared by the Technical consultants. These documents are prepared basing on the Functional Specification given by the Functional consultants. The Technical Specification contains the following;
    GENERAL INFORMATION
    DEVELOPMENT INFORMATION
    BUSINESS REQUIREMENTS
    DATA EXTRACTION
    AVAILABLE CUSTOMISING TABLES
    AVAILABLE TEXTS WITH THEIR CODING CONVENTIONS
    Check the below links for useful content on Technical and Functional specs:
    /thread/409073 [original link is broken]
    http://www.epri.com/eprisoftware/processguide/funcspec.html
    http://www.mojofat.com/tutorial/
    http://searchsoftwarequality.techtarget.com/sDefinition/0,,sid92_gci212169,00.html
    http://www.devshed.com/c/a/Practices/Writing-A-Functional-Specification/
    http://www.softwarereality.com/lifecycle/FunctionalSpecStandard.doc
    http://www.webopedia.com/TERM/F/functional_specification.html
    Reward Points if useful.

  • Technical specification template for WebDynpro development required

    Dear All,
    Can you please provide any pointer to SAP provided technical specification templates for WebDynpro development.
    Thanks and regards,
    Sudhir

    Hi Sudhir
    Does that mean you got the documents you were looking for?
    I too am looking for sample documents and/or templates for Technical Specification for WebDynpro (Java) Application but was not able to find any.
    If you have them will you please forward them to me?
    If you can share a tech spec done for a real project (or even a sample one) along with any such documents, I'd much appreciate it as I'm new to the technology. I still have to find my way around these..... :o)
    Thanks in advance.

  • BW Technical Specification Document Template

    Hi
    I am looking for a BW Technical SPecification Document Template. If any body has a Technical SPecification Document please forward it my email id. My email is
    [email protected]
    thanks and regards
    bwlearner

    hi,
    check this out..
    Re: How to write Technical Spec
    /message/1865271#1865271 [original link is broken]
    assign points if useful ****
    Thanks,
    Raj

  • Functional and Technical Specification

    Hi Experts
    As a Functional Consultant we prepare Functional Specefication. As I came to know that on the basis of this Technical Specification are prepared.
    My querry is what are these two and whats the difference between these. Are we require to check Techniocal Specification before making any change in already prepared Functional specs.
    Thanks.

    Hello,
    See the basic difference is Functional Specs are prepared by functional consultant, whereas Techincal specs are prepared by ABAPers.
    Functional specs comprises of the logic, which has table & field from which the data has to be fetched. Since ABAPer can write abap code, the document is to guide them in writing the code.
    Technical specs is completely prepared by ABAPers only.
    No, its not needed to check Technical Specification before making any change in already prepared Functional specs.
    Hope this solves your query.
    Regards,
    Dhananjay

  • RE: BI functional and Technical Specification

    Hi,
    Can anybody share BI Functional and Technical Specification for SAP R/3 data extraction for modules FI/CO, SD, MM, WM/MM.
    Thanks.

    Hi Hitesh
    Bi Functional Specification is like this where you get the details of what is the report they are looking for and what does that do in detail explanation from the key user of that particular area.
    and also you will receive an document saying that the particular tables and fields ...
    After receiving that then you will be starting an work by preparing an Design document of what are the objects you are going to use in the system and what type of Data Source your are  using and Targets etc.. This is nothing but an Technical Specification... and this also contains what type of the load is it...
    Hope this helps you..
    Thanks

  • Functional and Technical Specification Doc

    Hi Friends,
    Can anybody send me sample Functional and Technical Specification Documents for SAP CRM/ECC.
    Thanks and Regards,
    Suraj

    Hi Suraj,
      Look at <a href="http://help.sap.com/bp_crmv150/CRM_DE/index.htm">Best Practices</a> , maybe it helps.
    Regards.
    Manuel

  • Technical specification

    Hello all,
    I have to prepare a technical specification for my project. I have a high-level technical design document and a functional specification. Do I need an existing technical specification template or do I need to create one using the above documents I have?
    If I have to make one, does anyone have sample technical specification templates?
    Please help.
    Thanks very much.
    Ramesh.

    Hi,
    Technical specification should include details such as Source, Target systems, Mapping involved, structures (data types) involved, which sender/receiver adapter is used, the technical details which need to be filed in them.....inshort it should have the details of all the objects that are created in Integration repository and Directory.
    High-level technical design document and a functional specification will form the base for your technical specification document.
    If this is not the first XI project in your company then you can find related documents from other Xi projects.
    Regards,
    Abhishek.
    Edited by: abhishek salvi on Oct 6, 2008 4:56 PM

  • [solved] Template virtual function in C++

    I know this isn't legal C++ due to the compiler not being able to determine how big exactly the vtable is. I'm looking for alternatives.
    Basically, I have an abstract base class defining the interface for a set of derived classes. One of the functions being exposed through this interface is called run(). Each derived class does something different with run(). So it looks something like this:-
    class base {
    protected:
    base() { }
    public:
    virtual void run(...) = 0;
    /* rest of api here */
    class derived : public base {
    private:
    template<class T>
    void runTemplate() {
    /* Do something with data-type T */
    public:
    void run(...) {
    switch(some_int_value_from_the_input) {
    case 1:
    runTemplate<char>();
    break;
    case 2:
    runTemplate<short>();
    break;
    case 3:
    runTemplate<int>();
    break;
    default:
    /* throw error */
    My 'problem' is that every single derived class has exactly the same run() function, they only differ in the algorithm within runTemplate(). However, since I'm not allowed to implement run() in base calling a templated virtual function in base, I seem forced to have the code above, which seems to me to unnecessarily duplicate code.
    Is there another way to implement the above? My objective is to keep the amount of coding done in the derived class to the bare minimum (pretty much just the algorithm if possible), hence why I'm trying to move run()'s definition from derived to base.
    Last edited by ngoonee (2009-10-07 14:11:01)

    scio wrote:
    Sorry I typing to you and talking to someone else... I meant polymorphism.
    However, I'm not sure if I understand your end goal.  It seems like templates are not needed, but there might be a reason in your code:
    class base {
    protected:
    base() { }
    public:
    virtual void run(...) = 0;
    /* rest of api here */
    class algowrapper{
    public:
    algowrapper(...) {
    /* Use arg to setup algorithm /*
    static void processInput(...) {
    /* Do something with input and defined algorithm */
    class runner : public base{
    protected:
    runner():algo(NULL) { }
    algowrapper* algo;
    public:
    virtual void run(...) {
    if (algo)
    algo->processInput();
    class derived : public runner{
    public:
    derived(...):runner(),algo(new algowrapper(/* some algorithm */)) { }
    class derived2 : public runner{
    public:
    derived(...):runner(),algo(new algowrapper(/* different algorithm */)) { }
    Hmmm, looks like my explaining skills leave a lot to be desired. Basically I want the separate algorithms to be fully implemented within the derived classes.
    Usage case is that, for example, I distribute my executable which includes the object file for base. One of the things my executable does is load .so files (using dlopen), which will be compiled separately from the main executable. These .so files return a pointer to base, but different .so files implement different algorithms. So I can only access the functions which belong to base, since all I have is a pointer to base and no knowledge of the specific derived class, and i just call base->run(...) which is implemented in each derived class and it should handle the rest.
    The problem, as I see it, is that runtemplate() shouldn't need to be part of the API in base, yet if it doesn't exist in base, run() cannot call it. Even if it exists in base, it cannot have the form of a template since this is illegal in C++.

  • WebDynpro Development Technical Specification Document

    I am developing some custom screens using WebDynpro for our Project.  I am looking for a template for Technical Specification document for WD development.  I searched in SDN an Service market but could not find any.  I only found a naming convention document.  Can any one who has been developing suggest what should be the table of contents
    Ex:-
    Landscape
    NWDI
    Development Components
    Views
         -- Methods
         -- Actions
    Model Objects
        - RFC
    Any template would be greatly helpful.
    Thanks

    Hi,
    Template -Technical Specification document for WD development, should ideally include following topics and we are using document which has got same sections
    a) Development Component
             Name
             Used Development Components
             Public Parts
             External files used
    b) Web Dynrpo Components
            i) Web Dynpro Component
            ii) Used Components 
            iii) Methods of Component - Each method explained separately
            iv)Message Pool
            v) Views - Each view explained separately with methods written, plugs, events
             vi) Windows
            vii) Component Controller interfaces
            viii) Any models used
             ix) Application
             x) Custom controllers
      c) Dictionaries
      d) Models
      e) Web Dynpro Component Interfaces
    The above part covers 90% what development activity involved, order can be changed to convenience
    Reagrds,
    Ganga
    Edited by: Gangadharayya Virupakshayya Hiremat on May 12, 2009 6:21 AM

  • Why did Apple remove the search engine for serial numbers for technical specifications?

    I use to be able to look at the specs of all my apple devices by looking up the technical specifications by serial number. It appears this function has been removed from the website. I would like to add that this feature of the website was incredibly useful and removing it creates alot of confustion for me because I would like to upgrade my MacBook Pro but am unable to find the technical specifications.

    Append the last three characters of the serial number to http://www.everymac.com/ultimate-mac-lookup/?search_keywords= and load the page.
    (85784)

  • What are the contents in technical specifications

    What are the contents in technical specifications
    could u plz explain clearly

    hi rajeshreddy,
    Below are the standards for Tech specs
    1.1 Development Attributes
    Program Name:
    Title:
    Application:
    Development Class:
    Message Class:
    Program Type:
    Execution Mode:
    Schedule Frequency:
    Variant:
    1.2 Program Functionality
    1.3 Output Fields
    Output Label
    Related SAP table-field (if any)
    Length
    Output Characteristics
    1.4 Proposed Solutions
    1.5 Solution to be implemented
    1.6 Reasons of selection/rejection
    1.7 Pseudo-Code / Flow Logic of the selected solution
    1.8 Selection Screen
    1.9 Database Tables Used
    Table Name
    Table Description
    How the table is used in the program
    1.10 External Files Used
    1.10.1 External File Layout <file name>
    1.11 Components External to Program Used
    1.12 Error Conditions
    1.13 Key Technical Test Conditions
    1.14 Sample Test Data
    1.15 Assumptions
    1.16 Comments
    regards,
    amit m.

  • Queries about ASAP, OOAD, technical specification

    Hi Experts,
    1. Difference between ASAP and OOAD methodologies? With respect to SAP XI project, which methodology could be applied to get good results? Please explain about each, if we can apply both methodologies to XI projects. In real time which methodology is advised to follow.
    2. In real time XI project, what sort of quality check/s can be performed on the developed interfaces? It would be great, if any checklist is provided.. before proceeding from Development to QA box.
    3. Please clarify about the Technical specification, Functional specification..
    -- Each business requirement have specific Functional specification document.
    -- Each Functional specification have specific Technical specification etc..
    for example, if we have 2 business requirements.. then 2 Functional specs and 2 Technical specs need to be created?
    Can some one please clarify my queries?
    Thanks in advance
    ..Shriya

    Hi,
    >>>>1. Difference between ASAP and OOAD methodologies
    sap delivers only ASAP for XI: http://service.sap.com/asap then ASAP for XI link 
    >>>>3. Please clarify about the Technical specification, Functional specification
    funcitonal - what you need to send - for example orders etc what kind of fileds etc..
    technical - what kind of adapter and it's configuration can you use
    Regards,
    michal
    <a href="/people/michal.krawczyk2/blog/2005/06/28/xipi-faq-frequently-asked-questions"><b>XI / PI FAQ - Frequently Asked Questions</b></a>

  • Technical specifications

    hai every body,
    can any one please send me the any technical specification document which is created for any BDC program.
    points will be rewarded.
    Thanks

    hi find,
    there is no special tech spec for bdc ,
    check this for test tech spec.
    how to convert Functional spec to Technical spec
    how to convert Functional spec to Technical spec
    Check these links, it will give you a nice idea -
    http://www.sap.com/services/consulting/servicecategories/technicalimplementation/abapjavaconsulting.epx
    How to write a technical spec
    How do you prepare technical speck?
    Re: How to write Technical Spec
    Technical Spec for Interfaces...
    /message/1865271#1865271 [original link is broken]
    http://****************/SampleSpecs/samplespecs.htm
    Regards,
    venkat.

Maybe you are looking for

  • Sender File Adapter (1 Header only, Multiple Detail) withour keyfield ?

    Hi, is that possible to read file with content converstion for this file structure below : 100,200,10-AUG-2010 ABC,500,100 DEF,400,200 GFD,400,200 Since every file only contain 1 headers there is no idicator header and detail. Please advise how to ac

  • We are new IPad users and can't access games. The message is invalid address

    We are new users trying to access games. We are getting an error about an invalid address or no address or something similar. Can someone tell us how to get into the games.

  • Report script doesn't work

    Hello everyone, Not sure what I am doing but for some reason my report scrip doesn't seem to be working. I can't understand why, the syntax is correct as far as I can see. <Column (Sparse1) Sparse1 <Row (Dense1,"S2,D2,S3,S4,S5,S6,D3,S7) D1 - L0 membe

  • HP Defective Hinges - Envy Notebook

    I am very disappointed by HP. I have an Envy M6 that i bought 13mo ago. The hinge started to fail about 2 months ago and unfortunately i didnt do anything about because it simply looked as if the screen plastic body was opening. But last week the hin

  • Photoshop Album to Elements 7

    I need help!  I bought a new computer and was unable to load my photoshop album 2 on it because it runs vista.  I called adobe and was told to purchase and download elements 7.  Once I did I was told to call back and they would walk me through transf