Implementing FI and CO

Friends,
Our company is implementing Financials and Controlling in BW. I need information on the implementation like how to guides, links to information etc. Any help would be highly appreciated.
Thanks
Mike

Hi Mike,
Please see these:
http://help.sap.com/bp_biv235/BI_EN/html/BW/FinancialAccounting.htm
http://help.sap.com/bp_biv235/BI_EN/html/BW/ControllingAnalysis.htm
http://help.sap.com/saphelp_nw04/helpdata/en/cb/149b3979e90e1be10000000a114084/content.htm
Hope this helps...

Similar Messages

  • Need manual to implement training and event management

    Hi All
    I'm going to implement Training and event management for my client.Plz help me if u've any kind of manual or any guidelines for me.
    Thanks,
    SKM

    Hi Santosh,
    Best way to check the guidelines is to see help.sap.com.
    From my experience you need to follow the following steps:
    1. Create busness event groups
    2. Create business event types
    3. Create resource types
    4. Create resources
    5. Create external instructors (if any)
    6. Create companies (if any)
    7. Create locations
    8. Manage integration switches (SEMIN rows in T77S0 table)
    For the master data creaton activities above, you can create LSMW to make it possible for mass data upload.
    After your business catalog and all other master data is in place,
    1. Plan business events - PSVP
    2. Create business events wth/without resources - PSV2
    3. Book attendees- PSV1
    As recurring activities:
    1. Firmly book the events.
    2. Cancel events (if needed)
    3. Follow-up events.
    Regards,
    Dilek

  • Can please tell me how to implement expand and collapse table row data?

    i am trying implement expand and collapse table row data but i do not get any ideas..can please any one help me its an urgent requirement

    Yes, we can.   
    I think the best place for you to start for this is the NI Developer Zone.  I recommend beginning with these tutorials I found by searching on "data log rio".  There were more than just these few that might be relevant to your project but I'll leave that for you to decide.
    NI Compact RIO Setup and Services ->  http://zone.ni.com/devzone/cda/tut/p/id/11394
    Getting Started with CompactRIO - Logging Data to Disk  ->  http://zone.ni.com/devzone/cda/tut/p/id/11198
    Getting Started with CompactRIO - Performing Basic Control ->  http://zone.ni.com/devzone/cda/tut/p/id/11197
    These will probably give you links to more topics/tutorials/examples that can help you design and implement your target system.
    Jason
    Wire Warrior
    Behold the power of LabVIEW as my army of Roomba minions streaks across the floor!

  • Air mobile best way to implement drag and drop

    Hi all,
    I'm developing an application which allows people to drag and drop certain panels.
    But the dragmanager isn't optimized for the air mobile platform.
    What is the best way to implement drag and drop at the moment?
    Write it all yourself or are their some utility classes that can help?

    Hi all,
    I'm developing an application which allows people to drag and drop certain panels.
    But the dragmanager isn't optimized for the air mobile platform.
    What is the best way to implement drag and drop at the moment?
    Write it all yourself or are their some utility classes that can help?

  • How to implement classes and methods in badi's ?

    how to implement classes and methods in badi's? and where i have to write the code based on the requirement?can anyone explain me briefly?

    Hi
    Every BADI by default Implements an INTERFACE which already contains some methods with parameters.
    So you have to find the relavenet method based on the related paramters (by checking the fields in that paramters) you have to double click on the method and to write the code.
    see the doc
    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.
    Reward points for useful Answers
    Regards
    Anji
    Message was edited by:
            Anji Reddy Vangala

  • Creating stubs for a java class which implements ejbobject and ejbHome

    Hi,
    I am using the weblogic rmic utility to generate WLStub of a class which implements
    EJBHome and EJBObject. The stubs are being generated with the name...WLStub261b2l255i2g1h1324e2u702w6fn1t.class
    rather than with the name_WLStub as it should be and as the server wants it to
    be when I try to bind this object using JNDI.
    I appreciate your help.
    Thanks,
    Kamps

    Have you tried the -nomanglednames option as from:
    Usage: java weblogic.rmic [options] <classes>...
    where options include:
    -help Print this help message.
    -version Print version information.
    -d <dir> Target (top-level) directory for compilation.
    -nontransactional Suspends the transaction before making the
    RMI call and resumes after
    -verbosemethods Instruments proxies to print debug info to
    std err.
    -descriptor <example> Associates or creates a descriptor for each
    remote class.
    -nomanglednames Don't mangle the names of the stubs and
    skeletons.
    kamps wrote:
    >
    Hi,
    I am using the weblogic rmic utility to generate WLStub of a class which implements
    EJBHome and EJBObject. The stubs are being generated with the name...WLStub261b2l255i2g1h1324e2u702w6fn1t.class
    rather than with the name_WLStub as it should be and as the server wants it to
    be when I try to bind this object using JNDI.
    I appreciate your help.
    Thanks,
    Kamps

  • How to implement SCD and outer join in OBIEE

    Hi Experts,
    1.How we can implement SCD1 and SCD2 in OBIEE.
    2. How to implement outer join..? Can we implement outer join in physical layer.?
    Regards
    Frnds

    1. Better to implement this as a part of data warehouse/ETL. If you insist there is explanation on how to work with SCD's in Administrator in some Oracle University Student Book, I think it's for Siebel Analytics version.
    2. Implement outer joins using complex joins in BMM (type option). It's possible to implement in physical layer only in obiee views (new physical table/table type - select), otherwise not, you cannot specify outer join in the physical layer using complex joins.
    Regards
    Goran
    http://108obiee.blogspot.com

  • Any (source code)FREE BOOK  implementing recieving and sending emails

    any (source code)FREE BOOK implementing recieving and sending emails
    if avgailable on net.
    please help...
    Regards,
    Navin.

    check this out:
    http://www.javaworld.com/javaworld/jw-10-2001/jw-1026-javamail.html

  • Implementing Drag and Drop Functionality

    I'm implementing drag and drop a record from a table to another table.
    I already referred below:
    http://download.oracle.com/docs/cd/E15523_01/web.1111/b31973/af_dnd.htm#CIHDADFG
    But I have a question.
    In example 32-5, there is a source like following:
    +// And now get the actual data from the dragged model.+
    +// Note this won't work in a region.+
    DnDDemoData dnDDemoData = (DnDDemoData)dragModel.getRowData();
    In this case, 'DnDDemoData' type looks like each project's own suitable row type.
    But I don't know what type is suitable in my project.
    I use a two VOs for two tables.
    So I think it's ViewRowImpl class type, but it's not.
    How can I find suitable row type?

    Hi Timo,
    Could not understand what exactly need to have for this...
    // And now get the actual data from the dragged model.
    // Note this won't work in a region.
    DnDDemoData dnDDemoData = (DnDDemoData)dragModel.getRowData();
    Could you please elaborate on this!!!
    Thanks,
    Vin

  • OBIA and OBIEE implementation requirements and Questions

    Hi,
    I am looking for a documentation, which could give me some questions to implement OBIA and OBIEE. Do we have any documentation like this which could give customer a basic idea about OBIEE and OBIA and what it takes for them to implement them.
    Basically we are looking for a documentation of questionarie which could guide clients to choose OBIEE and OBIA with hardware and licensing requirements.
    Can you please share if you have come across such a document.
    Thank You.

    http://lmgtfy.com/?q=obiee+documentation

  • Duration of Implementation Project and Support Project & No. staff in eachj

    Hi
    What is the time duration of an Implementation Project and Support Project?
    What are the number of staff fworking for these projects?
    Can any one of u throw light further
    Regards
    Sunitha

    Hi Sunita,
    Implementation
    Duration of the project depends upon teh project size.
    if it is a small indian company (500 crores) it should take between 5-7 months
    team required: each consultant for each module depending on scope(Apprx:-2 abaper, 1 MM,1 SD, 1 FI, 1 CO and 1 for PP)
    Support Project:
    Duaration of support project will be 1,2, 5 years depending upon the agreement betwween company and client.
    Best Regards
    Ashish Jain
    Pls assign points as a way to say thanks.

  • Project implementation  process and toll using for the implemetation

    what r the steps involved in project implementaion

    hi,
    The ASAP methodology is recommended by SAP for implementation planning and system implementation. It has the following phases.
    Project Preparation - The primary focus of Phase 1 is getting the project started, identifying team members and developing a high-level plan.
    Business Blueprint - The primary focus of Phase 2 is to understand the business goals of the company and to determine the business requirements needed to support those goals.
    Realization - The purpose of this phase is to implement all the business and process requirements based on the Business Blueprint. You customize the system step by step in two work packages, Baseline and Final configuration.
    Final Preparation - The purpose of this phase is to complete testing, end-user training, system management and cut over activities. Critical open issues are resolved. Upon the successful completion of this phase, you will be ready to run your business in your productive R/3 system.
    Go Live and Support - Transition from a project oriented, pre-productive environment to a successful and live productive operation.
    Def:The Accelarated SAP is the implementation solution provided by SAPwhich integrates several components that works in conjunction to support the rapid and efficient implementation of the PROJECT.
    PHASES IN ASAP METHODOLOGY
    1.Project Preparation
    2.Business Blue Print
    3.Realization
    4.Final Preparation
    5.Go-Live and Support.
    1.PROJECT PREPARATION WE HAVE 8 STEPS.
    1A.SCOPE OF PROJECT
    1B.PHASES INVOLVED
    1C.SYSTEM LANDSCAPE
    1D.TEAM FORMATION
    1E.DEADLINES OF THE PROJECT
    1F.BUSINESS PROCESS DOCUMENTS (OR) BUSINESS REQUIREMENT
    SPECIFICATIONS
    IN 1F AGAIN WE HAVE 5 STEPS....Pls dont get confused.
    1F ->A1-REQUIREMENTS OR EXPECTATIONS
    A2-GENERAL EXPLANATIONS
    A3-SPECIAL ORGANIZATIONAL CONSIDERATIONS
    A4-CHANGES TO EXISTING ORGANIZATION
    A5-DESCRIPTION OF IMPROVEMENTS
    1G-TECHNICAL REQUIREMENTS
    1H-KICK-OFF MEETING
    2 BUSINESS BLUE PRINT . IN THIS WE HAVE 8 STEPS
    2A.ORGANIZATIONAL STRUCTURE
    2B.DATA COLLECTION SHEETS
    2C.DATA CONVERSION STRATEGY
    2D.BUSINESS BLUE PRINT DOCUMENTATION
    2E.CUSTOMIZATION
    2F.ESTIMATION OF DEVELOPERS
    2G.COMMUNICATION STRATEGY PLAN
    2H.DEVELOP THE SYSTEM ENVIRONMENT
    2I.USER ROLES AND AUTHORIZATIONS.
    3. REALIZATION . HERE WE HAVE 7 STEPS.
    3A.ORGANIZATIONAL CHANGE MANAGEMENT
    3B.BASELINE CONFIGURATION & CONFIRMATION
    3C.UNIT TESTING
    3D.FINAL CONFIGURATION AND CONFIRMATION
    3E.FUNCTIONAL SPECIFICATIONS.IN 3E , WE HAVE 3 STEPS AGAIN...
    3E1.SOLUTION INFORMATION
    3E2.OBJECT INFORMATION
    3E3.REVISION HISTORY....WE HAVE 12 STEPS HERE .....
    3E3A.DESCRIPTION AND PURPOSE
    3E3B.BUSINESS PROCESS DETAILS
    3E3C.CURRENT FUNCTIONALITY
    3E3D.EXPECTED FUCNTIONALITY
    3E3E.SAP SITUATIONAL ANALYSIS
    3E3F.ADDITIONAL INFORMATION
    3E3G.FORMS
    3E3H.REPORTS
    3E3I.INTERFACE
    3E3J.DATA MAPPING
    3E3K.APPROVAL AND MODIFICATION HISTORY
    3E3L.ADDITIONAL ATTACHMENTS.
    3F.TESTING THE PROGRAMS
    3G.PREPARING THE ENDUSER DOCUMENTATION
    4.FINAL PREPARATION
    WE HAVE 4 STEPS.....
    4A.UPLOADING THE STIMULATED DATA
    4B.INTEGRATION TESTING
    4C.CUTOVER ACTIVITIES
    4D.PRE GO-LIVE END USER TRAINING
    5.GO-LIVE AND SUPPORT
    SIGN-OFF MEETING
    CHAN

  • Implementation pbms and support tickets..

    Hi,
      can anybody explain realtime implementation pbms and support issues...can u give me some ten examples...thanks to all

    Hi Audhitan,
    Most of the questions posted here are realtime issues. You can search for the one which is relevant to you.
    Issue may raise due to:
    1. lack of training
    2. user authorisation
    3. Enhancement requirement
    5. Lack of knowledge on Business process
    regards
    Anand.C

  • 1st implementation year and number of over all implementations....

    Hello Friends,
    Need your help for follwoing three questions:
    1..Can any one please help me with information about 1st implementation year and number of over all implementations of IS-H modules globally as of today..if this information published by SAP recently.
    2..As far as i know ECC 6.0 EhP4 is the letest version of IS-H.If wrong please correct me.
    3..And the last one..how far IS-Surgicals, i.s.h.med cardio and i.s.h.med gastro are used.
    Await for your repy,
    Thank you!
    Sadanand.

    Hi Sadanand,
    This time the answer took same time but here it is.
    Please find below all information about the product and the standard trainings. Any other kind of workshops and trainings can be arranged according to the specific requirements. Please contact the training center for further information.
    Clinical information system - i.s.h.med
    [http://www.medical.siemens.com/webapp/wcs/stores/servlet/CategoryDisplayq_catalogIde_-11a_categoryIde_1026616a_catTreee_100010,1008631,1026620,1026619,1026616a_langIde_-11a_storeIde_10001.htm]
    Training Center
    [https://product-training.siemens.com/medinternet/browsecatalog.jsp?K=INTERNET&itemId=AAACTMD]
    Kind regards,
    Axel Biernat
    Siemens AG
    Product Commercialize - Knowledge Transfer

  • WebLogic 10.3 doesn't implements equals() and hashCode() for TimerHandle?

    Hi,
    I'm using WebLogic 10.3 and need to use TimerHandle to handle some logic in my application.
    Below is a scenario.
    At the time by creating EJB Timer, I've saved the TimerHandle for later use into Database along with specific name as a key.
    Then, at the time to execute/awaken timer I need to check that the saved TimerHandle is the same as passed Timer.
    @Timeout
    public void execute( final Timer timer )
    // getting key from passed object in timer.getInfo().
    // getting saved timerhandle by key. let's say dao.getXxxHandle(key);
    // perform checking.
    if ( timerHandle != null && timerHandle.equals( timer.getHandle() ) )
    // do sth.
    else
    //do another thing.
    The result is always drop in else block.
    By doing this is working on WAS7 and JBoss4xx (getting to if block). I was wondering if WebLogic doesn't implements equals and hashCode method then is there another way to check that the retrieved TimerHandle is the same one as timer.getHandle()?
    I'm thinking of adding some unique ID to see if timehandle is the same one or not? However as I mentioned, It works on WAS and JBoss. Does WebLogic has another way to handle my scenario?
    Any help would be appreciate.
    Thanks in advance,
    Nattachai W.

    As you have suggested, it looks like we don't override the equals() method on either our local or clustered TimerHandle implementations.
    We opened a bug (9558396) so we can address it in a future patchset.
    In the meantime, if you have an Oracle support contract, you could open a service request and ask for a patch for bug 9558396 to be created.
    -steve-

Maybe you are looking for