Creation date for released transport request

Hello everybody!
Does anyone know how to find the CREATION date for a released transport request? I've already checked table E070CREATE and it only has entries for modifiable requests.
Best regards,
Luís Andrade.

I think transport is released date field in E070 is overwritten with the releasing date.

Similar Messages

  • How to find the creation date for a released requests..

    Hi friends ,
    In se09 tcode , we a date which represents the last changed date .. Now , for a particular Released request i want to find out the Creation date for it . How can i find it . I checked the tables like E070create there also we have requests that not released yet , i have also checked se03 and other tcode and a fn mo dules like TR_READ_GLOBAL_INFO_OF_REQUEST .
    So how to find the creation date for a released requests. Iam waiting for ur inputs..
    Thanks in advance..

    hi,
    Did u found the way to get the request creation date?
    I also need the same information.
    This needed for audit purpose........so it is must.
    Please help me in this.
    Best regards,
    vinod

  • Database tables holding details for a non - released transport request

    Dear All,
    We are implementing SAP ECC 6.0 u2013 ABAP stack, on IBM iSeries / System i, i5/OS V5R4 -
    SAP kernel release 7.00, kernel patch number 173
    Could someone please guide me to the database tables holding the details for a non u2013 released transport request.
    The problem is the following :
    We encountered some data corruption in the database of our development system, so we did a restore from the previous day's backup (RSTLIB  command) for the database library : R3DEVDATA, without restoring the /usr/sap/trans  directory, then we did an APYJRNCHG command for the journal receiver spanning from the previous day's backup until the corruption time (remote journal on a remote system.)
    We are now facing the following conflict :
    One of our programmers is now un-capable of updating an ABAP program, which he previously added in a transport request, which he did not release.
    ( This was done during the day of the data corruption)
    When the programmer is trying to update the ABAP program through the ABAP workbench, he receives the error :
    'Request lock on non u2013 existent task / request DEVK921426'
    No details for the transport request DEVK921426 exist in either of the two directories :
    /usr/sap/trans/data   , /usr/sap/trans/cofiles
    The way I see to solve this conflict (eliminate this lock) is to delete the different entries related to the un-released transport request from the database tables.
    Any clues would be highly appreciated.
    Thank you in advance for your cooperation.
    Best regards.
    Reda Khalifa

    Dear Volker,
    Thank you very much for your interest.
    The transport request of interest did not appear in transaction code SE03
    Eliminating the record from table TLOCK indeed did solve the problem.
    Thank you again.
    Best regards.
    Reda Khalifa

  • Is it is possible to delete released transport requests...

    Hi Experts,
    I had created transport request and it is released, moved to quality with errors. I dont know why I am getting errors while transporting the request, Now I am creating another transport request. Is it any possibility to delete released transport request or is there any solution for this. why I am getting errors while transporting from dev to quality.
    Thanks & Regards,
    RAJ

    HI,
    Its not possible to delete the released transport request. You should have to follow transport procedure .
    T-code for Transport Connection- Check in SE09/se10 for creating requests.
    For collecting objects you have go Transport connection without missing the objects.
    SE03 for checking the Request objects.
    Go to transport connection in RSA1 Select u r Data target or report what ever it may be in development sys & select only necessary objectsu2026 click on transport optionu2026u2026it will ask the transport request create new req. go to SE-9 release the objectu2026go to STMS import u2026RELEASE The objects in quality sysu2026same procedure to production sys.
    Thanks
    sudhakar.

  • Releasing transport request taking long time

    Hi All,
    I am releasing transport request in SE09, for releasing child request it was taking long time and for parent request taking much more long time.
    In SM50, i didn't find any processes running.
    Can anyone tell me the solution.
    Thanks & Regards
    Uday

    Hi Uday,
    >> I am releasing transport request in SE09, for releasing child request it was taking long time and for parent request taking much more long time.
    You didn't note what release your are running on, but you can check the note 1541334 - Database connect takes two minutes
    >> In SM50, i didn't find any processes running.
    It is normal, because the system exports the transport request by "tp" command at the OS level, after TMS complete its job on a DIALOG wp.
    Best regards,
    Orkun Gedik

  • Problem of calling BAPI to release transport request

    Dear Friends,
    I want to automatically release Transport Request using BAPI (BAPI_CTREQUEST_RELEASE), but I met a difficult during the process that only TR TYPE 'K'or 'W' can be release using this BAPI, if I create an addon program which TR Type is 'S' (stand for Development/Correction), then this BAPI does not work. 
    BTW, you can refer table E070.
    Could you please kindly give me some idea to solve this problem?
    Thank you in advance.
    Best regards,
    Nick

    Dear Li Nick,
    The reason that you cannot release a request of type 'S' is that type 'S' names a local correction, which cannot not be transported (and therefore of course not released).
    Regards, Tino

  • Mass collection of data sources in Transport request.

    Hi All,
    I want to capture the data sources which are available in RSA5. It is already activated and captured in Transport Request. But the Transport request was deleted by somebody.
    I want to re-capture the activation of data sources which are there in RSA5. I want to collect 90 data sources in one Transport request.
    Can you please guide me a easy way to capture all the data sources in transport request.
    Thanks.

    Hi,
    you might be able to create a new Transport request and add the datasources manually.
    check out the table roosource for the sources. you can find your's by filtering on tstpnm.
    add the sources with object 'R3TR' and subobject 'OSOA'.
    regards
    Siggi

  • F4 help for Customizing Transport Request Field....

    Hi,
    I need a Function Module for F4 help for Customizing Transport Request field. I have used the below FM but I ma able to get only Customizing TR for only Login User Name only but not other Users. How to get the Customizing TR which are created by other Users(Owner is diferent from Login Owner).
    PARAMETERS: p_cts  TYPE e070-trkorr OBLIGATORY.
    AT SELECTION-SCREEN ON VALUE-REQUEST FOR p_cts.
      PERFORM get_cts CHANGING p_cts.
    *&      Form  get_cts
    FORM get_cts  CHANGING p_cts.
      TYPE-POOLS trwbo.
      DATA: lv_cts TYPE trwbo_request_header.
    To Get only custimzing requests
      CALL FUNCTION 'TR_REQUEST_CHOICE'
        EXPORTING
          iv_request_types     = 'W'
        IMPORTING
          es_request           = lv_cts
        EXCEPTIONS
          invalid_request      = 1
          invalid_request_type = 2
          user_not_owner       = 3
          no_objects_appended  = 4
          enqueue_error        = 5
          cancelled_by_user    = 6
          recursive_call       = 7
          OTHERS               = 8.
      IF sy-subrc <> 0.
    MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
            WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
        CALL FUNCTION 'POPUP_DISPLAY_MESSAGE'
          EXPORTING
            titel = 'Transport'
            msgid = sy-msgid
            msgty = sy-msgty
            msgno = sy-msgno
            msgv1 = sy-msgv1
            msgv2 = sy-msgv2
            msgv3 = sy-msgv3
            msgv4 = sy-msgv4.
      ENDIF.
    Pass the selected TR to selection screen
      IF sy-subrc = 0.
        MOVE lv_cts-trkorr TO p_cts.
      ENDIF.
    ENDFORM.                    " get_cts
    Regards,
    Deepthi.

    Instead of using FM 'TR_REQUEST_CHOICE', you can have direct database select on table E070 and E071.
    In E070, the field TRFUNCTION determine the customizing and workbench request.
    K->     Workbench Request
    W->     Customizing Request

  • Urgent Correction: Release transport request (transport is red)

    Hello!
    Has some one experience to solve the problem bellow:
    By an urgent correction it is not possible to release transport. In the field "Task" I can see a red point that not allow to proceed.
    If I release the transport manually in the satelite syytem, without CharM, my import runs with error:
    AGR_1016 table class is 'C'. Entries are only imported to client '000'.
    AGR_1016B table class is 'C'. Entries are only imported to client '000'.
    AGR_PROF table class is 'C'. Entries are only imported to client '000'.
    AGR_USERT table class is 'C'. Entries are only imported to client '000'.
    AGR_TIMEB table class is 'C'. Entries are only imported to client '000'.
    Main import
    End date and time : 20071115141115
    Ended with return code:  ===> 8 <===
    The question is:
    I would like to copy some existing role to  cutomer's namespace Z... save the rolle and transport the role via CharM.
    Is it usual to get the error I get?
    Thank you very much!
    regards
    Thom

    Hi Liza:
    You cannot delete released transport requests.
    Don't import them into QAS or PROD.
    If you already imported them, then your only option is to delete the Objects manually in DEV, capture the deletes in a new request and transport th enew one.
    As you know if you released a request, you can ignore it without moving it anywhere.
    Ram Chamarty
    Message was edited by: Ram Chamarty

  • Releasing transport requests with job roles take forever after upgrading to Netweaver 7

    Dear experts,
    Some time ago we've out SAP ECC 5 system to ECC 6. Since then, it takes a very long time to release transport requests containing job roles.
    For example, a request containing 154 job roles (1 template and 153 derived roles) took 4 hours to release in our DEV system. Before the upgrade this only took a couple of minutes.
    Afterwards, the import in our QAS and PRD system don't take longer than normal.
    Apparently this time is taken by the Export phase:
    Checks at Operating System Level   
    17.04.2014 09:50:03
    (0) Successfully Completed
    Pre-Export Methods                 
    17.04.2014 09:50:37
    (0) Successfully Completed
    Export                             
    17.04.2014 13:51:02
    (0) Successfully Completed
    Does anyone know what causes this and how to solve?
    Kind regards,
    Nicolas

    Hello Nicolas,
    What I understood from your description is that ,it takes very long time to release the job. Once it is released, execution does not take much time.
    To me it seems to be background job/work process issue. Maybe all the background work process are busy to execute current jobs and no free work process available for the jobs which are in the queue. In that case, if possible try to increase number of bg work processes.
    Check for any performance issues during that period. Check if there is any locking issue and jobs are stuck because of that.
    Hope this helps to investigate the issue
    Regards,
    Archana

  • SAP/System did NOT prompt me for a transport request for ALE BD64 CDM View!

    Hi Experts,
    Am doing ALE setup for sending sales orders IDOC out to a 3rd party system.
    I have created the logical system and attached to a transport. Here we dont have necessity of linking a client to this logical system!
    Then, I created a Distribution Model (CDM) View in BD64 transaction and added Message types to it, but SAP/System did NOT prompt me for a transport request!! Pls. let me know
    1) Is it usual with CDMs creation that NOT prompting for a transport? if so, How my CDM/changes will be moved to QA/Production?
    2) If not, Why system did not prompted me for a transport?
    3) Then How Can I attach my CDM/changes to a transport?
    Thank you

    I don't think we get a TR prompt when adding a view in BD64.
    You've to individually maintain the CDM view in QAS & PROD. Also there is a functionality to "distribute" the CDM view, are you looking for something similar ?

  • System ask for a transport request while maintain IT0002

    I'm getting strange message while maintaining IT0002 i.e system ask for a transport request. But while maintaining IT0008 or IT0009 etc it's not asking transport request. So while Diagnosis it is giving
    Active integration to Organizational Management means that when a link to Organizational Management is created, it is saved automatically.
    When saving organizational data, the data must be written to a transport request because, for example, the automatic transport recording is active. Without a correction request, the relevant changes in Organizational Management cannot be saved.

    Check the Tcode OOCR how the swich is active or not
    later check with ur basis Guy once

  • Is it possible to delete a released transport request

    Hello
    I wander is it possible to delete a released transport request. Is it possible to delete a transport request with released only an task

    You can but you have to chnage status of the request:
    Use transaction SE38 or SA38 and run program: RDDIT076
    Set your request number and run the program
    After request is shown double click on it
    You should be able to change status from R to D
    And now, you can delete the transport for example in transaction: SE10...
    Help on ABAP: Few Tips for Transport Request Manipulation

  • Releasing Transport Requests

    Hi,
       I want to release trasport requests weekly once,guide me for the same.
    Thanku

    Hi Harshit,
    Releasing a transport request automatically is not a recommended practice .
    It can lead to number of errors and inconsistencies .
    Who will monitor the logs or may be developer want to add some more stuff in same TR.
    So there should be no suggestion  like releasing transport request automatically from consultant end.
    Still if you need you can get some idea from here
    Re: Automatic Release of Transport Request: By ABAP Program
    Regards,
    Gagan Deep Kaushal

  • Tcode to look for a transport request number

    Hi all,
    I have to look for request number details .I dont have access to SE01 . How can i look that details?

    Hello Priya
    The standard transaction for finding transport requests is <b>SE03 </b>(choose option <i>Requests/Tasks -> Find Request</i>).
    If you are not authorized to call this transaction try to execute the underlying report <b>RSWBOSSR </b>using transaction <b>SA38 </b>(menu <i>System -> Services -> Reporting</i>).
    Regards
      Uwe

Maybe you are looking for

  • Exchange email can no longer send since password on exchange was changed

    I have an iPhone 4 that I could not initially get to send emails with exchange! Not sure why but it just started working and has been working ever since. It started working once the domain value was left empty but, although initially it couldn't logi

  • PO output medium issue

    Hi, I'm working in SRM 5.0 version, SP 13. Here is my issue: When a PO is created the PO output is set as the vendor output medium, which is SRM standard functionality. Lets say the vendor output medium is set to Fax. The buyer changes to ouput from

  • Can't open folder after failed copy

    Hello, I have a WD MyBookLive NAS drive which, up until Mavericks, I had been succesfully using as a Time Machine backup over WiFi. However after Mavericks it became unusable (This is well documented throughout this site and in other places - however

  • Snapshot a server and compare with gold standard server

    Hello, Within SCCM 2012 R2, I am trying to see if i can compare my target server with a master server (like a gold standard server) and understand whats missing or different (could be configuration files missing or services or even a particular param

  • 3D printing support on Windows 8.1

       I've connected my Up! Mini 3D printer to my PC. But the 3D Builder app doesn't recognize my 3D printer. I can print 3D models normally from Up! software on the same PC. So , please explain how to print via 3D builder app. Thank you