Transfer data in the Ztable from one client to another client in a same ser

Hi all,
How can i transfer or move data in the Ztable from one client to another client in a same server .
Thanks
Ajay

hi,
create a transport request (Workbench type) and add the following line into the transport request:
R3TR TABU name_of_table
save and doubleclick this line and enter the table keys for the required entries (if you need all antries: client and an asterisk will do).
When it is done save again, release the transport and ask basis to import into target client (or you can do on your own in SCC1 transaction)
hope this helps
ec

Similar Messages

  • HT5787 How do I transfer an Itunes gift card from one account to another ? I do not remember the password or the security questions.

    How do I transfer an Itunes gift card from one account to another ? I do not remember my password or know my security questions.

    You can't do it yourself. If you've just redeemed it and not spent any of it then you could try contacting iTunes Support and see if they can move it the other account : http://www.apple.com/support/itunes/contact/ - click on Contact iTunes Store Support on the right-hand side of the page, then Purchases, Billing & Redemption

  • What's the best way to transfer (not forward) a call from one iPhone to another?

    What's the best way to transfer (not forward) a call from one iPhone to another? Is there an app available that does this? I'm asking about receiving a call, then transferring that caller to another iPhone on a separate number and then disconnecting while those two users are joined up in a conversation.

    Ask your carrier. This would be a feature provided by them.

  • How to transfer the logins from one instance to another instance in sql2008r2

    how to transfer the logins from one instance to another instance in sql2008r2

    Hi Ganesh,
    According to your description, you want to know how to transfer the logins from one instance to another instance for SQL Server 2008 R2. To do this, besides dave’s post, you could also use
    'Copy Database Wizard' in SQL Server Management Studio, or the component
    'transfer Login task' in SQL Server Integration Services.
    Regards,
    Michelle Li

  • I need to transfer my In Design program from one computer to another. What is the procedure?

    I need to transfer my In Design program from one computer to another. What is the procedure?

    No need -problem solved with live chat through adobe.
    Sent from Samsung Mobile
    <div

  • How to transfer adobe acrobat XI registration from one desktop to another (bought new PC).

    how do you  transfer adobe acrobat XI registration from one desktop to another (bought new PC).  Need to use ASAP!

    Hi jaanders2,
    The licensing agreement allows you to activate Acrobat on up to two computers. So, if you've only activated in your old computer, you simply need to install and activate Acrobat on the second computer. If you no longer have the installer file or installation media, you can download Acrobat from here: Download Acrobat products | Standard, Pro | XI, X - Adobe
    If you need your serial number, this document will help you track it down: Find your serial number quickly - Adobe
    And this document, will walk you through the activation process: Activation & Deactivation Help
    Please let us know if you need additional help.
    Best,
    Sara

  • How can I transfer my apple ID acc from one Itouch to another ?

    How can I transfer my apple ID acc from one Itouch to another ?

    No, you cannot transfer apps from one account to another iTunes account. Apps are DRM protected and forever tied to the account used to originally obtain them.

  • How can you move the objects from one server to another?

    how can you move the objects from one server to another?

    Hi,
    Collecting objects for Transporting
    1. rsa1->transport connection
    2. left panel choose 'object type', middle panel choose 'infocube' and 'select objects'
    3. then choose your infocube and 'transfer'
    4. will go to right panel, choose collection mode 'manual' and grouping only 'necessary objects'
    5. after objects collection finished, create request
    6. If they are $TMP, then change the package.
    7. When you click the Save on the change package, it will prompt for transport. Here you can provide an existing open transport request number, or if you like here itself you can create a new one.
    8. You can check the request in SE09 to confirm.
    Releasing Transport Request  
    Lets say you are transporting from BWD to BWQ
    Step 1: In BWD go to TCode SE10
    Step 2: Find the request and release it (Truck Icon or option can be found by right click on request #)
    Note: First release the child request and then the parent request
    Steps below are to import transport (generally done by basis )
    Step 1: In BWQ go to Tcode STMS
    Step 2: Click on Import queue button
    Step 3: Double Click on the line which says BWQ (or the system into which transport has to be imported)
    Step 4: Click on refresh button
    Step 5: High light the trasnport request and import it (using the truck icon)
    Transport
    http://help.sap.com/saphelp_nw2004s/helpdata/en/b5/1d733b73a8f706e10000000a11402f/frameset.htm
    http://help.sap.com/saphelp_nw70/helpdata/en/0b/5ee7377a98c17fe10000009b38f842/frameset.htm
    https://www.sdn.sap.com/irj/sdn/go/portal/prtroot/docs/media/uuid/224381ad-0701-0010-dcb5-d74236082bff
    Hope this helps.
    thanks,
    JituK

  • How do i transfer all of my itunes from one computer to another

    how do i manage to transfer all of my itunes from one  computer to another?

    Copy the iTunes library folder from one computer and restore it on the other. Use an external hard drive.

  • How do I copy the style from one control to another?

    I need to programmatically copy the style from one graph to another. I'm currently using the importstyle and export style functions but I'd like to avoid that since: 1) I'm creating >100 of the same graphs in a scrolling window and execution time is a concern, and 2) it makes it harder to redistribute the application, and 3) you shouldn't have to import/export from disk just to copy a graph style.
    I noticed the copy constructor was disabled so you can't just create a new one from the original. I suppose I could iterate through all the styles and transfer them from the master graph to all the copies but is there an easier way to do that? If not, is there some sample code for that?
    I'm using MStudio 7.0 for C
    ++.
    Thanks,
    -Bob

    One way that you could do this would be to create a helper method that configures your graph rather than configuring it at design-time, then use that helper method to apply the settings to the new graphs that you create. However, this would only work if you wanted all graphs to be configured exactly the same way - this would not work if the settings of your master graph are changing at run-time and you want the new graphs to be configured with the current settings of the master graph.
    Another approach is to query each control for IPersistPropertyBag, create an IPropertyBag, pass the IPropertyBag to the master graph's IPersistPropertyBag:ave, then pass the IPropertyBag to the new graph's IPersistPropertyBag::Load implementation. I'm not aware of any implementations of IPropertyBag that are readily available for use in applications, so the tricky part is creating the IPropertyBag. Below is a very simple implementation of IPropertyBag that should be enough to get the job done for this example. First, add this to your stdafx.h:
    #include <atlbase.h>
    CComModule _Module;
    #include <atlcom.h>
    #include <atlcoll.h>
    Here's the simple IPropertyBag implementation:
    class ATL_NO_VTABLE CSimplePropertyBag :
    public CComObjectRootEx<CComSingleThreadModel>,
    public IPropertyBag
    private:
    CAtlMap<CComBSTR, CComVariant> m_propertyMap;
    public:
    BEGIN_COM_MAP(CSimplePropertyBag)
    COM_INTERFACE_ENTRY(IPropertyBag)
    END_COM_MAP()
    STDMETHODIMP Read(LPCOLESTR pszPropName, VARIANT* pVar, IErrorLog* pErrorLog)
    HRESULT hr = E_FAIL;
    if ((pszPropName == NULL) || (pVar == NULL))
    hr = E_POINTER;
    else
    if (SUCCEEDED(::VariantClear(pVar)))
    CComBSTR key = pszPropName;
    CComVariant value;
    if (!m_propertyMap.Lookup(key, value))
    hr = E_INVALIDARG;
    else
    if (SUCCEEDED(::VariantCopy(pVar, &value)))
    hr = S_OK;
    return hr;
    STDMETHODIMP Write(LPCOLESTR pszPropName, VARIANT* pVar)
    HRESULT hr = E_FAIL;
    if ((pszPropName == NULL) || (pVar == NULL))
    hr = E_POINTER;
    else
    m_propertyMap.SetAt(pszPropName, *pVar);
    hr = S_OK;
    return hr;
    Once you have a way to create an implementation of IPropertyBag, you can use IPropertyBag and IPersistPropertyBag to copy the settings from one control to another like this:
    void CopyGraphStyle(CNiGraph& source, CNiGraph& target)
    LPUNKNOWN pSourceUnknown = source.GetControlUnknown();
    LPUNKNOWN pTargetUnknown = target.GetControlUnknown();
    if ((pSourceUnknown != NULL) && (pTargetUnknown != NULL))
    CComQIPtr<IPersistPropertyBag> pSourcePersist(pSourceUnknown);
    CComQIPtr<IPersistPropertyBag> pTargetPersist(pTargetUnknown);
    if ((pSourcePersist != NULL) && (pTargetPersist != NULL))
    CComObject<CSimplePropertyBag>* pPropertyBag = 0;
    CComObject<CSimplePropertyBag>::CreateInstance(&pPropertyBag);
    if (pPropertyBag != NULL)
    CComQIPtr<IPropertyBag> spPropertyBag(pPropertyBag);
    if (spPropertyBag != NULL)
    if (SUCCEEDED(pSourcePersist->Save(spPropertyBag, FALSE, TRUE)))
    pTargetPersist->Load(spPropertyBag, NULL);
    (Note that "CreateInstan ce" above should be CreateInstance - a space gets added for some unknown reason after I click Submit.)
    Then you can use this CopyGraphStyle method to copy the settings of the master graph to the new graph. Hope this helps.
    - Elton

  • Data to be moved from one instance to another

    Hi All,
    I don't have any data administration experience. All i am looking for is a document or process flow on the data movement between 2 oracle 9i instances on UNIX. Suppose there are 2 Oracle 9i instances - A and B. At some point of time, some transaction would come into A and those new/modified/deleted transactions need to be moved to B so that at any point of time both A and B are in sync.
    I want to move the data alone from A to B. Pls note that both the instances will have billions of records and atleast 30-35 K tables. It would be of great help if some one could provide me a link to the document mentioning the approach that can be taken to achieve this.
    Thanks In Advance
    RK

    Ram,
    Yes import/export utilities can do many things. Some of which are outlined below:
    create table structures with no data, no constraints, on grants
    create table structures and include any of the things like constraints, grants, ect
    move data without creating table structures
    move only a select set of data based on query in export
    move the entire database
    move a selected set of users (schemas)
    There are other possibilities depending on your environment. There are transportable tablespaces where basically you can copy the datafiles from one system to another.
    Standby databases which can be either scheduled to have updates, updated in real-time/delayed, they can be logical or physical, they can allow reporting to be offloaded to it rather than be ran against the production database.
    There are many different possibilities depending on the business/user requirements. This topic is very, very complex. If you are new to Oracle I don't think that you can understand all the possibilities unless you do a whole bunch of reading.
    As stated before by someone else, the import/export is probably not the solution you want if the tables are as large as you indicated earlier. Again though it will depend a lot on the requirements, business logic and hardware/software you have available. You probably need to hire an "Oracle expert" for this type of analysis.
    Regards
    Tim

  • How do i transfer music i have bought from one laptop to another?

    how do i transfer music i have bought from one laptop to another?

    Welcome to the Apple Community messilionel.
    The following article(s) may help you.
    Moving your iTunes library to a new computer

  • How we can get the values  from one screen to another screen?

    hi guru's.
         how we can get the values  from one screen to another screen?
              we get values where cusor is placed but in my requirement i want to get to field values from one screen to another screen.
    regards.
      satheesh.

    Just think of dynpros as windows into the global memory of your program... so if you want the value of a field on dynpro 1234 to appear on dynpro 2345, then just pop the value into a global variable (i.e. one defined in your top include), and you will be able to see it in your second dynpro (assuming you make the field formats etc the same on both screens!).

  • Passing the values from one pgm to another pgm (Calling pgm has no sel scr)

    Hi gurus,
    In my requirement i need to pass the values from one program to another program.
    I am using SUBMIT statement . But , the program which i am calling has no selection screen.
    So how can i pass the values?
    Please help me ASAP.
    Regards,
    Bhanu.R

    Export your internal tables or work areas to a memory id in ur program before u use submit.
    Then in second pgm you have to import from memory id given above.
    example.
    EXPORT gs_header FROM gs_header to memory id 'HEADER'.
    EXPORT gt_item FROM gt_item to memory id 'ITEM'.
    SUBMIT YFIIN_DISHC_MAILREPORT EXPORTING LIST TO MEMORY AND RETURN.
    In your second pgm you can write
    import gs_header TO gs_header from MEMORY id 'HEADER'.
    import gt_item TO gt_item from MEMORY id 'ITEM'.

  • How can I pass the photos from one iphone to another?

    how can I pass the photos from one iphone to another?

    Use the Beaming feature. See the info at the ? In iPhoto for iOS.

Maybe you are looking for

  • ITunes does not recognize my iPhone when I am connected to the internet!

    Okay, I am back with an old problem that I had with iTunes 9.0. iTunes will not see my iPhone if I am connected to the internet. If I turn off the WiFi, I am fine. Is there a fix for this? I found the following (see below) on 1 website and did all of

  • GRIR Account Clearing

    Dear All,              I had one invoice and multiple GRNs open in GRIR account. All the Documents were for the same Purchase Order Line Item no. But there was a difference of 0.07 paise. With the help of tolerance level, these documents were cleared

  • Volume License - Acrobat 9 pro - Launch Error

    Have Windows XP - new hard drive - Downloaded the "Download Manager"  but error message said to contact vendor to verify this is a legit download.

  • MacBook Pro display cracked - what to do?

    I've just had my MacBook Pro dropped and now my screen has gone and cracked, leaving me unsure what to do now. Its an early 2011 core i7 model and so any warranties have indeed run out. So I'm wondering what I should do next. I've considered a couple

  • UI-Type using the Web Dynpro Dode Wizard

    Hi, every time i use the Web Dynpro Code Wizard and choose the Form i still get the UI-Element-Type "InputField". Is it possible to select ohter Element-Types for example DropDownByIndex or Text_Edit? i hope we can fix this. best regards, Michael