Client import question

I completed a full client export from my PRD system. It created a large RT00042  file in the data directory but no corresponding file in the cofiles directory. When I try to add the transport to the TST buffer, the transort cannot be found, and I get a missing.corrupt data file error. The export seems to have completed successfully. Ideas?
Edited by: David Baillieul on Sep 23, 2008 5:20 PM

Hi,
You have to add the  data file and co-files also.
Regards,
Vamshi.

Similar Messages

  • Step by step process of client import

    hi Experts
      this is swathi, here i performed client export/import process(transport domain is same for both system)
    client export over with warnings and i need for client import
    below are my steps(performed) :
    after client import, i copied those co-files and data files in to target system then
    excuting t-code -stms_import in target system and checked in queue
    then i didn't find my transport request in target file (stms_import)so i added my transport request in Extras>other requests>add
    then it shows error description:
    (transport control program tp ended with error code 0212)
    ERROR:could not access file as supposed(see dev_tp or s)
    what happened i dont know so please i need some help at this stage ,what can i do next

    hi gagan deep,
                   i checked in target system tp system log
    it shows
    ERROR:/usr/sap/trans/cofiles/ST00003.CLL:cant open
    :permission denied
    now my question is
    i copied cofiles and data files into target system this step is correct? if correct
    i added in extras>others req->add ........this my steps is correct  or any mistakes are their please reply me
    if correct means now iam going to give permissions for target systems all data/co-files
    (usr/sap/trans/cofiles/ST00003.CLL)
    can go

  • Server Specs for a 11.1.1.3 Install Important questions.

    I've put together some specifications for a Development Server & Production Server, any comments appreciated. I hope this post acts as a good reference sample for anybody else out there looking to implement a Hyperion Planning.
    Client Tier: (2 developers)
    Windows
    8 GB RAM
    Dual Core Processor
    Components: EAS client, Smart View, Excel Add-in
    Web Tier:
    HTTP Web and J2EE Servers:
    Windows + (not sure which version would be best here, any ideas appreciated)+
    Processor: 4 x 3 GHZ, 64 bit
    RAM: 8GB
    Hard Drive: 32 GB
    Components: Foundation: HSS, Workspace, Planning, Web Applications: EAS, Financial Reporting, Web Analysis, Planning,
    Services Tier:
    Server1:
    Windows (2003 SP1, R2)
    Processor: 4 x 3 GHZ 64 bit
    RAM: 16 GB
    Disk: 32GB
    Components: Essbase Server 64 bit
    Server2:
    Windows (2003, SP1 R2)
    Processor: 2 x3 Ghz
    RAM: 8GB
    Hard Drive: 32GB
    Components: Reporting & analysis, Financial Reporting Print Services, ODI
    Server 3:
    Windows (2003, SP1 R2)
    Processor: 2 x3 Ghz 64 bit
    RAM: 8GB
    Hard Drive: 32GB
    Components: FDM
    Database Tier:
    4 x 3 GHZ - 8 GB RAM
    DISK: 100GB RDBMS
    200GB Essbase Storage
    The specifications will be similar for the production for abotu 25 - 30 users (10 concurrent), with RAM being a little bumped up.
    One important question: I might need guidance on installing 32 bit planning or FDM on the 64 bit server - any known issues with this? Also any known issues with 64 bit Essbase working with 32 bit Planning?
    Edited by: EssbaseApprentice on Sep 30, 2010 10:04 AM

    obviously its hard to comment on whether it is the perfect spec for your environment, it looks alright to me, it is not under spec.
    For the web tier as you are running reporting and analysis and the other machines are windows based personally I would stick with windows 2003.
    Is there any reason why you have one machine dedicated just to FDM, seems a bit of an overkill just for one product, it may be worth combining services server 2 with FDM, just a suggestion though
    John
    http://john-goodwin.blogspot.com/

  • Dispatcher not started after client import

    hi all,
      here i imported one client  and the client import process is running but in that system we have other clients  my question is  users are unable to log in into that other clients
    so i checked into os leve (dpmon) and after i try to stopsap and its stoped and after it is not started the error message is shown as
    oscollector is already running,,   and
    trying to start sid database .....
    log file :/ /home / sidadm / startdb.log
    please what can i do for my server start

    hi srineevas elow are shown my usr/sap/sid/sys/exe/run/startdb
    #!/bin/sh
    @(#) $Id: //bc/700-1_REL/src/ins/SAPINST/impl/tpls/ind/ind/startdbora#4 $
    NAME: startdb
    PURPOSE: startup an ORACLE database
    PARAMETER:
          none
    Environment
          ORACLE_HOME     must be set
          ORACLE_SID      must be set
    Return Codes:
          0       ok. DB may have already been running.
          1       erroneous license check
          2       DB not startable: inconsistency?
          3       environment check failed
          4       orasrv error / starting of listener error
          5       script was killed
    USAGE: startdb [ORACLE_HOME] [startRemoteService]
    DESCRIPTION:
    - initialize
    - start orasrv / now: lsnrctl start
    - check database state (connect)
    - startup database, change archivelog mode
      if this procedure is changed (e.g. Test System)
      there is no guarantee of hotline support if the system crashes
    - check database state (connect)
    - check archive log state
    - licence check
    DGUX and Sequent exceptions
    R3trans is not available on the DG standalone DB server
    therefore the Oracle processes are checked
    #History
    #2001-03-01     rv      replace SAPSYSTEMNAME with DB_SID where appropriate, due to SDMS
    #2000-11-14     rv      include begin/end messages from startsap
    #1996-07-25     kgd     SQLNETV2 and SQLNETV1
    #1996-07-11     ar      Sequent exceptions
    #1996-06-11     kgd     SQLNET*V2 adaptions
    #1994-12-7      mau     warning "Transport system not init." not only to
                          logfile but also to stdout
                          Project: 22C 241
    #1995-07-25     dg      included check that caller is admuser
    #====================================================================
    FUNCTION: check_db_running
    PURPOSE:  check wheather db is runnig without R3trans
    set returncode = 0  db available
        returncode != 0 db error
    check_db_running()
    in order to find out if the database is available
    check whether the Oracle processes are running or not
      echo "
    " >> $LOG
      echo `date` >> $LOG
      echo "check if Oracle processes are running" >> $LOG
      $PS | grep ora_[a-z][a-z][a-z][a-z]_${ORACLE_SID} > /dev/null 2>&1
      if test $? -eq 0
      then
        echo 'Database already running' >> $LOG
        returncode=0;
      else
        echo 'database not available' >> $LOG
    now check if sgadef exists
    if a database connect fails but sgadef exists,
    it is possible that there is a severe database problem
    otherwise continue with startup procedure
        if test  -f $ORACLE_HOME/dbs/sgadef$.dbf  -o \
                 -f $ORACLE_HOME/dbs/sgadef$.ora
        then
          echo "*** ERROR:Database possibly left running when system" >> $LOG
          echo "    went down(system crash?)." >> $LOG
          echo "    Notify Database Administrator." >> $LOG
          returncode=$error_dbnotavail
        else
          echo 'There are no Oracle processes running - ' >> $LOG
          echo 'Database is probably already stopped.' >> $LOG
          returncode=$error_dbnotavail
        fi
      fi

  • Reapply request of client import

    Hello all,
      I have this question, Is it possible to apply again request transport files (scc8) to another client in the same system?...

    hi,
    client copy is possible in the same system.but client import is not possible in the same system client to client.
    once at a time client import is not possible first import client into another system after  that system to import the default system.
    i hope it is useful to you.
    regards,
    reddy

  • How to import questions into Captivate 4 from a delimited file

    I'm looking
    a way to import questions from a delimited text file (or excel spreadsheet)
    into captivate.
    All the questions are simple multiple choice, single answer, four selections per question.
    I have hundreds - I'd hate to have to retype them all in one at a time.
    Thanks in advance
    -Joan

    Does anyone know if this is a feature in Captivate 5. 
    Other things I would really like to see in Captivate 5.
    Importing and Exporting the graded quiz/test content out of captivate into another
    application/ form.  Such as xml, tab delimited, excel spreadsheet,
    Adobe pdf, Word document or another format.  Our current content
    developement systems allows us to (when publishing) do this.
    1> exclude questions from the Published content
         (exclude section questions, or final test content)
    2> produce different test versions from question banks
    3> Produce a PDF paper test for when we want to train in a classroom setting
    4> Select which questions we want to produce
    5> Import questions from a pre-defined format.  To note: when we do this the system also makes us define a unique interaction id so that the import will update existing questions.
    I know this will NOT work for some of the more sophisticated questions, But for the simple Mulitple choice, true/false, fill in the blank.  etc..
    THIS WOULD BE A GREAT FEATURE..
    It would also be NICE TO HAVE THE abiliy to PROFILE versions of the SAME Course WITH OUT REPRODUCING / DUPLICATING / REPEATING THE  ENTIRE COURSE PRESENTATION.
    Such as
    "INSTRUCTOR TAUGHT TRAINING"
    "WEB TRAINING"
    "PAPER TEST A"
    "PAPER TEST B"
    ETC...
    LASTLY: if we can not export the QUIZ content.  Can an excel spreadsheet LIKE INTERFACE be used to edit certain aspects of the questions.
    Such as the InteractionId which is sent to the LMS ('cmi.interactions.0.id').  My developer team says it is real difficult and time consuming
    to track down interactionIds and then maintain them in a perfect way.
    Thanks,
    Doug Lubey of Louisiana
    www.douglubey.com

  • How to schedule a client import ?

    hi
    i'm wondering if  "client import" can be scheduled ? so far i can schedule for client deletion, client export ... but don't see the option to schedule client import.
    my activities as below
    a.) perform SCC8 at the source client to export the client.
    b.) go to the target system to refersh STMS queue, the cofiles and data files will be copied to the target system STMS queue.
    c.) transport the queue to new target client
    d.) i wll be prompted to login to the new client, i will login as sap*
    e.) once i click the button "import", the import process will start without giving any option to perform scheduling.
    please advise other than SCC9 (remote client copy) is there other way of scheduling a client import.
    comment and advice will be appreciated.
    thanks.
    regards,
    Kent

    Hi
    I don't think that, there is any such option for client import through STMS.
    Check SAP note 70547 for detailed procedure.
    Rahul

  • Error in client import

    hi Experts,
       here i need some help for my present issue
    about client import;
    i finished client export with warnings
    after i copied cofiles/data files from source to target system
    in my target system we have 3 clients 333,222,444
    i need to copy into 444
    so after copying files
    login into 444 client with sap*
    and execute t-code  stms_import and checked about my transport requests but not find
    so i try to add it in Extrasother reqadd
    but i get an error :
    description is :
    Transport control program tp ended with error code 0212
    Error:could not access file as supposed (see dev_tp or s)
    in tp out put it shows
    error:/usr/sap/trans/cofiles/st0003.dev :cant open:permission denied
    then i given 775 permission for all data/cofiles
    then again i tried to add request but result is same
    i don't understand what happen so please help in this issue

    login into 444 client with sap
    and execute t-code stms_import and checked about my transport requests but not find
    so i try to add it in Extrasother reqadd
    but i get an error :
    description is :
    Transport control program tp ended with error code 0212
    Error:could not access file as supposed (see dev_tp or s)
    in tp out put it shows
    error:/usr/sap/trans/cofiles/st0003.dev :cant open:permission denied
    Solution:Create a user with SAP_ALL and SAP_NEW profile and repeat the steps. SAP* cannot do/kick of any transport or creating of coflle and datafile.

  • Client import taking too much time

    hi all,
    i am importing a client , i it has complete copy table 19,803 of 19,803 but for last four hours its status is processing
    scc3
    Target Client           650
    Copy Type               Client Import Post-Proc
    Profile                 SAP_CUST
    Status                  Processing...
    User                    SAP*
    Start on                24.05.2009 / 15:08:03
    Last Entry on           24.05.2009 / 15:36:25
    Current Action:         Post Processing
    -  Last Exit Program    RGBCFL01
    Transport Requests
    - Client-Specific       PRDKT00004
    - Texts                 PRDKX00004
    Statistics for this Run
    - No. of Tables             19803 of     19803
    - Deleted Lines                 7
    - Copied Lines                  0
    sm50
    1 DIA 542           Running Yes             SAPLTHFB 650 SAP*     
    7 BGD 4172   Running Yes 11479  RGTBGD23 650 SAP* Sequential Read     D010INC
    sm66
    Server  No. Type PID Status  Reason Sem Start Error CPU Time   User Report   Action          Table
    prdsap_PRD_00  7  BTC 4172 Running   Yes    11711 SAP* RGTBGD23 Sequential Read D010INC
    plz guide me why it is taking too much time , while it has finished most of the things
    best regard
    Khan

    The import is in post processing. It digs through all the documents and adapts them to the new client. Most of the tables in the application area have a "MANDT" (= client) field which needs to be changed. Depending of the size of the client this can take a huge amount of time.
    You can try to improve the speed by updating the table statistics for table D010INC.
    Markus

  • MEGA180 Important Questions

    I have my MEGA180 on order but I already have some important questions:
    1) This unit provides dual vga outputs. If I install my own AGP 8x card, will the VGA2 output still work? I read in the manual that installing an AGP card will disable VGA1 (default) but it doesn't say anything about the 2nd VGA output connector. I require 2 outputs since I will be connecting to an LCD and my HDTV monitor (using a VGA to Component Video Transcoder)
    2) Will there be performance hits by using the two vga outputs at the same time?
    3) The on-board video card doesn't have any video memory. It will use your existing DDR memory. I will have 512Meg Dual Channel Memory. What kind of performance I can expect from the built-in video card (NVidia NForce Crush18) compared to other AGP cards on the market?
    Thanks for your help!
    Sly

    Though I can not provide you with answers specific to the Mega 180, I can give you some more info.
    1) No. As soon as you install an AGP card, the onboard video will be fully disabled from within the BIOS. This is an nForce2 chipset setting. So make sure to get an AGP card with 2xVGA (as most cards have nowadays).
    2) No or not much. Using an nForce2 MoBo myself I haven't encountered performance loss using both VGA outputs.
    3) There's no way to compare the onboard video to an AGP card. AGP cards will have a far out better perfomance then the onboard video. But compared to other onboard video solutions around, like Xtreme Graphics, the nForce solution is far better and has far better performance.
    It all depends on what you will be doing with the MegaPC. If you're a gamer, get an AGP card. If you want to use it as an HTPC, keep with the onboard nForce2 solution. There's no need for extra here since the nForce2 chipset is great. Onboard sound from this chipset is also great. Try it out before spending $ on an AGP card you don't need.
    Hope this helped a bit.
    roma

  • Perform Client import/export SCC8 with different release component between server

    Dear All
    Isn't possible to perform Client import/export SCC8 with different release component between server.?
    Currently the condition of between two system as follows
    Source Server     : SAP ECC6.0, Component SAP_APPL, release 602 level 16
    Target Server     : SAP ECC6.0, Component SAP_APPL, release 600 level 24.
    This problem happens due we was unable to downgrade the release and patch the latest support pack of SAP_APPL reelease 600.
    Thank You, your help is much appreciated.

    No..

  • E-Recruiting important questions

    I'm implementing the E-Recruiting and I have two important questions for this Project:
    1 - The business want to capture mobility (willingness to relocate / travel) at the time of position application. Is there a standard field for store this information?
    2 - Recruitment would like to be informed about a critical process, in others words, the requisition doesnu2019t compete with other priorities. How can I handle this situation?
    Thanks in advance!!!
    Sivani

    Hi Sivani,
    Questionnaire answers are stored in IT5141.  They are visible to the Recruiters when viewing the Candidates and can be used in rankings.  You can also decide for which positions this questionnaire would be required and which not. 
    Do not see a standard field to create a priority when creating a Requisition.  We added many fields, such as "eligibility for employee referral", so it can be added.  However, letting managers set the priorities could be a problem with each manager thinking his/her opening is most important. 
    Paul

  • Client Copy Question

    Hi,
       I was going through one of the notes for client export and got a step by step procedure.
    Just one confusion is that do I need to create the Client using Transaction SCC4 in source system before starting the export from target system.
    Also in the client import step we have to execute the below commands in usr/sap/trans/bin folder
       tp addtobuffer  PERKTnnnnn <SID> pf=TP_DOMAIN_DER.PFL u18
       tp import PERKTnnnnn <SID> client xxx pf=TP_DOMAIN_DER.PFL u18
    Please correct if the there any errors in the above statements.
    Do I need to execute this statement seperately for the 2 or 3 requests created
    What is TP_DOMAIN_DER.PFL .
    Thanks
    Parvez Khan.

    Hi Parvez,
    You dont need to create the client using trx SCC4. The 'target system' field shown in trx SCC8 is for the systems created in STMS. If you want to export you QA client to your PRD client defined in STMS, just choose this system in SCC8.
    Choose the profile you want to use to export your client. Could be for example: SAP_EXBC (cutomizing, master user, clint-independant data).
    After you execute the export client, you will have 3 transport transport request orders (you can see the progress of the process with SCC3):
    <SID>KO<nnnnn> -> client-independant data
    <SID>KT<nnnnn>  -> client-dependant data
    <SID>KX<nnnnn>  -> client-dependant texts
    and their corresponding cofiles files...
    To import these orders you must follow this order:
    1) <SID>KO<nnnnn> -> client-independant data
    2) <SID>KT<nnnnn>  -> client-dependant data
    3) <SID>KX<nnnnn>  -> client-dependant texts
    For the 1 and 2 you must use these commands:
    - tp addtobuffer PERKOnnnnn <SID> pf=TP_DOMAIN_DER.PFL u18
    - tp import PERKOnnnnn <SID> client xxx pf=TP_DOMAIN_<SID>.PFL u18
    (for each order 1 and 2)
    where TP_DOMAIN_<SID>.PFL is the name of your domain profile. You can find it here: <drive>:\usr\sap\trans\bin.
    For the 3rd transport request (texts) you can use SCC7.
    Hope this helps you, good luck!

  • Important Questions to ask when developing in Workflow

    Hello All,
      I have two questions.
      I am not a Workflow developer, but I've been asked to find out information about creating a Workflow process.
    Here is what <b>I</b> need to know: What are important questions to ask the end-user when creating a workflow. What needs to be taken into consideration?
    Here is an example of the kind of thing we need to do:
    Send an email on a weekly basis to different Project Managers a Summary of Project Charges = (maybe CN41?)
    Each Project Manager will have different requirements, so  I guess one question will be: "What info do you want from this report?". What else do I need to know?
    My second question is this: I should be able to output this as an Excel, correct? How much can I customize this? I haven't done much SAP -> Excel work. Only when I go to System -> List -> Save -> Local File ->Spreadsheet.
    Thanks for the help.
    Don Fields

    Hello Don!
    WF is quite a complex topic and someone could write a book to answer your questions - actually there is already a good book available -> check: Practical Workflow for SAP
    http://www.sap-press.com/product.cfm?account=&product=H950
    Looking at your example their might not even be a need for a workflow but rather a job that runs periodically to send the required information via email to project managers.
    Workflow is mostly used if user actions are required e.g. confirm, approve, reject a request or notifications need to be sent to someone after an event or user action occured.
    Check this link for getting more information on how to download data to excel:
    http://www.sapdevelopment.co.uk/reporting/email/attach_xls.htm
    Harald

  • Adobe Captivate Help | Import questions from GIFT format files (Cp 7)

    This question was posted in response to the following article: http://helpx.adobe.com/captivate/using/import-questions-gift-format-files.html

    Hi there,
    Captivate 7 doesn't support tags during GIFT import. So you won’t be able to import Images, links etc. as part of GIFT Import.
    Thanks,
    Nimmy Sukumaran.

Maybe you are looking for

  • Infomation Broadcasting with Email Bursting with hierarchy

    Hi, We have a scenario where based on the employee hierachy, we need to use email bursting. We have following emplyoee hierarchy. Employee_Manager   -> Employee_1   -> Employee_2 The infocube contains data for expense made by each employee. So if emp

  • Universal app on Windows Phone 10 black screen

    Hello, I received strange feedback that my application has some problems on Windows Phone 10. I can't test this because I don't have any Win10 devices. Can anyone check this app: https://www.windowsphone.com/en-us/store/app/instabullet/28cffcfa-4568-

  • Regarding control breaks

    hello folks,                ON CHANGE OF event is for?

  • Cd/dvd sets

    Do iTunes music downloads include the same content that their physical versions do? For instance, if a physical cd comes with a DVD, does the iTunes version include the video as well? I'm interested specifically in the "Hold Steady - A Positive Rage"

  • Can't send cntrl-alt-delete to start PC remotely via Mac

    I am using Symantec PC Anywhere software and even when I try the Mac equivalent of cntl-alt-delete the PC I am trying to connect to doesn't recognize the command. (Once I am in, the connection works fine). Any suggestions? Is there a better program o