Will sap database todes like db12,db13,db01,db02.... work  in SAP ECC6 ehp6 on HANA

will sap database t-odes like db12- database planing calendar work on SAP ECC6 ehp6 on HANA
and also
db12,db13,db01,db02.... they work in  SAP ECC6 ehp6 on HANA ??

Dear Ashok
SAP HANA it is just database BOX contains in single HANA BOX  with memory 1024gb and 2048gb
it is an in memory data processing and remaining all tcodes are working like normal SAP only
as u asked the Tcodes which you mentioned working on HANA they work in  SAP ECC6 ehp6 on HANA
Regards

Similar Messages

  • DMS Storage in SAP Database with Kpro.

    Hello SAP Gurus,
    we are using the ECC 6.0 client and still have not configured any content servers for storing the originals,
    but i could make use of Kpro Tick in Document type and attach n no of file to DIR,
    also i have tried using KPRO tick and also making the file Size as 00000,
    but its working and allowing me to store originals in DMS_C1_S1 content repository.
    But when i dont give Kpro tick in document type, then original is not checked in using KPRO, (but again it is also storing original in SAP Database), then it is at this point it is required to give the file size or else it is giving the error,  what is the reason for this strange behavior,
    as in both the case the document is getting stored in SAP database only.
    as content repository DMS_C1_S1 is again using SAP Data Base itself. (Verify from OACT transaction.)
    Please clarify,
    Points awaiting.
    regards
    Priya

    Dear friends thanks for your reply,
    as i have detailed in my quiry,
    i could see  if we use Kpro we can attach more than 2 originals in a DIR, and also get the advantages of Kpro,
    and if i dont give Kpro tick only 2 originals can be attached in the original.
    but in both the cases the original is being stored in the SAP Database only.(in my case as content server is not yet installed)
    i want to know as the original files if stored in SAP DMS either with Kpro or with out Kpro, can this original files stored be copied in to external storage device say CDs and opened with out SAP logon. (like opening the files in normal windows system)
    thanks and regards,
    Priya
    Edited by: Priya S on Feb 19, 2009 11:46 AM

  • How to create a DataBase File like MDB or DBF to web

    Hi People,
    I'm a Delphi Developer and I'm new in Java.
    I need to make a DataBase File like MDB or DBF to work online.
    I will make a Form to sign users. All of user's information, for example: user name, address, mail, phone, will need to record in my database file.
    I think about it, because I don't have a DataBase Server Like SQL or Oracle.
    Any Idea?
    Thank's very much
    Jairo

    Take a look at hypersonic database for an open source solution.
    I know that Borland has something they call a JDataStore that keeps everything in one file, and is supposed to be pretty quick. You have to pay for it though.
    - K

  • Best Practice for the database owner of an SAP database.

    We recently had a user account removed from our SAP system when this person left the agency.  The account was associated with the SAP database (he created the database a couple of years ago). 
    I'd like to change the owner of the database to <domain>\<sid>adm  (ex: XYZ\dv1adm)  as this is the system admin account used on the host server and is a login for the sql server.  I don't want to associate the database with another admin user as that will change over time.
    What is the best practice for database owner for and SAP database?
    Thanks
    Laurie McGinley

    Hi Laura
    I'm not sure if this is best practise or not, but I've always had the SA user as the owner of the database. It just makes it easier for restores to other systems etc.
    Ken

  • How to upload a Flat file into sap database if the file is in Appl'n Server

    Hello Sap Experts , Can you tel me
    " How to upload a Flat file into sap database if the file is in Application Server.
    what is Path for that ?
    Plz Tel Me its Urgent
    Thanks for all

    Hi,
    ABAP code for uploading a TAB delimited file into an internal table. See code below for structures.
    *& Report  ZUPLOADTAB                                                  *
    *& Example of Uploading tab delimited file                             *
    REPORT  zuploadtab                    .
    PARAMETERS: p_infile  LIKE rlgrap-filename
                            OBLIGATORY DEFAULT  '/usr/sap/'..
    DATA: ld_file LIKE rlgrap-filename.
    *Internal tabe to store upload data
    TYPES: BEGIN OF t_record,
        name1 like pa0002-VORNA,
        name2 like pa0002-name2,
        age   type i,
        END OF t_record.
    DATA: it_record TYPE STANDARD TABLE OF t_record INITIAL SIZE 0,
          wa_record TYPE t_record.
    *Text version of data table
    TYPES: begin of t_uploadtxt,
      name1(10) type c,
      name2(15) type c,
      age(5)  type c,
    end of t_uploadtxt.
    DATA: wa_uploadtxt TYPE t_uploadtxt.
    *String value to data in initially.
    DATA: wa_string(255) type c.
    constants: con_tab TYPE x VALUE '09'.
    *If you have Unicode check active in program attributes then you will
    *need to declare constants as follows:
    *class cl_abap_char_utilities definition load.
    *constants:
    *    con_tab  type c value cl_abap_char_utilities=>HORIZONTAL_TAB.
    *START-OF-SELECTION
    START-OF-SELECTION.
    ld_file = p_infile.
    OPEN DATASET ld_file FOR INPUT IN TEXT MODE ENCODING DEFAULT.
    IF sy-subrc NE 0.
    ELSE.
      DO.
        CLEAR: wa_string, wa_uploadtxt.
        READ DATASET ld_file INTO wa_string.
        IF sy-subrc NE 0.
          EXIT.
        ELSE.
          SPLIT wa_string AT con_tab INTO wa_uploadtxt-name1
                                          wa_uploadtxt-name2
                                          wa_uploadtxt-age.
          MOVE-CORRESPONDING wa_uploadtxt TO wa_upload.
          APPEND wa_upload TO it_record.
        ENDIF.
      ENDDO.
      CLOSE DATASET ld_file.
    ENDIF.
    *END-OF-SELECTION
    END-OF-SELECTION.
    *!! Text data is now contained within the internal table IT_RECORD
    * Display report data for illustration purposes
      loop at it_record into wa_record.
        write:/     sy-vline,
               (10) wa_record-name1, sy-vline,
               (10) wa_record-name2, sy-vline,
               (10) wa_record-age, sy-vline.
      endloop.

  • SAP database updations through Java program

    Hi All,
    From Java program, I want to access SAP database batch RFC
    Please tell me which batch RFC's I have to use for read and update of a table.
    Please also tell me how to find out a batch RFC for a particular table.Is there any way to find it out like BAPI.
    What are the steps and settings ?
    Detailed steps help the requirement.
    Thanks,
    Giri

    Giri,
    Ya...Java APP sents data to XI and XI needs to insert the data into the database.
    Before the next round of data is sent by the Application, Xi should sent back info on the status of the records.
    Is this what you want?
    This will be like I have pointed earlier possible without a BPM. But, make the call from the sending application Synchronous. And then map the JDBC response to the calling aplication.
    But this updation is only possible through XI.
    If i got the requirement wrong can you let me know in more detail, what is it that you are trying?
    Reward if solved

  • SAP database updations

    Hi all
         I just want to know whether we can do the SAP database updations through a JAVA program.If we can do this then please explain to me how we can do this.I just want to access the data in the database(SAP) and do the updations whenever we need it through the JAVA program.
    Thank You.
    Regards
    Giri

    Giri,
    Ya...Java APP sents data to XI and XI needs to insert the data into the database.
    Before the next round of data is sent by the Application, Xi should sent back info on the status of the records.
    Is this what you want?
    This will be like I have pointed earlier possible without a BPM. But, make the call from the sending application Synchronous. And then map the JDBC response to the calling aplication.
    But this updation is only possible through XI.
    If i got the requirement wrong can you let me know in more detail, what is it that you are trying?
    Reward if solved

  • Updating table of non-sap Database

    Dear All,
                  I want to transfer data from Ztable to  non-SAP database table. Is it possible to do it.
    If yes, Plz suggest ...........
    Regards,
    Gulrez

    Hi.
    >
    Gulrez Alam wrote:
    >      I have to update a Mysql Database  table (non-SAP ) from ztable.. Actually have done like this for Oracle table(non-SAP)  table.
    >
    > Actually in table dbcon there is field DBMS in that there are entriey for Oracle, Microsoft SQL and other DB , but no entry for Mysql Database.
    Looks like you haved use multiconnect for this task in the past. At the moment only databases that are supported as a main database can be accessed using this technique. So you cannot have an entry for a mysql database in the dbcon table. Sorry for that but that is the current status. You will have to use a different approach.
    Best regards,
    Jan Stallkamp

  • SAP database data

    Hi,
    I would like to have some insight on SAP database.
    Is it possible to use/copy/import another company's database. If yes, how? And will the user logins for that particular company going to be active?
    How do i go about using the database?
    Thanks,
    Regards,
    Aziz

    Hello
    Please check below links
    http://help.sap.com/saphelp_sbo900/helpdata/EN/dc/e2f18574d04fe694986693dfdf78cd/content.htm
    Express Configuration - SAP Business One 9
    Creating New Companies - SAP Business One 9.0 - SAP Library
    Thanks & Regards
    Pankaj Jha

  • SAP Database Migration from Oracle to DB2

    Hi All,
    Our client has decided to move the SAP database from Oracle 10.0.2 to IBM DB2. We will like to know list of activities which are required to be done from application side to support this.
    Also we want to know on how to find the report / interfaces where the code is written in native SQL (PL SQL) and not in open SQL (ABAP).
    Any pointers in this regard will be useful. Thanks.
    Best Regards,
    Vithal

    > Our client has decided to move the SAP database from Oracle 10.0.2 to IBM DB2. We will like to know list of activities which are required to be done from application side to support this.
    http://service.sap.com/osdbmigration
    > Also we want to know on how to find the report / interfaces where the code is written in native SQL (PL SQL) and not in open SQL (ABAP).
    I don't think there's an easy way to find that out.
    Markus

  • LabVIEW and SAP database

    How can I connect a SAP database with a 3rd party SQL connectivity tools such as LabVIEW?
    http://sine.ni.com/nips/cds/view/p/lang/es/nid/6429
    Regards,

    What you're describing is just what I would expect. For security reasons, direct access to the database is blocked by the web server. As I said, you will need to access the database through the webserver. You will need to create a php script that queries the database and returns the data you want. You then use the LabVIEW http client VIs to access that script.
    JSON is just a way of encoding data. Check Google for a description. Its very easy and there are low-level LabVIEW functions that can convert json directly into LabVIEW data structures like arrays and clusters.
    Mike...
    Certified Professional Instructor
    Certified LabVIEW Architect
    LabVIEW Champion
    "... after all, He's not a tame lion..."
    Be thinking ahead and mark your dance card for NI Week 2015 now: TS 6139 - Object Oriented First Steps

  • How to upload the data from XML file to SAP database using IDOC

    Hi,
    I need some steps  to upload  data from XML format file from other directory to SAP database using IDOC.
    how to approch this please if any one knows give me ans
    it will be a great help ful to me
    Thanks in Advance
    Mallik

    Thank you vijay,
    But i heard that by using this Fun modules, when we are passing IDOC in back ground schedule,  so some other depended FM not supporting, so how to approach this and how to avoid this problem. 
    Have you worked on this before if any one worked on this please help me out
    And thank you once again for your valuable information
    Best Regards
    Mallik

  • How to retrieve the data from SAP database.

    Hi Pals,
    How to retrieve data from SAP R/3 System to my third party software. I will make my query little bit more clear. There is a list of assets entered and stored in the SAP system. For example 3 mobile phones.
    1) Mobile 1- Nokia
    2) Mobile 2 - Samsung
    3) Mobile 3 u2013 Sony
    Now think I do not know what all assets is there. I have to retrieve the data and get it on my third party software. Just display the list of assets. Lets say SAP XI is also there. Now how will I map it and get the details.
    Please give me step by step method.
    N.B: Just to read the data from SAP database.
    Please make the flow clear step by step.
    Thanking you
    AK

    Hi,
    You can use RFC or ABAP Proxy to make synchronous call with SAP.
    Under RFC or ABAP Proxy Program you can get the data from SAP tables. Direct access to SAP Database is not preferrable even if its possible.
    The better way to go for RFC or PROXY.
    You will send the request from Third party system and the it will be as input parameters from RFC/ Proxy it will response based on it.
    This got it all..
    https://www.sdn.sap.com/irj/sdn/go/portal/prtroot/docs/library/uuid/5474f19e-0701-0010-4eaa-97c4f78dbf9b
    /people/siva.maranani/blog/2005/09/03/invoke-webservices-using-sapxi
    /people/stefan.grube/blog/2006/09/21/using-the-soap-inbound-channel-of-the-integration-engine
    /people/arpit.seth/blog/2005/06/27/rfc-scenario-using-bpm--starter-kit - File to RFC
    HTTP to RFC - A Starter Kit
    /people/community.user/blog/2006/12/12/http-to-rfc--a-starter-kit
    Refer
    Thanks
    Swarup
    Edited by: Swarup Sawant on Jun 4, 2008 9:32 AM

  • Populating SAP Database table using JDBC adapter

    Hi Folks,
        I have a requirement to populate a SAP database table say ZTABLE using XI. The Model is the table has to be populated through a file which will be processed by SAP XI. Basically this is a File to JDBC scenario. The database used is ORACLE. Kindly provide me some idea to go ahead.

    I tried to place the MS access table in the shared folder of the Application server system but still it seems the table is not being populated.
    did you check the log in your receiver channel? (/people/sameer.shadab/blog/2005/10/24/connecting-to-ms-access-using-receiver-jdbc-adapter-without-dsn)
    The requirement is to update the tables directly as those are the custom tables.
    i would still say that do not update SAP tables directly from XI/ PI.....this is not a standard architecture/ solution....

  • Document stores in both SAP database and Content Server

    Hi,
    We don't want to store doc. in SAP database and chose to use content server. We have KPro checked in configuration also.
    Our basis team has created a content repository ZP that points to the content server, in the document area.. they enter "ARCHLINK" instead of DMS. So they told me to create doc. and pick this new ZP to store the doc. But we I created a doc. in CV01N, went to check in the original, the new repository ZP is not on the list of choice to pick from. So I cannot store the doc. in that new content repository.
    Our basis team told me that if we use DMS in the document area, the doc. stores in both SAP database and Content Server. We don't want to have doc. stores in SAP database that's why we have content server.
    How can I create DMS and store in content server only (not SAP database) ?
    Thank you,
    Sam Schwartzberg

    Hi Samantha,
    While check-in activity are you able to choose the new content repository i.e. ZP?
    If not then use t-code OAC0 and while creating the repository check whether the certificate is activated by basis or not .
    If not then you need to activate the certificate for the new repositoty in CSADMIN then only it will appear in the list while "check-in" the dcouments.
    Please check for the same. Also check the t-code OACT , this new repository is shown or not.
    I hope this will resolve the query.
    Regards,
    Ravindra

Maybe you are looking for

  • Default behaviour of the Escape key while editing a cell in JTable??

    Hi all, i have a Jtable which get its data from an own model object which extends DefaultTableModel. If i overwrite the isCellEditable(row, col) method within the tablemodel object and set a specific column to editable, then i notice while editing a

  • Tags, alt text, and PDF accessibility

    I'm thoroughly confused. I just finished the layout for a 176-page book in ID and I'm trying to tag the book for PDF accessibility. I read that it's better to tag in ID before you export to PDF. My problem is, I have no idea what I'm supposed to do o

  • Cursor doesn't disappear for full-screen movies.

    I believe it only happens when I'm watching something streamed over the internet. It's not limited to the web browser I'm using though. It also disappears sometimes, but very rarely. I thought it was a problem with my iMac but it's happening on my ne

  • One inspection lot for all GR per day.

    Hi, Presently when I am doing GR for a material system generates a inspection lot per GR.But when I am doing GR for same material several times per day system should generate inspect lot once only.or if material belongs to same supplier also it shoul

  • Maintain diffrent prices for same material

    How to maintain different prices for same material (assume that the price of the the material is varying frequently that to with high margin) But my req is need to maintain N  values for same material .Is it possible?? For ex, 3 Jul Purchasing 20 Pc