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

Similar Messages

  • How to schedule cross-client job?

    Hi Experts,
    Now I'm running in client 001 and want to schedule a job which should run in client 002.
    I check the Function Module JOB_OPEN, JOB_SUBMIT, and JOB_CLOSE. There is no client-related parameter in the importing.
    Suppose the report name is ABC.
    Could someone please provide support in the problem?
    Thanks in advance,
    Best Regards, Johnney.

    hi..
    may be you can get your work done from the link
    http://help.sap.com/saphelp_46c/helpdata/en/fa/096ee5543b11d1898e0000e8322d00/frameset.htm
    regards

  • How to schedule imports using MDIS

    Dear MDM experts,
    Pls let me know if there is a way to schedule MDIS for imports rather than have it do it  24/7,e.g. need MDIS to work only at 6 pm everyday.
    Pls let me know what parametr influences that.
    Thanks.
    Ashish

    Hi Ashish,
    As per my understanding there is no need to create any scheduled tasks for MDIS import because even if u do so then u need to keep the MDIS in stopped mode.
    If the MDIS is not in stopped mode then even if u schedule any MDIS import task at 6.00 am it will only run the MDIS but it wont find any files to import coz whenever u place any file in the inbound port it gets sucked instantly.
    So for this scheduled task to run MDIS shud be in stopped mode or else it will import the file instantly.
    Try creating a scheduled task to start the services of MDIS if this is possible then whatever files that are present inbound port MDIS will import.
    But I dont think it is possible to schedule to start the services.
    Hope dis helps u
    Regards Tejas.....
    Edited by: Tejas Bane on Feb 4, 2008 11:31 AM

  • How to schedule a program in background after 5 or 10 sec

    Hi All,
           Can anyone tell me how to schedule a program after 5 or 10 sec in background after the transaction is completed.
    It is not a custom transaction. I want to execute a Z program in background  in a BADI
    Regards
    Yathish
    Message was edited by:
            Yathish Gundlupet

    Programattically?   You can add this code to the end of your transaction(if it is custom, of course).
    report zrich_0004 .
    data:   sdate type sy-datum,
            stime type sy-uzeit,
            l_valid,
            ls_params like pri_params,
            l_jobcount like tbtcjob-jobcount,
            l_jobname  like tbtcjob-jobname.
    start-of-selection.
    * Get Print Parameters
      call function 'GET_PRINT_PARAMETERS'
           exporting
                no_dialog      = 'X'
           importing
                valid          = l_valid
                out_parameters = ls_params.
    * Open Job
      l_jobname = 'THIS_JOB'.
      call function 'JOB_OPEN'
           exporting
                jobname  = l_jobname
           importing
                jobcount = l_jobcount.
    * Submit report to job
      submit <your_program_name
           via job     l_jobname
               number  l_jobcount
           to sap-spool without spool dynpro
               spool parameters ls_params
                  and return.
    * Kick job off 10 seconds from now.
      sdate = sy-datum.
      stime = sy-uzeit + 10.
    * Schedule and close job.
      call function 'JOB_CLOSE'
           exporting
                jobcount  = l_jobcount
                jobname   = l_jobname
                sdlstrtdt = sdate
                sdlstrttm = stime
    Regards,
    RIch Heilman

  • How to schedule job to execute after 5 seconds gap using the program

    Hi ALL,
    How to schedule the program to run after 5 seconds to execute using JOB_OPEN,JOB_CLOSE,SUB_SUBMIT function modules in which parameter I should give this 5 secnods?
    Regards
    mahesh

    Hi,
    You can use the import parameters of function module JOB_CLOSE
    SDLSTRTDT & SDLSTRTTM
    to pass the required start date and time (respectively) of your background job. That is, if you want the job to be scheduled and start at a fixed time (as in your case 5 seconds in the future), you can determine the start date and time as 5 seconds ahead of sy-uzeit and pass the resultant values to the mentioned importing parameters.
    Cheers,
    Aditya

  • How to schedule a background Job based on events

    Hi,
    We are on 4.6 C.
    We have a background job that has two ABAP programs.
    We need to start the 2nd ABAP program only after the first one has run successfully.
    If the second ABAP program does not run, the the job should have a status "FINISHED".
    Help appreciated.
    Thanks
    Mala

    Hi,
    How to schedule a background Job based on events,please refer to the follow SAP help:
    You can use events that have already been defined, or you can create new events for scheduling background jobs.
    If you wish to use new events, do the following to implement the event scheduling:
    Define and transport the event as a user event with transaction SM62.
    You must define only event IDs; event arguments are not defined in the R/3 System. Instead, you specify event arguments when you schedule a job to wait for an event and when you trigger the event.
    If you define a new event, you must also transport it to your production systems. The event transaction does not have a connection to the transport system. Instead, you must create a transport request for the event yourself.
    Do this to transport an event:
    Create a transport request.
    Start the editor in the transport request and enter the following:
    R3TR TABU <table name> where table name is BTCSEV for a system event ID, BTCUEV for a user event ID.
    Press F2 with the cursor on the table name to call up the screen for specifying the table entries to transport. In this screen, enter the event ID’s that you have created.
    Save and release the transport request. Ensure that it is imported into your production system(s).
    To trigger an event, add:
    – the function module BP_EVENT_RAISE to your ABAP program, or
    – the program SAPEVT to your external script, batch file, or program.
    When your programs execute these keywords, an event will be triggered in the R/3 background processing system. The event-based scheduler is started immediately. It in turn starts all jobs that were waiting upon the event, subject to normal background processing restrictions, such as the requirement that the job has been released to start.
    Schedule the jobs that are to run when your events are triggered.
    You can schedule jobs for one-time start or to be started whenever an event is triggered.
    Regards,
    collysun

  • How to schedule a background job in realtime

    Hi,
    Can you tell me how to schedule a background job in realtime.
    give some example scenerios in scheduling the background jobs in realtime.
    Thanks.
    sam.

    And also.....
    There are two ways for you to handle,
    one manually setting up the job through SM36 which is better and convinient,
    secondly through program using FM's JOB_OPEN, SUBMIT, JOB_CLOSE.
    Find below steps in doing both:
    Procedure 1:
    1. Goto Trans -> SM36
    2. Define a job with the program and variant if any
    3. Click on start condition in application tool bar
    4. In the pop-up window, click on Date/Time
    5. Below you can see a check box "Periodic Job"
    6. Next click on Period Values
    7. Select "Other Period"
    8. Now give '15' for Minutes
    9. Save the job
    Procedure 2 via Program:
    Below is a sample code for the same. Note the ZTEMP2 is the program i am scheduling with 15mins frequency.
    DATA: P_JOBCNT LIKE TBTCJOB-JOBCOUNT,
    L_RELEASE(1) TYPE c.
    CALL FUNCTION 'JOB_OPEN'
    EXPORTING
    JOBNAME = 'ZTEMP2'
    IMPORTING
    JOBCOUNT = P_JOBCNT
    EXCEPTIONS
    CANT_CREATE_JOB = 1
    INVALID_JOB_DATA = 2
    JOBNAME_MISSING = 3
    OTHERS = 4.
    IF SY-SUBRC 0.
    MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
    WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
    ENDIF.
    SUBMIT ZTEMP2 VIA JOB 'ZTEMP2' NUMBER P_JOBCNT
    TO SAP-SPOOL WITHOUT SPOOL DYNPRO
    WITH DESTINATION = 'HPMISPRT'
    WITH IMMEDIATELY = SPACE
    WITH KEEP_IN_SPOOL = 'X' AND RETURN.
    CALL FUNCTION 'JOB_CLOSE'
    EXPORTING
    JOBCOUNT = P_JOBCNT
    JOBNAME = 'ZTEMP2'
    STRTIMMED = 'X'
    PRDMINS = 15
    IMPORTING
    JOB_WAS_RELEASED = L_RELEASE
    EXCEPTIONS
    CANT_START_IMMEDIATE = 1
    INVALID_STARTDATE = 2
    JOBNAME_MISSING = 3
    JOB_CLOSE_FAILED = 4
    JOB_NOSTEPS = 5
    JOB_NOTEX = 6
    LOCK_FAILED = 7
    INVALID_TARGET = 8
    OTHERS = 9.
    IF SY-SUBRC 0.
    MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
    WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
    ENDIF.
    Hope the above helps you.
    ***********reward points,if found useful

  • I was running Firefox on another computer that lost it's motherboard, was able to salvage the harddrive, but my mail files on the older hard drive have a different name, how can I pull or import those older files into firefox running on another computer?

    I had been running other email clients for years and finally switched to Firefox. All the while importing my other email folders. So I had quite a large history of email. I had been backing up my system using Acronis for years. My desktop's motherboard crashed and was not worth repairing. I pulled my desktop hard drive and turned it in a standalone drive. I re-established my email on a laptop starting from scratch using Firefox. I would like to import (if possible) the emails history that is stored on the standalone drive (formerly my old hard drive). However, the names of the mail folders on the drives are different. For example: current computer the mail folder is named garlic.com. On the standalone drive (old hard drive) there are several folders and they are named, for instance; mail.garlic.com, mail.garlic-1.com , and so forth. it goes up through garlic-4.com.
    How can I pull or import these older folders into my current email folder and see all my old email archives?

    You are not going to be able to run your old system from the backup on this old computer as the hardware is incompatible.
    You need to get a new computer or a refurbished one.

  • How to configure dhcp client identifier

    Hi Everybody,
    The DHCP client ID is an id that is unique for DHCP clients at least in the same subnet. Usually the client uses MAC-address as Client-Identifier in the DHCPDISCOVER message. The Client-Identifier may be different other than MAC-Address, For example a FQDN name, as per the RFC 2132 Ref, (code 61).+_
    Usaually, we use the following to bind the ip address based on MAC-address
    pntadm -r SUNWfiles -p /var/dhcp -A 10.42.32.86 -i '0:3:ba:a5:a9:93' -a 10.42.32.80
    At server side, I am using the following for specifying the FQDN name.
    pntadm -r SUNWfiles -p /var/dhcp -A 10.42.32.86 -i 'one.atr.com' -a 10.42.32.80
    and at client side, I am inserting the following entry in the /etc/default/dhcpagent file
    CLIENT_ID='one.atr.com'
    But this is not working. What I am doing wrong.
    +1. At the server side, then how to assign the ip addresses to the clients , if the Client-Identifier is FQDN name in the DHCPDISCOVER message other than MAC-Address.+
    +2. How to configure the client-identifier as FQDN name at client side.+
    Please help me,
    Thanks Inadvance,
    Mummaneni.

    Sandman,
    Here is an example of a router acting as a DHCP server. Please remember that you have to exclude IP addresses that you don't want to lease out.
    ip dhcp pool example
    import all
    network 192.168.1.0 255.255.255.0
    dns-server 1.2.3.4
    default-router 192.168.1.1
    ip dhcp excluded-address 192.168.1.1 192.168.1.149
    ip dhcp excluded-address 192.168.1.200 192.168.1.254
    HTH,
    Mark

  • How to Schedule Reports?

    Hi,
    Please clarify the doubts,
    In Content Management -> Reports -> Approval Maintenance Reports, how to schedule the reports and how to make it to run.
    And how to send these reports through mail for hourly basis automatically.
    Thanks in Advance
    Vani

    Dear Srinivasan,
    I translate your response:
    Not free:
    - you need the CR 2008 client license to create the reports and then the server license to distribute the reports
    - Visual Cut
    Free:
    Do you recommend (see Crystal Reports Viewers, Schedulers and Related Products)?:
    Crystal Delivery
    Logicity
    Thanks!

  • How to Schedule Hyperion IR 9.3.1 reports on Hyperion Workspace

    Hi All,
    I am new to this Hyperion Workspace.
    Can anyone please guide me how to schedule a report on workspace?
    What are the things need to be considered before uploading the report on workspace or during the process?
    Can I schedule a report which will save the report with result after the job is complete?
    Thanks In Advance.
    Ujjawal
    Edited by: [email protected] on Mar 26, 2009 2:04 AM

    Hi Ujjawal,
    To run or schedule the reports in the workspace first we need to have a connection file which is the OCE. See the below steps.
    --Launch IR studio and create a OCE file which connects to the source database and save the file (By default it will be .bqy file)
    In the Hyperion server Goto StartPrograms--Hyperion--Interactive Rporting--Utilities and Administration and Launch service configurator.
    --Now click on 3rd icon which is the Local service configurator and login with an admin account (Default: admin, Password: password).
    --Select DAS_SERVERNAME and goto properties there will be a tab for Datasource selct it and add a new datasource.
    --restart your Hyperion Core and IR and workspace services.
    --Launch workspace
    Navigate to the folder in which to place the file.
    2 Select File > Import > File.
    The first Import dialog box opens.
    3 Click Browse, navigate to the folder where the desired Interactive Reporting connection file is located, select
    the file and click Open.
    The name of the selected Interactive Reporting connection file populates the File field on the
    Import dialog box.
    4 Click Next.
    The second Import dialog box opens.
    Click Finish
    Now import a BQY as a File as Job and select and browse the file and next give your OCE connections and go next and select the time would like to run the job by selecting the Custom Event.
    If you want to schedule a job, you can right click on the file and then add a schedule.
    Hope this helps.
    Do let me know if you have any queries.
    Thanks,
    BHANU

  • How to schedule same job in particular time

    Hi all ,
    there is one job that needs to be scheduled no of time in day.
    Please let me know how to schedule .
    Thanks&Regards,
    Ravi

    Hi,
    Create an event in SM62.
    Use FM BP_RAISE_EVENT in your code.
    In its import parameters mention the eventid and parameter.
    You job must be scheduled to execute after event.
    This you can define in the start condition of the job in SM36.
    You can put the AABAP logic based on which it could raise the event 5 times in the day.
    If you are ok to start the job after every 4 hours, you can created the job in sm36 with periodicity as 4 in other period tab in data and time tab in start condition for the job in SM36.
    Regards,
    sunmit.

  • How to schedule a package to run with package scheduler in BPC 5.1 MS

    We are on BPC 5.1 Service Pack 2.
    I have a few schedules that run import packages that were set up by a consultant who is no longer with the company. I need to know how to change the userid associated with the package schedules so that they can reflect my name and not the consultant's. I attempted to select the edit parameters but it didn't have the userid on it as an area to update or change.
    Also, how do I create new package schedules to run as I have other packages that I would like to set to run automatically on the system? I did not see an option to create the package schedule in the selections.
    Any help would be greatly appreciated.
    Thanks,
    Eleasha

    I find it easier & more reliable to create a new package schedule, rather than edit an existing one, when trying to change the user. Likewise, I've never been able to transport a schedule from one environment to another. Easier to just set up a new one.
    Go to eData -> Packages Schedule Status to delete the existing job. (Before deleting, make sure you note the scheduling options, and any other package-specific options that have been scheduled.)
    Then eData -> Run package, and choose "schedule" instead of "run now". The schedule here will be set up under the user ID you've used to log into BPC. After you've created the schedule in this way, you can go back later and edit it further (with greater scheduling options) in the "packages schedule status" interface, or via Windows scheduled tasks.

  • How to schedule jobs in Oracle?

    Hello everyone,
    Can you explain me how to schedule job in oracle?
    I want to execute one stored procedure weekly. How would I schedule job to execute that procedure weekly?
    Regards
    Swati

    Swati wrote:>
    > Or can I schedule this job in oralce itself?
    > Regards
    Hi,
    before 10g:
    you may check the dbms_job package in ORACLE.
    simply it can execute i.e. a procedure with a scheduled time pattern:
    DBMS_JOB.SUBMIT (
       job       OUT BINARY_INTEGER,
       what      IN  VARCHAR2,
       next_date IN  DATE DEFAULT sysdate,
       interval  IN  VARCHAR2 DEFAULT 'null' );
    example (the commit is important because without it no job will be started): weekly job at 9 a.m.
    BEGIN
    DECLARE
    v_JobNum   NUMBER;
    BEGIN
    DBMS_JOB.SUBMIT(v_JobNum,'your_proc;',sysdate,'trunc(sysdate)+7+9/24');
    commit;
    end;
    END;
    sysdate: 
    your date when to execute it
    trunc(sysdate)79/24 :
    execute the job weekly , reset to midnight , add 9 hours. the interval has to be set that way that you avoid a sliding job
    10g and above:
    you have a additional package dbms_scheduler (a more advanced implementation)
    please check the documentation

  • How we can do  client copy

    Dear Sir,
          How we can do client copy.
    Amit Srivastava

    Hi amit
    We have different types of client copy
    LOCAL CLIENT COPY<b>(SCCL)</b>
    REMOTE CLIENT COPY<b>(SCC9)</b>
    CLIENT TRANSPORT<b>(SCC8,SCC7</b>)
    What kind of copy your looking
    If it is local client copy we have to login into targetclient using user SAP*
    and type in command field SCCL.
    In that screen you have to select what kind of profile u want to copy from the source client and we have to specify source client.
    Schedule in the background and monitor the client log in SCC3 and job status in SM37.
    For remote client copy we required a RFC connection between two sytems.
    RFC connection can be created using T code SM59.
    Login to the target client with sap* user and type in commandfield SCC9
    In that screen you have to select what kind of profile u want to copy from the source client and source destination.
    Source destinaton will be created in SM59.After selecting source destination automatically source clientand system name will be appear in specified  fields
    Schedule in the back ground and monitor job status in SM37.
    Client transport can be done using (SCC8,SCC7) T codes.If u want to know more about client transport post a message.
    kiran kumar.v

Maybe you are looking for