Make the  transport router graphical editor show up

On STMS, once I click the transport router button, I should see the the transport router graphical editor directly.
However now I see a list of items.  I have to select "go to-> graphical editor" in order to see it.
Could you tell me how to make it default? My TMS configuration is free of error.
Thanks a lot!

Hi,
For you solution is
Go to STMS >Extra>Setting-->Transaport routes
Here select Graphical editor.
Revert once done!
Regards,
Gagan Deep Kaushal

Similar Messages

  • How can I add a system to the transport route?

    Hi,
          I have a DBP --> PBQ --> PBP systems and now I have a new environment TRN (Training system) and I want to include this system in the transport route.
    Right now the transport route is configured like I said 'DBP --> PBQ --> PBP' and I want to include this environment (TRN) to the transport route because I want that the system pass automatically the orders that going to PBP system to TRN too in the same time that pass it to PBP. For example, like this:
                     PBP
    DBP --> PBQ ==>
                     TRN
    How can I do that?
    <removed_by_moderator>
    Read the "Rules of Engagement"
    Thanks people!!
    Edited by: Juan Reyes on Apr 16, 2009 8:57 AM

    Hi Carlos,
    whatever be the environment, whether it is DEV, QA or PRD, when you login into an ABAP SAP system and run transaction STMS,
    In the initial screen, it always shows two fields, System and Transport domain.
    System field contains the SID in which you are currently logged in.
    Transpor Domain shows value like this: DOMAIN_SID
    here this SID is the domain controller for the system in which you are logged in
    However, if you are logged in the domain controller system itself and then run STMS, then it will show in the lower half of the screen, that, you are logged in as a Domain Controller.
    To be more clear, run STMS in any system and Menu->Overview->Systems->Second column 'TMS system type' must contain a 'domain controller symbol' against one sytem SID. this SID is the domain controller.
    thanks
    Bhudev

  • The TMS configuration is inconsistent and The transport route configuration

    Hi,
    I logged on domain controller in STMS in QA.  I can see the following in STMS as
    " The TMS configuration is inconsistent
      The transport route configuration is  inconsistent"
    Users were able to do transports and there were no issues.
    Transport routes
    DEV>QA>PRD
    TST(which is not active)
    Environment:
    Oracle: 10.2.0.4.0
    Windows NT
    Netweaver 70 ehp1 abap
    Please guide me how to resolve the above issue.
    Thanks and Regards
    Satya

    Hi,
    Everything is tick marked. 
    Please find the output.
    Check Transport Directory                                 03/30/2011  08:34:16
           QA1 CAL - Quality
               Transport Directory
                   bin        
    sap2bksrv\sapmnt\trans\bin
                   Create Test File
                   Read Test File
                   Delete Test File
              buffer     
    sap2bksrv\sapmnt\trans\buffer
                    Create Test File
                    Read Test File
                    Delete Test File
              cofiles    
    sap2bksrv\sapmnt\trans\cofiles
                   Create Test File
                   Read Test File
                   Delete Test File
             data       
    sap2bksrv\sapmnt\trans\data
                  Create Test File
                  Read Test File
                  Delete Test File
             log        
    sap2bksrv\sapmnt\trans\log
                 Create Test File
                 Read Test File
                 Delete Test File
             sapnames   
    sap2bksrv\sapmnt\trans\sapnames
                 Create Test File
                 Read Test File
                 Delete Test File
             tmp        
    sap2bksrv\sapmnt\trans\tmp
                 Create Test File
                 Read Test File
                 Delete Test File
    Thanks and Regards
    Satya

  • WPF: How to make the first column does not show row separator and Left column separator in DataGrid?

    Our WPF application uses DataGrid.
    One of request is that first column of DataGrid does not show row separator and also does not show Left column separator. So it looks like the first column does not belong to the DataGrid. However, when select a row, the cell of first column still get selected.
    How do we make it? Thx!
    JaneC

    Hi Magnus,
    Thanks for replying our question and provide your solution!
    Your solution works by setting "HorizontalGridLinesBrush" and "VerticalGridLinesBrush" to {x:Null} in the DataGrid style and modify "CellStyle" in first column as following:
    <DataGridTextColumn MinWidth="32"
    Binding="{Binding CellName}"
    CanUserReorder="False"
    CanUserSort="False"
    Header="Cell}"
    IsReadOnly="true" >
    <DataGridTextColumn.CellStyle>
    <Style TargetType="DataGridCell">
    <Setter Property="IsEnabled" Value="False"></Setter>
    <Setter Property="Template">
    <Setter.Value>
    <ControlTemplate TargetType="{x:Type DataGridCell}">
    <Border BorderThickness="0" BorderBrush="{x:Null}"
    Background="{Binding Background, RelativeSource={RelativeSource AncestorType={x:Type DataGrid}}}" Margin="-1">
    <Grid Background="{TemplateBinding Background}" VerticalAlignment="Center" Height="42">
    <ContentPresenter VerticalAlignment="Center"/>
    </Grid>
    </Border>
    </ControlTemplate>
    </Setter.Value>
    </Setter>
    </Style>
    </DataGridTextColumn.CellStyle>
    </DataGridTextColumn>
    We found another way to achieve it by using DataGridRowHeader. The good way to use DataGridRowHeader is that we do not need to make the first column ReadOnly (click on first column does not select whole row anymore). Select RowHeader in a row will select
    whole row. Move scroll bar horizontally, the row header still keep in visible area.
    <Style TargetType="{x:Type DataGridRowHeader}" x:Key="dataGridRowHeaderStyle">
    <Setter Property="VerticalContentAlignment" Value="Center" />
    <Setter Property="HorizontalAlignment" Value="Center" />
    <Setter Property="Height" Value="42" />
    <Setter Property="SeparatorBrush" Value="{x:Null}" />
    <Setter Property="FontSize" Value="16" />
    <Setter Property="Template">
    <Setter.Value>
    <ControlTemplate TargetType="{x:Type DataGridRowHeader}">
    <Grid>
    <Border x:Name="rowHeaderBorder"
    BorderThickness="0"
    Padding="3,0,3,0"
    Background="{Binding Background, RelativeSource={RelativeSource AncestorType={x:Type DataGrid}}}"
    BorderBrush="{x:Null}">
    <ContentPresenter HorizontalAlignment="{TemplateBinding HorizontalContentAlignment}"
    VerticalAlignment="{TemplateBinding VerticalContentAlignment}"
    SnapsToDevicePixels="{TemplateBinding SnapsToDevicePixels}" />
    </Border>
    </Grid>
    </ControlTemplate>
    </Setter.Value>
    </Setter>
    </Style>
    <DataGrid>
    <DataGrid.RowHeaderStyle>
    <Style TargetType="DataGridRowHeader" BasedOn="{StaticResource dataGridRowHeaderStyle}">
    <Setter Property="Content" Value="{Binding CellName}" />
    <Setter Property="Width" Value="35"/>
    </Style>
    </DataGrid.RowHeaderStyle>
    </<DataGrid>
    JaneC

  • How to Make the Default Button Marker Not Show Upon Launching...

    I am trying to only have the markers show up on the menu item when you roll over it.  However, when the menu is first launched, the marker is automatically showing up on the first button.
    I have selected "None" as the default menu button in the menu config.  I am also using Photoshop to make the menu and creating the (+) buttons there.
    Any help would be greatly appreciated.
    Thanks.
    Dave

    Create an invisible button (turn off the visibility of all layers) and
    set it to use Highlight Group 2 (edit the Menu Color Set).  Set the
    opacity of all the highlight states to 0%.  Make the invisible button
    the default button.
    -Jeff

  • Why is the Intel onboard Graphics not showing in DxDiag

    Seems everywhere I look on my new laptop, Intel has control of the graphics.  I have had the GT70 Dominator Pro for a couple of months and all benchmark testing I have done has said the graphics is the weak point.  I bought the laptop for the NVIDIA graphics, so I would like the GTX880M to handle them. 
    How can I make sure the NVIDIA card is the one that is used instead of the Intel?
    Thanks ahead of time.

    This is a Nvidia Optimus model, most of the time INTEL graphic takes control, only on 3D operation or heavy loading, Nvidia graphic would take control.
    http://www.nvidia.com/object/optimus_technology.html
    You can take a look at product manual:
    Power LED/ GPU Mode LED
     Glowing white when the notebook power is turned on, and the UMA GPU mode is selected
     Glowing amber when the discrete GPU mode is selected.

  • How can I make the background inactive when I show a popup in Windows phone 8.1..?

    I have created a popup in Windows phone 8.1. But the user can click buttons in the background. Can I disable this feature of popup...ie. I want the background to be unresponsive when popup is shown.
        How to achieve this....? 

    There are a couple ways to do this:
    If you set popup.IsLightDismissed = true, when the user taps the background, the background will be unresponsive when the user taps the background. HOWEVER, tapping the background will cause the popup to disappear immediately.
    When you open your popup, you can set Window.Current.Content.IsHitTestVisible = false, that should make the background untappable. However, you'll need to set .IsHitTestVisible back to true once the popup is closed, otherwise your app will be unresponsive
    until the user closes and restarts it. You can subscribe to the popup.Closed event to tell when the popup is closed.
    Ryken Productions

  • How can I make the title of a table show in header?

    I would like to have my table name show in the table. Ideally I would like to have the title of the spreadsheet sync with either info or a textbox within a sheet.

    Hi Jaron,
    If you do not need/want to save the information from previous weeks in a single document, your easiest solution is likely to make a two table document following Badunit's suggestion regarding titling the table using the first date entered in the main table.
    In the main table, you'd use column A to record the dates worked, columns B and C to record start and end times on those dates, and column D to calculate the number of hours worked in that time period. Formula: =DUR2HOURS(C-B)
    A footer row could be used to sum the hours in column D with the formula =SUM(D)
    Enhancements to the formulas can be made to keep the cells in D 'empty' until times are entered in columns B and C of that row.
    When the table is complete, empty the data and Save the document as a Template.
    Each week, open the template, Name and Save the document, then enter the starting date. At the end of the week, print the document, then Save it as that week's time sheet.
    Follow the same procedure each week.
    If you need/want to save a continuous record of the times you worked over a longer period, make a duplicate of the Main table above (omitting the small table used to title the main table), and use this duplicate, placed on a second sheet, as your Data table.
    This method requires re-writing the Main table using formulas that will extract one week's data from the Data table, starting with the date entered in cell A2 (as in Badunit's example).
    The formulas to use will depend on the arrangement of data in your Data table:
    Is the working time a single continuous period for each day worked, or can it be more than one period, with breaks in between?
    If the latter, are the periods recorded on a single row for each date, or on multiple rows, one period to each row?
    Is there an unpaid break (of fixed length) within each period? within each period longer than a specified duration?
    Using a document of this type would require recording the data for each day on the Data table, then, when the time sheet for the week is to be submitted, go to Sheet 1, and enter the starting date for that week in B2 of Main. When the results have been calculated, Print page 1 only.
    If interested in this route, you'll need to provide more detail regarding the layout of your data as recorded. True also, for suggestedrevisions to the formulas given above for the weekly document from a template route.
    Regards,
    Barry

  • Can you make the "Apply CSS Class" part of the editor bigger?

    Hi there...
    Just wondering - is it possible to make the "Apply CSS Class" editor window larger... It's TINY. (about 200px Square)
    As a result I can't see many of the classes...
    Cheers, Dave

    Hi Liam, I think i did what you said, only the changes don't appear?
    Am I missing something?
    I've cleared the browser cache & refreshed page etc - but can still see:
    Cheers, Dave

  • What do I need to do to my CSS to make the Georgia and Verdana fonts on my website show correctly in Firefox?

    Why does my website's css font styling not look right in Firefox but looks right in Explorer? What do I need to do to my CSS to make the Georgia and Verdana fonts show? Right now they show as Times Roman in Firefox. I tried using all the font attributes combined in a single font property and then I separated out the font-family, font-size, etc. and neither way made them look right in Firefox.

    A good place to ask questions and advice about web development is at the MozillaZine Web Development/Standards Evangelism forum.
    The helpers at that forum are more knowledgeable about web development issues.
    You need to register at the MozillaZine forum site in order to post at that forum.
    See http://forums.mozillazine.org/viewforum.php?f=25

  • ChaRM transport route, one development, 2 QA, 2 PRD system landscape

    Hello,
    We have a customer who has an ERP system with a transport route which is the following:
    One single Development system which feeds, 2 QA systems and then 2 PRD systems.
    We are to implement ChaRM and we want to customize the tickets so that every time you execute the import action of a transport request into QA (and later into PRD) both systems QA1 and QA2 are updated and later on with PR1 and PR2.
    We would like to know how to support this scenario in Solution Manager using ChaRM.  How do we set up the logical component at SAP, how we define the transport route and layers, and how we define the actions in the SDHF ticket.
    I appreciate your help.
    Regards
    Esteban

    Hello,
    We set up a testing environment for change request management. In a solution manager we created five clients.  One single development which feeds two quality systems, and final two production system.  As it was said in the thread we used transport groups in the transport route.  The development system feeds this transport group which feed to import queus in quality systems.  We tested this transport route and transports worked well and arrives into both production 1 and production 2 systems.
    Then created a logical component for that landscape, with five sytems.  Then we created a maintenance project using that logical component.  We created a maintenance cycle and then a task list was created which shows two delivery system, and the two productive  systems.  All the groups have the right actions.
    However when we created a SDHF correction the system creates the task list only for 3 systems, not for the five of them. 
    we see that only action groups are created for development, quality 1, and production 1.  No entries for quality 2 and production 2 
    We try to run the action which is in the general part of the task list to execute the import in multiple systems, it cames out with the correct selection of importing in quality 2 system because it is the transport group.  However an error is raised saying that the actions for  quality 2 are not there in the task list which is true.  Finally, as short term solution, we were able to import into quality 2 and later on pr1 but done manually in the stms transactions which is not what we want to do.
    Regards
    Esteban Hartzstein
    Edited by: Esteban Hartzstein on Aug 24, 2010 2:06 AM
    Edited by: Esteban Hartzstein on Aug 24, 2010 2:07 AM

  • ChaRM: transport route migration

    Hi!
    we have a lot of different transport routes with different transport layer and would like to implement ChaRM.
    We have a lot of different transport routes with different transport layer where we assign the developer classes/packages.
    Now we would like use ChaRM.
    As we know ChaRM uses standard transport layer and transport route.
    Therefore we plan to consolidate all the developer classes/packages assigning to none-standard transport layer and route and migrate them to standard transport layer and transport route
    Questions:
    1) Can some one confirm whether or not ChaRM uses the standard transport layer with standard transport routes?
    2) Or is it possible to create own transport layer u201CZCRMu201D, assign them all the development class/package relevant for ChaRM and leave the other none-transport layer unchanged?
    3) Can one development class/package be assigned to several transport layers?
    4) Has some one experience dealing with the approach of migration?
    (tcode SE16 --> T_DEVC)
    It will be great get some information regarding these questionsu2026
    Thank you very much!

    Hello,
    We set up a testing environment for change request management. In a solution manager we created five clients.  One single development which feeds two quality systems, and final two production system.  As it was said in the thread we used transport groups in the transport route.  The development system feeds this transport group which feed to import queus in quality systems.  We tested this transport route and transports worked well and arrives into both production 1 and production 2 systems.
    Then created a logical component for that landscape, with five sytems.  Then we created a maintenance project using that logical component.  We created a maintenance cycle and then a task list was created which shows two delivery system, and the two productive  systems.  All the groups have the right actions.
    However when we created a SDHF correction the system creates the task list only for 3 systems, not for the five of them. 
    we see that only action groups are created for development, quality 1, and production 1.  No entries for quality 2 and production 2 
    We try to run the action which is in the general part of the task list to execute the import in multiple systems, it cames out with the correct selection of importing in quality 2 system because it is the transport group.  However an error is raised saying that the actions for  quality 2 are not there in the task list which is true.  Finally, as short term solution, we were able to import into quality 2 and later on pr1 but done manually in the stms transactions which is not what we want to do.
    Regards
    Esteban Hartzstein
    Edited by: Esteban Hartzstein on Aug 24, 2010 2:06 AM
    Edited by: Esteban Hartzstein on Aug 24, 2010 2:07 AM

  • Multiple CTS+ non-abap transport routes

    Gurus:
    We find a document about CTS+ as follows:
    https://websmp104.sap-ag.de/~sapidb/011000358700000517932007E
    On above picture, OTO is the shared DEV system.
    1) Is this correct?
    2) if we have different DEV systems for different landscapes, what should we do?
    All are non-abap ststems in this discussion.
    Thanks!.

    Hi,
    the transport route's definition that you described (OTO as start system of all transport routes for CTS) is only valid if your CTS-System is on NW 7.0 SPS 12. Starting with NW 7.0 SPS 13, the 'real' development system is also set as the starting point in the transport route.
    Are you using SPS 12?
    You can find a detailed description on CTS+ on help.sap.com: http://help.sap.com/saphelp_nw70/helpdata/EN/45/ec25370fdc3481e10000000a1553f6/frameset.htm
    If you need information on CTS, please take a look at the CTS page here on SDN: Change and Transport System
    hope this helps
    Karin

  • Adding system with same name as existing in transport routes

    Hello,
    I have following tms scenario, (DD1 is tms domain):
    DD1->DQ1->DP1
    I need to include copy of DP1 system in the transport routes to have situation like this :
    DD1->DQ1->DP1
                    |->DP1 (copy)
    My question is: Is it possible for two systems with the same name to exist in tms, or if it is not possible how to resolve this ?
    Thank You and best regards!

    You should have changed the SID during the system copy... SID stands for System ID... you can't have two systems with the same SID in the TMS
    Regards
    Juan

  • ChaRM: Transport routes?

    Hi!
    We have the following [SAP system landscape |http://www.file-upload.net/view-1086963/SDN_TMS_Ist_Soll.jpg.html] and would like to use ChaRM-approach in parallel with non-ChaRM.
    Can some one tell me how ChaRM recognizes the transport routes, if we have several transport routes in same client? (e.g. SAP, ZDEV, ZADF1...ZADFN)
    Will only standard transport layer with appropriate transport routes (e.g. "SAP" and "Z<SID>") by supported by ChaRM?
    Thank you very much!
    regards

    Hi Venu,
    Transport routes should be created as per your client requirement for example you can set up the tms as below You can proceed as follow
    Dev (100)->QAS (100)->PRD (100)
    Dev (XXX)->QAS (XXX)
    Now if the transport is created in 100 client and you want to move the same transport to other clients of dev and quality system via Charm you can schedule auto import job for other client specific to charm project it will solve the purpose.
    Now for charm the main route could be Dev (100)->QAS (100)->PRD (100), create a logical component assign the corresponding 100 client's development system as Dev, Quality system as QAS and production as PRD,
    Include that logical component in your charm project and then run the consistency check,
    Regards
    Rishav

Maybe you are looking for