Re:SAP Implementation in Travel Field(URGENT)

Hi Friends,
Can any body tell me FI-MM-SD integration in Travel field.
Regards,
Shekar

what is your exact requirement. Using Travel Management module, you can integrate to FI. There is no relaitons with FI-MM-SD integration.
Kesari

Similar Messages

  • Critical Issues During SAP Implementation or After Golive

    Can anybody tell me one of  the most critical/ challenging issues During SAP Implementation or After Golive
    in these modules:-
    MM implementation
    PP implementation
    SD implementation
    FI/CO implementation
    PS implementation
    QM implementation
    HR implementation
    BI implementation
    XI implementation
    Thanks and regards
    RS

    hi,
    I will list out few of critical issues in
    Implementation :
    1 . Ensure 100% mapping of business process for all modules with SAP(avoid customization in support phase)
    2.  Unit & Integeration testing should be through with all validations
    3.  Master datas(Vendor,Customer) care must be taken will uploading datas thru LSMW,
    If there are common vendors for all plants,Create a vendor for a plant extend it to other plants
    4. Check tax procedures are customized according to requirements.
    5. Complete all print document customizations before go live
    6. Complete end user training(2 or more cycles) should be top priority before go live(This will avoid
    cancellation/reversal of documents after post go live)
    7. Ready with standard MIS reports & customized reports for business decision making
    8. Excise opening balance updation in tables for RG1 register in tables(Note 951955) on go live
    9. Check all tables datas are updating correctly
    10. Declare go live to SAP Support
    11. Check All user authorization should be correct according to their roles.
    12. Centeralize all master datas creation(avoid duplication)
    13. Create transaction variants to avoid entires in unnecessary fields & make certain fields mandatory.
    14. Ensure document numbering is completed for all documents
    15. Validate accounting entries are hit properly according to requirement in quality client with FI CTM(Core team member).
    After Go live :
    1. Missing authorization for users will play key part here,For ex : PGI while doing delivery,Excise capture & post in MIGO/J1IEX.
    2. Do internal audit every month,identify transactions if there will possibility for misuse or wrong entries,requires validation,identify users weak in certain areas.
    3. Identify there is enhancements to be done in transaction process(By step-2)
    4. Prepare a list of month & year end activities to be performed for all modules give to users
    5. Prepare  a list of frequently used transaction codes module wise give it to users
    6. If there is subcontracting,ensure challan creation,GR,reconcillation should be done regulary(monthly)
    7. Train the users,take reports in respective modules.
    8. Additonal customization might be done in print documents.
    9. Instruct users/CTM's to adapt SAP Standard practise
    10. Update excise tax rates after every indian budget
    Hope it helps.
    Edited by: Jeyakanthan A on Apr 29, 2010 6:48 PM

  • Time frame for SAP implementation query

    Hi guys,
    I am a university student and am currently trying to collect some information for my paper on development of ERP systems in industrial companies, particularly SAP. I'm meant to do some field research, but it is proving to be rather difficult, which is why I wanted to ask for some help from people who have experience in the implementation of the SAP system.
    What I'm looking for is the time frame that the SAP system takes to integrate into an industrial firm. Also, the scope of integration (ie how many and which modules were added on top of the core SAP system) and the number of users after the full implementation of the system.
    I don't need the name of particular companies, as I understand that that may be disclosing too much corporate information, but it would really help me if someone could give me a realistic time frame of the implementation process for SAP.
    Thank you, in advance!
    Anya

    Anya,
    Update to your queries:
    size of the company that this SAP implementation took place at:
    Answer : In terms of revenue $200 million +
    Interms of employees 6000+
    HR module in particular - whether it can be fully implemented separately and how long would it take?
    Answer:
    Definately, it can be fully implemeted and other modules may not be used
    Time period - 3+ months as Business packages are available in SAP.
    Regards,
    Ganga

  • A Customer Implementation cannot be migrated into a SAP implementation

    Hi all,
    I am writing badi implementation to add a field in the customer master transaction screen(xd03). when i try to activate the badi implementation, it is giving a messge in the a information window saying that "<b> A Customer Implementation cannot be migrated into a SAP implementation</b>" Can anybody suggest what exactly is that? How to resolve it? and the BADI implementation is not activated.
    Please suggest me.
    Thanks inadvance.kp

    Hi,
    Seema that your procedure is not suitabe to SAP. Make sure you have done the following :
    Go to Transaction SPRO à Logistics – General à Business Partner à Customers à Control à Adoption of Customer’s own Master Data fields à Prepare Modification à Free enhancement of Customer Master Record
    Thanks

  • QGM for Greenfield SAP Implementation

    Hi All,
    We are doing a greenfield SAP implementation. As of now we are done with DEV landscape build. We would like to utilize Quality Gate Management for Change Management in our project. I have few queries:
    1) How should I define Transport routes at this stage to activate QGM? We have only DEV systems as of now. QAS and PRD would be ready in next few months. Can I activate QGM now with logical component containing only DEV systems?
    2) Once the QAS and PRD systems are ready; How to include them in the existing QGM project?
    Any documentation or input are really appreciated.
    Regards,
    Vivek

    Achieved this using the virtual systems as mentioned in this excellent blog.
    http://scn.sap.com/docs/DOC-31352
    Regards,
    Vivek

  • Sap query and additional fields.

    Hello guys.
    ABAP it's not my strong skill, but i need to develop some report.
    What i need:
    input: material, SLED, plant
    output: material, SLED, plant, values from characteristic field.
    I have created sap query with additional field type c.
    Below my code:
    TYPES: BEGIN OF charast,
            ATNAM(50)    TYPE c,
            ATWTB(8)     TYPE n,
            X(50)        TYPE n,
            C(50)        TYPE n,
            ATINN(50)    TYPE n,
            END OF charast.
    DATA: char TYPE TABLE OF charast WITH HEADER LINE.
    CALL FUNCTION 'VB_BATCH_GET_DETAIL'
       EXPORTING
         MATNR              = MCH1-MATNR
         CHARG              = MCH1-CHARG
         GET_CLASSIFICATION = 'X'
       TABLES
         CHAR_OF_BATCH      = char.
    LOOP AT char into TEST (This is an additional field type C.
       ENDLOOP.
    Questions:
    1. How i can return internal table into standard abap type, because i can create additional field only with standart types.
    2. Need i fetch exporting parameters before calling FM? Or sap query do it automatically, based on given values on selection screen of the report?
    3. How i can return only needed field from FM output? Now, when i'm executing FM via SE37 it's show desired result, but when i'm getting it from code i see strange values.
    4. If i don't know exactly return by an FM values, how i can fill structure dynamically?
    5. How i can return result of a program not only to additional field but to layout?
    Sorry for noob questions and thank you in advance guys!

    Well, seems like it work fine for me.
    Below my crappy, but working code:
    DATA: material TYPE MCHB-MATNR,
           batch    TYPE MCHB-CHARG,
           plant    TYPE MCHB-WERKS,
           sloc     TYPE MCHB-LGORT,
           gtdt     TYPE STANDARD TABLE OF clbatch,
           gtdit    TYPE clbatch.
    SELECT MATNR INTO material FROM MCHB
       WHERE MATNR = MCHB-MATNR.
    ENDSELECT.
    SELECT CHARG INTO batch FROM MCHB
       WHERE CHARG = MCHB-CHARG.
    ENDSELECT.
    SELECT WERKS INTO plant FROM MCHB
       WHERE WERKS = MCHB-WERKS.
    ENDSELECT.
    SELECT LGORT INTO sloc FROM MCHB
       WHERE LGORT = MCHB-LGORT.
    ENDSELECT.
    CALL FUNCTION 'VB_BATCH_GET_DETAIL'
       EXPORTING
         MATNR = material
         CHARG = batch
         WERKS = plant
         GET_CLASSIFICATION = 'X'
        TABLES
          CHAR_OF_BATCH = gtdt.
    READ TABLE gtdt INTO gtdit
       WITH KEY atnam = 'BATCH_SHELF_LIFE_EXPIRY_DATE'.
    GTD = gtdit-ATWTB.

  • Step by step bapi to convert SAP to XML please its urgent

    step by step bapi to convert SAP to XML please its urgent
    full points if with full example and coding in ABAP,
    Thank you,
    Regards,
    Jagrut Shukla

    yes i want to convert Catsdb table into xml format and safely in server, i.e secured  place

  • Implementing Key Flex fields in Oracle apps custom form.

    Hi all,
    I have developed a custom form from scratch. Need to implement key flex fields in my form. Kindly help me and please share any document for Key flexfields implementing. Quick response will be highly appreciated. Thanks a in advance.
    Please mail to [email protected]
    Regards
    Aiyaz
    Please send me a complete document for implementing flex fields in a custom form. Screen shots in the docs will be very much help full.
    Regards
    Aiyaz
    Edited by: user6422762 on Jan 27, 2011 9:44 PM

    There are so many special cases and cases with Oracle Apps that you will need to ask this question in the dedicated Apps tech forum rather than here. Please post this question here: OA Framework

  • Explain me about sap implementation in yarn manifacturing industry

    HI,
    can anybody explain me about sap implementation in yarn manifacturing industry.what type of process it is?either repetitive or SD

    HI,
    can anybody explain me about sap implementation in yarn manifacturing industry.what type of process it is?either repetitive or SD

  • Roles & Responsibilities of a Basis consultant in an SAP implementation

    Hi All,
    What are the Roles & Responsibilities of a Basis consultant before/during/after an SAP implementation project?
    Please list all of them separately.
    Regards,
    Nivas

    1.    1. Perform User administration and role/profile assignment.
    2.   2.  Perform Role Creation, Modification and Full trouble shooting support for the users authorization failures in all SAP applications and resolving the Security issues and support in integration testing of Roles/Profiles.
    3.  3. Maintain the integrity of the SAP environment by managing the SAP Correction and Transport System (CTS) to ensure all configuration and development objects are promoted properly.
    4.    4. Distribute the online SAP user workload and monitor and manage the SAP background job workload.
    5.   5. Perform OSS / SAP Service Marketplace: Searching notes & creating OSS messages for the respective queries to improve the Performance. And software download, Maintain System Data, License Key & Maintenance Certificate, Developer & object registrations and connection maintenance etc.
    6.     Starting and Stopping SAP instance/(s).
    7.   6. Preventive Maintenance activities - Support Pack/Plug-in implementations, Kernel upgrades, OSS note applications and to apply support pack for Java using JSPM.
    8.    7. SAPGUI/SAPLGPAD troubleshooting and maintenance/upgrades/installations.
    9.    8. Prepare and maintain system documentation, procedures, and standards.
    10. 9. Perform SAP Database Administration – Space management, database reorganizations, design and implement backup and restore strategy, maintain database security, administer database performance, database problem determination and resolution, etc.
    11. 10. Perform SAP Installation, Post installation, client administration, System Refresh and Post-Refresh activities as required.
    12. 11. Perform parameter modification, Buffer, memory management, performance tuning and troubleshoot.
    13. 12. Perform SAP Licensing – Indentify inactive user, user classification and prepare System Measurement result for SAP Global Audit team.

  • "Case use" technique for SAP implementation?

    Hello all,
    has anyone used "case use" technique for SAP implementation? I mean for standard process, not only developing.
    Any recommendation about it?
    Thanks in advance and best regards,
    Adolfo

    It would be helpful to go through the help document of ASAP Methodology.
    The following information may clarify some doubts/requirements you have.
    Generating the Project IMG through ASAP:
    After you have set the project scope, the next step is to generate the Project IMG. From the Business Process Master List (BPML), you can directly access the IMG activities relevant for configuring each process.
    BPML: The Business Process Master List, along with the Business Blueprint, is a key result of the second phase of the Roadmap. Microsoft Excel tables contain the SAP scenarios, process groups, and processes that have been set in scope in the SAP Reference Structure, and are crucial for configuring your SAP System. In Realization, the third phase of the Roadmap, the BPML provides the basis for monitoring and steering test activities and for configuring your SAP System. It contains the titles of the structure items, and displays the status, the owner, links to documentation and links to the SAP System. Amongst other things, the BPML allows you to:
    1) Set your baseline and final scope. These are used for baseline and final configuration.
    2) Access the Project IMG and specific IMG activities assigned to structure items.
    3) Access integration test plans, which help you carry out all required integration tests.
    The Prerequisite is you have set the project scope.
    Process Flow to use the Business Blueprint as a basis for configuring your SAP System:
    1) Set the project scope.
    2) Generate the Project IMG.
    3) Generate the BPML.
    4) From a specific processes in the BPML, you can go to the relevant IMG activities and make Customizing settings.

  • Closing down an SAP implementation for restart later

    OK, this is a strange one, to me at least, but here goes...
    Our company has been using an implementation of SAP for a specific project that is now coming to an end. They want to close down the system completely, but with the option of relaunching it later using the data records that currently exist, but probably imported into a new Enterprise structure. The financial data will also have to be maintained for audit and other legal purposes.
    I've done several SAP implementations but never a close-down like this! From a functional, rather than a Basis/infrastructure, point of view, does anyone know what configuration or other data protection measures we will need to take to safeguard the data and facilitate a restart so much later?  Are there any other issues the company will need to consider? We use ECC6 and FICO (GL/AR/AP/Banks) with COPA, and SD MM
    During the period between the closure of the SAP system and its re-initialisation in expanded form - maybe 18 months later - they will run the functions now done in SAP in an old system. Again, I have done transfers of data from legacy systems into SAP but never the reverse. Any suggestions, other than ensuring compatibility, for this process?
    I strongly suspect that when they look at re-starting the use of SAP it will essentially be a new implementation from scratch, with perhaps some Customer/Vendor/Materials/FICO master data imported, but involving all the stages of the road map. However, if there is anything we can do to help whoever does that then we will. So, any suggestions or information will be welcome.
    Thank you
    David
    Edited by: David Crossley on May 13, 2009 12:14 PM

    Note also that the support provided by Nokia for a particular phonemodel does not require that there is a factory still manufacturing that model. In other words, spare parts can be provided, as well as software updates and support, without factories churning out new units.
    And while Nokia has closed a couple of factories, the company still has serveral that are operational all over the world, and for which no plans for closing has been announced.

  • SAP Implementation in Turkey. Consulting company needed.

    Hi,
    I'm looking for local consulting companies in Turkey that have experience on SAP implementations. By the momemnt I'm not able to find any company that I can contact with.
    English is a must...any ideas?
    Has someone worked in the country? Any help will be useful!
    Thanks in advance,

    Hi,
    I'm working @FIT Consulting and we're SAP Turkey's Technology Partner. We've almost 80 Consultants working in the SAP Technology areas such as SAP Basis, Abap, NetWeaver (Portal, BPM, PI, IDM), BI (NetWeaver BW, BusinessObjects) and Mobile (iOS, Android, Windows Mobile, Sybian, Rim).
    We've been in market since 1999 and we've lots of National and International Success Stories.
    If you wish you can contact us via the email address given at http://www.fitcons.com/en/contact-us.html
    Regards

  • SAP implementation of RFC 1738

    When looking over the ABAP implementation of RFC 1738 (don't ask) I noticed that SAP marks the following characters as unsafe and as a result URL encodes them:
    "<, >, “, #, %, {, }, |, \, ^, ~, [, ], `" and ";, /, ?, :, @, =, &" (the ABAP code makes no distinction between the character set types of unsafe and reserved in its validation buffer, but I've separated them for clarity.)
    The code also URL encodes characters LE 0x1F and GE 7F. This seems mostly correct, but it appears to be missing coma and $ which are both a part of RFC 1738 (to the best of my knowledge). I was unable to find a technote on this, but wanted to solicit some feedback on why this might be the case. Am I missing something, or does the SAP implementation of this standard appear to be slightly off? Any thoughts the development community has on this would be greatly appreciated.
    Edit:
    Just to clarify I'm specifically refering to the translate subroutine code in the program SAPLSCMS_URL. It defines the following as unsafe:
    unsafe(23) value ' <>"#%{}|\^~[]`;/?:@=&+'.
    These include all of the unsafe and reserved characters except for , and $.
    Message was edited by:
            Aaron Jack

    The below table will give you an idea about the deadline for your organization for Chile eDocument implementation -
    Enterprise
    Last year's
    revenue (in UF*)
    Last year's
    revenue (in USD)
    Location
    Months (from
    Feb, 2014)
    Deadline to implement
    Chile eDocument
    Small
    Below 2400
    Below 100 K
    Urban
    24
    1st Feb, 2016
    Rural
    36
    1st Feb, 2017
    Medium
    Between 2400
    and 100,000
    100 K - 4.2 M
    Urban
    18
    1st August, 2015
    Rural
    24
    1st Feb, 2016
    Large
    Above 100,000
    Above 4.2 M
    All
    9
    1st Nov, 2014
    *UF = Unidad de Fomento
    1
    UF
    41.56
    USD
    as of 23rd Oct, 2014
    2400
    UF
    99744
    USD
    100,000
    UF
    4156000
    USD

  • SAP Implementation Certificate

    Hi,
    One of the SAP training institute in Bangalore makes us write the SAP- Implementation certification exam with the cost of INR 5000 after there training.
    Is there any use of Implementation certificate and please guide can we go for the Implementation Certificate.
    Regards,
    Adarsh

    Hi Adarsh,
    What is the name of institute? Is this certification approved by SAP?

Maybe you are looking for

  • Trying to understand HD

    So, I recently purchased a brand spanking new Samsung 50 inch HD TV to replace my 19in SD TV. The model number, in case it is relevant for ensuring it comes with the correct equipment is PN50B560. I also have an SD set top box.  My FIOS plan (the mos

  • How do I add more memory to integrated video graphics on Satellite L30

    I want to allocate more memory to my video graphics. How do I do this? I'm using Vista Home OS. Many thanks.

  • FTP problem - won't upload because no old remote file

    I've used Dreamweaver for years and never run into this, but I recently installed Dreamweaver MX on a new laptop and keep having this problem. Sometimes - not always - when I create a new page or introduce a new graphic on an existing page, the new i

  • Exception caught during Interactive Form Example

    Hello All,   I was trying to embed a pdf inside my page during working with Web Dynpro Application and at the run time I have got the below mentioned exception <b> Root Cause The initial exception that caused the request to fail, was:   com.sap.engin

  • Context switching.

    Theory: Firewalls essentially partition the Java Card platform's object system into separate protected object spaces called contexts. The firewall is the boundary between one context and another. The Java Card RE shall allocate and manage a context f