Transaction Codes and BAPIs for Mobile Time And Travel

Hi All,
Please can anyone give me the "Transaction Codes" and "BAPIs" that are needed and used for developing an application for Mobile Time and Travel.?
Please help me out.
Cheers,
Anu.
Message was edited by:
        Anuradha Yandamuri

Hi Anu
Below are the Functional Modules used in the standard MTT application.
<u><b>RFC's for Time Sheet (MTS)</b></u>
CATS_MY_GET_MASTER_DATA      
CATS_MY_GET_PICKLIST_FIELDS  
CATS_MY_GET_REJECTION_REASONS
CATS_MY_GET_TEXT_ELEMENTS    
CATS_MY_GET_TIME_DATA        
CATS_MY_GET_BOOTSTRAP      
CATS_MY_GET_CUSTOMIZING_DATA
TT_GET_PICKLIST
<u><b>RFC's for Travel Expenses (MTR)</b></u>
WAF_TRIP_ADD_RECEIPT          
WAF_TRIP_CHANGE_RECEIPT       
WAF_TRIP_CREATE               
WAF_TRIP_DELETE_RECEIPT       
WAF_TRIP_GET                  
WAF_TRIP_GET_CREDIT_CARD_ITEMS
WAF_TRIP_GET_CUSTOMIZING      
WAF_TRIP_GET_DELETED_LIST     
WAF_TRIP_GET_LIST             
WAF_TRIP_MODIFY               
WAF_TRIP_PROCESS_RECEIPT      
WAF_TRIP_RESULTS              
Hope this helps
Thanks
Raj

Similar Messages

  • MTT Transaction codes and BAPIs needed

    Hi All,
    Please can anyone give me the Transaction Codes and BAPIs that are needed and used for developing an application for Mobile Time and Travel.?
    Please help me out.
    Cheers,
    Anu.

    Hi Anu
    Below are the Functional Modules used in the standard MTT application.
    <u><b>RFC's for Time Sheet (MTS)</b></u>
    CATS_MY_GET_MASTER_DATA      
    CATS_MY_GET_PICKLIST_FIELDS  
    CATS_MY_GET_REJECTION_REASONS
    CATS_MY_GET_TEXT_ELEMENTS    
    CATS_MY_GET_TIME_DATA        
    CATS_MY_GET_BOOTSTRAP      
    CATS_MY_GET_CUSTOMIZING_DATA
    TT_GET_PICKLIST
    <u><b>RFC's for Travel Expenses (MTR)</b></u>
    WAF_TRIP_ADD_RECEIPT          
    WAF_TRIP_CHANGE_RECEIPT       
    WAF_TRIP_CREATE               
    WAF_TRIP_DELETE_RECEIPT       
    WAF_TRIP_GET                  
    WAF_TRIP_GET_CREDIT_CARD_ITEMS
    WAF_TRIP_GET_CUSTOMIZING      
    WAF_TRIP_GET_DELETED_LIST     
    WAF_TRIP_GET_LIST             
    WAF_TRIP_MODIFY               
    WAF_TRIP_PROCESS_RECEIPT      
    WAF_TRIP_RESULTS              
    Hope this helps
    Thanks
    Raj

  • STAD - get the 'transaction code' and 'program name'

    Hi, I was wondering if someone knows about a bapi with which I can get only the "transaction code" and "program name".
    I need to get those for a specified user, but I don't want to set on a trace, that's why I'd like to use the transaction STAD.
    If anyone can help, thanks in advance
    Grtz,
    Dragovian

    ok, so I go like this
    TYPE-POOLS sapwl .
    DATA:  all_stats        TYPE sapwl_allstats.
      CALL FUNCTION 'SAPWL_READ_STATISTIC_FILES'
       EXPORTING
         read_client                 = '*'
         read_time                   = '200000'
         read_start_date             = sy-datum
         read_start_time             = '000000'
         read_username               = sy-uname
         read_workprocess            = 'FFFF'
         wait_factor                 = 150
        CHANGING
          all_stats                   = all_stats
    how'd I get "start-time" "report-name" "date" "username"?

  • What are the transaction codes we use for LSMW in MM, SD, PP  & FI/CO gnrly

    Hi all,
    What are the transaction codes we use for LSMW in MM, SD, PP  & FI/CO generally?
    Help will be surely rewarded.
    Thanks and Regards,
    Creasy

    > What are the transaction codes we use for LSMW in MM, SD, PP  & FI/CO generally?
    General threads about LSMW in MM, SD, PP, FICO will be locked and deleted generally.
    > Help will be surely rewarded.
    &********************** Please read "the rules" if found usefull... ************************&
    Cheers,
    Julius

  • Transaction code to learn for sample codes about trees and containers

    trnasaction code to learn for sample codes about trees and containers

    hi check this....,
    REPORT  Ztree_TEST_PGM.
    Type-pools : fibs,stree.
    data : t_node type snodetext.
    data : node_tab like t_node occurs 0 with header line.
    clear : node_tab, node_tab[].
    node_tab-type = 'T'.
    node_tab-name = 'Earth'.
    node_tab-tlevel = '01'.
    node_tab-nlength = '5'.
    node_tab-color = '4'.
    node_tab-text = 'Hello'.
    node_tab-tlength ='5'.
    node_tab-tcolor = 3.
    append node_tab.
    clear node_tab.
    node_tab-type = 'P'.
    node_tab-name = 'Europe'.
    node_tab-tlevel = '02'.
    node_tab-nlength = '6'.
    node_tab-color = '1'.
    node_tab-text = 'Hello'.
    node_tab-tlength ='5'.
    node_tab-tcolor = 4.
    append node_tab.
    clear node_tab.
    node_tab-type = 'P'.
    node_tab-name = 'Germany'.
    node_tab-tlevel = '03'.
    node_tab-nlength = '7'.
    node_tab-color = '4'.
    node_tab-text = 'Hello'.
    node_tab-tlength ='5'.
    node_tab-tcolor = 4.
    append node_tab.
    clear node_tab.
    node_tab-type = 'P'.
    node_tab-name = 'Berlin'.
    node_tab-tlevel = '04'.
    node_tab-nlength = '6'.
    node_tab-color = '4'.
    node_tab-text = 'Hello'.
    node_tab-tlength ='5'.
    node_tab-tcolor = 3.
    append node_tab.
    clear node_tab.
    node_tab-type = 'P'.
    node_tab-name = 'Asia'.
    node_tab-tlevel = '02'.
    node_tab-nlength = '4'.
    node_tab-color = '1'.
    node_tab-text = 'Hello'.
    node_tab-tlength ='5'.
    node_tab-tcolor = 3.
    append node_tab.
    clear node_tab.
    node_tab-type = 'P'.
    node_tab-name = 'India'.
    node_tab-tlevel = '03-'.
    node_tab-nlength = '5'.
    node_tab-color = '1'.
    node_tab-text = 'Hello'.
    node_tab-tlength ='5'.
    node_tab-tcolor = 3.
    append node_tab.
    clear node_tab.
    node_tab-type = 'P'.
    node_tab-name = 'Bombay'.
    node_tab-tlevel = '04-'.
    node_tab-nlength = '6'.
    node_tab-color = '1'.
    node_tab-text = 'Hello'.
    node_tab-tlength ='5'.
    node_tab-tcolor = 3.
    append node_tab.
    clear node_tab.
    CALL FUNCTION 'RS_TREE_CONSTRUCT'
      TABLES
        NODETAB                  = node_tab .
      DATA: type_mapping TYPE stree_ctl_type_mapping_tab.
      DATA: wa_type TYPE stree_ctl_type_mapping.
      CLEAR: type_mapping[].
        wa_type-type = 'A'.
        wa_type-icon = '@BL@'.
        APPEND wa_type TO type_mapping.
    CALL FUNCTION 'RS_TREE_LIST_DISPLAY'
    EXPORTING
       USE_CONTROL                     = 'L'.
    A list of other function modules that can also be used to construct tree reports:
    SEUT,                            Hierarchy framework
    RS_TREE_ADD_NODE                 Insert nodes
    RS_TREE_AUTOMATIC_REFRESH
    RS_TREE_COMPRESS                 Hide subtree(s)
    RS_TREE_CONSTRUCT                Construct new hierarchy or insert subtree
    RS_TREE_CONTROL_PREPARE
    RS_TREE_CREATE                   Create hierarchy
    RS_TREE_DELETE_NODE              Delete node with associated sub-tree
    RS_TREE_EXPAND                   Expand subtree
    RS_TREE_GET_CURRENT_LAYOUT       Get layout information for displayed hierarchy
    RS_TREE_GET_CURRENT_NODE         Get node at which cursor is positioned
    RS_TREE_GET_CURRENT_ROOT         Get current root node
    RS_TREE_GET_CURRENT_TREE         Get structure information for displayed hierarchy
    RS_TREE_GET_INPUT                Get entires from input fields
    RS_TREE_GET_MARKED_NODES         Get selected nodes
    RS_TREE_GET_MODIFICATION_LOG     Get change log for hierarchy
    RS_TREE_GET_NODE                 Get nodes for specified ID
    RS_TREE_GET_NODE_BY_NAME         Get node for specified node name
    RS_TREE_GET_PREDECESSOR          Get preceding node
    RS_TREE_GET_SEARCHSTRING         Get last search strinng
    RS_TREE_LIST                     Simulate hierarchy or subtree display
    RS_TREE_LIST_DISPLAY             Display hierarchy
    RS_TREE_LIST_DISPLAY             Display hierarchy
    RS_TREE_MODIFY_NODE
    RS_TREE_MOVE                     Reassign node with subtree
    RS_TREE_POP                      Get hierarchy from the stack and restore
    RS_TREE_PUSH                     Place hierarchy on the stack
    RS_TREE_RESET_LOCK               Deselect node
    RS_TREE_SET_CURRENT_LAYOUT       Set layout with marked cursor position
    RS_TREE_SET_CURRENT_TREE         Set other hierarchy
    RS_TREE_SET_LOCK                 Select node
    RS_TREE_SET_NODE                 Change Nodes
    RS_TREE_SET_SCROLL_POS           Position node at the beginning of the page
    RS_TREE_SLEEP
    RS_TREE_SORT_CHILDREN
    regards,
    venkat.

  • How to implement bapi for transaction code f-02 for multiple line items

    Hi All,
    I am having one requirement to of implementing bapi for tcode f-02.
    I have identified the name of the badi e.i.  BAPI_ACC_GL_POSTING_POST.
    but i dont have any idea how implement it.
    i have multiple line items for one header.
    Please help me in this.
    Regards,
    Shoaib.

    HI
    In recording once u save, the recording comings out the transaction.
    If u want the pop-up to display before save. Then in recording also
    after entering all data and before Save press enter or do check.Try
    this way after that save the transaction.
    Regards,
    Raghu.

  • Important transaction codes and guidelines ...

    Hi to all
    Please tell me what are the things that a person should keep in mind while working in realtime servers.
    What are the transaction codes , programs which are most commonly used.
    Please send me as I have newly joined a company.
    Thanks ...

    Hi
    may be this can help..
    BASIS/ABAP       
    SEARCH_SAP_MENU      Show the menu path to use to execute a given tcode. You can search by transaction code or menu text. 
    DI02      ABAP/4 Repository Information System: Tables.
    LSMW      Legacy System Migration Workbench. An addon available from SAP that can make data converstion a lot easier. Thanks to Serge Desland for this one.
    OSS1      SAP Online Service System
    OY19      Compare Tables
    SM13      Update monitor. Will show update tasks status. Very useful to determine why an update failed.
    S001      ABAP Development Workbench
    S001      ABAP/4 Development Weorkbench. (from [email protected])
    S002      System Administration. (from [email protected])
    SA38      Execute a program. (from [email protected])
    SCAT      Computer Aided Test Tool
    SCU0      Compare Tables
    SE01      Old Transport & Corrections screen
    SE03      Groups together most of the tools that you need for doing transports. In total, more than 20 tools can be reached from this one transaction.
    SE09      Workbench Organizer
    SE10      New Transport & Correction screen
    SE11      ABAP/4 Dictionary Maintenance SE12 ABAP/4 Dictionary Display SE13 Maintain Technical Settings (Tables)
    SE12      Dictionary: Initial Screen - enter object name. (from [email protected])
    SE13      Access tables in ABAP/4 Dictionary. (from [email protected])
    SE14      Utilities for Dictionary Tables
    SE15      ABAP/4 Repository Information System
    SE16      Data Browser: Initial Screen. (from [email protected])
    SE16N      Table Browser (the N stands for New, it replaces SE16). Provided by Smijo Mathew.
    SE17      General Table Display
    SE24      Class Builder
    SE30      ABAP/4 Runtime Analysis
    SE32      ABAP/4 Text Element Maintenance
    SE35      ABAP/4 Dialog Modules
    SE36      ABAP/4: Logical Databases
    SE37      ABAP/4 Function Modules
    SE38      ABAP Editor
    SE39      Splitscreen Editor: Program Compare
    SE41      Menu Painter
    SE43      Maintain Area Menu
    SE48      Show program call hierarchy. Very useful to see the overall structure of a program. Thanks to Isabelle Arickx for this tcode.
    SE49      Table manipulation. Show what tables are behind a transaction code. Thanks to Isabelle Arickx for this tcode.
    SE51      Screen Painter: Initial Screen. (from [email protected])
    SE54      Generate View Maintenance Module
    SE61      R/3 Documentation
    SE62      Industry utilities
    SE63      Translation
    SE64      Terminology
    SE65      R/3 document. short text statistics SE66 R/3 Documentation Statistics (Test!)
    SE68      Translation Administration
    SE71      SAPscript layout set
    SE71      SAPScript Layouts Create/Change
    SE72      SAPscript styles
    SE73      SAPscript font maintenance (revised)
    SE74      SAPscript format conversion
    SE75      SAPscript Settings
    SE76      SAPscript Translation Layout Sets
    SE77      SAPscript Translation Styles
    SE80      ABAP/4 Development Workbench
    SE81      SAP Application Hierarchy
    SE82      Customer Application Hierarchy
    SE83      Reuse Library. Provided by Smiho Mathew.
    SE84      ABAP/4 Repository Information System
    SE85      ABAP/4 Dictionary Information System
    SE86      ABAP/4 Repository Information System
    SE87      Data Modeler Information System
    SE88      Development Coordination Info System
    SE91      Maintain Messages
    SE92      Maintain system log messages
    SE93      Maintain Transaction. (from [email protected])
    SEARCH_SAP_MENU      From the SAP Easy Access screen, type it in the command field and you will be able to search the standard SAP menu for transaction codes / keywords. It will return the nodes to follow for you.
    SEU      Object Browser
    SHD0      Transaction variant maintenance
    SM04      Overview of Users (cancel/delete sessions)
    SM12      Lock table entries (unlock locked tables)
    SM21      View the system log, very useful when you get a short dump. Provides much more info than short dump
    SM30      Maintain Table Views. (from [email protected])
    SM31      Table Maintenance
    SM32      Table maintenance
    SM33     Display Table Parameter ID TAB  
    SM35      View Batch Input Sessions
    SM37      View background jobs
    SM50      Process Overview. (from [email protected])
    SM51      Delete jobs from system (BDC)
    SM62      Display/Maintain events in SAP, also use function BP_EVENT_RAISE
    SMEN      Display the menu path to get to a transaction
    SMOD      Transactions for processing/editing/activating new customer enhancements.
    CMOD      Transactions for processing/editing/activating new customer enhancements.
    SNRO      Object browser for number range maintenance. (from [email protected])
    SPRO      Start SAP IMG (Implementation Guide). (from [email protected])
    SQ00      ABAP/4 Query: Start Queries
    SQ01      ABAP/4 Query: Maintain Queries
    SQ02      ABAP/4 Query: Maintain Funct. Areas
    SQ03      ABAP/4 Query: Maintain User Groups
    SQ07      ABAP/4 Query: Language Comparison
    ST05      Trace SQL Database Requests. (from [email protected])
    ST22      ABAP Dump analysis
    SU53      Display Authorization Values for User. (from [email protected])
    PFCG     Role maintenance
    SU21     List of object classes
    WEDI      EDI Menu. IDOC and EDI base.
    WE02      Display an IDOC
    WE07      IDOC Statistics
    Cheers
    VJ

  • Bank Transaction Codes and Transaction Type Codes in Cash Management

    Hi All,
    Can someone please let me know to which field we should populate the Bank Transaction Code in the ce_statement_lines_interface table.
    Is it TRX_CODE column ?
    The problem i'm having is actually the default BAI2 mapping doesn't populate the bank transaction codes to this fild (TRX_CODE) when I try to upload the file generated by our bank.Insdead those are populated in the CUSTOMER_TEXT column.
    The values populated in the TRX_CODE are the values to indicate whether its a credit entry or a debit entry ( “399” for credit transactions or “699” for debit transactions).
    Please let me know where these 399 and 699 should be populated in the interface table as well?
    Thanks and Regards,
    MPH

    Check your BAI mapping with statement data file. As far as I know (16,1) is the right line level mapping for trx code.

  • Transaction Code FP70 : Lot for reporting incorrect bank data

    Hello Experts,
    I am trying to understand process behind "Transaction Code": FP70. If I receive bank file for failed pre-note NACHA format (and direct debit return) can I process using this transaction? but then how to upload this file?
    Any steps or information would be of great help. Thanks.
    Kind Regards,
    Nikhil J.

    Hi Nikhil,
    There are many options to choose from.
    (a)  As stated above, you can use transaction FPPNR to upload the rejected transactions into SAP, if you are receiving the rejected file from the bank in ACH format.
    (b) You can also use transaction FPB5 for processing the rejected payments that you get from the file.
    (c)  If you are receiving the rejected payments from the bank through an account statement,you can also use FPB7/FPB17 for processing them in SAP.
    Hope it helps...
    Thanks,
    Amlan

  • Table for Transaction code and Table associated

    Hello Experts,
    Please let me know if we have some table where it stores the information of Table Assoicated to a transaction .
    ( In detail : That is we give a table name in the View when we create a transaction for SM30)
    Regards,
    Ratna

    Hello,
    You have to go the table TSTCP (table for parameter transaction).
    In the field PARAM, pass
    *Z_TABLE*.
    BR,
    Suhas
    Edited by: Suhas Saha on Jan 22, 2010 11:22 AM

  • Transaction code against used for BADI BAPI Details

    Hi Gurus,
    How to find in Particular transaction Active BAPI and BADI  used Details.
    Pls, Advise me.
    Regards,
    Jeevan.

    Hi Jeevan,
    Your question is not clear. Please elaborate more on the requirement. As far as I understand BAPI are independent of any transaction and those are mainly used for communication between SAP and Non-SAP system.
    BADI's are transaction dependent. You can use SE18/19 to find out active implementation for BADI.
    Thanks,
    Augustin.

  • Using SO_OBJECT_SEND with Transaction code and IDOC number

    Hi All - from within the inbound_idoc_orders FM - when an idoc errors I want to generate a sap office document (with more verbage than workflow, so that is why a sap office doc) and with SO_OBJECT_SEND - but I want to be able to pass the idoc number and either Tcode VA01 or FM of inbound_idoc_orders - so that user can usee doc execute menu path and be launched into VA01 with the idoc data...
    We do this today with VA01 and the sales order number - here is different in I want to pass the idoc number so that data can be used....
    I did this prior but one system referesh flushed the code ...  Thanks for the help - Janet

    Hi All - from within the inbound_idoc_orders FM - when an idoc errors I want to generate a sap office document (with more verbage than workflow, so that is why a sap office doc) and with SO_OBJECT_SEND - but I want to be able to pass the idoc number and either Tcode VA01 or FM of inbound_idoc_orders - so that user can usee doc execute menu path and be launched into VA01 with the idoc data...
    We do this today with VA01 and the sales order number - here is different in I want to pass the idoc number so that data can be used....
    I did this prior but one system referesh flushed the code ...  Thanks for the help - Janet

  • FOREIGN CURRENCY TRANSACTION CODE AND IN FBL1N

    Hi All,
    Can some one advise me what is the T Code to display Foreign exchange rates for different Currencies and how to display the another currency in FBL1N apart from the local currency.
    Regards,
    Srikanth
    Moderator: Please, avoid asking basic questions

    Exchange rates are maintained in OB08.  Change the layout to include fields like amount in Currency 2 etc to ahve it displayed in other currency.
    Regards,.
    Sridevi

  • What transaction code and entrys we use to post intercompany transactions

    hi,
    I know obya is used to configure intercompany.
    1.can you explain what accounting entrys we post.example?
    2.what tcode we use to post the intercompany transaction
    3.please any relevant documents can email to [email protected]
    thanks
    Kiranmayi

    we have 2 theories after showing the exception trace to folks who r more adept at managed code.
    the first is related to the fact that our 3rd party dlls (I think entity framework is included in these) r older versions.  I don't want to discount this theory but we have some evidence already that this might not be true.
    I hope I can do justice to the 2nd theory but will make it clearer and clearer as I get a better understanding.  I believe this is what Arthur was saying and I applaud his instincts.  They explained that .net is so "smart" that it detected
    a change in namespace  (ie context as Arthur said) and purposely threw an exception 2 save us from ourselves.  The workarounds discussed were a bit over my head but I will continue trying to better understand it.  The fact that many of the methods
    we call after reflection r now merged into one assembly seemed relevant to the discussion and possible workarounds.   
    this link came up in their discussion and I believe the bottom line here is that by qualifying assembly names further (in config?)r, a workaround is possible. 
    http://msdn.microsoft.com/en-us/library/system.type.assemblyqualifiedname(v=vs.110).aspx  .
    This link came up as well and has something to do with ILMerge and workarounds to ILMerge. 
    http://elegantcode.com/2011/04/02/dynamically-load-embedded-assemblies-because-ilmerge-appeared-to-be-out/  .
    Finally, this link came up and seems to have something to do with embedding your dlls in one assembly without them losing their identity.
    http://blogs.msdn.com/b/microsoft_press/archive/2010/02/03/jeffrey-richter-excerpt-2-from-clr-via-c-third-edition.aspx
    I'll post more here as we muddle thru this.

  • How to know a transaction code is used for how many times?

    Hello,
    I have a requirement that is somewhat unusual for me. We have some Z reports and we want to know the worthiness of these reports if they are being used or not, if they are being used, by whom and how many times are being used.
    Your help is greatly appreciated.
    Hakan

    Hi
    As said you can have an discussion with your BASIS they can help just try in
    tode =STAD    or   program name= RSSTAT26
    SM20 you can get all the details like
    user name
    termial number
    tcode
    programme etc
    regards

Maybe you are looking for

  • Cannot connect HP Laserjet 4100n printer.

    I have a PC with Windows Vista Home Premium Edition and a HP Laserjet 4100n printer. Both are connected to a Netgear hub using CAT5 cables. I recently moved house. The only change to my set-up is that instead of the PC connecting to the Internet thro

  • How to put links to E-Business suite pages in Oracle Portal

    Hi All, I am looking to create an employee portal using Oracle Portal 11g. One of the requirements is to provide some summary information on, say benefits in the portal and provide a link to the detailed benefits page in e-business suite from there (

  • Can't see tables after a JDBC connection

    Hi, I made a JDBC connection with Progress9.1d database. In the Connections Navigator, I expand the nodes for my database connection and see the following nodes: Synonyms, Tables, Views. However, when I try to expand the "Tables" node, I can't see th

  • Want interview quesstions of apex

    hi friends can anyone help me out with possible interview questions of apex ....and i would also like to know whats the diffrance between J2EE and Oracle Apex thanks in advance rommy

  • Adoption of iPads in a UK secondary school ?

    Is there anybody out there who has a case study that supports the adoption and delpoyment of iPads in a UK School ? Our ICT chaps, all Windows experts, would like to see case study that supports the deployment of tablets and or ipads in a secondary s