Package assigning issue to object which is moved from other system

Hi Experts,
We have moved one develoment (workflow development) from one server to another server with basis people help and
can see everything perfecly in my system . But , i need to save them under my own requyest ,then only i can move them to produciton. I am doing in a way by reassigning under my package but it is saving under request only with different
naming as not same of source system .
For ex:
For my stem: Saving like below :
Object Directory Entry
    R3TRPDTS91000189
    R3TRPDTS91000191
But for source system :
91000188
will all of them move without any issues or am i doing in wrong way ?
Tahnk you in advance.

Hi,
If i understand your question right then you want to ask why transport name is different between different system.
Answer is when you create transport request in any system then it is created like <SID><transport number>. So, if you are creating it in different system then it will give you different name as SID and transport sequence number will differ.
If you want to save it in your own request then make a copy of transport in development system from your user id and then move it to test and production.
Thanks
Sunny

Similar Messages

  • Is there an object which resembles Moving S, N, W, E in JAVA?

    I am trying to build a GUI which is supposed to use an object which
    has four arrows indicating moving a picture south, north, west, and north.
    Is there such an object available in java? I can not imagine that I
    have to create such thing myself. Thank you.

    would this fit ur need?
    have a jlabel inside a jscroll panel and hide the scroll bars and add buttons on the side to act as the scrollbars?
    so use like borderlayout and have the north button in the north part etc...then have the jscrollpanel in the middle which contains the jlabel which contains the image...
    im not making any sense?

  • DATAGRID FOCUS ISSUE: Focus got lost, while moving from one cell to another cell using tab key.

    Problem: Focus got lost, while moving from one cell to another cell using tab key.
    Example: In an AdvanceDataGrid, there are three columns having custom ItemRenderer with Spark TextInput control (editable=true & focusEnabled=true).
    When I try to move the focus in with in 2nd, 3rd & 4th column using tab key, focus got lost. Most of the time it’s working, but some time it doesn’t work. There’s no clue as to how may rows/columns the focus has jumped to; or whether the focus has gone out of the data grid altogether.
    Observations: I am not sure whether this problem is because of custom component implementation or it is because of some issue related to Flex Component.
    It only occurs when we perform some actions like some server call, some complex logic execution etc. at the focus out event of itemrenderer.
    There is one property of datagrid i.e. editedItemPosition which contains row & column index of datagrid. On the focus out event, it gets null when focus got lost. We tried to set it, but it didn’t work.
    Steps Performed:-
    1. Currently focus is in 2nd column i.e. Apply to #.
    2. Once I press tab key from 2nd column, it goes to 3rd column which is correct.
    3. Now if I press tab key from 2nd column i.e. Payment #, focus should go to 3rd column, but it goes out of data grid and set the focus of button which is outside data grid.

    http://search.java.sun.com/search/java/index.jsp?qp=&nh=10&qt=%2Bjtable+%2Btab+%2B%22enter+key%22&col=javaforums

  • Warning-moving from other Smartphone or pda, sync if possible to get all pda data transferred!

    Just an alert to hopefully save others from what I experienced. I moved from a Windows mobile 6.5 phone (yipee) but I wasn't thinking straight about getting all my pda data over & neither were the Apple store people i trusted to know how to get it set up right, & maybe Verizon, not sure. They may try to just transfer contacts like you do with a basic cell phone.WRONG! Look into instead syncing it in if possible so all the pda info gets transferred--not just contacts without photos!
    To me, set up if moving from another pda device, should include moving not just contacts, but all the info or as much as possible.
    I have a MacBookPro computer which also has Bootcamp with Windows 7 & Outlook. I clearly told them that my data was in my old phone & in Outlook. Rather than thinking to sync the iPhone 4S with Outlook to get all the data in, with all its details, the set up guy just used a device from Verizon that is apparently the same thing they have been using with cell phones to transfer contacts.
    HELLO! This is the end of 2011 & we are talking smart phones here with pda info, which presumably we all want transferred to our new devices.
    Don't trust that Apple or maybe Verizon either if you go in to their stores, or maybe over the phone will understand those facts & advise, or use the easiest method to get it done.  I'm not a techie & my thinking was wrong about how to do this (influenced by previously transferring my contact to my Mac which the Windows mobile phone couldn't sync with).
    So either figure it out yourself, or if you do ask for help, ask if you can sync the data in. Someone on a windows computer responded to my previous query about this, saying he synced with Windows & it even set up his email.  The apple store did it the hard way, taking a lot of my time & it got done wrong so I ended up--after realizing this, having to go back & find out how to do the sync by me specifically asking to do it that way & how to erase the wrong calendar so I wouldn't end up with more dups. For contacts, I guess I'll just go through & delete dups, since I do have 1 group on my Mac for email, that isn't in my contacts. Or maybe I can delete contacts & sync them in & then restore those from that group from my Time Machine backup.

    Trina;
    Since the data transfer will rely on both DMA and Interrupts, the timing will be completely system dependent. That's due to the fact that the computer will manage the time sharing in between devices to access the DMA channels and the Computer Interrupts.
    Unfortunately, to determine the delay of that task is a experimental process and will vary from machine to machine.
    Hope this helps.
    Filipe

  • How to store Connection object and call it from other programs.

    Hi,
    I am trying to connect to the database, store the connection object and use this connection object from other standalone java programs.
    Can any one tell me how to do this? I've tried in the following way:
    In the following program I am connecting to the database and saving the connection object in a variable.
    public class GetKT2Connection {
       public static void main(String[] args) {
          String url = "jdbc:odbc:SQLDsn;
          String dbUser = "sa";
          String dbPwd = "sa";
          Connection kt2conn = Connection connection = java.sql.DriverManager.getConnection(url, dbUser, dbPwd);
          if(kt2conn == null) {
             System.out.println("Database Connection Failure!");
          else {
             System.out.println("Connected to Database...");
         GetKTConnectionObj.storeKT2ConnectionObj(kt2conn);
    } Here is the program to save connection object in a variable.
    public class GetKTConnectionObj {
       static Connection kt2Connection = null;
       public static void storeKT2ConnectionObj(Connection conn) {
       kt2Connection = conn;
       public static Connection getKT2ConnectionObj() {
       try {
          return kt2Connection;
       catch(Exception e){
          System.out.println(e);
      return null;
    }Now from the following code I am trying to get the connection object that is stored. But this is throwing NullPointerException.
    public class Metrics_Migration {
      public static void main(String args[]) {
         try {
        java.sql.Connection connection_1 =   GetKTConnectionObj.getKT6ConnectionObj();
         catch(Exception e){
    }

    kt2Connection is null. You need to store it first, to make it not null. Otherwise it will stay null forever. And why on earth are you trying to do this THIS way?
    If you are running the two applications separately, it wont work either.

  • Update non-editable field Start date which is calculated from other context

    I had created some custom date fields(model, bol entity) in component ICCMP_BTSHEAD. We are calculating Start date based on the new input value into receiving date in the other context node.
    so, for this i get the value on controller class(_IMPL). and pass the same value in the GET method of Start date.
    But, Problem is Start date is the non-editable field so SET method will not be trigger as expected. so the same i used the DO_PREPARE_OUTPUT method but it's called and update the value when we press the enter. IF directly we click on the "SAVE" button then it' trigger but value is not updating in the database.
    Please, find the below piece of code for the same. can u please anybody help me that how can i achieve this requirement.
    DATA: l_recieve_date     TYPE crmt_date_timestamp_from,
            lr_current TYPE REF TO cl_bsp_wd_mixed_node,
            lr_col      TYPE REF TO cl_bsp_wd_collection_wrapper.
      DATA: lv_date TYPE d,
             lv_time TYPE t,
             lv_date_temp TYPE sydatum.
      IF iv_first_time EQ abap_false. "avoid for first tile load
    Read the value of btreceivedate-TIMESTAMP_FROM.
        lr_col = me->ztyped_context->btreceivedate->get_collection_wrapper( ).
        IF lr_col IS BOUND.
          lr_current ?= lr_col->get_current( ).
          IF lr_current IS BOUND.
            lr_current->if_bol_bo_property_access~get_property_as_value( EXPORTING iv_attr_name = 'TIMESTAMP_FROM'
                                       IMPORTING ev_result   = l_recieve_date ).
          ENDIF.
        ENDIF.
        IF l_recieve_date IS NOT INITIAL.
          CONVERT TIME STAMP l_recieve_date TIME ZONE sy-zonlo
                    INTO DATE lv_date TIME lv_time.
    Check day is working day - if not, correct to previous working day
          IF lv_date IS NOT INITIAL.
            lv_date_temp = lv_date.
            CALL FUNCTION 'DATE_CONVERT_TO_FACTORYDATE'
              EXPORTING
                correct_option      = '-'
                date                = lv_date
                factory_calendar_id = 'GB'
              IMPORTING
                date                = lv_date_temp
              EXCEPTIONS
                date_after_range    = 1
                date_before_range   = 2.
            IF sy-subrc IS INITIAL.
              lv_date = lv_date_temp.
            ENDIF.
          ENDIF.
          CONVERT DATE lv_date TIME lv_time
                 INTO TIME STAMP l_recieve_date TIME ZONE sy-zonlo.
        ENDIF.
        lr_col = me->ztyped_context->btstart->get_collection_wrapper( ).
        IF lr_col IS BOUND.
          lr_current ?= lr_col->get_current( ).
          IF lr_current IS BOUND.
            lr_current->if_bol_bo_property_access~set_property(
                       iv_attr_name = 'APPT_TYPE'               "#EC NOTEXT
                       iv_value     = 'ZSTWTIME0001' ).
            lr_current->if_bol_bo_property_access~set_property(
                            iv_attr_name = 'TIMESTAMP_FROM'     "#EC NOTEXT
                            iv_value     = l_recieve_date ).
          ENDIF.
        ENDIF.
      ENDIF.
    could you please help me?

    Hi,
    Thanks for your reply,
    yes, i checked the same thing also. But DO_HANDLE_DATA is called before the SET method of receiving date and in that case we are getting the old value in DO_HANDLE _DATA and  source and Target fields both are not updating.
    I checked, if, i'll change the input field then set method of input field and then EH_ON_SAVE is called directly.
    i think, if i'll do the same modification in the EH_ON_SAVE method as i did in the DO_PREPARE_OUTPUT then it can be updated but i don't want to change the EH_ON_SAVE at this moment.
    is there any other way to update the START DATE(Display mode in the screen) which is calculate from the other context node field receiving date.

  • How to bind UI component to a view object which is created from a SQL query

    I am using JDeveloper 11.1.1.2.
    I created a method in my ApplicationModule to create an instance of ViewObject dynamically based on a "voCode" passed in :
    public ViewObject loadVO(String voCode) {
    ViewObject viewObject = findViewObject(voCode);
    if (viewObject == null) {
    viewObject = createViewObject(programCode);
    return viewObject;
    I created a Client interface for this method and refreshed the data control of the ApplicationModule.
    From the "Oracle JDeveloper 11g Handbook", I should be able to create a tree binding and a methodIterator executable for the "loadVO" method via the data control of the AM.
    I tried to add the binding manually to the page definition of my jspx page as I like to see if I can replace an existing binding with this new binding.
    I was not able to add the binding as the "Create Tree Binding" required both the "Root Data Source" and "Tree Level Rules" to be specified.
    I could specify the "Root Data Source" to point to the "loadVO" and corresponding parameter but not able to add any rule.
    When I clicked on the "+" icon to add rule, nothing happened that allowed me to specify the rule (if I know what rule I need to add).
    How should I bind the application module method "loadVO" so that it can be exposed in the Data Control to provide the data for a UI component like dynamic table?
    On the other hand, I could create the "methodIterator" first for the AM method "loadVO" but I wasn't able to create a tree binding to reference the "methodIterator".
    Is it possible to invoke the loadVO method with specific parameter value via the "methodIterator" from a bean method?
    Edited by: pyin_amec on Jan 25, 2010 3:57 PM
    I corrected the subject line and change my question to better reflect the problem I tried to solve.
    Edited by: pyin_amec on Jan 26, 2010 7:41 AM

    Hi,
    This worked for me .. I created a inputtext area where I can enter a query and execute ..
    Hope it helps..
    AM Impl
         public void createVoWithQuery( String pQuery )
              ViewObjectImpl vo = null;
              if( findViewObject( "DemoVo" ) != null )
                   findViewObject( "DemoVo" ).remove();
              vo = ( ViewObjectImpl )createViewObjectFromQueryStmt( "DemoVo", pQuery );
              //  vo.setKeyAttributeDefs( new int[]{0} );
              vo.executeQuery();
         @Override
         protected void prepareSession( Session session )
              super.prepareSession( session );
              if( findViewObject( "DemoVo" ) == null )
                   createViewObjectFromQueryStmt( "DemoVo", "Select 1 from dual" );
         }Page Def
    <executables>
        <variableIterator id="variables">
          <variable Type="java.lang.String" Name="createVoWithQuery_pQuery" IsQueriable="false"/>
        </variableIterator>
        <iterator Binds="DemoVo" RangeSize="25" DataControl="AppModuleDataControl"
                  id="ViewObj1Iterator" Refresh="deferred"/>
      </executables>
      <bindings>
        <tree IterBinding="ViewObj1Iterator" id="ViewObj1">
          <nodeDefinition Name="Dummy">
          </nodeDefinition>
        </tree>
        <methodAction id="createVoWithQuery" RequiresUpdateModel="true" Action="invokeMethod"
                      MethodName="createVoWithQuery" IsViewObjectMethod="false"
                      DataControl="AppModuleDataControl"
                      InstanceName="AppModuleDataControl.dataProvider">
          <NamedData NDName="pQuery" NDType="java.lang.String"
                     NDValue="${bindings.createVoWithQuery_pQuery}"/>
        </methodAction>
        <attributeValues IterBinding="variables" id="pQuery">
          <AttrNames>
            <Item Value="createVoWithQuery_pQuery"/>
          </AttrNames>
        </attributeValues>
      </bindings>page
    <af:panelStretchLayout id="psl1" startWidth="0" topHeight="100px" bottomHeight="0">
              <f:facet name="center">
                <af:table rows="#{bindings.ViewObj1.rangeSize}"
                          fetchSize="#{bindings.ViewObj1.rangeSize}"
                          emptyText="#{bindings.ViewObj1.viewable ? 'No data to display.' : 'Access Denied.'}"
                          var="row" rowBandingInterval="0"
                          value="#{bindings.ViewObj1.collectionModel}"
                          selectedRowKeys="#{bindings.ViewObj1.collectionModel.selectedRow}"
                          selectionListener="#{bindings.ViewObj1.collectionModel.makeCurrent}"
                          rowSelection="single" id="t1" partialTriggers="::cbEx">
                  <af:forEach items="#{bindings.ViewObj1Iterator.attributeDefs}" var="def">
                    <af:column headerText="#{def.name}" sortable="true" sortProperty="#{def.name}"
                               id="c1">
                      <af:outputText value="#{row[def.name]}" id="ot1"/>
                    </af:column>
                  </af:forEach>
                </af:table>
              </f:facet>
              <f:facet name="bottom"/>
              <f:facet name="top">
                <af:panelFormLayout id="pfl1">
                  <af:inputText value="#{bindings.pQuery.inputValue}"
                                label="#{bindings.pQuery.hints.label}"
                                required="#{bindings.pQuery.hints.mandatory}"
                                columns="60"
                                maximumLength="#{bindings.pQuery.hints.precision}"
                                shortDesc="#{bindings.pQuery.hints.tooltip}" id="it1" rows="2">
                    <f:validator binding="#{bindings.pQuery.validator}"/>
                  </af:inputText>
                  <af:commandButton actionListener="#{bindings.createVoWithQuery.execute}"
                                    text="ExecuteQuery"
                                    disabled="#{!bindings.createVoWithQuery.enabled}" id="cbEx"/>
                </af:panelFormLayout>
              </f:facet>
            </af:panelStretchLayout>

  • Any issue for JDBC Conn when moving from Names Server to OID

    Hi,
    One of out customer migrating from Oracle Names Server to OID and they would like to know the effects (if any) this will have on their applications that connect to the databases using jdbc connections.
    Concern is "will their jdbc connections to the databases be affected once the Names Server is replaced" ?
    Please share your thoughts
    Regards
    Manoj Kumar

    Hi Hal
    Everything is working fine on
    the new server, except for one PC, a Dell XPS 210.
    When I enter the username and password to logon, the
    computer appends my username with the name of the
    computer, ex. Hal becomes HalsPC/Hal as the
    username. Because of this I can't access the server
    files. Now this computer connected fine to the server
    on the old Mac, and if I unplug the Ethernet from the
    new server and connect to the old server it still
    works fine. Can anyone offer a reason why the Dell
    would react this way, I don't have this problem with
    any of the other PC's in the office.
    Firstly have you made sure you have started Windows Services on your Server? Secondly on your PC (is it XP?) use Windows Explorer to browse for your Server, select Search, select Computers or People and in the field, key in the IP address of your Server. Windows Explorer should show you an icon view of the OSX server in the right hand window. Double click on this and key in a valid user and password as created on the Server. If you enable guest access for Windows Users they wont require authentication and should be able to access share points with no problem.
    Hope this helps

  • Recovery of original photos which were moved from a library on a another computer?

    Hi,
    I had a Mac Mini and during that time I was keeping the iPhoto library on an External Hard Drive. I no longer have that computer and now have a mac book pro and when I tried to access the photos from the external HD they were really small and when I tried to enlarge them they were pixelated.
    Is there any way of recovering the originial size of the photos? There are no other files in the iPhoto lbrary on the external HD except for 2 one is called AlbumData.xml and another is called Dir.data
    Please Help!

    well i can't give youmore detail i just went into the folder in finder and opened the photo and it was really small 32kb and they're all about the same.

  • IBooks 1.5 looses file name when PDF moved from other apps in iOS 5.0.1 on iPad!

    Opening a titled email PDF attachment in iBooks results in untitled document within ibook. The document transfers from email to good reader or other PDF reader applications without issue. It is an iBooks issue. This started in version 1.5. How can I load a previous version of iBooks?
    Looking at the iTunes books tab the same document has a numerical value as the title.
    The same thing happens if you open a titled PDF document in good reader and use the open with iBook button.
    Anytime a document is sent to iBooks on the iPad, the title becomes blank in iBooks, but the title in iTunes is a 128 bit number.
    How do you report such an issue to apple iBook team?

    I am having a similar problem, the pdf "book" has one name on itunes on my mac, but on my ipad (IOS 5.0.1 build 9A405) the names are different. Plus pdf "books" keep disappearing. If I go into itunes on the Mac and make any change in the "get info" such as comment etc and resync the pdf shows up again.
    Several days later the file again disappears from the ipad (no I am NOT deleting them and I have plenty of free memory on the ipad) and I have make yet another small change.
    I did not encounter this behaviour in previous version of ibook.

  • Including Objects in Request from Other System

    I've got an interesting question. This will be hard to explain but here goes: You know how you can u201CInclude Objects in Requestu201D? E.g. create a new request from an old one and copy the keys from the old one to the new one. That way when you release the new request it gets the current version of all the objects.
    Well I want to do that except in different systems. For example I have request SBXK900123 in system SBX with some objects in it. I want to create a request in DEV with the same object list. So then I can release the request from DEV to QAS & PRD. I don't want to transport from SBX and I want the versions of the objects in DEV, not SBX.
    I tried adding SBXK900123 to DEVu2019s import buffer without actually importing it. It gets added to the buffer but in SE09 Transport Organizer in DEV the system doesnu2019t see SBXK900123. So I canu2019t include the objects in SBXK900123 in a new request in DEV. If I actually import SBXK900123 into DEV then the Transport Organizer sees it but of course I donu2019t want to import from SBX to DEV.
    Any thoughts?

    Thanks Gentlemen, I appreciate your help.
    Hereu2019s some clarification. This is just a one-time thing, however copy and paste will be difficult because there might be hundreds of tables with thousands of entries. Since they are primarily config entries I would have to drill into each view/table to display all the keys. The ABAP approach might have promise but since I am not an ABAPu2019er, and getting ABAP help is difficult at my company, Iu2019m still looking.
    Roman, yes that is exactly what I am doing however the request isnu2019t available from the display button in SE09. Are you sure you didnu2019t also import the request? Thatu2019s the only way I can make it available; Iu2019ve tried Add to buffer and forwarding to system client. It is in the import queue but in SE09 I still get the message:
    Request/task SBXK900035 does not exist
    Message no. TR806
    Diagnosis
    Request/task SBXK900035 cannot be edited because it does not exist in this SAP  system.
    System Response
    The function is terminated.
    Procedure
    Repeat the function with an existing request or task.
    If you didnu2019t import the request, how did you add it to the buffer to make it available in SE09? Well, thank you all.
    David

  • Anyone have any information about iphone 6 and 6  issues with receiving Unknown caller IDs from pbx systems?

    We are seeing any issue with iphone 6 and 6+ phones receiving "Unknown" on the caller id when they receive a call from a PBX system. All other versions of iphones are not having this issue. I have read several forums and it seems to be a carrier issue with the new LTE towers. Has anyone else experienced this issue?

    yes its a new issue for me too.  Are you a ATT customer? My brother has iphone 6 but with another carrier and has no problems..

  • Upload MR results which already billed from Legacy System to SAP

    Hello Experts,
    We want to implement ISU-Water .
    Before Implementing SAP, we want to Upload Last Year's MR results (From the Previous system..) ,to let SAP use these results as a basis for Estimation.
    To have these Meter Readings in DB tables, I probably need to start scheduling 1 year before the actual start of Using SAP,then I will Create Meter Reading Orders and Upload the MR Results, but:
    I don't want to Bill these MR results,because they already billed in legacy system.
    How can I perform this ?
    Thank you very much in advance,
                                                      Michael.

    Hi,
    Historical Profiles is just a profile type used to store past meter data. But to maintain this historical data u need to attach the profile to the installation using load profiles. There is a button on the left top (called load profiles) where you can attach this historical profile to the installation to maintain the historical profile to the installation (similar to updating a operand in installation facts for basic meters)
    Use the following path to define a new profile type:
    SAP Utilities --> Energy Data Management --> Basic Settings --> Profile Type --> Define Profilet Types
    Create a Historical profile in transaction EEDM06 with profile type historical. and upload the historical meter reads to this profile using a program.
    Let me know if you need any more information.
    Thank you,
    Binno Don Thomas

  • Database instance is moved under other system ID

    Hello Experts,
    I have installed ECC 6.4(ABAP+JAVA) but due to frequent restarts,database instance of java is shown under the ABAP instance system ID.
    Can anybody help me to take it back state?
    Thanks,
    Abha

    Hello
    I guess when you stop your SAP  system next time ,just have Sap services and database services restarted from service manager and see if you get all things as previous ,may work though I never tried for database specific services
    I have tried this once for Sap instance on CI and app server (during downtime I explicitly restarted SAPServiceSID )
    Success!!
    Ganesh

  • Extending view object which does not have any entity object associated with

    Dear all
    I am interested in extended on of the standard pages VO object in JDeveloper OA extension
    the standard page is oracle/apps/pos/supplier/....suppSummaryPG
    and one of the view which I am interested to extend is suppSummVO
    the problem is that when I copy xml files and java files from apps server to
    my local jdevelope folder , I am not able to open that suppSummVO, the changes which
    I find from other VO object and this(suppSummVO) object is that, this VO does not have any
    Entity Object associated with it and the only query is return on this VO , is it the reason that
    I am not able to open it Jdeveloper, but the real issue is that how can I extends this type of VO
    in my OAExtension.
    Regard
    Noman

    Its the same way of extending VO with EO's or without EO's.
    Sometimes if the .class files arn't decompiled we get weird jbo errors. So use cavaj/jad to decompile those Impl.class, RowImpl.class files and keep them in the same folder as vo.xml in myprojects and try extending that VO.
    Thanks,
    Ravi

Maybe you are looking for

  • Can I move sessions from one node to another in Oracle RAC 11g?

    Hi everybody, When I need to shutdown one node for maintenance, can I move the sessions connected to that node to the other one? I know TFA but I'm not using it right now, I just wanted to know if I may move the sessions without warning everyone that

  • Block production work center during maintenance order

    Dear Experts, iam trying to do the integration between PM and PP, I want to block the production work center from any production order  when there is any maintenance order opened for a certain equipment which is inside this  work center , till now i

  • Automatic TV Mirror resolution Setting

    Whenever I plug my PowerBook G4 to an external TV monitor and switch to mirroring, the resolution automatically changes to 800x600, which really ticks me off because not only is it not what I want--I want 1024x768--but it's so small that I can't even

  • Move Finder on the Dock?

    How do I move it over one space? I want Firefox to be the first icon on the dock.

  • Including applets in JSP - problem!!

    I'll begin by admitting that I am fairly new to JSP. That said, I am experiencing a ClassNotFoundException when trying to include an applet in a JSP under certain conditions. Here's the detail: I'm using Tomcat 4.0.4 and am working in the default ROO