TexLipse: how to mark files as temporary ?

I would like to mark a number of file extensions (e.g. .mtc*, .mlf*) as temporary so that matching files are stored away automatically by TexLipse in the tmp folder. I used the menu Window > Preferences > TexLipse > Builder Settings > Latex Temp Files and added these extensions. However, matching files are still kept in the project root.
What should I do it exactly? Thank you.

Luís,
This appears to be a sourceforge project, not an Eclipse-hosted project,
so best to look at their website for answers/help...
On 09/07/2015 9:36 AM, Luís de Sousa wrote:
> I would like to mark a number of file extensions (e.g. .mtc*, .mlf*)
> as temporary so that matching files are stored away automatically by
> TexLipse in the tmp folder. I used the menu Window > Preferences >
> TexLipse > Builder Settings > Latex Temp Files and added these
> extensions. However, matching files are still kept in the project root.
>
> What should I do it exactly? Thank you.

Similar Messages

  • How to mark files in nokia 5800 music xpress

    i bought a new nokia 5800 music xpress i wanna know how to mark files ?

    http://dailymobile.se/forum/index.php?topic=1626.20
    ok try this application it might solve your issue. good luck  , this will work for your messages and bookmarks will not work on gallery files, still something is better then nothing. 
    Message Edited by radical24 on 25-Mar-2009 12:13 PM
    You know what I love about you the most, the fact that you are not me ! In love with technology and all that it can offer. Join me in discovery....

  • How do I fix flashing question-mark-file-icon issue on reboot?

    My Mac Book Air 11" has been a bit strange recently, so I decided that a full clean would be a good idea. I had no important files I wanted to keep, so i went ahead and reinstalled the OS. Apparently that doesn't delete everything, so I did some research. Apparently I have to delete the drive. So I did, using the command-r method. I erased my HD and made a new one, but upon reboot I get this flashing-question-mark-file icon. How do I fix this?

    After you erased the drive, did you install the OSX?
    Ciao

  • I tried to open an Audacity file. I got the following error message: "Warning there is very little free disc space left on this volume. Please select another temporary directory in your preferences. How do I select another temporary directory?

    I tried to open an Audacity file. I got the following error message: "Warning there is very little free disc space left on this volume. Please select another temporary directory in your preferences. How do I select another temporary directory?

    Audacity > Preferences > Directories.  You will probably need to use an external drive as it sounds like you Mac's drive is getting too full???

  • How to ZIP file and send via SMTP in Oracle

    Dear All,
    I want to send data every month via email where the data i got from view.
    The problem is the file is to big, so i should zip it.
    the question is How i can perform it with procedure and send it automatically via Job every 1st month
    what i've done was i create a procedure to make the file in zip
    [quote/]
    CREATE OR REPLACE PROCEDURE production.CREATE_EXCEL_DTKPITerminate IS
        vvrun varchar2(3000);
        vsender varchar2(100);
        vrecepient varchar2(100);
      vccrecipient varchar2(1000);
        vsubject varchar2(1000);
        vmessage long;
        v_loc varchar2(5);
       NAME:       CREATE_EXCEL
       PURPOSE:
       REVISIONS:
       Ver        Date        Author           Description
       1.0        10/15/2012          1. Created this procedure.
       NOTES:
       Automatically available Auto Replace Keywords:
          Object Name:     CREATE_EXCEL
          Sysdate:         10/15/2012
          Date and Time:   10/15/2012, 9:42:40 , and 10/15/2012 9:42:40
          Username:         (set in TOAD Options, Procedure Editor)
          Table Name:       (set in the "New PL/SQL Object" dialog)
    begin
       vsender := '[email protected]';
         vrecepient := '[email protected]';
      vccrecipient := '[email protected]';
         vsubject := 'KPI Terminate'||TO_CHAR(SYSDATE,'MM-YYYY');
         vmessage :=
            'MESSAGE .';
         as_xlsx.query2sheet('
         select cmp_company,emp#,name,class,goucode,goudesc,job,job_name,tglkeluar
                ,nac_seq,nac_code,nac_type,nac_begin,nac_desc,reason,reason_code
                from V_KPITerminate
         --insert into blobs(blob_id,blob_name)
         --values (1,as_xlsx.finish);
         SEND_SMTP_PUZZLE_DTKRY(vsender,vrecepient,vccrecipient,vsubject,vmessage,as_xlsx.finish,'DataKPITerm -'||to_char(sysdate,'yyyy')||'.zip');
      --as_xlsx.save( 'BASE_DIR3', 'SWT.xls' );
    end;
    [/quote]
    when i execute this, Error ocured
    Message       : ORA-29278: SMTP transient error: 421 Service not available
    ORA-06512           : at "SYS.UTL_SMTP", line 21
    ORA-06512           : at "SYS.UTL_SMTP", line 97
    ORA-06512           : at "SYS.UTL_SMTP", line 399
    ORA-06512           : at "PU22PROD_123.SEND_SMTP_PUZZLE_DTKRY", line 151
    ORA-29294           : A data error occurred during compression or uncompression.
    ORA-06512           : at "PU22PROD_123.CREATE_EXCEL_KPITERM", line 60
    ORA-06512           : at line 2
    cann anyone help?
    the data is too big so i prefer it zip.. can anyone help..
    the SMTP I use is like this
    CREATE OR REPLACE PROCEDURE production.SEND_SMTP_PUZZLE_DTKRY (pSender VARCHAR2,pRecipient VARCHAR2, pCCRecipient VARCHAR2, pSubject VARCHAR2,pMessage LONG,pattach BLOB,pfilename VARCHAR2) IS
      v_src_loc  BFILE := BFILENAME('BASE_DIR3', 'pajak.xls');
          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;
          crlf CONSTANT VARCHAR2(2):= CHR(13) || CHR(10);
      v_connection_handle  UTL_SMTP.CONNECTION;
        v_smtp_host          VARCHAR2(30) := 'mail.mayora.co.id'; --My mail server, replace it with yours.
        v_subject            VARCHAR2(30) := 'Your Test Mail';
        l_message            VARCHAR2(200) := 'This is test mail using UTL_SMTP';
      pcc varchar2(50);
      i number := 1;
      j number := 1;
      l_original_blob blob;
      l_compressed_blob blob;
    BEGIN
       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);
      l_original_blob     := pattach;
         l_compressed_blob   := TO_BLOB('1');
      UTL_COMPRESS.lz_compress (src => l_original_blob,
                                   dst => l_compressed_blob);
      --DBMS_LOB.FREETEMPORARY(l_compressed_blob);
      l_blob := l_compressed_blob;
         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, psender);
         UTL_SMTP.RCPT(v_connection_handle, precipient);
        if pCCRecipient is not null then
            if(instr(pCCRecipient,',') = 0) then
            utl_smtp.rcpt(v_connection_handle, pCCRecipient);
            else
           while(instr(pCCRecipient,',',i) > 0)
            loop
            pcc := substr(pCCRecipient,i, instr(substr(pCCRecipient,i),',')-1);
            i := i+instr(substr(pCCRecipient,i),',');
            utl_smtp.rcpt(v_connection_handle,pcc);
            end loop;
            pcc := substr(pCCRecipient,i,length(pCCRecipient));
            utl_smtp.rcpt(v_connection_handle,pcc);
            end if;
        end if;
         --UTL_SMTP.RCPT(v_connection_handle, v_cc_email_address);
         UTL_SMTP.OPEN_DATA(v_connection_handle);
         UTL_SMTP.WRITE_DATA(v_connection_handle,
                               'FROM' || ': ' ||  psender || UTL_TCP.CRLF);
         UTL_SMTP.WRITE_DATA(v_connection_handle,
                               'TO' || ': ' ||  precipient || UTL_TCP.CRLF);
         UTL_SMTP.WRITE_DATA(v_connection_handle,
                               'CC' || ': ' ||  pCCRecipient || UTL_TCP.CRLF);
         UTL_SMTP.WRITE_DATA(v_connection_handle,
                               'SUBJECT' || ': ' ||  pSubject || UTL_TCP.CRLF);
       --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/mixed; ' || UTL_TCP.CRLF);
         UTL_SMTP.WRITE_DATA(v_connection_handle,
                             ' boundary= "' || 'BASE_DIR3.SECBOUND' || '"' ||
                             UTL_TCP.CRLF);
         UTL_SMTP.WRITE_DATA(v_connection_handle, UTL_TCP.CRLF);
         -- Mail Body
         UTL_SMTP.WRITE_DATA(v_connection_handle,
                             '--' || 'BASE_DIR3.SECBOUND' || UTL_TCP.CRLF);
         UTL_SMTP.WRITE_DATA(v_connection_handle,
                             'Content-Type: text/plain;' || UTL_TCP.CRLF);
         UTL_SMTP.WRITE_DATA(v_connection_handle,
                             ' charset=US-ASCII' || UTL_TCP.CRLF);
         UTL_SMTP.WRITE_DATA(v_connection_handle, UTL_TCP.CRLF);
         UTL_SMTP.WRITE_DATA(v_connection_handle, Pmessage || UTL_TCP.CRLF);
         UTL_SMTP.WRITE_DATA(v_connection_handle, UTL_TCP.CRLF);
         -- Mail Attachment
       UTL_SMTP.WRITE_DATA(v_connection_handle,
                             '--' || 'BASE_DIR3.SECBOUND' || UTL_TCP.CRLF);
        UTL_SMTP.WRITE_DATA(v_connection_handle,
                             'Content-Type: application/octet-stream' ||
                             UTL_TCP.CRLF);
         UTL_SMTP.WRITE_DATA(v_connection_handle,
                             'Content-Disposition: attachment; ' || UTL_TCP.CRLF);
         UTL_SMTP.WRITE_DATA(v_connection_handle,
                             ' filename="' || pfilename || '"' || --My filename
                             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);
       /* 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,
                             '--' || 'BASE_DIR3.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);
      EXCEPTION
        WHEN OTHERS THEN NULL;
        --return 1;
          UTL_SMTP.QUIT(v_connection_handle);
          RAISE;
      END;
    END;

    this is my smtp procedure
    CREATE OR REPLACE PROCEDURE PROD.SEND_SMTP_PUZZLE_DTKRY (pSender VARCHAR2,pRecipient VARCHAR2, pCCRecipient VARCHAR2, pSubject VARCHAR2,pMessage LONG,pattach BLOB,pfilename VARCHAR2) IS
      v_src_loc  BFILE := BFILENAME('BASE_DIR3', 'pajak.xls');
          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;
          crlf CONSTANT VARCHAR2(2):= CHR(13) || CHR(10);
      v_connection_handle  UTL_SMTP.CONNECTION;
        v_smtp_host          VARCHAR2(30) := 'mail.mayora.co.id'; --My mail server, replace it with yours.
        v_subject            VARCHAR2(30) := 'Your Test Mail';
        l_message            VARCHAR2(200) := 'This is test mail using UTL_SMTP';
      pcc varchar2(50);
      i number := 1;
      j number := 1;
      l_original_blob blob;
      l_compressed_blob blob;
    BEGIN
       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);
      l_original_blob     := pattach;
         l_compressed_blob   := TO_BLOB('1');
      UTL_COMPRESS.lz_compress (src => l_original_blob,
                                   dst => l_compressed_blob);
      --DBMS_LOB.FREETEMPORARY(l_compressed_blob);
      l_blob := l_compressed_blob;
         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, psender);
         UTL_SMTP.RCPT(v_connection_handle, precipient);
        if pCCRecipient is not null then
            if(instr(pCCRecipient,',') = 0) then
            utl_smtp.rcpt(v_connection_handle, pCCRecipient);
            else
            while(instr(pCCRecipient,',',i) > 0)
            loop
            pcc := substr(pCCRecipient,i, instr(substr(pCCRecipient,i),',')-1);
            i := i+instr(substr(pCCRecipient,i),',');
            utl_smtp.rcpt(v_connection_handle,pcc);
            end loop;
            pcc := substr(pCCRecipient,i,length(pCCRecipient));
            utl_smtp.rcpt(v_connection_handle,pcc);
            end if;
        end if;
         --UTL_SMTP.RCPT(v_connection_handle, v_cc_email_address);
         UTL_SMTP.OPEN_DATA(v_connection_handle);
         UTL_SMTP.WRITE_DATA(v_connection_handle,
                               'FROM' || ': ' ||  psender || UTL_TCP.CRLF);
         UTL_SMTP.WRITE_DATA(v_connection_handle,
                               'TO' || ': ' ||  precipient || UTL_TCP.CRLF);
         UTL_SMTP.WRITE_DATA(v_connection_handle,
                               'CC' || ': ' ||  pCCRecipient || UTL_TCP.CRLF);
         UTL_SMTP.WRITE_DATA(v_connection_handle,
                               'SUBJECT' || ': ' ||  pSubject || UTL_TCP.CRLF);
         --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/mixed; ' || UTL_TCP.CRLF);
         UTL_SMTP.WRITE_DATA(v_connection_handle,
                             ' boundary= "' || 'BASE_DIR3.SECBOUND' || '"' ||
                             UTL_TCP.CRLF);
         UTL_SMTP.WRITE_DATA(v_connection_handle, UTL_TCP.CRLF);
         -- Mail Body
         UTL_SMTP.WRITE_DATA(v_connection_handle,
                             '--' || 'BASE_DIR3.SECBOUND' || UTL_TCP.CRLF);
         UTL_SMTP.WRITE_DATA(v_connection_handle,
                             'Content-Type: text/plain;' || UTL_TCP.CRLF);
         UTL_SMTP.WRITE_DATA(v_connection_handle,
                             ' charset=US-ASCII' || UTL_TCP.CRLF);
         UTL_SMTP.WRITE_DATA(v_connection_handle, UTL_TCP.CRLF);
         UTL_SMTP.WRITE_DATA(v_connection_handle, Pmessage || UTL_TCP.CRLF);
         UTL_SMTP.WRITE_DATA(v_connection_handle, UTL_TCP.CRLF);
         -- Mail Attachment
       UTL_SMTP.WRITE_DATA(v_connection_handle,
                             '--' || 'BASE_DIR3.SECBOUND' || UTL_TCP.CRLF);
        UTL_SMTP.WRITE_DATA(v_connection_handle,
                             'Content-Type: application/octet-stream' ||
                             UTL_TCP.CRLF);
         UTL_SMTP.WRITE_DATA(v_connection_handle,
                             'Content-Disposition: attachment; ' || UTL_TCP.CRLF);
         UTL_SMTP.WRITE_DATA(v_connection_handle,
                             ' filename="' || pfilename || '"' || --My filename
                             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);
       /* 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,
                             '--' || 'BASE_DIR3.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);
      EXCEPTION
        WHEN OTHERS THEN NULL;
        --return 1;
          UTL_SMTP.QUIT(v_connection_handle);
          RAISE;
      END;
    END;
    is there a mistake?

  • How to access files from two computers on a network, one wired and one wireless?

    I cannot seem to access one computer from the other.  I have marked files for sharing, and both show the same work group.  How do I make sure both computers are installed on the router?

    Make sure that both computers can access the Internet through the router.
    If your router has a setting for "AP isolation", verify that it is set to "disabled".
    As long as you do the two things mentioned above, your router does not put up any barrier to file sharing.   So then the problem is not a router problem, it is a Windows problem, or a firewall problem.
    To check for firewall problem, first, make sure you can ping each computer from the other - if you cannot, then temporarily turn off your software firewall, including Windows Firewall, and see if that helps.
    If you still have problems after the firewall is off, then your problem is likely a Windows problem.   Make sure "file and printer sharing" is enabled on all your wireless adapters and ethernet cards.   If you continue to have problems, then usually the Windows support website has the best info on how to further proceed with fixing this type of problem.
    Hope this helps.

  • How to attach files in the new BT Yahoo system

    Can anyone tell me how to attach files to an email in the new system, please? I have a particular reason which is too complicated to go into here why occasionally I want to send files using web-mail rather than an email client (yes, I do know that's the best way). When I click the "attach" tab, I get an (apparently) helpful page which enables me to add several files at once. But there's no "continue" or "do it" button to get me back to the email I've started, and since ther's no tabs in the new system, I'm stumped.
    Solved!
    Go to Solution.

    Have you seen this thread? Not an elegant solution, but it appears to work for some bizarre reason.
    https://community.bt.com/t5/Email/Email-won-t-accept-attachments-error-18-temporary-It-isn-t/td-p/14...

  • How to attach files in the SMTP mail?

    Hi All
    Anyone know how to how to attach files into the mail configured
    with SMTP while changing the workstatus. The SMTP mail is working
    fine, but my requirement is to attach a file which is having static information
    like instructions for users or something like that.
    Please help me on this..
    My Version of BPC is MS 7.X
    Regards,
    Baijuchandran.B

    Have you seen this thread? Not an elegant solution, but it appears to work for some bizarre reason.
    https://community.bt.com/t5/Email/Email-won-t-accept-attachments-error-18-temporary-It-isn-t/td-p/14...

  • How to disable File Browse... item including browse button

    Hi All,
    How to disable file File Browse... item including browse button based on Apex Item Value.
    thanks,
    nr

    Hello Trent,
    >> Does the read only attribute in 4.0+ of the page item not suffice?
    It all depends on your actual scenario.
    If the show/hide condition is known pre-rendering, you can use the Application Builder ReadOnly attribute. In this case, the APEX engine actually creates a simple text display so the input field and the browse button will not be displayed at all (and not just grayed out). However, if you need to toggle the status of the item, like in the example, or the status depends on a user input, using the disable attribute is much simpler (If you start with ReadOnly item, you will have to create the file browse item yourself, using JavaScript, or submit/re-direct the page so it will be rendered with the file browse item).
    Regards,
    Arie.
    &diams; Please remember to mark appropriate posts as correct/helpful. For the long run, it will benefit us all.
    &diams; Author of Oracle Application Express 3.2 – The Essentials and More

  • Question Mark File

    The other day my computer froze and I hard to force restart, when I turned it back on, it came up with a question mark with a file flashing. I then restarted the computer and then it was fine. Today I woke my computer and straight away it came up with the question mark file. I then forced shutdown and then turned it back on, and it was fine. Why is this happening, and how can I stop this from happening in the future? Any help would be much appreciated.

    That is indicating that the Mac is not able to find a system file to boot from.
    Then follow direction at
    MacBook Air SMC and PRAM reset
    Make sure you have the system drive selected in System Preference as the boot drive

  • How a PDF file gets loaded on browser if it is large in size?

    I had a BHO of IE made in C#.
    Through this I want to know the Information of PDF file that is loaded on IE when we try to open a pdf link.
    For example if we click a link http://mca.gov.in/MinistryWebsite/dca/help/efiling/NewFormsFees.pdf and the PDF file NewFormsfees.pdf is of 1.5MB,
    the PDF is obtained as packet by packet (like, intially some 20kb, then again updating the intail 20kb file with next 20kb or 30kb until it reaches total 1.5MB), as this file can be obtained in temporary internet files folder, actually I want to know what the process was going on?
    How the PDF file is viewed in Internet Explorer?
    Can't we get the reference of that PDF file which is opened on browser through C# programming. If so, how can I get that?

    Not sure I see the problem. The file only needs to be in one place, you can link between folders.

  • How to mark flag for deletion for bulk of customers.

    Hi friends,
      GM..
    I hv a question , that how to mark flag for deletion for bulk of customers.Few function modules are there (eg. HRCA_CUSTOMER_DELETE ) which are going to 'XD06' transaction to set the flag for individual customers.
    But data is huge so it's not possible to go & mark the flag for deletion for  individual customers.So what is the solution for this.....
      waiting for ur reply....
    Thanx.
    Regards,
    Ajit.

    Hi Ajit,
      XD99 can be used as a appropriate mass deletion tool for customers .
    It is good for max 500 customers to mark for deletion, if you have more than that some times you may get dump.
    OR
    You can write a program to read an excel file into an internal table and call the function BUP_BUPA_MASS_DELETE to delete the customers.
    OR
    To mark the BP's for Delete use the following code sample.
    It marks the BP's for Delete and once you archive them delete them in bulk.
    data : BUPANUM type BU_PARTNER,
    RETMSG type ITMSG,
    ls_central type BAPIBUS1006_CENTRAL,
    ls_Central_X type BAPIBUS1006_CENTRAL_X.
    ls_central-CENTRALARCHIVINGFLAG = 'X'.
    ls_central-CENTRALBLOCK = 'X' .
    move-corresponding ls_Central to ls_Central_X.
    CALL FUNCTION 'BAPI_BUPA_CENTRAL_CHANGE'
    EXPORTING
    BUSINESSPARTNER = BUPANUM
    CENTRALDATA = ls_Central
    CENTRALDATA_X = ls_Central_X
    TABLES
    RETURN = RETMSG.
    if you give me brief i can help you out more.
    Thank you .
    Regards
    Ram

  • How to display file extensions

    Hi,
    I'm trying to get our Sharepoint 2013 server to show file extensions again and I've had no luck so far. I've been able to add an extra name column that shows the file extension (like ), but that name is not clickable anymore so I've ended up with one name
    that's a link and the same name next to it. This doesn't look good, especially when the users pick overly long file names.
    This (http://social.technet.microsoft.com/wiki/contents/articles/11161.how-to-display-file-extensions-in-a-sharepoint-document-library.aspx) seems to apply to Sharepoint 2007 only. I'm not sure which onet.xml file they mean and the default file has several
    occurences of "Name=”Created_x0020_Date”", or how adding
    Name=”File_x0020_Type”/> without an extra opening bracket would work.
    I've also found and tried this solution: http://social.technet.microsoft.com/Forums/sharepoint/en-US/59c15eee-9116-4aa1-8d16-32cd361c9a2f/show-file-extensions-in-document-library?forum=sharepointcustomizationprevious
    >>3. Edit the WebPartPages:XsltListViewWebPart so that the link contains the extension.
    >>a. Open SharePoint Designer and click on the desired document library.
    >>b. Open the View you want to change, which in most cases is "All Documents".
    >>c. Find the line that looks like this:
    >><xsl:value-of select="$thisNode/@FileLeafRef.Name" />
    >>d. Edit the line to look like this:  (the xsl:if tests to see if the suffix is not blank and then displays a '.' and the suffix)
    >><xsl:value-of select="$thisNode/@FileLeafRef.Name" /><xsl:if test="$thisNode/@FileLeafRef.Suffix!=''">.<xsl:value-of select="$thisNode/@FileLeafRef.Suffix" /></xsl:if>
    This doesn't seem to work with Sharepoint 2013 because the line <xsl:value-of select="$thisNode/@FileLeafRef.Name" /> doesn't seem to exist. Are there any other suggestions on how to get the file extensions to show?
    Thank you.

    Hi
    use these functions
    RIGHT (Text, Number)
    Return X characters from the right
    RIGHT(“The Quick Brown Fox”, 5)
    n
    SEARCH(Text1, Text2, Num)
    Returns the index of Text1 within Text2,starting the search at index Number
    Formula should be
    right([Name-column],search[".",[Name-column],1))
    More info regarding calculated columns
    http://junestime.wordpress.com/2013/02/12/sharepoint-calculated-column-formulas/
    Romeo Donca, Orange Romania (MCSE, MCITP, CCNA) Please Mark As Answer if my post solves your problem or Vote As Helpful if the post has been helpful for you.

  • Idoc-xi-file scenario.  how to display file in html format

    I am not sure whether this is a valid question.........but want to confirm as it was asked by somebody
    In idoc-xi-file scenario.......  how to display file in html format ??
    Thanks in advance
    Kumar

    Hi Vijayakumar,
    Thanks for your reply !! You mean to say I got to use XSLT mapping and also .htm and .html extension together to produce the html file ?? or it is sufficient to use any one of them to produce the html file ??
    Regards
    Kumar

  • How do I file a complaint about horrible, incompetent and negligent customer service?

    I might sound super rambling but I am very frustrated and just tired of explaining the situation over and over and over.
    On Wednesday, January 21st, I got a call from Verizon Loyalty Department about a "promotion", which I get $25 credit on each line if I upgrade with edge plan. I wasn't sure what phone to change, so I asked them to call me back on Friday. They called me on Thursday, but I couldn't get the call, so I called them on Friday and talked to the customer service. I wasn't still sure about the upgrades, so I asked them about the upgrades with $25 credit would still apply several weeks later if I decide to upgrade, the first representative whom I've talked to looked at my plan and said something like, "Yes, that is absolutely possible. I was looking through your plan, and since you are a loyal customer and ended your 2 year contract with us, I can give you $25 off on your each line. I asked them would I still get the $25 credit for each line when I upgrade to edge plan. He said yes because the $25 off that he is giving me is for the monthly charge and the edge plan $25 credit was for the equipment charges. So Month to Month $25 off was applied on the Jan 24th, and activated on 29th.
    After I finally decided to upgrade my phone, I called Verizon customer service the next week. I do not recall the exact day but on 28th or 29th I called to upgrade it, and the second representative also assured me that the credits were going to happen, and then he offered me to bump down my data to 6 gb from 8 gb to save money because I use less then 6 gb each month. I bumped down to 6gb loyalty plan so I was only paying $60 per month instead of $70 per month. The representative told me I would be only paying around $120 per month. I forgot to ask my sister what phone she wanted to change, so I didn't upgrade it right a way. So only the data plan changed on that day.
    I was extremely busy with my work for few weeks, and I finally called again to upgrade it, the third representative told me different old me that the previous representative was wrong about giving me another $25 credit when I upgrade with edge plan. So I ended up upgrading both of my lines with $25 credit on each line plus $60 for 6gb data. But she said I would be still paying less then what I normally pay, which is around $183. I upgraded and took me few days to receive my phone. I checked my bill and it was showing different than what I was told. I called again and explain all this thing again and the lady adjusted my data plan - 6gb loyalty plan for $50. She said she doesn't know what other representative was doing, but this will fix that I would only pay around $150-160 per month.  After I got my phone, I called verizon to activate my phone (I don't really remember it was before or after, I just talked to them too many times and they have changed my promotions and plans too many times in very short time). He also confirmed $25 credit off for each line, but there was one time tax fee that none of the representative has mentioned while I asked bunch of questions about the upgrading fee and how much it would cost on the first month and etc.)
    After all of that happened, I was settled and didn't think about the payment until I got $290 with only $15 credit on my bill. I called again and asked what happened and the representative told me she doesn't know why this happened and why the previous representatives told you something that weren't true. and I had to go through the explanation again. She said she fixed it and everything was taken care of.
    I checked my bill today. My plan was changed to $90 for 6gb and I was paying $30 more than I originally paying which was around $180 and $50 more than I was supposed to pay. I called the representative today, explained the previous situation and asked why this happened. Basically he told me that all the previous representatives were lying to me. Are you kidding me? They were lying to me? How am I suppose to know if he wasn't "lying" to me? He said only thing he can do is change back to my original plan and amount, and I would pay $6 more than what I used to pay which was about $183.. I asked me if I would get the the 8gb back. He told me that isn't possible. The change did not happen so far. I am tired of calling verizon and more tired of getting different answers from different representative.
    I am seriously concerning about changing my service to different carrier. I have to call the verizon every single month when there is a change in my plan. If they were really lying about the promotion and plan just to sell more service, they should be suspended or fired or something, and I need my money back for overcharged fee and need some kind of compensation for my wasted time and stress I got from this.

    Okay. You are just missing the whole point, and I am not saying anything after this. I did go to the website to read about the edge plan after I got a call from the loyalty department. I asked the questions on some parts I didn't understand (or was confused of) to the representatives. But my main question was whether I was getting $25 credit and in what conditions. They all answered differently to the same question. (My original question - Do I get the $25 credit with edge plan?- One rep. offered me that month to month $25 off before my upgrade. Other rep. confirmed $25 off plus $25 credit with edge and offered bumping down data plan to save extra money. Another rep denied $25 off plus $25 credit with edge but confirmed decrease in my monthly payment by bumping down the data plan. Other rep denied both. You see what I am talking about? I asked one question to begin with: am I getting the $25 credit with edge upgrade plan - and they are the one who offered me different promotions and offers) 
    I also left the part that I actually went to the website and 'researched' the different plans that all the representatives were talking about after I hung up on the phone each time. I joined the forum today because I wanted to know where and how I could file the complaints on verizon customer service after today's call. I should have been more clear on what I was asking, but I thought I was clear enough on my title "How do I file a complaint...?"  Yes I am angry at the fact I didn't get what I thought I was getting, but I am more frustrated the fact every single time I talked to the customer service I get an answer from the rep. I am on the phone, saying "Previous representative you've talked were wrong about this," or "They were lying." The representative, then, would fix my issue, but I would still get the conflicted bills. Don't I suppose to call the customer service to fix it? What's the customer service for if it's not for that?

Maybe you are looking for

  • Data and Dashboard Security using ROLES Variable in OBIEE 11g

    Hi all, I'm currently using OBIEE 11g. I'm wondering how to implement the security for data and dashboard in the 11g. Below is the sample of how the security matrix requirement when I use the 10g version. In 10g, we usually use GROUP (for the data fi

  • Nokia express 5800 bluetooth problem

    hi all my problem with my nokia 5800 express music is when i try to open the bluetooth it gives me a error message which says unable to preform blutooth operation and before it was already working , and i already upgraded the new version as try that

  • HT3986 Where I have to download ISO-Image to install Windows 7 at my iMac 27-inch?

    helo, I would like to install Windows 7 at my iMac, 27-inch. I've got a message that I should have ISO-Image. Is that right? Where I have to download ISO-Image? Thanks in advance for your answer. Regards, Melanie

  • E-commerce/music templates

    I have a web site and would like to add an on line store to sell CDs , singles music trax to download for a fee, and e-books to be downloaded for a fee. I would also like to be able to offer free music to download. All of the above is original music

  • What are the main reasons for SAP-HR Implementation Failures?

    Dear Consultants, Can some one shed the light on the following items: 1. At least 3 main reasons for failure of SAP-HR Implementations?