Register Login

How to schedule transport request for certain date & time ?

Updated May 18, 2018


Hi there,

How can i schedule transport request either from SAP level AND OS level?
I`ve heard about `at` and `crontab` command at unix level.

thanks for your help.

SAP 4.6C
AIX 5.2
Oracle 9.2


Comments

  • 13 Apr 2009 1:44 pm Guest

    You can do this from both OS level and SAP level In STMS > Double click System >Select request  > Click Import > it will put you in small screen there you can schedule the date and time of import.

  • 13 Apr 2009 1:44 pm Guest

    Ok....thank you. What about OS level (unix)?

  • 13 Apr 2009 1:44 pm Guest

    You can write a cron job like
    $ cat import_cron.csh
    #!/bin/csh
    cd /usr/sap/trans/bin
    tp addtobuffer pf=
    tp import pf=
    $ crontab -e
    00 20 * * * /home//import_cron.csh
    depending on the unix variant you`re using.


×