How to provide the transport request number?

Hi,
     When im  trying in deactivate the Datasource "2LIS_03_BF" of Inventory Controlling, a screen prompts for a Customizing request number.
Why this Pop up screen for Customizing request is displayed?
What should i do in such cases?
Is there any naming conventions to be followed?
Please help
Regards
Santhosh kumar.N
Edited by: Santhosh Nehru on Nov 14, 2008 11:49 AM

Hi,
This will happen when have transported any object from Dev to QA and after transporting you want to change it...
Then in that cases you have to create a new request and if you want same changes in your QA or Prd system then move the request ...
So create a new request .. and there is no naming convension .
Regards,
Viren.

Similar Messages

  • How to track the transport request number for the Role/Composit Role

    Hi,
    How to track the transport request number for the Role/Composit Role.
    Thanks,
    Ravi

    Use transaction SE03 Transport Organizer Tools
    Execute "Search for Objects in Requests/Tasks" with objects of types:
    R3TR     ACGR     Role
    R3TR     ACGT     Role - User assignment
    Regards

  • How to get the transport request number of ABAP query.

    I want to find out last Transport Request  number used of a transporting changes Abap query from development to quality system.
    Also is it possible to do some comparison on version existing in development and quality for abap query.

    goto SE03 ..
    In Object Directory -> Double click on
       Change Object Directory Entries
    Enter AQQU(This is for ABAP Query) in the modifiable box ..
    press enter ...
    Check this check box ... Enter the ABAP query and press F8.
    Double click on the Query and in the popup click on the
    Lock Overview ...
    U'll find the request number ...
    Edited by: Srinivas Gurram Reddy on Apr 2, 2008 6:53 PM

  • How to find the transport request which was released to Quality

    Hi Friends,
    Could anyone please let me know, how to find the transport request that was already released from Development to Quality?
    there was some change in customization took place. I could find the user (through change log) who made these changes, however I could not find the transport request number he has already released. I did give his user name in SE10 and checked the released checkbox and did click transports to see them, however I found nothing. A message got displayed on the screen: Cross-system information for user xxx. I can't ask the Basis people about it, as its not yet been trasnported to Productive.
    Is this the correct way to see the transport request number? Is there any other way to find the number. I can give the tentative dates when the change was released.
    This post might already posted before, I did some search, could not find the exact info what I am looking for.  Would appreaciate if anyone could give the step by step method to find it.
    Thanks in advance.
    BR,
    Sats.

    Ram,
    let me tell you the the situation in a better way.
    When I see se10 with my user id I could see all the transport requests that I have released. However, now when I enter my colleague user id who did these changes (he is on vacation, otherwise I could simply ask him the transport number), nothing is shown on the page. in simple words the page is completely blank. Initially I thought it is because of some authorizations, but I can get the transport request numbers that are released by another user.
    the info what I have right now are:
    1. I knew the user name who did these chages
    2. I knew the date when it was changed.
    I just need the Transport Request number I mean which starts with DEVXXXXXXX.
    As per your solution --> If you have any idea when the reques was relase you can select the request and click on goto-transport logs. This way you can find out the request. --> I knew the date when it was released, but didnt understand, the bold and underlined sentense in your answer.. select on which request? as I said, the page was blank after I enter his user id and activate it.. May be I did not understnd your solution properly. Could you please simplify it.
    Thanks a bunch in advance
    Sats.

  • How to find the Transport request for table entry

    Hi ,
    There was certain entry made in the SAP std table and which got transported to subsequent system. I want to find the Transport Request Number which was containign that table entry and which gor transported.
    Please suggest how can I find that transport number.
    Thanks
    Saurabh

    Hi,
    Yes we can get , Basis team will help.
    B'coz i had same requirement my basis got the TR for me.
    Take their help.
    He said u can like this.
    SE11 - > Table Display - > Table Entry in Menu Bar - > Transport Entries.
    Rhea.

  • Can give me the details how to release the transport request to the qa

    can give me the details how to release the transport request to the quality server pr production server
    thanks

    Hi,
    Use transaction SE09. Here select "modifiable" .Then click -Display.
    Now you get a list of all requests which can be released.
    Locate your request number and drill down. Release the sub-request first and then the main request by selecting and using the "transport" icon.
    Muraleedharan.R
    091 9880028904

  • How to create a transport request number in SM36

    Hello SAP gurus,
    Can someone please let me know, how to create a transport request number while schedule a new job in SAP.
    Can we create a new transport request number in SM36?
    Thanks
    Sha

    Hi Sha
    Doesn't make sense to create Transport number in SM36, where it meant for scheduling the batch jobs.
    I would rather suggest you to create in SE09 -> Creaet  (F6) or
    while doing the config ->save the config-> create new req
    Please voice out if you really have other requirement to have this.
    regards
    RG

  • How to see the spool request number

    hi experts,
    how to see the spool request number of any object......
    may be form or report........

    U can go to SP01/SP02.
    For generating spool u can look into this code.
    FORM write_to_spool.
      DATA : l_f_list_name LIKE pri_params-plist,
             l_f_destination LIKE pri_params-pdest,
             l_f_spld LIKE usr01-spld,
             l_f_layout LIKE pri_params-paart,
             l_f_line_count LIKE pri_params-linct,
             l_f_line_size LIKE pri_params-linsz,
             l_f_out_parameters LIKE pri_params,
             l_f_valid.
      l_f_line_size = 255.
      l_f_line_count = 65.
      l_f_layout = 'X_65_255'.
      l_f_list_name = sy-repid.
    to get defult spool device for the user
      SELECT SINGLE spld INTO l_f_spld FROM usr01 WHERE bname = sy-uname.
      IF sy-subrc = 0.
        MOVE l_f_spld TO l_f_destination.
      ENDIF.
      CALL FUNCTION 'GET_PRINT_PARAMETERS'
          EXPORTING
            ARCHIVE_ID             = C_CHAR_UNKNOWN
            ARCHIVE_INFO           = C_CHAR_UNKNOWN
            ARCHIVE_MODE           = C_CHAR_UNKNOWN
            ARCHIVE_TEXT           = C_CHAR_UNKNOWN
            AR_OBJECT              = C_CHAR_UNKNOWN
            ARCHIVE_REPORT         = C_CHAR_UNKNOWN
            AUTHORITY              = C_CHAR_UNKNOWN
            COPIES                 = C_NUM3_UNKNOWN
            COVER_PAGE             = C_CHAR_UNKNOWN
            DATA_SET               = C_CHAR_UNKNOWN
            DEPARTMENT             = C_CHAR_UNKNOWN
               destination            = l_f_destination
            EXPIRATION             = C_NUM1_UNKNOWN
               immediately            = 'X'
            IN_ARCHIVE_PARAMETERS  = ' '
            IN_PARAMETERS          = ' '
               layout                 = l_f_layout
               line_count             = l_f_line_count
               line_size              = l_f_line_size
               list_name              = l_f_list_name
            LIST_TEXT              = C_CHAR_UNKNOWN
            MODE                   = ' '
            NEW_LIST_ID            = C_CHAR_UNKNOWN
            NO_DIALOG              = C_FALSE
            RECEIVER               = C_CHAR_UNKNOWN
            RELEASE                = C_CHAR_UNKNOWN
            REPORT                 = C_CHAR_UNKNOWN
            SAP_COVER_PAGE         = C_CHAR_UNKNOWN
            HOST_COVER_PAGE        = C_CHAR_UNKNOWN
            PRIORITY               = C_NUM1_UNKNOWN
            SAP_OBJECT             = C_CHAR_UNKNOWN
            TYPE                   = C_CHAR_UNKNOWN
            USER                   = SY-UNAME
          IMPORTING
            OUT_ARCHIVE_PARAMETERS =
               out_parameters         = l_f_out_parameters
               valid                  = l_f_valid
          EXCEPTIONS
               archive_info_not_found = 1
               invalid_print_params   = 2
               invalid_archive_params = 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.
      IF l_f_valid NE space.
        NEW-PAGE PRINT ON PARAMETERS l_f_out_parameters.
        WRITE : /5 'Material No.',
                 25 'Message Type',
                 40 'Message Issued'.
        ULINE.
        LOOP AT g_t_message_table WHERE type = 'E'.
          WRITE : / g_t_message_table-matnr UNDER 'Material No.',
                    g_t_message_table-type UNDER 'Message Type',
                    g_t_message_table-message UNDER 'Message Issued'.
        ENDLOOP.
        NEW-PAGE PRINT OFF.
      ENDIF.
    ENDFORM.                    " WRITE_TO_SPOOL
    Regards

  • How to get the transport request for a particular standard text?

    Hi,
    i want to know, how we get the transport request which associated for standard text.
    Please note already the standard text is assigned to the TR using RSTXTRAN program.
    i have a std text. i want to find the related TR for that!
    rds,
    Siva.

    Refer the link. It might tellsa about attaching to transport request but using the way you can find also -
    Re: How To Transport STANDARD TEXTS??
    Regards,
    Amit
    Reward all helpful replies

  • How to delete the Transport Request?

    Hi all,
       I want to delete the Transoport Request from Production Box( we have 2 request number... one child another one parent). I released the Child Request. Now i want to delete that request. we don't have setup in our production Box i think(in order to release that we don't have setup in Production Box).
    Any Idea? I know how to delete that Transport Request. If i try to release that i'm getting TP(Transport Profile error) <b>with return Code 12</b>. it suppose to handle by Basis. My basis consultant is not aware of how to work on this?
    Regards,
    Nagesh Ganisetti.

    I am not sure I understand.
    You release the request in the system you created, not in another system (in your case production). It will then go to the import queue of the target system.
    Transports will be configured in all the systems in your landscape (including production).
    Just by releasing a request, it will not go to the target (unless it is configured so, not likely if the target is production), someone has to import it into the target. I assume you do not want this request to go to target. In this case, release it, then go to STMS, import queue, and delete it from there.
    Added -
    I now see that the request is in production.
    Igore the above in that case.
    If you are not able to release it, let it be. If you are doing an upgrade/support pack, you will need to release it.
    When you try to delete, what message do you get?
    Message was edited by: Ajay Das

  • How to get the spool request number ?

    Hi All,
    I am working on a smart-forms. I am using a custom transaction to print these smartforms. When I execute
    the transaction the print screen comes where I can do
    print preview or print.
    Now to convert this Smart Form to PDF I need to know the spool request number to use in the report called RSTXPDFT5.
    How do I get the spool request number ?
    Do I need to do some changes in spool control options of print screens to get the spool request number or something else ?
    Please let me know.
    Answers will be awarded...
    Tushar

    Hi,
    You will get the spool no. in the parameter "job_output_info" after calling the smartform function module in print program. The spool ids of the prints is stored in table job_output_info-SPOOLIDS.
    Regards,
    Gagan

  • How to include the transport request

    Hi Experts,
    i am asked to create a copy of cube  and asked to  .Include the Transport request in request DEVK9795967
    Please explain how to do it,
    Thanks in Advance
    Nitya

    Hi,
    You can create the copy of Infocube and Include the transport requst. Follow bellow steps;
    1. Goto RSA1> Select Info Area> Select Create the Infocube> Give the Technical/Discreption and Select the Copy of the Cube> Save and Activate.
    2. At acitvation time the system asked the request.
    Select the Own request from Pop Up> Select your created request> Select Continue.
    It wil include the your created request.
    Regards.

  • How to modify the transport request

    hi frnds,
    i need ur suggestions, we have created the transports and we didnt specified the target system becoz there was no connectivity at that time. now we have connectivity to the target, how can can we add the target to the transport requests which was created by us??????

    Thats gonna be a tricky one and would take lot of BASIS involvement rather than BI folks.
    What SAP does when you release the transport is, that it looks into the IMG setting to find the target system and generate a file on the operating system for which BASIS Admin would have access to. So ask ur basis folks to locate the file based on ur transports on the OS and import it to the target system(though SAP doesnt recommend it).
    Other than that the only option would be to recreate all ur transports (assuming now you have a traget system defined in IMG settings)

  • WHSCON or SHPCON : how to transfer the picking request number ?

    Hello,
    I want to pick & pack an outbound delivery using the idoc WHSCON.
    Using the WE19 transaction I have simulated an inbound idoc with qualif. PIC in segment E1EDL18. It works fine.
    My problem is that a new picking request is created for the delivery. It has the same number as the delivery. Because of this, the picking quantity is added to the delivery quantity.
    So my question is quite simple : in order WHSCON (or SHPCON), in which segment and field must i put the picking request number ?
    Subsidiary question : Is it a difference between messages SHPCON and SHPCON ?
    Regards.

    Hello there, Off the top of my head, I used WHSCON as opposed to SHPCOn for shiiping confirmations ( picking and PGI).
    But for returns and refusals I used SHPCON.
    Now they both can be used but obviously the Func. modules are different. Other than that there must be some subtle differences, which you might notice if you test both thoroughly for the same condition.
    also in my case there was no picking request # so I cannot help you there.
    I do recollect that the PIC indicator was in both the header and the line item, and there was another indicator used by another team in the 19 segment, think it was "QUA". never understood its purpose.
    If you do figure it out outside of this forum, please post the resolution here.
    Regards

  • How to know the Transport Request status?

    Hi all,
      i need to develop a report wherein i need to display the status of the Transport Request..i mean it should display wheteher it has move to the Production system?Is there any table or FM which gives the cross system details of the Transport Request.
    Thanks in advance,
    Rakesh.

    Hi Rakesh,
    Please check this FM.
    TR_LOG_OVERVIEW_REQUEST_REMOTE
    TR_LOG_OVERVIEW_REQUEST
    TR_LOG_OVERVIEW_REQUESTS
    Hope this will help.
    Regarsds,
    Ferry Lianto
    Please reward points if helpful.

Maybe you are looking for

  • Create Follow up Transactions

    Transaction SLFN have a button for Follow up transactions. It consist of 1) Business activities 2) Service process 3) Task Each of the above have sub activities. We would like to take away some of these business activities from the list. Where do you

  • Cc-header

    hi together. public void sendMail(String body, String subject, String sender, String to, String copy) { String server = "srv.domain.com"; String toList = null; Properties props = new Properties(); props.put("mail.smtp.host", server); props.put("mail.

  • Seriously Dissapointed With Leopard

    Not sure if I'm the only one here but I have seriously lost patience with both leopard and Apple now, and find this a worse and more unstable operating system then Vista. I have have only had my machine for a few months after switching from Dell with

  • Why have I lost all my contacts on iPhone4?

    Over the last 24 hours all my contacts have disappeared from my iPhone 4.  I had not updated or sync'd just recharged? 

  • HT5978 How do I add custom location on Calendar?

    When I type location, Calendar give me options. But I want to add custom location because all of options is incorrect. How can I do that?