How to delete Graphics Image under any Transport Request?

Hi Guru's,
I want to delete the Graphics Image under one Transport Request.
but when i try to delete it from SE78, it is deleting with out asking any new Transport Request.
Can anybody give me some inputs.
Thanks in Advance,
Venkat

Thanks Lavanya for your quick reply,
can you explain where exactly we can see that deltion attributes.
if i am opening that TR number in SE09....i can't see any new attributes..
what ever previous parameters are there only those are available..
Thanks,
venkat

Similar Messages

  • 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

  • How can we download smartforms under a transport request.

    hi
       my requirement is that i have to download all smartforms under a transport request using a report program, is thr any standard program in sap or anyone who have done it before.
    thanks n regards.
    pardeep kumar

    Write a custom BDC program.

  • How to delete bulk of objects from transport request?

    Hi
    I made some mistake in selecting the objects for transport, and now there are a lot of unwanted objects saved under the request number. I know the objects can be deleted from the transport request through SE01, SE09 and SE10. But none of these allows me to delete the request number because there are a objects under the request that has to be deleted first.
    Is there any way by which i can delete the entire list of objects in one go rather than deleting them one by one?
    Thanx
    Sujai

    Hi,
    You have to Unlock the request before you deleting the request.
    Goto SE03->Under Requests/Tasks Double Click on Unlock Objects (Expert Tool)-> enter the Request no you want to Delete and Click on Execute -. Click on Unlock.Now you can Delete that Request.
    -Vijay

  • How to delete the entries from the transport request

    i need to delete the entries programatically from the transport request for all the entries which is exists in the package for the tables e070 and e071.

    Hi,
    I think you need to have authorization for that thru auth group SA.
    One more thing is where ever its created like source client only you can do if u have authorization.
    Regds
    Sivaparvathi
    Please reward points if helpful...

  • How to delete "sparse image"?

    how to delete "sparse image"?

    You should be able to delete it via the Finder, as you would any other file, folder, disk image, etc.
    (I don't recall for sure, but you'll probably have to supply the password.)

  • My iPod touch was stolen and recovered.  I can use my Apple id for this site but the theif changed the Apple id needed to update apps etc and I do not know how to delete his acct. Any help with this will be greatly

    My iPod touch was stolen and recovered.  I can use my Apple id for this site but the theif changed the Apple id needed to update apps etc and I do not know how to delete his acct. Any help with this will be greatly appreciate

    If the thief enabled activation lock on the device, then there is nothing that can be done.  Only the password for the Apple ID that it is locked with can disable activation lock.

  • How to delete an image from bluetooth in Nokia N96...

    I am using Nokia N96. I received some images from a freidn via bluetooth and i have transfered them to my PC. I need to delete the images in my Nokia phone but it seems not working. Please advice me how to delete these images? coz teh Option DELETE is not working here.
     Thanks a lot!

    hi El_Loco
    I received the images via bluetooth. Then I connect my Nokia N96 to my PC at home. I cut and pasted the images from the mobile folder to my PC. (If I cut and paste, by right the images should have been gone from the mobile phone memory..is that correct?) However, after I disconnect my Nokia from my PC, the images are still in my Inbox folder.
    The wierd thing is: The name of teh file is still there, but I cannot open them, and when I tried to delete them, there is a message:                             General: Already in use ! 
    So..it looks like because I cut and pasted from my PC, there was some errors in the Nokia phone? The file names are there, but I can no longer open them and nor delete them.

  • How to put an image to any part of an e-mail using UTL_SMTP

    We need to send an e-mail with the following format.
    |COMPANY LOGO (JPEC IMAGE)          |
    |                                    |
    |                                    |
    |              HTML table            |
    |                                    |
    |                                    |
    ------------------------------------The exact format is shown here: http://postimage.org/image/76v4e5tmd/
    Above the Automatic Payment Advice is the JPEG image.
    How do we CONSTRUCT THIS e-mail? Our DB is a 10g R2. We use UTL_SMTP. Problem is how to insert an image to any part of the e-mail (not as a separate attachment)?
    Edited by: Channa on May 24, 2012 5:51 AM

    Yes. It is possible. Read this posts of Billy Verreynne to uderstand the MIME format.
    Re: Sending HTML mail with inline/embeded images (My code is constructed on this input)
    embeded image in email body in pl/sql
    DECLARE
      /*LOB operation related varriables */
      v_src_loc  BFILE := BFILENAME('TEMP', 'otn.jpg');
      l_buffer   RAW(54);
      l_amount   BINARY_INTEGER := 54;
      l_pos      INTEGER := 1;
      l_blob     BLOB := EMPTY_BLOB;
      l_blob_len INTEGER;
      v_amount   INTEGER;
      /*UTL_SMTP related varriavles. */
      v_connection_handle  UTL_SMTP.CONNECTION;
      v_from_email_address VARCHAR2(30) := '[email protected]';
      v_to_email_address   VARCHAR2(30) := '[email protected]';
      v_smtp_host          VARCHAR2(30) := 'x.xxx.xxx.xxx'; --My mail server, replace it with yours.
      v_subject            VARCHAR2(30) := 'Your Test Mail';
      l_message            VARCHAR2(32767) := '<html>
    <meta http-equiv=3DContent-Type content=3D"text/html; charset=3Dus-ascii">
    <body background=3D"cid:[email protected]">
    ..rest of mail
    </body>
    </html>
      /* This send_header procedure is written in the documentation */
      PROCEDURE send_header(pi_name IN VARCHAR2, pi_header IN VARCHAR2) AS
      BEGIN
        UTL_SMTP.WRITE_DATA(v_connection_handle,
                            pi_name || ': ' || pi_header || UTL_TCP.CRLF);
      END;
    BEGIN
      /*Preparing the LOB from file for attachment. */
      DBMS_LOB.OPEN(v_src_loc, DBMS_LOB.LOB_READONLY); --Read the file
      DBMS_LOB.CREATETEMPORARY(l_blob, TRUE); --Create temporary LOB to store the file.
      v_amount := DBMS_LOB.GETLENGTH(v_src_loc); --Amount to store.
      DBMS_LOB.LOADFROMFILE(l_blob, v_src_loc, v_amount); -- Loading from file into temporary LOB
      l_blob_len := DBMS_LOB.getlength(l_blob);
      /*UTL_SMTP related coding. */
      v_connection_handle := UTL_SMTP.OPEN_CONNECTION(host => v_smtp_host);
      UTL_SMTP.HELO(v_connection_handle, v_smtp_host);
      UTL_SMTP.MAIL(v_connection_handle, v_from_email_address);
      UTL_SMTP.RCPT(v_connection_handle, v_to_email_address);
      UTL_SMTP.OPEN_DATA(v_connection_handle);
      send_header('From', '"Sender" <' || v_from_email_address || '>');
      send_header('To', '"Recipient" <' || v_to_email_address || '>');
      send_header('Subject', v_subject);
      --MIME header.
      UTL_SMTP.WRITE_DATA(v_connection_handle,
                          'MIME-Version: 1.0' || UTL_TCP.CRLF);
      UTL_SMTP.WRITE_DATA(v_connection_handle,
                          'Content-Type: multipart/related; ' || UTL_TCP.CRLF);
      UTL_SMTP.WRITE_DATA(v_connection_handle,
                          ' boundary= "' || 'SAUBHIK.SECBOUND' || '"' ||
                          UTL_TCP.CRLF);
      UTL_SMTP.WRITE_DATA(v_connection_handle, UTL_TCP.CRLF);
      -- Mail Body
      UTL_SMTP.WRITE_DATA(v_connection_handle,
                          '--' || 'SAUBHIK.SECBOUND' || UTL_TCP.CRLF);
      UTL_SMTP.WRITE_DATA(v_connection_handle,
                          'Content-Type: text/html;' || UTL_TCP.CRLF);
      UTL_SMTP.WRITE_DATA(v_connection_handle,
                          ' charset=US-ASCII' || UTL_TCP.CRLF);
    UTL_SMTP.WRITE_DATA(v_connection_handle,
                          'Content-Transfer-Encoding: quoted-printable' || UTL_TCP.CRLF);                     
      UTL_SMTP.WRITE_DATA(v_connection_handle, UTL_TCP.CRLF);
      UTL_SMTP.WRITE_DATA(v_connection_handle, l_message || UTL_TCP.CRLF);
      UTL_SMTP.WRITE_DATA(v_connection_handle, UTL_TCP.CRLF);
      -- Mail Attachment
      UTL_SMTP.WRITE_DATA(v_connection_handle,
                          '--' || 'SAUBHIK.SECBOUND' || UTL_TCP.CRLF);
      UTL_SMTP.WRITE_DATA(v_connection_handle,
                          'Content-Disposition: inline; filename="otn.jpg"' || UTL_TCP.CRLF);
      UTL_SMTP.WRITE_DATA(v_connection_handle,
                          'Content-Type: image/jpg; name="otn.jpg"' ||
                          UTL_TCP.CRLF);
    UTL_SMTP.WRITE_DATA(v_connection_handle,
                          'Content-ID: <[email protected]>; ' ||
                          UTL_TCP.CRLF);                     
      UTL_SMTP.WRITE_DATA(v_connection_handle,
                          'Content-Transfer-Encoding: base64' || UTL_TCP.CRLF);
      UTL_SMTP.WRITE_DATA(v_connection_handle, UTL_TCP.CRLF);
      UTL_SMTP.WRITE_DATA(v_connection_handle, UTL_TCP.CRLF);
      /* Writing the BLOL in chunks */
      WHILE l_pos < l_blob_len LOOP
        DBMS_LOB.READ(l_blob, l_amount, l_pos, l_buffer);
        UTL_SMTP.write_raw_data(v_connection_handle,
                                UTL_ENCODE.BASE64_ENCODE(l_buffer));
        UTL_SMTP.WRITE_DATA(v_connection_handle, UTL_TCP.CRLF);
        l_buffer := NULL;
        l_pos    := l_pos + l_amount;
      END LOOP;
      UTL_SMTP.WRITE_DATA(v_connection_handle, UTL_TCP.CRLF);
      -- Close Email
      UTL_SMTP.WRITE_DATA(v_connection_handle,
                          '--' || 'SAUBHIK.SECBOUND' || '--' || UTL_TCP.CRLF);
      UTL_SMTP.WRITE_DATA(v_connection_handle,
                          UTL_TCP.CRLF || '.' || UTL_TCP.CRLF);
      UTL_SMTP.CLOSE_DATA(v_connection_handle);
      UTL_SMTP.QUIT(v_connection_handle);
      DBMS_LOB.FREETEMPORARY(l_blob);
      DBMS_LOB.FILECLOSE(v_src_loc);
    EXCEPTION
      WHEN OTHERS THEN
        UTL_SMTP.QUIT(v_connection_handle);
        DBMS_LOB.FREETEMPORARY(l_blob);
        DBMS_LOB.FILECLOSE(v_src_loc);
        RAISE;
    END;Otn logo is in my database server and It will embade otn logo all over the mail body!.
    Edited by: Saubhik on May 24, 2012 9:06 PM
    Changed the original IP and email address. I should have done this earlier!: Saubhik on May 25, 2012 11:20 AM

  • How to delete broken images E5-00

    how to delete broken images E5-00

    Hi jsrajaa,
    Welcome to the Nokia Discussion boards!
    To delete an image or video clip, select the item and delete from the active toolbar. Also, to remove an image or a video clip from an album, select the album and the item, and Options > Remove from album.
    If the files on your memory card is corrupted, you may need to format your memory card before using it on your E5 again. 
    Let us know how you get on.
    Regards,
    haZey
    If you find this post helpful, a click upon the white star at bottom would always be appreciated.
    If it also solves your problem, clicking ACCEPT AS SOLUTION below it will benefit other users!

  • I have created two tables for my new  report under one transport request.

    Unwanted table transported
    I have created two tables for my new  report under one transport request.
    But I only need one table and the second table I was supposed to delete.
    However by mistake, with out deleting the second tableu2026 the transport request is released and moved to quality system.
    how to handle this issue. 
    I am not sure any additional changes for this program.
    Could you please suggest me an idea.
    Thanks in adv

    >
    sam kumar wrote:
    > Unwanted table transported
    > I have created two tables for my new  report under one transport request.
    > But I only need one table and the second table I was supposed to delete.
    > However by mistake, with out deleting the second tableu2026 the transport request is released and moved to quality system.
    >
    > how to handle this issue. 
    >
    > I am not sure any additional changes for this program.
    > Could you please suggest me an idea.
    >
    > Thanks in adv
    Does one custom table more or less really matter?  If you really want delete it, delete the table in DEV which will put it into a new transport and get that transport moved to TEST.

  • Log for Addition/Deletion of object in a Transport Request

    Dear Friends,
    Recently I had a issue where I tried deleting an object from a transport request and I got the message that object is deleted successfully.
    But when the transport was imported then it failed with Sy-subrc 8 because of the same object in transport.  The reason for the same could be :
    1.) Either the object was not deleted from the transport request.
    2.) Or Some one else added the same object again in the request.
    I want to read the log of this transport in such a way that I see when a object has been added/deleted from a transport request along with SAP User ID of the person doing it.
    Is this possible ? If so kindly share the steps with me.
    Thanks a Lot for your kind help!!! This is very important for me....
    Regards,
    Lalit

    Hello Lalit
    I hope nothing of that sort is available as the transport requests will again have tasks under them.
    The changes done to  the task will have to be tracked in that case but SAP doesn't have that task change logging as far as I know.
    All E0* tables relates to transports and objects under these transports none of them have logs on this nor even any transactions which allow user to edit the transport object.
    You get an action log which provides who created it and who releaed them.
    But if you configure CharM on Solution manager I hope you can track each changes.
    Regards
    Vivek

  • We couldn't release any transport request!

    Hi experts,
    We could't release any transport request on DEV from today.
    We could do it until yesterday.
    We have never changed any settings.
    Except release, we can use SAP system, and
    we can import released transport request to QAS .
    Also I could tp addtobuffer on DEV.
    [Operation]
    SE10 -> select transport request -> click [release] button
    and, we can see the error message as below.
    Error Message *****************************************************
    Test call of transport control program (tp) ended with return code
    [Transport Log]
    We can see the log as below.
    ERROR: No connect due to DbSl Load Lib Failure
    ERROR: environment variable dbms_type is not set.
    ERROR: Connect to RDV failed (20090220140504).
    ERROR: Connect to RDV failed (20090220140740), failed to read table SVERS.
    [Our Action]
    1. Change Environment variable & Restart SAP (note 351586)
    2. replace tp & saptrans
    3. change parameter (note 175627)
    4. add full control to everyone on sap/trans
    5. see note 534765,98678,128126,592514,799058,879941,508140,610640
    Thank you in advance.
    BR,
    Toshi

    Hi,
    Thank you for your reply.
    I did r3trans -d, and the result is as belllow.
    F:\usr\sap\RDV\SYS\exe\run>r3trans -d
    This is r3trans version 6.13 (release 640 - 07.01.08 - 14:25:00).
    unicode enabled version
    2EETW000 sap_dext called with msgnr "2":
    2EETW000 -
    db call info -
    2EETW000 function:   db_ntab
    2EETW000 fcode:      NT_RDTDESCR
    2EETW000 tabname:    TADIR
    2EETW000 len (char): 5
    2EETW000 key:        TADIR
    2EETW000 retcode:    2
    r3trans finished (0012).
    Also I checked TP_DOMAIN.pfl, but it seems that there is no problem.
    But I found doubtful point.
    It is environmental variable, and now it is differnt from last friday.
    Example,  last friday , there was variable as bellow,
    but today I couldn't find them
    In the meantime , I will deal with them.
    dbms_type=MSS
    MSSQL_DBNAME=RDV
    MSSQL_SCHEMA=rdv
    MSSQL_SERVER=<hostname>\RDV
    Toshi

  • How to delete the data based on concurrent request Id

    Hi
    from account receivable to gl i am posted a cheque through concurrent program.
    right now my problem is I want to delete that data in database tables based on concurrent request id.
    how to delete that data based on concurent request id, Please give me some suggessions

    What is the application version ? what exactly you want to achieve ?
    Direct deletion is not recommended in oracle application database.
    regards,

  • How do I find from which terminal transport request imported to PRD

    Hi Experts,
    Let me know how can I find from which terminal transport request imported to PRD
    Thank you in advance.
    Regards,
    Raj

    Hi Raj,
    Please find the answer for your question  in below discussion.
    How to find out workstation of a transport request created
    I hope it will help you
    BR
    AKJ

Maybe you are looking for

  • [XI 3.1] Monitoring Service Status...?

    In BOE-XI (R2) we could use tools like HP-OpenView to monitor the status of the various BOE-servers because they ran as individual Windows Services - and could be seen from the WINDOWS Services Menu (or CCM). HP-OpenView could send us e-mail alerts w

  • Stop header row in every column

    Hi I have ssrs 2005 - visual studio. I have header row appearing on every row. how do i stop to keep  1 header row. Regards Sonu

  • No "Rescue Email" Option

    I have three Apple ID accounts in my family, and in one of them I have to enter three security questions and a rescue email. In the other two, I can only enter one question and no rescue email. The first account was created before the second and thir

  • Class CL_RSDMD_UPDATE_MASTER_DATA

    Hello people, I am with a major issue in my hands. In a program that creates master data I used the class-method cl_rsdmd_update_master_data=>update_attributes_static. Everything was going well because I only called the program once, to update the ma

  • Business area missing in documents

    Hi I have few documents which are posted with out Business Area is there any solution, other than reversing the document and post, hence these documents are belong to previous year. Regards, Bhaskar