Asking to save any transported objects under new request in QA

Hello Experts,
I did transport some infopackages and Process Chains from Dev to QA.
1. When I try to click 'Activate and Schedule' button to activate and schedule a process chain, it's asking to save it under new request which is QA request. Is it normal or something to do with the BASIS settings? I thought it should not ask for another transport request to save under. We don't transport anything from QA to other server, so why asking for tranport request?
2. If I change any infopackage and try to save, also asking to save under any request. Is it also normal?
3. If I create a new infopacakge in QA, It's not asking to save under request. I can save it normally without any request.
Can some one explain please? Appreciate your help.
Regards,
Bhakta

Hi Bhakta,
You can change / activate process chains ( or any other object ) in QA & Prod even without creating a transport .
See this <a href="http://help.sap.com/saphelp_nw2004s/helpdata/en/0e/a7343e8c7f6329e10000000a114084/content.htm">Object Changeability</a>
Regards.
Sanjay

Similar Messages

  • Specifying Critical Transport Objects under Change Management Extend config

    I'm trying to configure Change Management and I am in SPRO under SAP Solution Manager -> Config -> Scenario-specific settings -> Change Managment-> Extended config -> Change Request Management -> Specify Critical Transport Objects.
    It states that you need to select the system/clients for which you want to specify critical transport objects.  however, i do not see my systems listed there.  I'm assuming i've missed a prior step somehow.
    Any help would be appreciated!  Thank you!
    Margo

    Hi.
    There are several things necessary to make the system appear in this transaction (/N/TMWFLOW/CMSCONF -> critical obejcts)
    You need:
    - a smi project
    - a logical component assigned to that project which contains your systems
    - at least one system within your logical component of type "developement system"
    - the project needs to be released for change request management (tx: solar_project_admin, "activate change request management")
    Hope this helps.
    /cheers

  • Form new request for retranspor

    Hello Gurus,
           I want to retransport some request in sap bw due to some missing object in it.  so what my precess is :
    SE10>request/task>create>click on newly created request> click button for " including objects..",  is this the correct chain for
    creating a new request to hold existing object?
    after I adding all demanding object, under new request,  appearing a new folder " Object List of Request", which is on the same level as
    the task under new request. and content under that task is empty. is that outcome correct or something wrong with my operation?
    Many thanks.

    Hello,
    Yes. That is one of the correct method to collect BW objects.
    You can double click on the request to see the objects locked under the request.
    Also please delete the empty task.
    You can release the request by clicking on the Truck symbol ( tcode SE01).
    Thanks,
    Sreeja

  • Transport Request - saving objects in workbench request

    Output of my Report is ALV. In that I have One button in the application toolbar and I have checkbox as a column to select  the displayed entries. If I select that button the selected entry( in my case 'Role') has to be saved under a customizing request'.
        In my case it is saving the object under 'WORKBENCH Request'.
    Is there any Function module to do this .
        I have used 'TR_REQUEST_CHOICE' fn module to get that create request pop up screen and for appending entries I have used 'TRINT_APPEND_TO_COMM_ARRAYS'.(IT is saving the object under WORKBENCH ReQUEST, But I need it in CUSTOMIZING REQUEST)

    Hello Nievetha
    The mass transport function in the profilgenerator (PFCD) is executed using report <b>PFCG_MASS_TRANSPORT.</b>
    For a single role you could directly use function module
      CALL FUNCTION 'PRGN_TREE_HANDLE_UCOMM_NAVIGAT'
        EXPORTING
          okcode             =' TRAN'                  " transport role
          agr_name_neu       = <name of role>.
    Since you would like to put multiple roles into a single transport request you can do the following:
    SUBMIT pfcg_mass_transport
            with agr_name ...  = <list of roles as range>
            with comp_rol ...   = <with or without composite roles>
            with profiles ...      = <with or without profiles>
    AND RETURN.
    Regards
      Uwe

  • Reg:new request creation for alredy created request

    hai,
    one program is created under more than one request number , Now i want to create one request number for all those modification.
    all requests are released.
    is it poosible to create new request for all released request.
    regards,
    Chaitanya

    hi,
    once if you save any changes under one request it will automatically take all modifications of program under new request, no questions of wethe that request save all changes or not.
    or create new copy program and save this new program under new request - in this way u can make all changes under one request.
    Rewards if is useful
    Regards,
    Vijay

  • How to delete the Logo under any Transport Request?

    Hi all,
    I have one Logo in SE78. it is under one TR number. This TR already moved to QA.
    Now i want to delete the Logo in Dev and saved in new TR or same TR number. then i will move the changes to QA.
    I try to delete the Logo in DEV. it is not asking any new TR number. simply it is deleted. So how can i move the TR to QA
    Thanks in Advance,
    venkat

    If deletion ask for a transport request, then you have no problem, the transport request will contain a "delete object" request. (Look at SE11, there is a flag for deletion in object list)
    If deletion has not asked for a transport request, then when you have created you new request, add the deleted object to request (here two ways to perform it , there are others
    - On SE03 (click on tool icon if on SE01) there is an option "Merge Object Lists "
    - On SE01 there is an icon (icon ICON_INCLUDE_OBJECTS) to include object of another request(s) into yours.
    Transporting the same request again and again should have absolutely no effect, as the object is saved into the request when releasing it. (saved in a binary format on a directory of the application server dedicated to transport)
    Regards

  • Need to find out the list of objects under a Transport

    Hi ,
    My requriement is to programatically find the list of objects under the Transport.
    I tried using the table E071 but no luck is there any FM or table which gives me the list of objects assigned to the transport request
    Regards,
    kk

    TYPES: BEGIN OF ty_tasks,
            trkorr TYPE trkorr,
            trstatus TYPE trstatus,
            strkorr TYPE strkorr,
            as4user  TYPE tr_as4user,
           END OF ty_tasks,
           BEGIN OF ty_object,
            trkorr TYPE trkorr,
            as4pos TYPE ddposition,
            pgmid TYPE pgmid,
            object TYPE trobjtype,
            obj_name TYPE TROBJ_NAME,
            lang TYPE spras,
           END OF ty_object,
    SELECT-OPTIONS : so_trans FOR e070-trkorr
    *selection from table e070.
      SELECT trkorr
             trstatus
             strkorr
             as4user
             FROM e070 INTO TABLE it_tasks
             WHERE strkorr IN so_trans or
                   trkorr in so_trans.
    IF SY-SUBRC = 0.
    *selection from table e071 to get all the objects
    *under the respective task/request.
    data: g_trans type e070-trkorr,
          g_strkorr type e070-strkorr.
      SELECT trkorr
             as4pos
             pgmid
             object
             obj_name
             lang FROM e071 INTO TABLE it_object
             FOR ALL ENTRIES IN it_tasks
             WHERE trkorr = it_tasks-strkorr.
    hope it might be helpfull.
    regards ,
    aby

  • InDesign (10.0.0.70) always asks to save every time I open an existing document (no legacy) even if I don't make any changes, why?

    Literally EVERY time I open an existing document that I created myself before InDesign brings up the "Save" Dialog when I close it. I'm working with the Creative Suite like forever already and only had that sometimes, very rarely before (up to CS6). Now at my new job with CC set up this phenomenon appears. ALL files are saved on local hard drive!
    Any idea or is InDesign now set to ask all the time?
    Thanks for any tips!

    I totally understand version issues, BUT I did create tons of new documents in CC2014 already and still every time I've been ask to save it only when opening and closing them! Like I said it happens EVERY time and I'm working constantly with InDesign. Up until now I only kinda accepted what it is and didn't have time to deal with that problem...

  • Cannot save the Untitled.indd under a new file name.

    hi,
       i am using window.i got this message while save a document,Cannot save the Untitled.indd under a new file name.
    my code is,
    IDocument *docFrom = Utils<ILayoutUIUtils>()->GetFrontDocument();
    UIDRef docRef = GetUIDRef(docFrom);
    InterfacePtr<IDocumentUtils> docUtils((IDocumentUtils*)GetExecutionContextSession()->QueryInterface(IID_IDOCUMENTUTILS ));
    InterfacePtr<IDocFileHandler> handler(docUtils->QueryDocFileHandler(docRef));
    IDFile destFile;
    PMString path("E:/desktop/auquery.indd");
    FileUtils::PMStringToIDFile(path,destFile);
    handler->SaveAs(docRef,&destFile,kFullUI);
    ErrorCode result = ErrorUtils::PMGetGlobalErrorCode();
    pls help,
    thanks,
    screen410099

    Hi JADarnell,
                 desktop is a folder which i created in e: drive.And I found problem so pls give me a solution.
       Problem is i save a file without any changes its save but if i made any change in a document it doesn't save and one more information
      the  saveas method working in ActionComponent.cpp file in a project only.
    thanks,
    screen410099

  • My email address has changed and when I try to play purchased songs it asks me to authorize another computer under the old email address.  How do I play the music that I have purchased?  My account is current with the new email address.

    My email address has changed and when I try to play purchased songs it asks me to authorize another computer under the old email address.  How do I play the music that I have purchased?  My account is current with the new email address.

    You may have already done this, but try de-authorizing your computer (through the iTunes:Store menu) and then re-authorizing it.

  • View Object Editor in JHS 10.1.2 does not save any changes....

    Hi,
    When I did exactly as the JHeadstart Tutorial says, I noticed that
    in JHeadstart 10.1.2 with JDeveloper 10.1.2
    JHeadstart does not save any changes I make in the View Object Editor
    of the Application Structure File Editor !!!
    For instance when I change the Width property of an Attribute from 60 to 5
    it changes to 5, but when close the View Object Editor
    and reopen it again, the Width is back to 60...
    Even when I click the button "Validate the Application Structure File" before
    closing the VO Editor....
    What do I do ??? Is the only solution to edit the XML file
    or something like that without using the VO Editor ?
    Or is there a better solution ?
    Does it maybe work in an older version of JHeadstart ?
    If so, where is the older version available for download ?
    Thanks,
    Eric Joosse

    Eric,
    How did you leave the JHeadstart VO editor?
    The changes should be saved when you click the OK button in the VO editor itself, but they are not saved if you click Cancel, or the little cross in the upper right corner, or leave it open while going back to the Application Structure File editor. That's because it's a standalone editor (you can also find it when right-mouse-clicking the VO in the Model project). The icon in the Application Structure File editor is just a quick way to get to it.
    Hope this helps,
    Sandra Muller
    JHeadstart Team
    Oracle Consulting

  • My new mac book pro will not save any bookmarks I make in safari. Why is it doing this? I would really like to use my bookmarks.

    MY new Mac book pro will not save any of teh bookmarks I make in safari. If I make a bookmark, it will not appear until I close safari and reopen it. Then, if I shut my computer down and reopen safari, all of the bookmarks are gone. This has happend multiple times and I don't know what is going on. I would really like to use my bookmarks.

    Delete the
    com.apple.safari.plist
    reboot and start Safari, reset your preferences, instructions are here
    Deleting the System Preference or other .plist file

  • When I drag ANY JPEG into a new folder of ANY kind, I get an alias, not an original. And, when I drag aliases onto a  blank disk to burn it, I get burned aliases, NO originals. That's what I'm asking. How do you drag a JPEG and NOT get an alias?

    When I drag ANY JPEG into a new folder of ANY kind, I get an alias, not an original. And, when I drag aliases onto a  blank disk to burn it, I get burned aliases, NO originals. That's what I'm asking. How do you drag a JPEG and NOT get an alias?

    Finder Help describes how to move, copy etc.
    As well, Apple - Support - Discussions - Moving or Copying Files and ...

  • Ask the Expert:Concepts, Configuration and Troubleshooting Layer 2 MPLS VPN – Any Transport over MPLS (AToM)

    With Vignesh R. P.
    Welcome to the Cisco Support Community Ask the Expert conversation.This is an opportunity to learn and ask questions about  concept, configuration and troubleshooting Layer 2 MPLS VPN - Any Transport over MPLS (AToM) with Vignesh R. P.
    Cisco Any Transport over MPLS (AToM) is a solution for transporting Layer 2 packets over an MPLS backbone. It enables Service Providers to supply connectivity between customer sites with existing data link layer (Layer 2) networks via a single, integrated, packet-based network infrastructure: a Cisco MPLS network. Instead of using separate networks with network management environments, service providers can deliver Layer 2 connections over an MPLS backbone. AToM provides a common framework to encapsulate and transport supported Layer 2 traffic types over an MPLS network core.
    Vignesh R. P. is a customer support engineer in the Cisco High Touch Technical Support center in Bangalore, India, supporting Cisco's major service provider customers in routing and MPLS technologies. His areas of expertise include routing, switching, and MPLS. Previously at Cisco he worked as a network consulting engineer for enterprise customers. He has been in the networking industry for 8 years and holds CCIE certification in the Routing & Switching and Service Provider tracks.
    Remember to use the rating system to let Vignesh know if you have received an adequate response. 
    Vignesh might not be able to answer each question due to the volume expected during this event. Remember that you can continue the conversation on the  Service Provider sub-community discussion forum shortly after the event. This event lasts through through September 21, 2012. Visit this forum often to view responses to your questions and the questions of other community members.

    Hi Tenaro,
    AToM stands for Any Transport over MPLS and it is Cisco's terminology used for Layer 2 MPLS VPN or Virtual Private Wire Service. It is basically a Layer 2 Point-to-Point Service. AToM basically supports various Layer 2 protocols like Ethernet, HDLC, PPP, ATM and Frame Relay.
    The customer routers interconnect with the service provider routers at Layer 2. AToM eliminates the need for the legacy network from the service provider carrying these kinds of traffic and integrates this service into the MPLS network that already transports the MPLS VPN traffic.
    AToM is an open standards-based architecture that uses the label switching architecture of MPLS and can be integrated into any network that is running MPLS. The advantage to the customer is that they do not need to change anything. Their routers that are connecting to the service provider routers can still use the same Layer 2 encapsulation type as before and do not need to run an IP routing protocol to the provider edge routers as in the MPLS VPN solution.
    The service provider does not need to change anything on the provider (P) routers in the core of the MPLS network. The intelligence to support AToM sits entirely on the PE routers. The core label switching routers (LSRs) only switch labeled packets, whereas the edge LSRs impose and dispose of labels on the Layer 2 frames.
    Whereas pseudowire is a connection between the PE routers and emulates a wire that is carrying Layer 2 frames. Pseudowires use tunneling. The Layer 2 frames are encapsulated into a labeled (MPLS) packet. The result is that the specific Layer 2 service—its operation and characteristics—is emulated across a Packet Switched Network.
    Another technology that more or less achieves the result of AToM is L2TPV3. In the case of L2TPV3 Layer 2 frames are encapsulated into an IP packet instead of a labelled MPLS packet.
    Hope the above explanation helps you. Kindly revert incase of further clarification required.
    Thanks & Regards,
    Vignesh R P

  • How do you test any SAP objects before a transport to the production server

    How do you test any SAP objects before a transport to the production server?

    Hi Rama Krishna,
       The actual process is develop the object in development system and unit test there with the available data.
      Then move it to Quality server where the data will be the actual replica of production and where the integration testing and ened to end testing happens and also the user acceptance testing  happens there.
    and once everything is found fine there then it is moved to production system.
    Award points if this is helpful.
    Regards,
    Ravi G

Maybe you are looking for

  • Safari crashing after 4.0.3 update

    Hi, After updating Safari it opens without windows and crashes every times I try to close it. I've read the other posts about problems with Safari 4.0.3 so I've uninstalled Glims, disabled plug-ins, repaired permission, downloaded and installed again

  • How can i plot a 600mm * 3200mm PDF created from Illustrator in perfect quality?

    Hi, I have this huge 600mm * 3200mm plan drawing, which i want to plot. I have importet Autocad .DWG files into illustrator and mingled with the lineweights and colores.  But, when i save it as a .PDF and send it through the plotter, it comes out all

  • Quick mask problem in CS5

    I am a newbie and I have come across a problem which I cannot seem to rectify, when trying to use the quick mask tool and select the paintbrush it does not work, i.e no mask is created, can anyone help

  • Share slideshow online - PE4

    can anyone tell me how to share a slideshow online? I can place photos out there but not any slideshows I create in WMV.

  • Unable to lunch Adobe CS3 on Windows 7

    I just purchased a new desktop with Windows 7 Home Premium 64 bit. I installed Adobe CS3, everything worked just fine but it doesn't lunch for some reason. When I lunch Photoshop the window pops but that's it, when I lunch Dreamwever nothing happens