Transport is in modifiable status, But i could not able to delet the object

Hi All,
I have created one development transport and one  customizing transport(my colleague), now i want to delete the some objects which contain these change request. But i can not able to delete those objects even though change request is in modifiable status.
How to delete the objects contain in modifiable transport?

Hi Arun,
It seems working now
Can add/delete the objects for released transport?
is it possible.
Two more question:
1). I have released one change request, now i want to change the description of the request, how to do  that?
2).While executing transports, RDD* (RDDIMPDP) job has canceled in the target system.then what should i do?

Similar Messages

  • I'm new to Mac and I have a Mac Mini. Could you please tell me how I could paste an URL to a video downloader like "Coolmuster Video Downloader for Mac"? I can copy the url but I could not paste it on the downloader. I appreciate your help to my problem.

    I'm new to Mac and I have a Mac Mini. Could you please tell me how I could paste an URL to a video downloader like "Coolmuster Video Downloader for Mac"? I can copy the url but I could not paste it on the downloader. I appreciate your help to my problem.

    Is this happing because the external is formatted to PC and not mac?
    Yes that is correct.
    Will I need to get a mac external hard drive if I wish to continue to save my documents like this?
    If you no longer use a PC you could format this drive for the Mac. However be aware that formatting a drive will erase all the data on it. So you would need someplace to copy the data off this drive to while you did the re-format and then you could copy the data back.
    You could get another drive, format it for the Mac and copy the data to it. Then re-format the original drive and use it as a backup drive. Always good to have backups.
    Post back with the drive type and size of the current drive, if you are doing backups now and how and if you still need to access this drive from a PC.
    regards

  • My Adobe X! trial expired I paid for a month to month subscription on MArch 13, 2015 but I could not activate it. The prompt is asking me for a serial number (which I wouldnt have since I downloaded the trial from the website. How do I activate it with my

    My Adobe XI trial expired I paid for a month to month subscription on MArch 13, 2015 but I could not activate it. The prompt is asking me for a serial number (which I wouldnt have since I downloaded the trial from the website. How do I activate it with my Adobe ID? "activate with Adobe ID" is not an option on my screen. It only asks me for the serial number.

    uninstall your acrobat XI.
    if win os clean, Download Adobe Reader and Acrobat Cleaner Tool - Adobe Labs
    then dl the desktop cc app and use it to install your subscription acrobat XI, Creative Cloud Help | Creative Cloud for desktop

  • Please, I have need Almsaah device iPhone 5 purchased from an Iranian person got the lock code Last updated him but I could not activate it until the program find my phone phone

    Please, I have  need Almsaah device iPhone 5 purchased from an  Iranian person got the lock  code Last  updated him but I could not activate it until the program find my phone

    Please, I have  need help device iPhone 5 purchased from an  Iranian person got the lock  code Last  updated him but I could not activate it until the program When Mai phone

  • Problem Using HTTP Dispatcher -- Could Not able to get the data in JSP

    Hi, I am using HTTP Dispatcher to send my events to particular URL which is a JSP page. I am trying to populate the received event through URL and populate to a oracle data base. But could not able to get the data in Oracle database.
    Code is :
    <h1>JSP Page</h1>
    <%
    long type = 0;
    String tagId = null;
    String timeStr = "0";
    String deviceName = "";
    // Get Event Parameters
    // Available Parameters: id, siteName, deviceName, data, time, type, subtype, sourceName, correlationId
    try
    type = Long.parseLong(request.getParameter("type")); // Get type
    tagId = request.getParameter("id"); // Get tagId
    timeStr = request.getParameter("time"); // Get time
              deviceName = request.getParameter("deviceName");
    catch (Exception e)
    out.println( "Error: "+e.getMessage() );
              // Write into DB.
              try {
              if ((tagId == null) || (type != 200) ){
                   // Do Nothing
                   //return;
              } else {
                   OracleDataSource ods = new OracleDataSource();
                   String URL = "jdbc:oracle:thin:@//3.235.173.16:1525/vislocal";     
                   ods.setURL(URL);
                   ods.setUser("cus");
                   ods.setPassword("cus");
                   Connection myConn = ods.getConnection();     
                   Statement stmt = myConn.createStatement();
                   String selectQuery =
                             "SELECT MAX(rfid_raw_reads_id) as max_id FROM "+
                        "cus.rfid_raw_reads ";
                   ResultSet rs = stmt.executeQuery(selectQuery);
                   String maxId = "1";
                   if (rs.next()) {
                        maxId = rs.getString(1);               
                   String selectMaxTagIDQuery =
                             "SELECT MAX(rfid_raw_reads_id) as max_id FROM "+
                        "cus.rfid_raw_reads WHERE tag_id = '" + tagId + "'" ;
                   stmt = myConn.createStatement();
                   rs = stmt.executeQuery(selectMaxTagIDQuery);
                   String maxTagId = "1";
                   if (rs.next()) {
                        maxTagId = rs.getString(1);               
                   long primaryKey = 1;
                   long tagKey = 1;
                   try {
                        primaryKey = Long.parseLong(maxId) + 1;
                        tagKey = Long.parseLong(maxTagId) + 1;
                   } catch (Exception e) {
                   long currentTime = System.currentTimeMillis();
                   long updateKey = (tagKey - 1);
                   String updateQuery = " UPDATE cus.rfid_raw_reads SET read_end_time = " + currentTime + " WHERE rfid_raw_reads_id = " + updateKey;
                   Statement updateStmt = myConn.createStatement();
                   updateStmt.execute(updateQuery);     
                   String query =
                        "INSERT INTO cus.rfid_raw_reads (rfid_raw_reads_id, tag_id,device_name,read_start_time) VALUES ("+ primaryKey + ",'" + tagId + "'," + deviceName + "'," + System.currentTimeMillis() + " )" ;
                   Statement insertStmt = myConn.createStatement();
                   insertStmt.execute(query);     
                   myConn.commit();
                   myConn.close();
              } catch (Exception e) {
    %>
    <p>For browser debug:
    <%
    out.println( "Type="+type+" ID="+tagId +" time="+timeStr );
    %>
    Kindly suggest where is the problem...
    Thanks and regards
    Mohammad Nasim Akhtar

    HI Prabhat,
    Thanx for your reply, I worked out and able to receive the data in oracle database, Actually there was some problem in insert Query. Now I have tested the same... and able to edit the same in the Database.....
    But I am facing a new problem, Http Dispatcher in SES console is displaying all the Events generated as well as event in Que but there is no events in the Event Send. I guess it is not able to send the events.....?????
    Event statical is showing like this
    Events Received: 0 (0.00/sec)
    Events Generated: 311 (0.19/sec)
    Events Sent: 2 (0.19/sec)
    Queued Events: 309 (0.19/sec)
    Kindly suggest where is the problem, Is it a JSP problem or OSES end problem.....
    Thanks and regards
    Nasim

  • Could not able to startup the instance

    After shutdown the instance, I could not able to starup the instance. ORA-12203 TNS:UNABLE TO CONNECT TO DESTINATION ,error showing. Database already down, then how to make to startup.

    ORA-12203: TNS:unable to connect to destination
    Cause:      Invalid address specified or destination is not listening. This error can also occur because of underlying network or network transport problems.
    Action:      Verify that the net service name you entered was correct. Verify that the ADDRESS portion of the connect descriptor which corresponds to the net service name is correct. Ensure that the destination process (for example the listener) is running at the remote node.
    Connect with your server. Export ORACLE_HOME and ORACLE_SID. Then login with SQLPLUS as sysdba and startup the instance.
    Regards
    Asif Kabir

  • User has contribute access but he is not able to access the site collection...

    User has contribute access but he is not able to access the site collection...

    What error does he get.
    Can you share fiddler trace(check if any 404 error)
    what error do we see in ULS Logs
    Create disableloopback
    registry on server
    http://support.microsoft.com/kb/926642/en-us

  • My mac's launchpad is working but i am not able to use the apps that are provided in the launchpad

    my mac's launchpad is working but i am not able to use the apps that are provided in the launchpad

    Well, everything that you have bought with her Apple ID prior to getting your own Apple ID is forever hers. Apple will not transfer content from one ID to another. But in the case of the Mac, contact iTunes Customer Service and request that they send your issue to the Account Security Team and ask that the Mac be released form your mother's account so you may register it with your account. Then you can accept the iLife apps into your account for any future updates.
    iTunes Support -
    http://www.apple.com/support/itunes/

  • I have garagaband for iOs in my iPhone 4S, I connect my squire iOs guitarr to the iPhone, I select a Guitar Amp at the GB app then I Only can tune the guitar but I m not able to make the guitar ring with the amps. May some one help me?

    I have garagaband for iOs in my iPhone 4S, I connect my Squire iOs guitarr to the iPhone, I select a Guitar Amp at the GB app then I Only can tune the guitar but I m not able to make the guitar ring with the amps. May some one help me?

    You got the new iphone?????   I have same problem.  I transferred audiobooks to device to find no audiobooks on device (despite it being in iTunes as if it was).  Have you found a solution?????   I even tried to change import settings on format transfer but hasn't worked. 

  • Wrong password resulted in disabling of the ipad. it says connect to itunes, i did but i am not able to activate the ipad

    wrong password resulted in disabling of the ipad. it says connect to itunes, i did but i am not able to activate the ipad.
    Ipad has been disabled

    You may need to put the iPad into recovery mode  : http://support.apple.com/kb/ht1808 - you should then be able to reset it via your computer's iTunes and restore/resync your content to it

  • I have the first iPad but I am not able to download the NCAA march madness app

    I have the first iPad but I am not able to download the NCAA march madness app

    what happens when you try?  Does the app require a higher version of iOS? If that is the case, you are out of luck as iOS 5.1.1 is the highest for the iPad 1.

  • I set up iCloud on my iMac with OS version 10.6.8 but I'm not able to have the icon show on my Dock with the other application icons. What do I do?

    I set up iCloud on my iMac with OS version 10.6.8 but I'm not able to have the iCloud icon show in my Dock with the other application icons. What can I do? Is it because iCloud is not part of the 10.6.8 version? I clicked System Preferences and I saw MobileMe and no iCloud.

    Thanks for your reply! Would my IMac be able to support the Mavericks (10.9) considering that I bought it in June 2011? Not sure if that even matters.

  • HT5188 I have 50 iPads and 50 codes, but I am not able to install the app on the last ipad.  One code in the spreadsheet says it's already been used but shows no serial number or device name.

    I have 50 iPads and 50 codes, but I am not able to install the app on the last ipad using Apple Configurator.  One code in the spreadsheet says it's already been used but shows no serial number or device name.

    Hi mafiose15,
    Thanks for visiting Apple Support Communities.
    Restoring your iPod to factory settings is the best way to try and get it back to working order. You can use the instructions below to restore it:
    How to restore iPod
    Verify that you have an active Internet connection, because you may need to download new versions of the iTunes and iPod Software.
    Download and install the latest version of iTunes if necessary.
    Open iTunes. Connect your iPod to your computer using the USB or FireWire cable that came with your iPod.
    After a few moments, your iPod will appear in the Source panel in iTunes.
    Select your iPod in the Source panel. You will see information about your iPod appear in the Summary tab of the main iTunes window.
    Click Restore.
    If you are using a Mac, you will be asked to enter an administrator’s name and password.
    A progress bar will appear on the computer screen, indicating that stage one of the restore process has begun. When this stage is done, iTunes will present one of two messages with instructions specific to the iPod model you are restoring.
    Disconnect iPod and connect it to iPod Power Adapter (typically applies to older iPod models).
    Leave iPod connected to computer to complete restore (typically applies newer iPod models).
    During stage two of the restore process, the iPod displays an Apple logo as well as a progress bar at the bottom of the display. It is critical that the iPod remain connected to the computer or iPod power adapter during this stage.
    Note: The progress bar may be difficult to see, because the backlight on the iPod display may be off.
    After stage two of the restore process is complete, the iTunes Setup Assistant window will appear. It will ask you to name your iPod and choose your syncing preferences, as it did when you connected your iPod for the first time.
    You can find the instructions in this article:
    Restoring iPod to factory settings
    http://support.apple.com/kb/ht1339
    All the best,
    Jeremy

  • HT4101 I  would like to store some pics on my sd card to bring them to Costco for printing, but I am not Able to transfer the pics to the card. Any help?

    I would like to transfer photos to my sd card to bring them to Costco for printing, but I am not Able to transfer the pics to the card. Any help?

    Easiest way is to transfer the photos to your computer. Then copy them to your ad card. You should be backing up all your photos on your computer anyway. Having them only on your iPad is asking for trouble should something happen to your iPad.

  • Even Administrator could not able to edit the dashboard

    hi all,
    Administrator could not able to see edit dashboard option.... though he is having full control on dashboard....
    What is the problem ....
    did any one change the options.. in instance config file....
    how to make it up
    Thanks

    Hello Pravin,
    I have the complete access, but all of sudden three icons started missing .
    Thanks,
    Srini

Maybe you are looking for

  • How to tie a user oracle in a service rac

    Hi all, I have two services in my RAC environment with two nodes and I would like to know how to tie a username in a service from RAC. The services are: HMDPRD HMDREL So, I want that a username name called DBAHMD run only on instance PRD1 and the oth

  • How so I protect my root file system? - x86 solaris 10 - zfs data pools

    Hello all: I'm new to ZFS and am trying to understand it better before I start building a new file server. I'm looking for a low cost file server for smaller projects I support and would like to use the ZFS capabilities. If I install Solaris 10 on a

  • Signatures on my I-pad?

    I have a sign off form that I use multiple times daily for customer signatures. Can I simply take a digital photo of it and then allow customers to sign in box via ipad?

  • How to make the Smooth Scrolling work even H Swipe is tick?

    In my article, if I tick the H Swipe only and the Smooth Scrolling is Both direction, Why is it in previewing it in my iPad the Scrolling seems Off because it's snapping into the pages. Smooth scrolling is not working if H Swipe only is tick. How to

  • Sockets connection to WLS

    Is there a way to use WLS 6.1 to listen to a raw socket. I have a past           product that listen to sockets and I re-writing this in WLS. Is there a way           to let the container do the thread management and still get a hold of the