Can we have multiple transports for the same object.

Hi guys,
Can we have multiple transports for same object in dev system. Can anyone tell me how can this be done.
Thanks

Its not possible for the same development object. Only 1 person can access an object at a time and if mutiple users modify an object new TASKs are created under the same TRANSPORT.
Only after releasing the tr you can create a new tr on the same object.
Message was edited by:
        Abhishek Jolly

Similar Messages

  • Can we have multiple policies for the same gateway?

    Hi all,
    Is there a way in which we can have multiple policies for the default gateway?
    When I try adding a new gateway (which is not mentioned in the installer.properties file) and have policies, there is a 404 error.
    When I add another service to the same gateway, I get an error - that the service could not be added to default policy.
    Help me please...
    My need is as follows
    Want to have multiple policies, so that each of the web-service can be attached to same. The relation needs to be one-to-many. One policy can have multiple web-services.
    Thanks in advance...

    Its not possible for the same development object. Only 1 person can access an object at a time and if mutiple users modify an object new TASKs are created under the same TRANSPORT.
    Only after releasing the tr you can create a new tr on the same object.
    Message was edited by:
            Abhishek Jolly

  • Multiple Transports for the Same Object.

    I have ABAP program 123 and I make a change, create transport A and release the transport. I do not request transport A go to production.
    I then modify ABAP program 123 again, create transport B and release the transport. I do not request transport B go to production.
    Now I request transport A go to production.
    Can someone explain to me why the changes in transport B are included when transport A is moved to production?
    I thought each transport would be at its own change level.
    Thank-you.

    I can guarantee all of you that when Transport A was moved, it contained changes that were made in Transport B.
    Surely you understand that Thomas is correct and that there's a logical reason, not related to transport layer configuration, for the issue?   You CAN have multiple transports open for the same object without a lock by forcing it but check the dates as already suggested...

  • Can we have multiple Podcasts with the same Mac Account?

    Hi all,
    Can we have multiple Podcasts with the same Mac Account?
    For example, I have a single .MAC account and create a website with multiple Podcast pages...or within iWeb I create multiple sites, and each has a podcast.
    Is there a problem?
    Thks
    Leo

    Its not possible for the same development object. Only 1 person can access an object at a time and if mutiple users modify an object new TASKs are created under the same TRANSPORT.
    Only after releasing the tr you can create a new tr on the same object.
    Message was edited by:
            Abhishek Jolly

  • HT1766 can you have multiple iPhones in the same iTunes account without overwriting each phones content?

    Can you have multiple iPhones in the same iTunes account without overwriting each phones content?

    Hi sandexpress,
    As Ocean20 indicates, you want to make sure that you have automatic syncing turned off. In iTunes Preferences under Devices, make sure you have "Prevent iPods, iPhones, and iPads from syncing automatically" checked. Then connect each iPhone, and make sure that "Manually Manage Music and Videos" is checked on the Info page for each of them. Then go into each page for each device, and select what you want to sync to that particular device. (you would do this one device at a time - complete the steps for one of the phones, then connect the next one and do the same thing).
    With this kind of setup, you can modify what will sync at any given time for a particular device once you have connected it to iTunes, but before you click on the Sync button at the bottom of the screen. If you want to change some sync options on a particular device, you would just go into the page you wanted to change (Music, Photos, Apps, etc.), make your changes, and then Sync.
    If you do not have any changes, you can just hook up the phone and click on Sync.
    Hope this helps.
    Cheers,
    GB

  • Events cannot have multiple exceptions for the same date

    I just starting getting this message and could not sync to one of my Google calendars. I'm posting this for others who might get the same problem.
    I didn't find the answer on these forums but did find it on this thread on Google:
    http://www.google.com/support/forum/p/Calendar/thread?tid=241155f758d9e2a4&hl=en
    Here's the important excerpt:
    "I had a client, who just had this same issue, nothing to do with Google cals.
    It was apparently, in my best guess, a corruption of the subscribed cal.
    *I did a get info on the cal, copied the URL, deleted the cal, then re-subscribed to it by pasting in the URL, and now it's working fine*."

    I've been having the same problem with my iCal calendars and the "Events cannot have multiple exceptions for the same date" error. Once it gets going, it uses up a lot of the CPU and resources. After reinstalling iCal, all my calendars were missing and I could not even resubscribe to them.
    I took my MacBook Pro to the Apple Store, and they were able to solve the problem by moving some of the iCal files from their existing folders out to the desktop, and reopening the program. That got it working, however, now I'm having the same problem again. So back to square one. Anyone else having this issue and know the cause?
    My setup is my MacBook Pro uses Entourage, use that calendar in my iCal. And I subscribe to two calendars my wife publishes on her Macbook. We're both using Snow Leopard.

  • Can you have multiple databases on the same LUN in Exchange 2010?

    I'm sure you can but is it possible with exchange 2010 to have multiple databases on the same LUN.  We currently have 8 DB's all writing to their own DB drive and separate log drive so 16 drives in total.  I need to spin a new DB up this week and
    wanted to double check this is possible.  I've looked online and cant find anything that I've seen before that says this is possible.
    Thanks.

    Hi,
    Yes, multiple databases could be placed on the same LUN, but it's not recommended.
    If you have 2 drives fail at the same time (it happens more than you think), then losing 100% of your DBs is a lot worse than losing one of them or some of them depending on where the failures are.
    Here is a similar thread for your reference:
    Multiple databases on the same LUN in Exchange 2010
    Hope this helps!
    Thanks.
    Niko Cheng
    TechNet Community Support

  • Can I have multiple hotspots on the same ALV grid?

    Hi,
    I have a simple ALV grid report with a hotspot.  I can't seem to find any examples or information on whether I can have 2 hotspots on the same ALV grid line.
    Is this possible and is there an example somewhere that I can look at?
    Thanks for your help!
    Andy

    Check the code below
      METHODS:set_hotspot_ebeln CHANGING pc_alv TYPE REF TO cl_salv_table
                                         pc_report TYPE REF TO lcl_report.
    *--Event Handlers for alv
        METHODS:on_link_click FOR EVENT link_click OF cl_salv_events_table
                              IMPORTING row column .
    METHOD set_hotspot_ebeln.
        DATA: lf_cols_tab TYPE REF TO cl_salv_columns_table,
              lf_col_tab  TYPE REF TO cl_salv_column_table.
        DATA: lf_events TYPE REF TO cl_salv_events_table.
        lf_cols_tab = pc_alv->get_columns( ).
        TRY.
            lf_col_tab ?= lf_cols_tab->get_column( 'VGBEL' ).
          CATCH cx_salv_not_found.
        ENDTRY.
        TRY.
            CALL METHOD lf_col_tab->set_cell_type
              EXPORTING
                value = if_salv_c_cell_type=>hotspot. "5-stands for hot spot
          CATCH cx_salv_data_error .
        ENDTRY.
        TRY.
            lf_col_tab ?= lf_cols_tab->get_column( 'VBELN' ).
          CATCH cx_salv_not_found.
        ENDTRY.
        TRY.
            CALL METHOD lf_col_tab->set_cell_type
              EXPORTING
                value = if_salv_c_cell_type=>hotspot. "5-stands for hot spot
          CATCH cx_salv_data_error .
        ENDTRY.
        lf_events = pc_alv->get_event( ).
    *--Set event handler for click on cell
        SET HANDLER lf_report->on_link_click FOR lf_events.
      ENDMETHOD.                    "set_hotspot_ebeln
      METHOD on_link_click.
        DATA:la_put TYPE type_put.
        READ TABLE lf_report->i_put INTO la_put INDEX row.
        CHECK sy-subrc = 0.
        if column = 'VGBEL'.
        SET PARAMETER ID 'BES' FIELD la_put-vgbel.
        CALL TRANSACTION 'ME23N' AND SKIP FIRST SCREEN.
        elseif column = 'VBELN'
       "<----
       endif.
      ENDMETHOD.                    "on_link_click

  • Can we have multiple IE in the same machine to access IC Webclient ?

    Dear expert,
    I have a question here. Can we access IC Webclient if our computer have multiple IE ( E.g IE 6 & IE 7 ). Currently the client computer have multiple IEs in the computer by using Tredosoft product. The environment of the system is as below :
    Server environment :
    1. Windows 2003 server Enterprise Edition
    2. SAP Netweaver 2004s SPS9
    3. SAP CRM 5.0 (ABAP & Java stack)
    4. SAP Enterprise Portal 7.0
    Client PC :
    1. Windows XP Profesional SP2
    2. Java Runtime Environment 1.4.X
    Your help is much appreciated

    Hi Ku Izrul Hadi Ku Hilmy ,
    For the Webclient to run you just need a browser. It will work on IE06/07 . Just the thin client should be properly configured. As far as the requirements put down by you is concerned I dont think so there should be any problem for the webclient to run from the client side.
    Reward useful answers,
    Regards,
    Shrita Sharma.

  • Can you have multiple accounts on the same ipad2?

    Can my wife and I share the same iPad using two different accounts? If so, how?

    If you want differing accounts (like on a PC where you login to different user accounts) with different settings (like background image, icon settings per page, etc,) per account, then no.

  • Multiple inserts for the same object

    We have observed that in certain cases, the same object is attempted to be inserted twice, resulting in Primary Key violation.
    Here is one example -
    A(1->1)B, unidirectional, A has the foreign key to B
    new B
    copyB = register(B) (also assign sequence number)
    new A1, A2
    A1.set(copyB), A2.set(copyB)
    register(A1), register(A2)(also assign sequence number)
    commit
    it tries to insert the same B twice.
    any clues whats wrong here?
    thanks

    Any chance your 1:1 from A to B is marked as privately-owned?
    This would indicate to TopLink that the object in each relationship is unique and should be inserted.
    Doug

  • How I have multiple KPIs for the same measure?

    Hi there,
    I am finishing up a PowerPivot data model which gathers information from a service desk system, and different customers have different SLA targets.
    I know I can specify a KPI for each measure that I create. However is there a way to specify multiple KPIs the same measure, or any other way/workaround that can meet the requirement outlined above?
    Thanks in advance for the help.
    Regards,
    P.

    Hi pmdci,
    According to your description, you want to specify different target for different customer when creating KPI based on same measure. Right?
    In PowerPivot, when we create a KPI, we can only specify calculated field or absolute value as target. We can't put any expression or function to specify a dynamic value as target value. Based on my knowledge, this requirement can be achieved in Reporting
    Services. We just  need to create a Variable and use Switch() function in expression to set specific values for different users. In this scenario, it seems can't be achieved in PowerPivot currently. I suggest you post this thread on PowerPivot forum:
    http://social.msdn.microsoft.com/Forums/sqlserver/en-US/home?forum=sqlkjpowerpivotforexcel
    You may get some more effective advice there.
    If you have any question, please feel free to ask.
    Best Regards,
    Simon Hou

  • When importing my address book from Outlook why do I have multiple entries for the same contact?

    I have an address book and it contains one list in Outlook. I just downloaded Thunderbird and imported my address book. The address book and one list imported very easily but there are anywhere from 3-5 entries for each person in my contacts. If I delete the extras they are removed from my list as well. Why are there multiple listings for each contact and how can I remove the duplicates without losing my list entries?

    as I was looking thru pictures in my finder I noticed there were several copies of the same pictures I had taken yesterday. I just went thru all Seven copies of the pictures (accidental pics of my hands and the desk etc) and right clicked and moved  them to trash, then I thought I'd look it up when I realized its not just these pics, but very many had een stored in groups of three or four.
    1. Why is that?
    Depends on where you saw them - If they were in the iPhoto library iPHoto has either two or three different versions (no duplicates) or each photos in its library - this is not optional and can not be changed  --  If they were not in the iPhoto library then you can do what you please with them and they have nothing to do with iPhoto - iPhoto is only involved with the photos in its library
    2. Why is it advised to NEVER make changes to the structure or contents of iPhoto in Finder?
    (as quoted Below)
    "I would suggest using one of the proven safe programs - if you are going to manually remove them be sure to remember that you NEVER make any chnages to the structure or contents of the iPhoto library using the finder - only make changes using iPhoto"
    Very simple - if you do you will destroy your iPhoto library and have to start over losing all work you have done in iPhoto - The iPHoto library is a SQLite database and there are NO user servicable parts in the iPhoto library and any changes made using teh finder will corrupt the database and cause dataloss
    Is that a good enopugh reason for you?
    So if these photos were in the iPhoto library when you
    I just went thru all Seven copies of the pictures (accidental pics of my hands and the desk etc) and right clicked and moved  them to trash,
    You destroyed your iPhoto library and will either have to restore your backup from before you did this. put everything back EXACTLY like it was before or start over
    LN

  • Can i have multiple iphones with the same phone number?

    If I upgrade to iPhone6 can I: a) keep my 4s operational with the same phone number; or b) must I get a new number for one of the two?

    I don't believe your cellular provider will provision 2 SIM cards with the same number. You can forward calls, if your carrier supports it, from one phone to the other depending on which one you have with you.

  • Can we have two textures for the same project ?

    Hello all
    I use Captivate4. In my project, the background transparency for Playbar controls is 100%. So the texture would be seen as the background for the PlayBar. I have a requirement of hiding PlayBack Controls in few slides. Then I would like to change my texture to some other image. in brief, I would like to show one texture when the PlayBar is visible & another texture when the PlayBar is invisible.
    Is that possible?
    Thanks & regards,
    Kartik.

    OK.  This would be a little easier to do in Captivate 5 which has Master Slides and Playbar Overlay. But since you have Captivate 4 you will need to make do with adding graphics to the background of the actual slide, and just turning off the Playbar.
    From the graphics you added to your last post, it looks like you already know what you want the background to look like. You want a different background for Slide A and Slide B.  One way to do this is to add the graphic to each slide, then right-click and select Merge with Background.  But you can also just put the image on the lowest layer on the timeline of each slide and the effect would be similar.
    Regarding the Playbar...Since you are on Captivate 4, you do not have the option to set Playbar to Overlay.  I've just looked in Captivate 4 but the option is missing.  Here is what the Skin Editor looks like in Captivate 4 and 5.  Notice the Playbar Overlay setting is missing in Cp4.  There may be another way to do this but I don't know.
    This playbar overlay option would have allowed you to set the position of the playbar as sitting over the bottom 30 pixels or so of the stage area.  Since you can't do this, you may need to be satisfied with seeing the area occupied by the playbar go blank when it is hidden.
    To hide your playbar on Slide B, you will need to add an Advanced Action on Slide Enter that turns off the playbar by assigning the variable cpCmndShowPlaybar to 0.  Here is what that looks like in the Slide Properties dialog for your Slide B.

Maybe you are looking for

  • [JDBC][ODBC] How to compact access database from Java ?

    Hello, I'm developping a java applcation wich is connected to an MS Access file database. For now, I don'y compact it but it would be better. So How can I compact an access database from Java ? thanks :)

  • Is it safe to delete .dmp files in the Program directory?

    I found a rather large .dmp file located in my Firefox install directory: c:\Program Files (x86)\Mozilla Firefox\core.20130617.XXXXXX.XXXXX.XXXX.dmp It appears that the core file is tagged with a date stamp; the subsequent "X's" are other numerical d

  • Forcing Users to set Security Questions

    Hi All, Currently when a user joins the organization, the user can go to IdM user interface, login and set security questions. But this is an option only if user wants to use self service in IdM. So, it has been found that users are not setting it an

  • ICloud falsely marks some mail as junk

    iCloud Mail has started classifying all email I receive from Second Life as junk. Those email are marked as junk and move to the iCloud Junk folder. I would rather filter my email on my iMac. I have tried "training" iCloud Mail by logging into the we

  • My photos are too blue!

    Dear Tech. Guru, I love my HP Photosmart C6380 All-In-One for printing on regular paper. However it fails miserably at printing on photo paper. I bought this printer beacuse I was promised it would do both. I have tried countless times to print pictu