How to use EXPORT AND IMPORT in OO

Hi all
i am trying to send a table to a memory but i am making in a OO to , Does anybody knows how to do it?, i have already check de documentation but it doesn't show any help. please syncerlly i need a help
  EXPORT it_trans_print TO MEMORY ID 'AB'. this is the line that show an error.
bye

Hi Gilos,
You can use Export statement like what mentioned in above threads.
Actually there is an alternate for this.
Try this....
You can also replace the export memory id with a static component in a class.
I prefer declaring a global class, and a table as a static public property in the same class.
If you use that Global static component and populate some value to it, through out the execution the value will be there. So you can ignore the export memory id statement. and use a static component.
Thanks,
Sreekanth

Similar Messages

  • 9i to 11g migration using export and import

    Hi,
    I got a requirement to migrate 9i database to 11g using export and import.
    Please let me know what are all the parameters required in 11g, so that database will run with better performance.
    thanks,

    You can start with the current parameters, except for COMPATIBLE (which must be 10.0.0 or higher in the 11g environment). However, you will have to remove parameters deprecated in 11g.
    See http://download.oracle.com/docs/cd/E11882_01/server.112/e17222/changes.htm#BABHACIE
    Then you can test performance and identify what you need to change.
    Hemant K Chitale

  • How I can Export and Import tables using BRTOOL ?

    Dear All,
    Since we upgrade the oracle from 9.0.2 to 10.2.2 we not using SAPDBA any more.
    please help me if you now how to export and import tables in sapr3 using brtools?
    thanks and Best regards,
    Chrisna

    Dear Chrisna,
    first of all you should get the recent version of the BRTOOLS (currently it's BRTOOLS 7.00 (<b>26</b>)). The developers are working hard on making these tools more reliable and usable so you should not deny the improvements to yourself.
    Now to your problem:
    Try this call:
    brspace -f tbexport -o SAPR3 -t SSF_PSE_D,SSF_PSE_H,HTTPURLLOC
    You don't need to specify a tablespace; it's just a additional option to select what tables you like to export.
    You may also want to check these notes for further "enlightment"
    <a href="http://service.sap.com/sap/support/notes/976435">#976435     Support for Oracle Data Pump in BRSPACE</a>
    <a href="http://service.sap.com/sap/support/notes/713497">#713497 - New BRSPACE options for "Reorg", "Rebuild" and "Tablespace"</a>
    <a href="http://service.sap.com/sap/support/notes/647697">#647697 - BRSPACE - New tool for Oracle database administration</a>
    <a href="http://service.sap.com/sap/support/notes/646681">#646681 - Reorganizing tables with BRSPACE</a>
    <a href="http://service.sap.com/sap/support/notes/12741">#12741 - Current versions of BR*Tools and SAPDBA</a>
    <a href="http://service.sap.com/sap/support/notes/651812">#651812 - FAQ: BR*TOOLS and SAPDBA</a>
    KR Lars

  • How do i export and import Contacts from and to to Iphone4 and Windows PC

    How do I export Contacts from Iphone to windows XP pc
    and import already exported contacts to Iphone 4

    doesn;t it work what i wrote in above comment?
    if you just want to backup your iphone cantacts in windows ( and not vice vera)...then
    1- delete all contacts from windows ( i used win7 so ther's a "contacts" system folder....but in iwnXP , i guess it is called Address Book)
    2- Connect iphone to PC
    3- in iTunes, select your device, go to "Info" tab.
    4- mark checked -- >Sync Contacts with
    5- From the dropdown options, select "Windows Contact"
    6- click "SYNC: button.
    that's it...you should see your iPhone contacts in windows.

  • How can I export and import a score in flash?

    I run a "Classic Game Show" night at a bar, and have created scoreboards in flash for games like the Family Feud, Wheel of Fortune, and others. Each team gets to compete in a few different games. This is all computer based, not on the web (so no PHP assistance please).
    All I want to know is how to export a total score to a .txt or sharedobject file, (I'll set it up so when a keycode is entered, it exports the score value), and then when I switch games, I can import that score value back without having to type it myself on the scoreboard
    Please help!

    if is all computer based you can compile an AIR proyect
    With air you can create .txt or .dat or any simple text file with this:
    (say iPhone, but work in a PC, Mac, GNU/Linux)
    http://www.adobe.com/devnet/flash/articles/saving_state_air_apps.html

  • Please tell how to use package and import?

    Hi,
    My classes are in different packages
    for eg
    package manage.ui
    package manage.data
    package manage.layer
    if I try to import
    import manage.layer.*;
    in a class in manage.ui
    it shows
    package manage.layer does not exist
    Please help to find the problem?????

    Are your classes placed in a folder stucture that mirrors the package structure? So, like this:
    -manage(folder)
    --ui(subfolder of manage)
    --data(subfolder of manage)
    --layer(subfolder of manage)

  • How to export and import LOB

    In my user_object, I have an object_type of LOB. How do I export and import object of this type.

    If you are on 10g try use data pump then you don't need to worry about anything.
    If you can only use exp/imp.
    You can export as usual, when import
    either you have the tablespace with exact name precreated for LOB storage
    or if you want to change LOB storage tablespace, you can precreate the tables having LOB type.

  • Use of export and import in oo abap

    Hello experts,
    We are new to oo abap and using process controlled workflow for BRF.
    There are 3 methods which we are using. /SAPSRM/IF_EX_WF_RESP_RESOLVERGET_AREA_TO_ITEM_MAP, /SAPSRM/IF_WF_AREAGET_RESPONSIBLE_APPROVERS and /SAPSRM/IF_EX_WF_RESP_RESOLVER~GET_APPROVERS_BY_AREA_GUID.
    In a situation we want to use document_id which is created in item_map into get_responsible_approvers method.
    Therefore, we used export and import in these two methods like the following.
    zgc_mock_pdo_guid =  is_document-document_guid. "uncomment later
        export zgc_mock_pdo_guid from zgc_mock_pdo_guid to memory id 'Z_MOCK_PDO_GUID' . "uncomment later
    and
    import zgc_mock_pdo_guid  = zgc_mock_pdo_guid  from  memory id 'Z_MOCK_PDO_GUID' . "uncomment this later
                   CALL METHOD /SAPSRM/CL_WF_APV_FACADE=>RETRIEVE_PROCESS_HISTORY
                     EXPORTING
                       IV_DOCUMENT_GUID = zgc_mock_pdo_guid "ins_guid
                       IV_AGENT_ID      = lv_agent
                       IV_LANGUAGE      = sy-langu
                     IMPORTING
                       ES_PROCESS       = ls_process
    Now we are getting the results as per our requirements. But I want to know whether or not it is supposed to be used in oo abap context or not otherwise I will find another method to do so. Please advise/suggest about the same.
    Thank you.

    Hello Keshav, Suhas.
    Thank you vary much for your reply. I was definitely a great help to understand the concept.
    This ZGC_MOCK_PDO_GUID attribute was already made private. Instead of defining under public section I defined it under attributes tab.
    Thank you for your help though.
    Right now I am trying to explore another way to do so.
    I am trying to get factory instance for tack container using /SAPSRM/IF_CLL_TASKCON_FACTORY interface with method GET_INSTANCE from class /SAPSRM/CL_CH_WD_TASKCONT_FACT.
    Later I am trying to get task container from this interface. Then after I am interested to get SC GUID using GET_BO_GUID method.
    I have been trying to achieve this in following way. But somehow i am getting this GUID empty.
    data :
    temp_task_container_factory type REF TO /SAPSRM/IF_CLL_TASKCON_FACTORY,
    temp_instance type REF TO /SAPSRM/IF_PDO_BO_SC_ADV,
    ins_guid type BBP_GUID, "/SAPSRM/WF_DOCUMENT_GUID,
    ls_process_info TYPE /SAPSRM/S_PDO_WF_PROCESS_INFO,
    temp_handler TYPE REF TO /SAPSRM/IF_PDO_STATIC_META,
    temp_task_container type REF TO /SAPSRM/IF_CLL_TASK_CONTAINER,
    lo_task TYPE REF TO /SAPSRM/IF_CLL_TASKCON_FACTORY.
    CALL METHOD /SAPSRM/CL_CH_WD_TASKCONT_FACT=>GET_INSTANCE
    RECEIVING
    RO_TASK_CONTAINER_FACTORY = temp_task_container_factory "
    CALL METHOD TEMP_TASK_CONTAINER_FACTORY->GET_TASK_CONTAINER
    * EXPORTING
    * IV_TRANS_MODE =
    * IO_MESSAGE_HANDLER =
    * IV_BO_TYPE =
    RECEIVING
    RO_TASK_CONTAINER = temp_task_container
    CALL METHOD TEMP_TASK_CONTAINER->GET_BO_GUID
    RECEIVING
    RV_BO_GUID = ins_guid .
    TRY.
    CALL METHOD /SAPSRM/CL_PDO_FACTORY_SC_ADV=>GET_BUFFERED_INSTANCE
    EXPORTING
    IV_HEADER_GUID = ins_guid
    RECEIVING
    RO_INSTANCE = temp_instance
    ENDTRY.
    CALL METHOD ZCL_WF_APV_FACADE=>RETRIEVE_PROCESS_HISTORY
    EXPORTING
    IV_DOCUMENT_GUID = ins_guid " we are passing ins_guid instead of zGC_MOCK_PDO_GUID this should have area_guid now.
    IV_AGENT_ID = lv_agent
    IV_LANGUAGE = sy-langu
    IMPORTING
    ES_PROCESS = ls_process.
    But the ins_guid ( returned by RV_BO_GUID ) is empty ( The Bold fonted line of code)
    I want to know whether I am doing this instantiation correctly or not or do I have to create class and object here only ?
    Right now I am calling the class, getting get_instance and using its instance temp_task_container_factory i am calling interface /SAPSRM/IF_CLL_TASKCON_FACTORY. Is it correct way? PLease advise. Thank you once again.
    Edited by: abhijitkamatkar on Feb 7, 2012 1:38 PM

  • How to export and import bookmarks Firefox on N900

    It's self-explanatory. I know how to export & import bookmarks with Firefox desktop. As a disabled user, the less I have to "re-invent the wheel", the better. How do I export and import bookmarks with Firefox (currently 4) on N900?

    Sync is the main vector for transferring bookmarks between computers for Firefox.
    https://support.mozilla.com/en-US/kb/how-do-i-set-up-firefox-sync
    If the N900 allows filesystem access the places.sqlite file could be copied from your desktop Firefox profile.

  • CUID in Export and Import Options in Business View Manager

    Post Author: palm
    CA Forum: Crystal Reports
    I am trying to import BV from one environment to another, i am using export and import option in the BVM ,every time when i make a change in BV in one environment , how can i make the changes in other envi with out deleting the existing one and reimporting the new one
    Any thing to do with CUID option?
    Any ideas?
    Appreciate any help

    Hi Mavendra,
    Have you tried to set the XmlExportMode to xet_ExportImportMode?
    Does that work for you?
    Best regards,
    Pedro Magueija

  • Query on Database Export and Import

    Hi Techies,
    Currently we are running our Database on Oracle 10g and SAP on4. and OS is HP UX 11.11.
    We have a plan to migrate our HW from PA-RISC to Itanium and at the time of Production migration we are planning to use Export and Import method to get free space.
    Our plan is as below:
    We will not touch the original Production, Just restore the DB into new server.
    And post restore we will create the space on new server equallent to our DB size.
    Then will perform DB export from the new system to the null space
    Then Import the DB into same system.
    Here my queries are:
    1) Is it possible to export and Import the Database from/to null space?
    2) We have 2T size of DB, And good resources like 32G Ram, 12 CPUs etc. How much time can be expected to perform Export and Import?
    3) What are the challenges we can expect?
    4) Minimum how much of free space we can expect with this option?
    Regards,
    Nick Loy

    So with test runs I can expect rapid speed in DB export and Import (1T/H)........If I have good system then Database export and Import gets complete within 2 hrs (Database size is 2T).
    Well 1tb is at the very top of expectations here, you should be careful. I did an export/import of a 1.5tb database of an ERP system lately. We did parallel export (40 processes) / import (20 processes) using distmon, source was HP IA64, target Linux x64_64. The disks were midrange SAN storage systems on both sides.  After tuning we managed to do in 6-7hrs.
    But in your case, if you only have one system, this could mean you have to drop the source db first and then recreate the target db on the same disks. The creation of the 1-2tb database files alone can take up more than 1 hour , besides that you don't have an easy fallback.
    If you have a test system that is comparable from size and hardware perspective, then i suggest you try a test export to get a feeling for it.
    What about the Online re-org of database? What would be the best way to get free space within minimum downtime?
    Theoretically you should be able to gain more or less the same amount of space doing online reorgs. The advantage is less downtime, the downside is the reorgs will be running over a longer time period and put additional load on the system.
    Cheers Michael

  • Export and import in alv grid

    Hi all,
            I am going thru a code in oops alv where when i click in any of the record in the output list then it shuld go to a transaction where it shuld dump all the field values with respect to the clicked field.
    frnds i have used EXPORT AND IMPORT memory concept to get my thing done but i m facing problem.
    please help what can be done to come up with a solution.
    if needed i will provide my codes.
    Thanks,
    satya

    Hi,
    Use the get_selected_rows or get_selected_field Methods
    Thanks,
    Muthu.

  • How to export and import Wirless 8021x network using networksetup

    Hello,
    *I am not able to export 8021x wireless networks using networksetup command.*
    *Cmd was like this -*
    *networksetup -export8021xProfiles <service name> <file path> yes*
    *can any body help me in doing this export and import process???*
    *Thanks in advance,*
    Vishal
    Message was edited by: vishal.wlan

    Read this 10.6: Add wireless networks from command line and pay attention to the hint's comments because some users have some cool tips.

  • I am using Iphoto 11 ver 9.4.3 on mac using oxs 10.8.5 i want to export calendar projects to an external hard drive. what is the easiest way to do this? i have tried export and import but it didn't seem to work.

    I am using Iphoto 11 ver 9.4.3 on mac using oxs 10.8.5 i want to export calendar projects to an external hard drive. my goal is to store them in an external hard drive so it doesn't use up memory on the mac hard drive. is it possible to copy the specific projects without copying the entire library? what is the easiest way to do this? i have tried export and import but it didn't seem to work.

    What do you not understand?
    You can duplicate the iPhoto library (command - D ) and delete everything except the project and its photos from the copy and move that
    Or
    However the calendar takes very little space - it is simpy database entries - it is the photos in the calendar that take space - and for most people you would wnat to keep those photos in your library
    you can use a photo in 50 calendars and it still is only one photo in your library - as I explained calenders do not exist as such - they are simply database entries telling iPhotop how to display the calendar - they take almost no space at all
    LN

  • Exporting and importing table using R3trans program between 2 clients

    Hi,
    How to export and import a table between to clients in a same system using R3trans program?
    I need to copy a table from Client 020 in a system to client 040 of the same system using R3 trans. I need to know the procedure.
    Can any one advice
    Regards,
    Suresh

    This is how you do a export and import of table entries.
    Export:
    Open Notepad and type the following,
    export
    client = 020
    file = 'clone.export.<sid>.<client no>.data'
    select * from <client_dependent_tablename1>
    select * from <client_dependent_tablename2>
    select * from <client_dependent_tablenamen>
    Save the file as export.ctl
    Run R3trans export.ctl
    and the data of these files will be stored in a file called clone.export.<sid>.data in the directory from which you have called R3trans
    Import:
    Open Notepad,
    import
    client = 040
    file = clone.export.<sid>.<client no>.data
    buffersync = yes                                               
    Save the file as import.ctl
    Run R3trans import.ctl
    Cheers!
    Bidwan
    Message was edited by:
            Bidwan Baruah

Maybe you are looking for