How to retrieve deleted Siebel Attachment files

Friends,
An end-user of my Siebel ERM Application has accidentally deleted some of the file attachments under a record .
Is there any possibility of retrieving it ?
I believe that even if you delete attachment files from the GUI , the .SAF files will still not get deleted from the siebel file system directory in the servers.
I only have the deleted attachments' names (Attachment Title) with me now , as it was present in the Audit Trail .
Is there any chance if we can get back the row id of these deleted files and thereby retrieve the file's contents from the SAF files ?
thks in advance .
Regards,
Hari

Luckily I have never been in a scenraio like yours.
But according to the theory it is correct that SAF files will stay in the Siebel FS, even when the record is deleted.
From the top of my head the names of the SAF file consist of the Siebel Table name, ROW_ID and REVISION_NUM (and .SAF).
What you could try to do is to locate the files that don't have a corresponding record in the Siebel Table.
Keep REVISION_NUM out of the filter.
But so far I don't think you can find them with just the attachment title.

Similar Messages

  • HT1391 How does one delete apps or files from iCloud Permanently so I may re-download without retrieving existing cloud file?for example the U2 Marketing fast , an Album I have no interest in...is now in my Cloud.. How can I remove this File from iPhone &

    How does one delete apps or files from iCloud Permanently so I may re-download without retrieving existing cloud file?for example the U2 Marketing fast , an Album I have no interest in...is now in my Cloud.. How can I remove this File from iPhone & cloud

    Hey there Matt.dvs1,
    Although there is not a way to remove past purchases from your iTunes account completely, you can hide them so that you don't have to see them if you don't want to. This article will help you do that:
    iTunes Store: Hiding and unhiding purchases - Apple Support
    Hide your purchases
    Open iTunes on your Mac or PC.
    From the Store menu, choose Store > Sign In, and then enter your Apple ID and password.
    Go to the iTunes Store.
    Click Purchased from the Quick Links section on the right side of the iTunes Store.
    Choose a content type by clicking Music, Movies, TV Shows, Apps, or Books from the top of the window.
    A list of your purchased items for the content type you are viewing will appear. Mouse over the item you want to hide until an X appears its top-left corner.
    A confirmation dialog will appear once you click the X.
    Thank you for using Apple Support Communities.
    All the best,
    Sterling

  • How can I delete an attachment from a received email but save the message?

    Hi all, how can I delete an attachment from a received email but save the message?*

    Over the years this issue crops up again and again. Here are the cases I know about:
    Case 1 - it simply doesn't work
    I have a message in my inbox with a jpeg of about 300Mb. Select message, choose option "remove attachment" which is not greyed out, and it does not work.
    Case 2 - it works if you save the message first
    I move the message from the inbox to a mail box. Open the mailbox (select), select the message, choose option "remove attachment", result: the attachment is removed, a small text file is added and an error appears in the message "missing plug-in". The message size is reduced from 300Mb to a few bytes.
    Case 3 - the option "remove attachment" is greyed out.
    I've googled this at least 10 times and read all the advice about editing various files from the library and all the other hacks. The simple truth here is that the user should not be inconvenienced by such inappropriate behaviour. We're not used to this from Apple any more, not since OS X. Even Windows does this stuff painlessly. In fact this kind of function is something that Outlook and Exchange do incredibly well. If they didn't the corporate world would have ground to a halt.
    My point: the remove attachment option should work all the time and should be redesigned. Right-click + save as + delete in the message would be a hundred times easier.

  • Delete specific attachment file through Conversion Channel ?

    version : iMS5.2 sp1
    O/S : Solaris 2.6 Generic_105181-29
    I wanted to delete specific attachment file(ex: ALTDESK.ZIP) through Conversion Channel.
    So I set up like below..
    1) In mappings file
    =================
    CONVERSIONS
    IN-CHAN=tcp_intranet;OUT-CHAN=tcp_local;CONVERT Yes
    ==============
    I only want to delete attached file from tcp_intranet to tcp_local.
    2) msg-INSTANCE/imta/config/conversions
    example mail header ::
    --- omit ----
    MIME-version: 1.0
    X-Mailer: iPlanet Messenger Express 5.2 Patch 1 (built Aug 19 2002)
    Content-type: multipart/mixed; boundary=--6b2385053506b85
    Content-language: ko
    X-Accept-Language: ko
    Priority: normal
    This is a multi-part message in MIME format.
    ----6b2385053506b85
    Content-Type: text/plain; charset=EUC-KR
    Content-Disposition: inline
    Content-Transfer-Encoding: quoted-printable
    ----6b2385053506b85
    Content-Type: application/x-zip-compressed
    Content-Transfer-Encoding: base64
    Content-Disposition: attachment; filename=ALTDESK.ZIP
    - conversions file setting
    ==================================================
    in-channel=tcp_intranet; out-channel=tcp_local;
    in-type=application; in-subtype=x-zip-compressed;
    parameter-symbol-0=ALTDESK.ZIP; parameter-copy-0=*;
    dparameter-symbol-0=ALTDESK.ZIP; dparameter-copy-0=*;
    message-header-file=2; original-header-file=1;
    override-header-file=1; override-option-file=1;
    command="/product/leeky/convert.sh"
    ============================================
    3) /product/leeky/convert.sh file
    ========================
    #!/bin/sh
    if [ $? -eq 1 ]; then
    echo "STATUS=178030178" >> $OUTPUT_OPTIONS
    else
    cp $INPUT_FILE $OUTPUT_FILE
    fi
    =========================
    4) The problems I face are
    - All of zip files which are filtered is deleted. As you can see 2) I only want to delete ALTDESK.ZIP file
    But, all of the zip-compressed files are deleted at the moment.
    - This converison channel is work(even if all zip-compressed files are deleted). But sometimes this is not
    working(2 or 3 times out of 10). I don not know why.
    - Above all, I am not sure 2) and 3) settings are good. English is a second language to me. So it was
    not easy to understand conversion channel setting in Admin Guide.
    - How can I see the out put of "$OUTPUT_OPTIONS" ? I do not know where I can see that.
    Is there anybody to help me ?

    The section of the admin guide which can help is:
    http://docs.sun.com/source/816-6009-10/channel2.htm#42283
    Here there is an explanation of how the mime headers of the message part would align with the entries one would put into the conversions file entry. (The document has an error where it talks about APPARENT_NAME and APPARENT_FILENAME. It should really say the words "NAME" and "FILENAME" respectively).
    Based on that document, the MIME headers of your message part :
    Content-Type: application/x-zip-compressed
    Content-Transfer-Encoding: base64
    Content-Disposition: attachment; filename=ALTDESK.ZIP
    will align with a conversions file settiong of:
    in-channel=tcp_intranet; out-channel=tcp_local;
    in-type=application; in-subtype=x-zip-compressed;
    parameter-symbol-0=NAME; parameter-copy-0=*;
    dparameter-symbol-0=FILENAME; dparameter-copy-0=*;
    message-header-file=2; original-header-file=1;
    override-header-file=1; override-option-file=1;
    command="/product/leeky/convert.sh"
    and a /product/leeky/convert.sh script which reads something like:
    #!/bin/sh
    grep "$FILENAME" /product/leek/badfiles.list
    if [ $? -eq 1 ]; then
    echo "STATUS=178030178" >> $OUTPUT_OPTIONS
    else
    grep "$NAME" /product/leek/badfiles.list
    if [ $? -eq 1 ]; then
    echo "STATUS=178030178" >> $OUTPUT_OPTIONS
    else
    cp $INPUT_FILE $OUTPUT_FILE
    fi
    fi
    The lines:
    parameter-symbol-0=NAME; parameter-copy-0=*;
    dparameter-symbol-0=FILENAME; dparameter-copy-0=*;
    tells the conversion channel to make the environment variable $NAME avaliable to your program with a value corresponding to the "name=" clause on the Content-Type line of the MIME headers. The environment variable $FILENAME is made avalable to your program and takes on the value extracted from the filename=" clause on the content-disposition line of the MIME headers.
    The document at :
    http://docs.sun.com/source/816-6092-10/conversion.html
    may help provide other examples.

  • How can I delete an old file from my library on iTunes

    Occasionally I have to replace PDF manuals with ones that have been updated.  But after I sync the new file the old one remains on my Mac itunes library.  How can I delete the old file?  So far all I do is deselect the old file but it's still there.  Sooner or later there will be more old files then current ones making it hard to manage.
    Thanks in advance.

    You can do this with or without the iPad connected to your Mac.
    Launch iTunes on the Mac. Click on Books under the Library heading. Click on the PDFs. Then click on the PDF that you want to delete in order to select it, and go to Edit>Delete and follow the on screen prompts.
    if you are using iTunes 11 and do not have the sidebar enabled, and wish to do so, go to View>Show sidebar or use the keyboard shortcut OPTION+Command+S.
    If you do not want to enable the sidebar, the library items can be accessed in the button in the upper left corner of the iTunes window.

  • How to retrieve value from xml file

    hi all,
    can somebody pls tell me how to retrieve value from xml file using SAXParser.
    I want to retrieve value of only one tag and have to perform some validation with that value.
    it's urgent .
    pls help me out
    thnx in adv.
    ritu

    hi shanu,
    the pbm is solved, now i m able to access XXX no. in action class & i m able to validate it. The only thing which i want to know is it ok to declare static ArrayList as i have done in this code. i mean will it affect the performance or functionality of the system.
    pls have a look at the following code snippet.
    public class XMLValidator {
    static ArrayList strXXX = new ArrayList();
    public void validate(){
    factory.setValidating(true);
    parser = factory.newSAXParser();
    //all factory code is here only
    parser.parse(xmlURI, new XMLErrorHandler());     
    public void setXXX(String pstrXXX){          
    strUpn.add(pstrXXX);
    public ArrayList getXXX(){
    return strXXX;
    class XMLErrorHandler extends DefaultHandler {
    String tagName = "";
    String tagValue = "";
    String applicationRefNo = "";
    String XXXValue ="";
    String XXXNo = "";          
    XMLValidator objXmlValidator = new XMLValidator();
    public void startElement(String uri, String name, String qName, Attributes atts) {
    tagName = qName;
    public void characters(char ch[], int start, int length) {
    if ("Reference".equals(tagName)) {
    tagValue = new String(ch, start, length).trim();
    if (tagValue.length() > 0) {
    RefNo = new String(ch, start, length);
    if ("XXX".equals(tagName)) {
    XXXValue = new String(ch, start, length).trim();
    if (XXXValue.length() > 0) {
    XXXNo = new String(ch, start, length);
    public void endElement(String uri, String localName, String qName) throws SAXException {                    
    if(qName.equalsIgnoreCase("XXX")) {     
    objXmlValidator.setXXX(XXXNo);
    thnx & Regards,
    ritu

  • How can I delete two .jpg files from my desktop that refuse to be deleted?

    How can I delete two .jpg files from my desktop that refuse to be deleted?

    The two icons refused to be moved to the garbage. The good part in all this is that ater I turned off the computer at night and turned it back on the next morning they were gone!
    Thanks.

  • How can I delete all the files in the Adobe CS4 Master Collection from my machine?

    How can I delete all the files in the Adobe CS4 Master Collection from my machine. I have tried Control Panel but it will not do anything, there are no error messages, it is like as if it is ignoring my instruction. Why should it be so difficult to delete programs one does not want. Any ideas please.

    Moved from Cloud forum to Downloading, Installing forum
    Try running the Adobe Cleaner Tool
    http://helpx.adobe.com/creative-suite/kb/cs5-cleaner-tool-installation-problems.html

  • How do I find out what program / file is using 100 GB of space on my Hard drive?  Once I find the problem  how do I delete the specific files to increase GB of space?

    How do I find out what program / file is using 100 GB of space on my Hard drive?  Once I find the problem  how do I delete the specific files to increase GB of space?

    Use OmniDiskSweeper
    Once you find file, it can be deleted from within OmniDiskSweeper
    Allan

  • HOW DO I DELETE A PDF FILE IN ADOBE?????????

    HOW DI I DELETE A PDF FILE IN ADOBE??????

    Hi UNIIQUE,
    You can simply right click the pdf file and 'Delete' it.
    If you are trying to delete pages within the pdf file then you have to use Adobe Acrobat for the purpose.
    Please check : http://helpx.adobe.com/acrobat/using/manipulating-deleting-renumbering-pdf-pages.html

  • In Premiere Elements 11 how do I delete projects & associated files & folders?

    How do I delete projects & associated files & folders once I've finished with the project in Premiere Elements 11. There is information available for Premiere Elements 7 but not for 11

    For PrE 7 (I think that it is still in print), Amazon has Steve's Muvipix Guide to Premiere Elements: http://astore.amazon.com/chuckengelsco-20/detail/0615248993/104-3709942-5611121
    If you are planning on moving to PrE 11, he has written the definitive guide to that version: http://www.amazon.com/dp/1479311200/ref=as_li_qf_sp_asin_til?tag=chuckengelsco-20&camp=145 73&creative=327641&linkCode=as1&creativeASIN=1479311200&adid=0N87W21KS3SSK1YA3MZW&&ref-ref URL=http%3A%2F%2Fwww.muvipix.com%2FFORMgallery1.php
    For one Project folder scheme, see this article: http://forums.adobe.com/message/3998053#3998053 Note: this is how I set up my Projects, but can be used as a guide.
    Good luck,
    Hunt

  • How do I delete my uploaded files? I am on an Ipad.

    How do i delete my uploaded files? There is no trash button

    you must run the official iOS5 version, no developer version which likely is a beta . Use itunes 10.5 , connect your device, let it make the backups and then hit the "restore" button in itunes. This will download and install the one and only supported OS for your device.
    Once you have this on it, you can install all apps, including garageband.

  • "How to retrieve deleted Pages document."

    How to retrieve deleted Pages document? Thanks.

    If you have a Mac that is signed into your account and you are using Time Machine to back up your Mac, you can recover the deleted document using Time Machine.  Otherwise, without a backup souce there is no way to recover it.

  • How to retrieve deleted generic page.

    Hi all, i have mistakably deleted one of my generic page which was assigned to a workset.Can anyone please tell me how to retrieve deleted generic page.

    I don't believe it is possible. I know the messages physically stay on the phone until they are overwritten but with what Apple provides, there is no way to recover them

  • How to retrieve deleted email messages

    How to retrieve deleted Entourage email messages… does anyone know how please??

    Thank you for the advise, I also tried the "advanced" under MAIL/notes and was able to increase all deleted messages
    By selecting " delete messages after 4 weeks"  and/or by selecting "never" , all deleted are in a new box titled
    "Deleted Messages " bypassing the trash box.
    JJ

Maybe you are looking for

  • Whole gallery disappear when moving it from another folder

    Hope i can get some clues here of something i find more than strange. I was working on Photoshop and moving some images within Bridge and i noticed my Iphoto Library was inside another subfolder, to clarify i keep it in an external drive. So i grab i

  • Unable to see Macintosh HD with Alt Option

    Hi, I am novice user in OSX Systems, and i trying to install the OS from the scratch but i don t know why ... i dont see the internal HDD to install I tried two diffrent options, after erase the HDD with GUID partition using the Disk Utility Option.

  • Changed iTunes password, can't access purchased programs

    I changed my iTunes password and now I can't access all the TV shows I purchased. I tried using the old password but that didn't work. Perhaps I made a mistake but I don't want to loose all the stuff I'd bought. Any suggestions?

  • Sub Contractor Issues.

    We had a sub-contractor from ATT come to our Business Builiding.  They were to drop cable in the right a way on the property for a business located behind us.  The sub-contractor interferred with our telephone communication that was on the building. 

  • Syncing new itunes with ipod touch already loaded

    i upgraded to windows 7 after vista packed it in. i backed up all my data but not my itunes library as i thought syncing would take care of it as it is all on my ipod touch.  i downloaded itunes but have been told that if i connect my ipod touch to s