Text document search

I have 2 text files that I need to compare a child list and a parent list. The problem is leading zeros in one of the files. For example.
Child (600 mb)
123
134
4241
456Parent (1.5 gb)
0000123
00456
000789I have to find which numbers in the child list exist in the parent list. I would have just used a bash script and done a 'comm' on both the files, but the leading zeros is preventing me from this. So I decided to do this in java and I'd like to know if my logic seems correct (and if this would be the fastest way of doing it). Would it be faster to remove all the leading zeros from the both files, or would it be better to do something like this...
//looping through the parent list
//compare the lines and if they don't match continue
if ( childLine.elementAt(0) == 0 || parentLine.elementAt(0) == 0 ) {
   if ( childLine.length != parentLine.length ) {
      //trim leading zeros
      //compare again
}  else {
//continue through the loopLet me know if you need clarification. TIA.

prem1ers wrote:
I have 2 text files that I need to compare a child list and a parent list. The problem is leading zeros in one of the files. For example.
I have to find which numbers in the child list exist in the parent list. I would have just used a bash script and done a 'comm' on both the files, but the leading zeros is preventing me from this. So I decided to do this in java and I'd like to know if my logic seems correctAssuming that each line in both files is guaranteed to be a number, I would use Integer.parseInt() or Double.parseDouble() to convert the string to a numeric value and then compare those. However, unless you plan on reading one file in completely, or one file is known to be a subset of the other, the comparison logic is not straightforward.
I suggest you Google the 'diff' algorithm, which uses (as far as I remember) a "staircase" comparison. It may have you scratching your head for a while (as it did me :-)), but with files of that size it may be the best approach.
HIH
Winston
PS: 'comm' will only work if both files are sorted. If that is allowed, then of course the comparison is much more straightforward and would not require diff.
Edited by: YoungWinston on Nov 13, 2009 6:33 AM

Similar Messages

  • Using Oracle Text to search through WORD, EXCEL and PDF documents

    Hello again,
    What I would like to know is if I have a WORD or PDF document stored in a table. Is it possible to use Oracle Text to search through the actual WORD or PDF document?
    Thanks
    Doug

    Yes you can do context sensitive searches on both PDF and Word docs. With the PDF you need to make sure they are text and not images. Some scanners will create PDFs that are nothing more than images of document.
    Below is code sample that I made some time back to demonstrate the searching capabilities of Oracle Text. Note that the example makes use of the inso_filter that is no longer shipped with Oracle begging with Patch set 10.1.0.4. See metalink note 298017.1 for the changes. See the following link for more information on developing with Oracle Text.
    http://download-west.oracle.com/docs/cd/B14117_01/text.101/b10729/toc.htm
    begin example.
    -- The following needs to be executed
    -- as sys.
    DROP DIRECTORY docs_dir;
    CREATE OR REPLACE DIRECTORY docs_dir
    AS 'C:\sql\oracle_text\documents';
    GRANT READ ON DIRECTORY docs_dir TO text;
    -- End sys ran SQL
    DROP TABLE db_docs CASCADE CONSTRAINTS PURGE;
    CREATE TABLE db_docs (
    id NUMBER,
    format VARCHAR2(10),
    location VARCHAR2(50),
    document BLOB,
    CONSTRAINT i_db_docs_p PRIMARY KEY(id)
    -- Several notes need to be made about this anonymous block.
    -- First the 'DOCS_DIR' parameter is a directory object name.
    -- This directory object name must be in upper case.
    DECLARE
    f_lob BFILE;
    b_lob BLOB;
    document_name VARCHAR2(50);
    BEGIN
    document_name := 'externaltables.doc';
    INSERT INTO db_docs
    VALUES (1, 'binary', 'C:\sql\oracle_text\documents\externaltables.doc', empty_blob())
    RETURN document INTO b_lob;
    f_lob := BFILENAME('DOCS_DIR', document_name);
    DBMS_LOB.FILEOPEN(f_lob, DBMS_LOB.FILE_READONLY);
    DBMS_LOB.LOADFROMFILE(b_lob, f_lob, DBMS_LOB.GETLENGTH(f_lob));
    DBMS_LOB.FILECLOSE(f_lob);
    COMMIT;
    END;
    -- build the index
    -- Note that this index differs than the file system stored file
    -- in that paramter datastore is ctxsys.defautl_datastore and not
    -- ctxsys.file_datastore. FILE_DATASTORE is for documents that
    -- exist on the file system. DEFAULT_DATASTORE is for documents
    -- that are stored in the column.
    create index db_docs_ctx on db_docs(document)
    indextype is ctxsys.context
    parameters (
    'datastore ctxsys.default_datastore
    filter ctxsys.inso_filter
    format column format');
    --search for something that is known to not be in the document.
    SELECT SCORE(1), id, location
    FROM db_docs
    WHERE CONTAINS(document, 'Jenkinson', 1) > 0;
    --search for something that is known to be in the document.  
    SELECT SCORE(1), id, location
    FROM db_docs
    WHERE CONTAINS(document, 'Albright', 1) > 0;

  • Why won't Spotlight find a Text document in Search Results a 2nd time?

    On 10.5.8:
    I can type a search word into Spotlight.  It will show results.  I then open let's say an Appleworks text document from that search.  Then I close that document and retry the same search: Now that same document will not show up in the search results for that exact word and it WILL NEVER show up again in search results.  In other words after a file has been found and opened in search once , it will never sppear in search results again for the same word.
    If you have an idea how to fix this please tell me.  Thank you

    If anyone else has any idea please tell me.  I already tried what is outlined in http://support.apple.com/kb/HT2409 very carefully and it didn't fix it.  I have also "repaired disk permissions" and that didn't work.
    I specifically want to be able to search my Appleworks documents.  Currently I can create an Appleworks document, put "widget" in the document, save it, search for "widget" and it won't even show up in search results so something is seriously amiss.  So I was wrong in the question title, coz it won't even show up one time!
    Baring that does anyone know a search program that works with Mac that I can download and use? 
    The funny thing is that I have already tried about 3 of those and guess what?  It still will not show those Appleworks documents in the search results.  Given that fact, can anyone think of a reason why my Appleworks documents never show up in any type of search results?
    Thank you

  • How can you detect all words and phrases in a text document using java?

    Is there some java API which would help me extract all words, multi-word phrases, punctuations in an English text document? I would also like to get the order in which they appear with sentence detection. I've been searching for this in java NLP packages, but haven't found anything yet.
    Any help would be appreciated.
    Thanks,
    Ajith

    I don't understand what you actually want, but if your on about having a file and splitting it up into sentences then i would look into either psudocode or parsing strings, theres not a java api as far as i know that does anything like you want, you would have to write it yourself or find a project someone else has made.

  • How can I extract XML from a text document?

    I have tons of text documents containing useless text and a section of XML. I would like to use either Mac Automator or Apple Script to pull the XML section out and place it in a new document with a .xml extension. How can I do that?
    Here is a sample of the XML section that I need to pull:
    - ---Start ACNS XML
    <?xml version="1.0" encoding="UTF-8"?>
    <Infringement xsi:schemaLocation="http://www.movielabs.com/ACNS/ACNS2v1.xsd" xmlns="http://www.movielabs.com/ACNS" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">           <Case>
    <ID>22242387629</ID>
    <Status>OPEN</Status>
    <Severity>Normal</Severity>
    </Case>
    <Complainant>
    <Entity>MPAA Search and Notify</Entity>
    <Contact></Contact>
    <Address></Address>
    <Phone>5555555555</Phone>
    <Email>[email protected]</Email>
    </Complainant>
    <Service_Provider>
    <Entity>Some Place, Somewhere</Entity>
    <Contact></Contact>
    <Address>Some Place, Somewhere  </Address>
    <Phone></Phone>
    <Email>[email protected]</Email>
    </Service_Provider>
    <Source>
    <TimeStamp>2011-12-02T23:41:59.94Z</TimeStamp>
    <IP_Address>127.0.0.1</IP_Address>
    <Port>64153</Port>
    <Type>P2P</Type>
    <SubType BaseType="P2P" Protocol="BitTorrent" />
    <UserName></UserName>
    <Number_Files>1</Number_Files>
    </Source>
    <Content>
    <Item>
    <TimeStamp>2011-12-02T23:41:59.94Z</TimeStamp>
    <AlsoSeen Start="2011-12-02T23:40:00.11Z" End="2011-12-02T23:41:59.94Z"></AlsoSeen>
    <Title>asdfasdf (2011)</Title>
    <Artist></Artist>
    <FileName>asdfasdf (2011) DVDRip XviD-MAXSPEED</FileName>
    <FileSize>1580908467</FileSize>
    <Type>Video</Type>
    <Hash Type="SHA1">8FB7B1F4984AB6E0746B43D2B82D4ED8102984D5</Hash>
    </Item>
    </Content>
    <History></History>
    <Notes></Notes><Type Retraction="false">DMCA</Type>
    <Detection>
    <Asset>
    <OriginalAssetName>asdfasdf (2011)</OriginalAssetName>
    </Asset>
    <ContentMatched Audio="false" Video="true" Text="false" />
    <HashMatched>true</HashMatched>
    <VerificationID>Manual and automated watermark verification</VerificationID>
    </Detection>
    <Verification>
    <VerificationLevel Type="DT">2</VerificationLevel>
    </Verification>
    <TextNotice><![CDATA[12-03-2011

    XML portion always starts with <Infringement and ends with </Infringement>.
    Actually, it doesn't... the XML starts with the <?xml> tag, but that's just me being pedantic
    Given what you've said, though, it's easy to extract the XML data from a given block of text.
    First, read the source data:
    set theText to read file "path:to:the:file"
    Then you can extract the XML via something like:
    set start_tag to "<?xml"
    set end_tag to "</Infringement>"
    set start_of_data to offset of start_tag in theText
    set end_of_data to (offset of end_tag in theText) + (-1 + (length of end_tag))
    set theXML to text start_of_data through end_of_data of theText
    Now you can write that data to a file:
    set theFile to open for access file ((path to desktop as text) & "output.xml" as text) with write permission
    set eof theFile to 0
    write theXML to theFile starting at 0
    close access theFile
    If you have multiple files you can either run this in a loop that iterates over the files, or save the script as a droplet, then drop the files onto the script icon. Let me know if you need help with that, too.

  • Best way to store a text document

    I have many (100+) contracts of about 100 pages each. What is the best way to store this data so I can search for text within a contract and search for text across contracts? Filestream? I think I want to be able to do a full text search for strings
    within a documents and across documents..
    Thanks in advance....
    Rich

    Hi,
    If you are using SQL Server 2012, I recommend you to use the FileTable to store the text documents. The FileTable feature of SQL Server 2012 is an enhancement to the FILESTREAM feature which was introduced in SQL Server 2008, FileTable lets
    an application integrate its storage and data management components, and provides integrated SQL Server services - including full-text search and semantic search. Before using
    the FileTable feature, you need to
    enable the FILESTREAM feature on the instance of SQL Server 2012. In addition, you need to create UNIQUE index and FULLTEXT index for the FileTable in order to do full text search.        
    About how to use the FileTable, you can review the following links:
    http://www.mssqltips.com/sqlservertip/2667/filetable-feature-in-sql-server-2012/
    https://www.simple-talk.com/sql/database-administration/full-text-searches-on-documents-in-filetables/
    Thanks                 
    Lydia Zhang

  • Recommend document search and landscape

    Thousands of people have asked for landscape mode typing support in iTunes reviews. Obviously this is essential to prevent carpal tunnel syndrome for any kind of long term typing. I think it's ironic that it's available for texting, web browsing and so forth but not for pages which requires a great deal more typing.
    Also, I think it would be great to see search functionality integrated with iphone search field.  I wanted to use pages for portable note taking, but it's far too time consuming to search dozens of documents full of notes manually for the thing I'm looking for.
    Both these features are incuded in the FREE and extremely ghetto iphone notes app that came with the phone, and I think theres no reason not to have it in pages.
    If anyone else reading agrees please let apple know at:
    http://www.apple.com/feedback

    Hello Priya,
    Knowledge Search is used to search for solutions to problems using the Software Agent Framework (SAF) to search against the Solution Database (SDB) or other knowledge repositories that you configure (such as Case Management or Service Tickets).
    The Document Search is for searching for related documents that might be linked to the confirmed account using Content Management.
    You can find detailed information and configuration instructions in the online help.
    Warm regards,
    John

  • Can't print text documents

    For a little over a week I have been unable to print text documents from either of my printers (Lexmark Z-23 and HP PSC 1410). I had noticed that the sharpness of text had been declining-but I was in denial, sort of. Now, when printing text documents from the computer, the printout is garbled, streaked, and unreadable. Sometimes the first half of printed document will be okay but the second half will be all garbled and streaked.
    I have tried to print from Pages, Appleworks, and TextEdit. No success in any of them. I have converted a page of my word processing document to pdf format, but it does not print out properly in pdf, either.
    Here's the weird part: the HP will produce good copies (copy function) I am able to print out beautiful iCal (calendar) pages; some web-based information (like maps with directions) comes out great; and even "screen-shots" (or pictures) of text documents are fine; I just can't print text-based documents.
    So far, I have cleaned and calibrated the printers; they have enough ink. I have uninstalled then reinstalled the software and drivers.
    Help?
    ~~PM
    iMac G5 2GHz PPC   Mac OS X (10.4.8)   still miss my Indigo G3

    my guess is, it's not your printers that are the
    problem but maybe a font problem.
    Have you done anything with fonts lately?
    Why, yes.
    Just today, in FontBook I validated fonts and
    resolved duplicates, whatever that means. I also
    "turned off" a bunch of fonts that I never use. Then
    I restarted, reset PRAM, and repaired permissions in
    Disk Utility.
    I still have the problem.
    What other kinds of things can you do with fonts?
    ~PM, wife of GM
    Glenn-- Here is a great article written by a fellow apple forum frequenter:
    http://www.jklstudios.com/misc/osxfonts.html
    Maybe you can read it or weed thru it and make sure you haven't turned off any necessary fonts that you don't use but the system finds necessary. Especially "TextEdit" uses I think exclusively system fonts and if you've turned them off... It's just good to know which fonts are for what before you disable certain ones.
    I believe fonts can definitely cause these sorts of problems, especially if you've disabled system fonts.

  • How do I remove a green background from a pdf text document?

    I posted this question yesterday and received one reply.  I wanted to respond to the reply, but couldn't find a link or "button" to click on that would enable me to do that, so I'm doing it here.  As I'm new to this site, please advise me where the link is, if there is one. 
    Please correct me if I'm wrong, but I thought that PDF was proprietary, with one "owner" and that PDF was PDF, so it didn't matter what program you had on your computer because PDF was universal.  Second, when I googled Nuance pdf, I was directed to this site, specifically the "Create, Edit and Export PDF's" section.  Third, I also have Adobe Acrobat with pdf and a bunch ofother Adobe products on my computer.  So, that brings me back to my original question,  how do I get rid of a green background on a pdf text document, so I don't use up all my ink when I print it.  Thanks for your patience and help.

    I still use Office 2008 but have not encountered that issue. However, as Office is not an Apple product, I strongly recommend asking in the Microsoft Office:Mac forums here:
    Office for Mac
    Everyone there is a Mac user AND an Office user, something you can't say about Apple's forums. You will get the fastest help there and I think you will find the contributors more than helpful.

  • How can I export a PDF form and the filled in fields to a text document?

    OK, so I have a situation.  I need people to be able to open a reader-enabled PDF form, fill out the form fields, and then export the filled-out PDF form to a basic text document.  This seems easy since Adobe Reader can save to text.  The problem is, the answers in the form fields do not show in the text file!  Each radio button shows as yes and no, and there is no indication in the text file which one was selected.  In addition, the form fields are not exported next to the questions on the form.  I tried flattening the form in Adobe pro, and that did not work either.
    How can I create a fillable form for Adobe Reader, and then let the user export their answers AND the questions on the form to plain text?

    OK, so I tried this as a starting point, and assigned it to a button on page 3 of the form.
    p=0;
    console.show();
    console.clear();
    for (var j = 0; j < this.getPageNumWords(p);j++) {
          var word = this.getPageNthWord(p,j,false);
          console.println(word);
    This gives me all the words on the first page not in fields, and each word goes on a separate line.  Now, characters in the document such as "&" or ")" cause the rest of the word to go on the next line down.
    Next, I tried this:
    console.show();
    console.clear();
    for (var j = 0; j < this.getPageNthWord(j);j++)
          var word = this.getPageNthWord(j,false);
          console.println(word);
    This only gives me the first word on page 3, the page the button is placed?
    What I need to do is run the code and place words on one line until the code hits a keyword "var cKeyWord1 = “Key1” for example?, then insert the value of field one, Start a new line in the console, restart the code where it left off until it hits the next key word "var cKeyWord2 = “Key2”, insert the value of field two, add a new line, and on and on.
    Is this possible?

  • Hi, i'm new in my macbook air! i miss deleted my external hard disk few day ago and i had spend 45GBP to recovery the data! but the problem now is the text document is locked i not even can read and open the document! any solution??? urgent

    hi, i'm new in macbook air, i was miss formatted and delete all my data on my external hard disk (pic, microsoft office document and etc). i spend 45gbp to install the software fianlly recovery all the data! but why my text document can't open and read?? what's is the problem?? because i'm still a student i hv alot of assignment file cant be read and open but nect week is the deadline of submission and i have no back up of all document. So any useful suggetion solution?? i've try the way alt+command+i to unlock but it doesn't work!! help! URGENT

    when i open the file it appear some digits and word tat i couldn't understand. and the tool bar stated "Locked"
    example: 422583321135679999=@ABBCCEEFGHIKJHMIFFFHFHDCEGFFBI\cb[C?@<=>=;;;<;>>>?<>B@>?==< =>?>@A?>?@<==<;:::899:89>:9;99;9:;<;66988;359<==9987789:8::9;>>=799<>:88856::;<: 99====<::98988;;96677998887866:89::;99647878665797698899;8466646763/121120+031/1 2/.1.,.0//.+/,+.0220/0.-/21-++--1---+-.+-.--/=Pdoxx
    the digits and words tat appear on my document!
    i used MiniTool Mac data to recovery! actually b4 tat i'm using hp computer and i saved all my files in my external hard disk. When i using mac i installed the NTFS-3G but it still cant read my external hard disk and i miss deleted and formatted all the data in my external hard disk. after tat my friends suggest me to purchased the software to recover all the data,finally i got all my photo back except my microsoft office files.
    i purchased miscrosoft office software for my mac yesterday but the files still cant be read and couldnt recover back the document tat i saved! i was upset to spent alot of money but still cant get my document back!!

  • IC Webclient: document search not showing documents for contacts

    Hi,
    I am working with SAP CRM 4.0, SP7.
    I have created an account(a001) with three contacts(c001, c002, c003). I have attached a document(d001) to account a001 and two documents(d002, d003) to contact c001.
    Now when I open the IC-Web client UI and go to 'Identify Account' and enter a001 in the Account ID and do a search account, I see three contacts(c001, c002, c003) in the result list of account. When I click in the contact(c001) and go to 'Document Search', it shows only documents attached to a001 and there is no way I can see the documents attached to c001.
    Can anyone please let me know, how do I see the documents attached to contact c001 in this case?
    Please note that if I enter c001 in the Account ID of 'Identify Account' and then go to 'Document Search', then it shows me the documents d002 and d003. But, I want to see the contacts documents entering from accounts.
    Thanks in advance,
    Kunal

    Hello Hari,
    Sorry for the delayed Response, will check this BADI and if it helps then I will update this thread
    Thanks
    Chandu

  • What is the content type for a plain text document.

    Hello :)
    I want to generate a plain text document for the user to either see, or to save to disk directly. What do I out for the setContentType MIME type for this?
    Thanks
    Jeff.

    text/plain
    zakir

  • Sending a text document as pdf by email.

    Hi,
    I have a plain text document that needs to be send as a pdf document by email. The line type of the text document is PC408-linda, which is 132-character length. I am trying to use the FM ‘SO_NEW_DOCUMENT_ATT_SEND_API1’ for sending the document which uses structure ‘SOLISTI1’ for sending the document. The line size of SOLISTI1 is 256 characters. I tried to send 132-character length internal table instead of the given structure for the FM, it didn’t work. Later, I put the 132-charcter line into the 256-character length line, which works well. But, I have a problem when the outgoing system converts the 256-character length into pdf document. It breaks the line.
    Can you please suggest me how can I fit this 132-chracter line in the above FM or Is there any alaternateive FM for sending this 132-character lines, which will fit in the pdf format.
    Lokman

    Hi,
    Here I am sending the part of the code that is sending the text document by using FM. Internal table $form conatins 132-character length text document. I want to send this document so that converted pdf appears similar to text line.
    FORM send_email USING $form TYPE tt_form.
    DATA:
        $form_wa1  LIKE pc408.
    data: paydate(15) type c.
    Data  date like sy-datum.
    *date = sy-datum.
    Email Subject.
    DATA: s1(30)  TYPE c VALUE  ' Avis - Bulletin de paie du ',
            s3(50)  TYPE c .
    loop at $form into $form_wa1.
    if sy-tabix eq 10.
    MOVE $form_wa1-linda+5(10) TO paydate.
    endif.
    objtxt-line = $form_wa1-linda.
    append objtxt.
    endloop.
    CONCATENATE s1 paydate INTO s3 separated by SPACE.
    *Email message body.
    DATA: c1(30)  TYPE c VALUE  'Vous trouverez ci-joint',
          c2(50) type c value ' votre bulletin de paie du  ' ,
          c type c value '.',
          c4(85)  TYPE c.
    CONCATENATE c1 c2 paydate c INTO c4 separated by SPACE.
    data: a1(40) type c value 'À ouvrir avec le programme "Notepad" ',
       a2(47) type c value ' ou "Wordpad" pour le visualiser correctement.',
       a3(90) type c.
      CONCATENATE a1 a2 INTO a3.
    data: b1(45) type c value ' Pour imprimer, veuillez vous ',
        b2(45) type c value ' assurer que les marges (droite et gauche)',
        b3(35) type c value ' sont restreintes au minimum.',
       b4(200) type c.
       CONCATENATE a3 b1 b2 b3 INTO b4.
    Main Text
    data wa_form like PC408 .
    Email Subject
    docdata-obj_name = 'TEST_ALI'.
    docdata-obj_descr = s3.
    Email Message
    objtxt = 'Bonjour,'.
    append objtxt.
    objtxt = ' '.
    append objtxt.
    objtxt = c4.
    append objtxt.
    objtxt = ' '.
    append objtxt.
    objtxt = b4.
    append objtxt.
    describe table objtxt lines tab_lines.
    read table objtxt index tab_lines.
    docdata-doc_size = ( tab_lines - 1 ) * 255 + strlen( objtxt ).
    clear objpack-transf_bin.
    objpack-head_start = 1.
    objpack-head_num = 0.
    objpack-body_start = 1.
    objpack-body_num = tab_lines.
    objpack-doc_type = 'RAW'.
    append objpack.
    Create Message Attachment
    Write Packing List (Attachment)
    loop at $form into $form_wa1.
    *if sy-tabix eq 10.
    *MOVE $form_wa1-linda+5(10) TO paydate.
    endif.
      objtxt-line = $form_wa1-linda.
      append objtxt.
    endloop.
    att_type = 'RAW '.
    describe table objtxt lines tab_lines.
    read table objtxt index tab_lines.
    objpack-doc_size = ( tab_lines - 1 ) * 255 + strlen( objtxt ).
    clear objpack-transf_bin.
    objpack-head_start = 6.
    objpack-head_num = 0.
    objpack-body_start = 6.
    objpack-body_num = tab_lines.
    objpack-doc_type = att_type.
    objpack-obj_name = 'ATTACHMENT'.
    objpack-obj_descr = 'Attached Document'.
    append objpack.
    Create receiver list
    reclist-receiver = wa_pa0105-usrid. "<-- change address
    *reclist-receiver = '[email protected]'. "<-- change address
    reclist-rec_type = 'U'.
    append reclist.
    *reclist-receiver = sy-uname. "<-- change internal user
    *reclist-rec_type = 'B'.
    *append reclist.
    Send Message
    CALL FUNCTION 'SO_NEW_DOCUMENT_ATT_SEND_API1'
    EXPORTING
    document_data = docdata
    PUT_IN_OUTBOX = 'X'
    IMPORTING
    SENT_TO_ALL =
    NEW_OBJECT_ID =
    tables
    packing_list = objpack
    OBJECT_HEADER = objhead
    *CONTENTS_BIN = objbin
    CONTENTS_TXT = objtxt
    OBJECT_PARA =
    OBJECT_PARB =
    receivers = reclist
    EXCEPTIONS
    TOO_MANY_RECEIVERS = 1
    DOCUMENT_NOT_SENT = 2
    DOCUMENT_TYPE_NOT_EXIST = 3
    OPERATION_NO_AUTHORIZATION = 4
    PARAMETER_ERROR = 5
    X_ERROR = 6
    ENQUEUE_ERROR = 7
    OTHERS = 8
    refresh: objtxt,
             objpack,
             objhead,
             reclist.
    IF sy-subrc <> 0.
    message ID 'SO' TYPE 'S' NUMBER '023'
    with docdata-obj_name.
    ENDIF.
    *write: / 'End of Program'.
    ENDFORM.                    " send_email

  • HT2476 How do I copy the names of files in a finder window to a text document?

    How do I copy the names of files in a finder window to a text document?

    If using Apple TextEdit Applications: Select all the files in the finder window, choose copy. Go to the TextEdit window and from the menu choose Edit then choose Paste and Match Style from the Edit drop down menu.

Maybe you are looking for

  • "Extra" Internal Hard Drives won't mount - swap, /, and /home work.

    Hello All, *** I'm updating my post finally. Sorry it's so long, I'm not entirely sure what is and isn't relevant. *** Also I think it's a mix up with RAID causing the issue, as I'll address below, but in case I'm wrong I wanted to include the other

  • Import from a camera that contains mts files

    what is the required file structure for FCE to import from a camera that contains mts files

  • Clean up itunes folders in windows7

    Hello all,  I have recently uninstalled and reinstalled itunes to the computer a few times.  There are now multiple "Previous itunes library", "album artwork" and "itunes media" folders on the computer. I like to keep things organized.  In the left t

  • How to manage special,invalid characteristics

    Hi, Whenever we face any invalid characteristics, special characteristics, How can we allow them apart from allowing them in RSKC. Is there any ABAP code to be performed to allow them. What is the maximum limit of chars allowed in RSKC.

  • Amendments In billing Document

    Hii Friends i made a condition type ZPR0 in order (attb: Manual Priority during sales order creation) ,Now in Billing i don't want to change condtion values/Rate by user's ,How can i prevant this to modify in billing ..I don't think authorisation can