How to terminate Transport on BI 7

Dear BIers,
  When we're performing the TRANSPORT from BWQ to BWP, at the beginning the performance of the transport is horrible low, finally, there are tens of requests handed over with status 'Import Running', the Truck.
  1. How to improve the performance of transport.
  2. How to terminate the 'Import Running' transporting.
Any suggestions are appreciated.
B.R
Gerald

Hi Gerald,
If the status indicates that tp is still running, there may be several reasons:
--> TP is processing a request with a large data volume.
--> An error has occurred. In this case, you can find further information in tp system log.
--> TP was terminated with operating system tools. Therefore, check if the tp process with the process ID displayed is still running.
The Import Monitor displays all tp processes that terminated or have not yet been completed.
To start the Import Monitor:
Call Tcode: STMS.
Choose Transport button. The import overview appears.
Position the cursor on the SAP System for which you want to start the import. If you do not select a system, the monitor automatically displays all systems in the domain.
If you only want to display a particular group of systems, choose Extras --> Personal Settings and enter the systems under System list.
Choose Goto --> Import monitor.
To update the display, choose Refresh button.
You can use the context menu to delete individual entries, display import details and their transport steps, and go to the import history.
To terminate transport proposal:
http://help.sap.com/saphelp_nw04/helpdata/en/c4/08feede2af11d2b41d00609419f767/frameset.htm
Check this link too:
http://help.sap.com/saphelp_nw04/helpdata/en/44/b4a4547acc11d1899e0000e829fbbd/frameset.htm
Hope these helps u...
Regards,
KK.

Similar Messages

  • How can I transport data from one client to another client?

    How can I transport data from one client to another client? 
    Regards,
    Subho

    hmmm, CTS = cutomizing transport?
    If you have a customizing table, there are still two possibilities.
    1. customize in DEV system and transport
    2. customize right there where you need it.
    this depends on how the maintainance view is built. If it is a simple customizing table and you get not asked for a TR when customizing a new record or changing an existing one, you hit possibility 2.

  • Hi,how can i transport objects from one server to other like (Dev To Qty)

    Hi Sir/madam,
       Can u explain how can i transport objects from one server to other like (Development To Quality To Production).
    Regards,
    Vishali.

    Hi Vishali,
    Step 1: Collect all Transports(with Packages) in Transports Tab(RSA1)- CTO
    Step 2: Release the subrequests first and then the main request by pressing Truck button
    Step 3: STMS or Customized transactions
    Object Collection In Transports:
    The respective Transports should have the following objects:
    1. Base Objects -
    a. Info Area
    b. Info object catalogs
    c. Info Objects
    2. Info Providers u2013
    a. Info Cubes
    b. Multi Providers
    c. Info Sets
    d. Data Store Objects
    e. Info Cube Aggregates
    3. Transfer Rules u2013
    a. Application Components
    b. Communication Structure
    c. Data Source replica
    d. Info Packages
    e. Transfer Rules
    f. Transformations
    g. Info Source Transaction data
    h. Transfer Structure
    i. Data sources (Active version)
    j. Routines & BW Formulas used in the Transfer routines
    k. Extract Structures
    l. (Note) If the transfer structures and related objects are being transferred without preceding
    Base Objects transport (e.g. while fixing an error) it is safer to transport the related Info
    Objects as well.
    4. Update Rules u2013
    a. Update rules
    b. Routines and formulas used in Update rules
    c. DTPs
    5. Process Chains u2013
    a. Process Chains
    b. Process Chain Starter
    c. Process Variants
    d. Event u2013 Administration Chains
    6. Report Objects u2013
    a. Reports
    b. Report Objects
    c. Web Templates
    Regards,
    Suman

  • How can i transport my e-mail addresses from my p.c. to my iPad?

    how can i transport my e-mail from my p.c. to my iPad2 ?

    read http://support.apple.com/kb/ht4810

  • How to create transport request in object transport

    How to create transport request in object transport from server to server
    thanks in advance
    arya

    hi,
    when ever u r creating any object in devlopment and saving it will ask for request.create request and release in se09.
    put mail to basis people to transport ,thy will transport using STMS transaction.

  • Adobe Photoshop Album 2.0. How can I transport my "collections" from my old to my new computer?

    Adobe Photoshop Album 2.0. How can I transport my "collections" from my old to my new computer?

    Wimineke,
    You may try posting over there:
    http://forums.adobe.com/community/ps_album_starter
    This forum is only ab0ut the forums.
    A full list of forums is there:
    http://forums.adobe.com/index.jspa

  • How to terminate a java thread from c++ code?

    Hi,
    I made a screensaver which loads a jvm, forks a thread running a java class, wait until user's action(i.e. mouse move/click keyboard input), then terminate the java thread.
    However, I met a problem, How to terminate a running java thread from c++ code?
    Here is my code, but it does not work: (even after the terminate is called, jvm throws an error)
    JNIEnv* env;
    JavaVM* jvm;
    HANDLE hThread; //handle for the startThread
    unsigned __stdcall startThread(void *arg)
         jclass cls;
         jmethodID mainId;
         jint          res;
         int threadNum = (int)arg;
         res = jvm->AttachCurrentThread((void**)&env, NULL);
    cls = env->FindClass( MAIN_CLASS);
         mainId = env->GetStaticMethodID(cls, "main", "([Ljava/lang/String;)V");
         // setup the parameters to pass to main()
         jstring str;
         jobjectArray args;
         int i=0;
         args = env->NewObjectArray(1, env->FindClass("java/lang/String"), 0); //only one input parameters
         str = env->NewStringUTF("localhost");
         env->SetObjectArrayElement(args, 0, str);
         env->CallStaticVoidMethod(cls, mainId, args); // call main()      
         if (env->ExceptionOccurred()) {
                   env->ExceptionDescribe();
         return TRUE;
    Here is the main method:
    First create the jvm and load the thread. then tries to terminate the thread, but failed here
    switch (msg)
    { case WM_CREATE:
              JavaVMOption options[NUMBEROFOPTIONS];
              JavaVMInitArgs vmargs;     
              jint rc;
              vmargs.version = JNI_VERSION_1_4; /* version 1.4 */
              vmargs.options = options;
              vmargs.nOptions = NUMBEROFOPTIONS;
              vmargs.ignoreUnrecognized = JNI_FALSE;          
              rc=JNI_CreateJavaVM( &jvm, (void **)&env, &vmargs ); /* create JVM */
              /* We pass the thread number as the argument to the invoked thread */
              unsigned int threadId = -1;
              // to initialize a thread-safe C runtime library
              hThread = (HANDLE)_beginthreadex(NULL, 0, &startThread, NULL, 0, &threadId );
    } break;
    case (WM_DESTROY):
              CloseHandle( hThread );
              jvm->DestroyJavaVM(); /* kill JVM */
              Debug("Destroy Java Virtual Machine\n");
    }break;
    Note, after the thread "startThread" runs, it has an infinite loop and will not terminate, until the user clicks to terminate.(I didn't call jvm->DetachCurrentThread();_endthreadex(0); in the "startThread" because the java thread will not terminate by itself)
    Thus, the only way to terminate the thread is to call closehandle(hthread) in the main thread, which may cause jvm to throw an error.
    Do you know how to terminate a java thread safely???
    Thanks a lot

    Assuming that your java thread is in a loop of some kind. Such as
    int i=1; /* I tried using a boolean, I just could not get my C++ env, to change this value. So i decided to use an int */
    run {
    while(i)
    isdfjsdfj
    void seti()
    i=0
    So, B/4, i call destroyVM in my C++ code, i call this seti(). so the loop terminates, therefore my thread finishes executing and ends.
    Hope this helps
    tola.

  • How to do Transportation in MDM.

    How to do Transportation in MDM.

    Hi Riche,
    There is nothing like transportation in MDM.
    There are 2 options for copying data structure created.
    1. Archiving the repository, unarchiving the reository in the required system. By doing this you get entire structure, recordcs, validations etc.
    2. Exporting only the schema. By doing this only the structure created in MDM will be present in the xml. This particular XML can be used to create a repository.
    Reward points if useful.
    Regards,
    Pramod

  • How to do transports in bpc 7.0 netweaver version?

    Hi all,
    I am new to bpc can anyone pls tell me how to carryout transports in bpc 7.0 netweaver version?
    thanks
    Pooja

    Hi,
    Go through following white paper.
    http://www.sdn.sap.com/irj/scn/index?rid=/library/uuid/b048ecf4-9414-2c10-ceac-fb2492a8016c
    hope it helps..
    regards,
    Raju

  • How to Configure Transport MAnagement system in CHARM

    Hi
    How to Configure Transport MAnagement system in CHARM? Here our requirement is when ever a change request approved in the background Transport request should be created automatically. We have configured all the Transport Routes in our lanscape.
    Can any one tell me the detailed process? If you have any Configuration document please share it to me
    Points will awarded for helpful answer
    Thanks
    Bhaskar

    In a two system landscape is it necessary to make development the domain controller always?
    No such compulsion as such exist(correct me if wrong),however why you want to make production your domain controller?
    This is not recommended.
    Regards,
    Ashutosh

  • HT202879 I am switching to Apple macbook pro from Windows laptop.  Is Apple compatible with Microsoft Office?  How can I transport from Windows to Mac?  What I have saved on external hardrives, will I be able to open it on Mac?

    I am switching to Apple macbook pro from Windows laptop.  Is Apple compatible with Microsoft Office?  How can I transport from Windows to Mac?  What I have saved on external hardrives, will I be able to open it on Mac?

    Office for Mac, http://www.microsoft.com/mac/products, can open/edit/create Office documents.If your external drive is formatted NTFS then you can copy the Office documents to your computer and work on them. You won't be able to save the files back to your NTFS formatted drive. But you will be able to save the documents to your internal drive. You can move all the external files to your internal drive then format the external drive for Apple. Then you can copy the files back to your external drive for ongoing use.

  • I am switching to Apple macbook pro from Windows laptop.  Is Apple compatible with Microsoft Office?  How can I transport from Windows to Mac?  What I have saved on external hardrives, will I be able to open it on Mac?

    I am switching to Apple macbook pro from Windows laptop.  Is Apple compatible with Microsoft Office?  How can I transport from Windows to Mac?  What I have saved on external hardrives, will I be able to open it on Mac?

    Is Apple compatible with Microsoft Office?
    Any computer is compatible as long as it can read and write Office files. But for perfect (or at least near perfect) compatibility, you would want to purchase Office 2011 for Mac.
    How can I transport from Windows to Mac?
    You can't directly transport any installation of Windows. All PC's come with a machine specific version of Windows intended for that PC. They don't have all of the hardware drivers the retail disks cover.
    If you want Windows on your Mac, you would first purchase a full version copy (NOT an upgrade disk) of Windows 7 or 8. Those are the only supported versions on newer Macs. You install it through the supplied Boot Camp utility that comes with the Mac to create a new partition for Windows, and then install the retail copy of Windows you purchased.
    The reason only these versions of Windows are supported is the same basic reason as a machine specific version of Windows for a PC. Apple only includes the necessary Mac hardware drivers for Win 7 or 8 on new Macs.
    Once Windows is installed, you could then install the version of Office for Windows you already own. The nuisance of a Boot Camp partition is that you have to physically boot to either Windows or OS X, so you can only use the apps of the OS you're in at the time. To use both at once, you'd have to use virtual machine software (Parallels, VMware, VirtualBox) and then install Windows within that. Then you'd be able to run Windows inside of OS X and have access to both at the same time.

  • How to create transport request for standard text created using SO10.

    Hi,
    How to create transport request for standard text created using SO10?
    Regards
    Ramakrishna L

    Hi,
    For the Standard text created in SO10,
    please go to transaction SE78 -> FORM GRAPHICS->STORED AS TEXT->STANDARD TEXTS->
    Double click on ADRS or ST or what ever your type of text->
    Enter your standard text name
    Click on transport button->SHIFT+f6-> It will ask you for a transport request.
    Best regards,
    Siva

  • How can we transport the partner profiles and Port configurations

    Hi everybody,
    How can we transport the partner profiles and Port configurations. While creating these , system will not ask for Dev class and we cant assign any Transport request number. Then How can we transport these settings?
    Your replies are really apreciable.
    Thanks and Regards,
    Vijay.

    Hi,
    please have a look of the OSS note: 182172
    >>
    The partner profiles are stored in the following tables:
    Table EDPP1: General partner profile
    Table EDP12: Partner profile outbound, additional data NAST
    Table EDP13: Partner profile outbound
    Table EDP21: Partner profile inbound
    Table EDIPHONE: Connection to SAP telephony (optional)
    You can use R3TR TABU to manually set the tables into a Customizing request (as of Release 46, into a SYST-type request).
    <<
    Rgd
    Frédéric

  • How to track transporter of scheduled transport (TMS)?

    Prior to audit requirement,basis has been asked by auditor to provide all the selected transport lists and the name of the transporters for each selected transports.The problem is,most of the transports have been done through TMS (Schedule) and transporter cannot be tracked using SE16 and tplog because for sheduled transport,TMS will be captured as a transporter. Anybody here can advise me on this?

    Hi Ali,
    I strongly recommend to use the proper forum for this and your other request (How to track transporter of scheduled transport (TMS)?  )with the same question....
    So please close these 2 threads and post it in Software Logistics
    There the chance is better to get the required information...
    b.rgds, Bernhard

Maybe you are looking for

  • Unable to connect to VM's in new cloud service via express route

    We have changed our express route setup, initially we had an express route via London, but we have added a second one via Amsterdam and removed the one via London. All existing and new vm's in the different vnet's have connection to our local datacen

  • Empty PO_DOCUMENT_TYPES table

    Hi, I am implementing an interface from a custom application to Oracle Financials, using the provided interface table. I also need to be able to cancel Purchase Orders on database level using po_document_control_pub.control_document (...) I keep gett

  • Language Supplement

    I am using ECC 6 Unicode Version IA64 bit on Windows Server 2003 with SQL 2005. My System language & secondary language is English, I have been imported successfully Arabic Language. I also supplemented in client 000 with English and other working cl

  • N72 no signal and can't get any network connection

    I have had my N72 for a couple of months and I haven't had any problems. Now all of a sudden it has gone offline and I can't get a connection. It is not the carrier, my sim card works fine in my old phone. I also tried another sim card in the N72 and

  • Got latest update. Now can't compose email

    just got update. went to compose e-mail. can enter who e-mail is going to and can enter on subject line but cannot enter text. Turned computer off and re-started - same problem.