How to access the Mobile Time & Travel database tables?

How can I access the database tables stored in SAPMobileEngine\webapps\me\WEB-INF\wwwroot\te_data\customer\database_2_0\<name_of_declared_table>  ??
Formerly the tables were stored in ...\database as XML files and could be viewed with a standard texteditor. Now the files are stored in ...\database_2_0 as DAT files in a special format. How can I get access to the tables? (like longtext.dat or CATS_MY_TABLE_*.DAT)

Michael,
Are you running MTT 1.6 SR2 Patch 03?
The database is in serialized format and you will have unserialized them by using Eclipse IDE (or NW Development Studio). This will convert it to xml format. But I think the application itself will need it to be serialized format.
Peter

Similar Messages

  • How to access the LOB objects through database links??????????????

    How to access the LOB objects through database links??????????????

    Hi
    See:
    http://asktom.oracle.com/pls/asktom/f?p=100:11:0::::P11_QUESTION_ID:52297289480186
    http://asktom.oracle.com/pls/asktom/f?p=100:11:0::::P11_QUESTION_ID:5322964030684
    And you also might want to get a new keyboard, your '?' seems to be stucked....

  • How to tracke the new entries in database table ?

    Hi,
    How to tracke the new entries in database table ? is there any FM or report is there to check it ?
    regards
    vishnu

    Hi Vishnu,
    u can write a report program for this and in that use the event  :
    AT NEW <field-name> ( use primary key)
    your statements
    ENDAT
    for eg.
    loop at itab ( herfe itab must be of type of table for which u want to track new entries)
    at new matnr
    write:/ new record
    endat
    endloop.
    schedule this report in background to run in every 5 or 10 mins as per your requirement and hence changes can be tracked.
    regards
    Vinod

  • How to delete the complete contents of database table ? should be empty !!

    Hi Guys,
    I have requirement where i have delete the contents of database table..i have make it empty (no records at all) and then i have to fill it with the records from the excel sheet.
    I can upload data from the excel sheet.
    Please tell me how to delete the complete contents of the database table ??
    Regards
    Rahul

    hi ,
    just write like this,
    delete from <database table>.
    commit work.
    sample code, here edpar is database table.
    delete from edpar." FROM TABLE g_tab_delete.
      call function 'DB_COMMIT'.
      loop at g_tab_edpar into g_wa_edpar.
        insert into edpar values g_wa_edpar.
        if sy-subrc  eq 0.
          move-corresponding g_wa_edpar to g_wa_edpar1.
          append g_wa_edpar1 to g_tab_edpar1.
        else.
          move-corresponding g_wa_edpar to g_wa_edpar2.
          append g_wa_edpar2 to g_tab_edpar2.
        endif.
      endloop.
    that's all it works.
    reward points if helpful.
    regards,
    seshu.

  • How to restrict the entries of a database table based on the user name

    Hi All,
    I have created a Database Table. Table maintenance generator is generated for the table.
    UNAME(user name) is one of the fields in the table. whenever the user creates a new entry, the field UNAME will be populated automatically with SY-UNAME value. I have used Table event '05' to do this.
    My requirement is...
    When a user tries to maintain the entries of the table using SM30, when 'DISPLAY' is chosen, all the records of the table should be displayed.
    When 'MAINTAIN' is chosen, only those records which have UNAME = SY-UNAME(User Logged in) should be in EDIT mode. and rest all the records should be in DISPLAY mode(greyed out). It should allow to edit only those records which are created by the user logged in.
    Could you please tell me how to do this..? Thanks in advance.
    Thanks & Regards,
    Paddu.

    HI,
    In table main. gen there are number of events , try to select one event like 05 for the Sy-uname.
    For the  requirement:
    In that event write the code like
    this is basic idea not the code:
    Case ' Sy-ucomm'.
    when 'display'.  " button
       Nomally for the display button it will show all the records, but we need to write a code like this.
    select all records frm the table.
    ( Need to write the code in case if the user first maintained the data then again press the display , list has to be refreshed.)
    when ' Maintain'. " button.
    Fetch the records that are with SY-UNAME and find out the edit function and implement it on each and every record.
    endcase.
    Thanks and Regards,
    Bharani.

  • How to determine the last time  a database was used

    Is it possible in to determine the time a CRUD operation occurred on a database?

    How can I activate the auditing? http://download-east.oracle.com/docs/cd/B19306_01/network.102/b14266/auditing.htm#i1011984
    Daljit Singh

  • How to access the data stored in Java tables in E-Commerce 7.0

    For the CRM E-Commerce 7.0 Web shop all the data related order templates, Shop Id and catalog variants are not getting stored in CRM tables. Can anyone please let us know where all the details are getting stored.
    By searching here, in SDN Forum we found that these details are getting stored in some java tables. If this is true  kindly let us know the following points.
    1). How can we access these tables.
    2).Where these java tables are stored .
    3).Do we have authorizations to check and modify these tables.
    4).If we donu2019t have authorizations to check and modify these tables, how can we get the access to them.
    4).How can we write Database Queries to retrieve the data from these tables.

    I am afraid, all these three entities are in CRM tables.
    Web Shops - Function module CRM_ISA_SHOP_GETLIST, Table crmm_isa_shop_h
    Catalog Variants - Function module - COM_PRDCAT_GET_VARIANTS (they are also stored in CRM tables) for a given catalog.
    Now for the Order Templates - They are technically order objects with system status set to "Order Template" I1034. You should be able to see them in CRM tables alongwith other orders... crmd_orderadm_h and etc...

  • How to access specific row of a database table.

    hi all,
    i am saving all the hr tables in a internal table.
    say, mtable = 'pa0002'  is the content of mtable on looping above internal table.
    LOOP AT i_itf_list INTO wa_list.  "wa_list contains list of hr tables.
       mtable = wa_list-tabname.
       LOOP AT persno.  "persno contains list of personal numbers.
    "how to acess particular row of (mtable)  dynamically where pernr = persno-pernr."
       ENDLOOP.
    ENDLOOP.
    thanks.

    Hi,
    Use below code for your reference.
    data : ref_table_des type ref to cl_abap_structdescr,
              dref type ref to data.
    field-symbols : <itab> type standard table,
                            <wtab> type any.
    data : mtable type tabname.
    LOOP AT i_itf_list INTO wa_list. "wa_list contains list of hr tables.
    clear mtable.
    mtable = wa_list-tabname.
    LOOP AT persno. "persno contains list of personal numbers.
    ref_table_des ?= cl_abap_typedescr=>describe_by_name( mtable ).
    create data dref type handle ref_table_des.
    assign dref->* to <wtab>.
    create data dref like standard table of <wtab>.
    assign dref->* to <itab>.
    ***if you want to select multople rows use below select***********
    select * from (mtable)
    into table <itab>
    where pernr = persno-pernr.
    ********if you want to select single row use below select************
    select single * from (mtable)
    into <wtab>
    where pernr = persno-pernr.
    ENDLOOP.
    ENDLOOP.
    Vijay

  • How to read the CSV Files into Database Table

    Hi
    Friends i have a Table called tblstudent this has the following fields Student ID, StudentName ,Class,Father_Name, Mother_Name.
    Now i have a CSV File with 1500 records with all These Fields. Now in my Program there is a need for me to read all these Records into this Table tblstudent.
    Note: I have got already 2000 records in the Table tblstudent now i would like to read all these CSV File records into the Table tblstudent.
    Please give me some examples to do this
    Thank your for your service
    Cheers
    Jofin

    1) Read the CSV file line by line using BufferedReader.
    2) Convert each line (record) to a List and add it to a parent List. If you know the columns before, you might use a List of DTO's.
    3) Finally save the two-dimensional List or the List of DTO's into the datatable using plain JDBC or any kind of ORM (Hibernate and so on).
    This article contains some useful code snippets to parse a CSV: http://balusc.xs4all.nl/srv/dev-jep-csv.html

  • Deployment of Mobile Time & Travel

    Hi,
    What are the mandatory things to be done for a Mobile time travel application to be deployed???
    As from the Backend and middleware point of view configuration was done properly and system was ready to use but, still confusing how to deploy the application can i have a brief overview on how to deploy a Mobile time travel application.
    Any suggestions are highly appreciated
    Regards
    Pavan

    Hi ,
    @ Srikanth
    I do have that document already. Anyway thanks for your help. Please check my below resolution for the exact problem where i'm facing.
    @ Veera
    Thanks for your reply.
    I Have got the following document and followed all the steps mentioned in this document but struck with deployment of an application. Please check the document at section 6.5 with a description Deployment Using Mobile Administrator.
    help.sap.com/bp_bblibrary/600/Documentation/DUT_BB_ConfigGuide_EN_US.doc
    The following are the steps defined in that document
    Use
    The SAP NetWeaver Mobile Administrator is used to deploy SAP xMTT to the client Mobile Infrastructure 7.0 SPS12 and above. In order to deploy these components to authorized users, system administrator need to upload the mobile components to the NW AS, create a device configuration and a hierarchy group.
    Procedure
    1.     Upload the sda files (see above) in the delivered xMTT package using the Software Deployment Manager (SDM) in the SAP NetWever AS (AS Java).
    2.     Start the Mobile Administrator (for example, http://<server>:<port>/nwa).
    3.     Choose Administration > Mobile Infrastructure > Mobile Components
    4.     Choose the Reload button (on the right pane of the browser).
    5.     Choose Device Configurations (on the left pane of the browser under the Mobile Infrastructure menu tree).
    6.     Choose Create in the Device Configurations section and enter a new device configuration name (for example, MTT_CONFIG) and its description in the Device Configuration and Description fields respectively.
    7.     In the Details for Selected Device Configuration section, choose the Mobile Components tab. Choose the Add/Remove button.
    8.     In the Search for Mobile Components dialog box, enter MT* in the Name field and choose Search to get the Available Mobile Components list.
    9.     Select the components as per the table below and then move these components to the Assigned Mobile Components list by choosing the >> button.
    10.     On the Confirmation dialog box, choose No. 
    Mobile Component Name     Version     Installation Sequence
    MTR     200400     
    MTS     200400     
    MTTCORE     200400     
    MTTREPOSITORY     200400     
    11.     Choose   Save.
    12.     Repeat steps 6 to 9 to create another Device configuration (for example, MTT_ADDON for the MTT patches.
    13.     On the Confirmation dialog box, choose Yes. 
    14.     In the Insert Installation Sequence dialog box, enter sequence number and then choose Insert for each of the components as per the table below:
    Mobile Component Name     Version     Installation Sequence
    MTR20SR04PL03     200403     1
    MTS20SR04PL03     200403     1
    MTTCORE20SR04PL03     200403     1
    MTTREP20SR04PL03     200403     1
    15.     Choose   Save.
    16.     Choose Hierarchy Grouping (on the left pane of the browser under the Mobile Infrastructure menu tree).
    17.     Choose Create (on the right pane of the browser in the Hierarchy Group Tree section).
    18.     Enter a name in the Hierarchy Group Name field (for example, MTT_GROUP) and then choose the Create button.
    19.     Choose the Device Configurations tab in the Details for Selected Hierarchy Group section, and choose the Add/Remove button.
    20.     On the Search for Available Device Configurations, enter MTT_CONFIG and choose Search. In the Available Device Configurations, select MTT_CONFIG and choose the >> button to transfer the selection to the Assigned Device Configurations. Choose Save.
    21.     In the Users tab, in the Details for Selected Hierarchy Group section, choose the Add/Remove button to add users for the group similar to the instruction in Step 17.
    22.     Repeat steps 14 to 20 for the Device Configuration MTT_ADDON instead of MTT_CONFIG.
    Now the problem i'm facing was at step 6 it has asked to create a new device but in my screen i was unable to trace where the create button was located at plz find the attached link of screen shot
    http://img150.imageshack.us/img150/2148/deployci1.jpg
    Any suggestions are highly appreciated
    Thanks & Regards
    Pavan

  • Mobile Time & Travel developments

    Hi to everybody.   
    I need help to begin some developments with the Mobile Time & Travel 1.6
    I have to make read-only some fields of the main page of the Timesheet (for example the fields of the "OP" column [I think that it is the VORNR value ])
    Which interface do I have to implement?IColumnModelCustomer or IColumnModel or others?
    Can someone give me an example on this problem?
    Thanks

    hello rocco,
    what do you wanna know about the microITS context?
    jo

  • How to get the data from mysql database which is being accessed by a PHP application and process the data locally in adobe air application and finally commit the changes back in to mysql database through the PHP application.

    How to get the data from mysql database which is being accessed by a PHP application and process the data locally in adobe air application and finally commit the changes back in to mysql database through the PHP application.

    If the data is on a remote server (for example, PHP running on a web server, talking to a MySQL server) then you do this in an AIR application the same way you would do it with any Flex application (or ajax application, if you're building your AIR app in HTML/JS).
    That's a broad answer, but in fact there are lots of ways to communicate between Flex and PHP. The most common and best in most cases is to use AMFPHP (http://amfphp.org/) or the new ZEND AMF support in the Zend Framework.
    This page is a good starting point for learning about Flex and PHP communication:
    http://www.adobe.com/devnet/flex/flex_php.html
    Also, in Flash Builder 4 they've added a lot of remote-data-connection functionality, including a lot that's designed for PHP. Take a look at the Flash Builder 4 public beta for more on that: http://labs.adobe.com/technologies/flashbuilder4/

  • I used a partitioned HDD for time machine, using a partition already containing other data files. I am now no longer able to view that partition in Finder. Disk Utility shows it in grey and "not mounted". Any suggestions of how to access the files?

    I used a partitioned HDD for time machine, using a partition already containing other data files. I am now no longer able to view that partition in Finder. Disk Utility shows it in grey and "not mounted". Any suggestions of how to access the files? Does using time machine mean that that partition is no longer able to be used as it used to be?
    HDD is a Toshiba 1TB, partitioned into two 500GB partitions.
    OS X version 10.9.2

    Yes, sharing a TM disk is a bad idea, and disks are cheap enough so that you don't need to.
    Now
    Have you tried to repair the disk yet

  • How to access the ms access database in the JApplet?

    I am New here.
    Please help me.
    I am create one java file to access MS access the database in the JApplet.
    It say "Access denied".
    How to access the ms access database in the JApplet?
    Message was edited by:
    SVPRM

    Hi,
    First of all, were u successfull in creating the connection with the .mdb file.Like settting the DSN and configuring the .mdb file path in control panel.
    If yes then one option might be that the file ur trying to access is in Read-only mode.
    regards

  • How to access the Microsoft Dynamics database tables for creating a DW

    Hi all,
    I m trying to build a POC for the manufacturing industry (Dairy Industry).
    Hence I'm trying to install Microsoft Dynamics and access the tables available its OLTP and create a warehouse.
    Please let me know how we access the database tables of Microsoft Dynamics to do etl (using any etl tool).
    Then i would be creating reports and dashboard using OBIEE 11G.
    I thought of getting help before installing microsoft dynamics so that i can install the necessary components to achieve the same.
    Please let me know the necessary things i would need to do.
    Thanks
    Jaan

    Hi,
    I think this can be possible with microsoft ssis etl tool.
    Thanks,
    Navin Kumar Bolla

Maybe you are looking for