How to expedite OCR process?

Hi,
A. How to expedite the OCR process for :
1. One 50 MB, it takes  45 minutes to 1 hour minutes
2. Multiple files size of 13 GB. It takes 20 hours to complete. And it has increased to 50 GB
B. What is the best PC specification for me to experdite the OCR process. We have to let the machine running for days in order to complete the job
My machine specification:
File Type
File Size
OCR performed for one file or batch of files
Total folder size OCR performed
Machine Type(please obtain from Wardah)
Time taken to OCR
Software used(please obtain from Wardah)
PDF
For 1 file approx. 50MB
OCR can be perform in 2 ways:
One by one- it needs to be monitor if the OCR is complete to continue with other file.
OCR in batch-, no need to monitor and is not limited to how many files. Usually done per volume or batch of files with large size.
Unlimited
CPU: Intel® Core ™2 Duo.
Memory: 2GB
Hard disk free space: 49.65GB/162.93GB
OS: Windows 7 Professional
For 1 file (50MB) it’s takes 45 minutes to 1 hour to finish.
Adobe Acrobat 9 Pro Extended Version 9.5.5

Yes send step is wating for an transport ack. I have 1ToN mapping and foreach block.
Time for deadline branch  is 5 min
Deadline branch  is executing in different periods of time for each message.
[Send step] PE     AENGINE     @5F@     @DF\QProcessed successfully@     @8Q\QStill awaiting acknowledgment           @     26.10.2005     18:41:29
[deadline step] PE     AENGINE     @5F@     @DF\QProcessed successfully@     @5F@     26.10.2005     19:02:24
[Send step] PE     AENGINE     @5F@     @DF\QProcessed successfully@     @8Q\QStill awaiting acknowledgment           @     26.10.2005     19:02:25
[deadline step]PE     AENGINE     @5F@     @DF\QProcessed successfully@     @5F@     26.10.2005     19:09:24
Message was edited by: Denis Ivanov

Similar Messages

  • I just bought a iTunes card and its not accepting it.  It already sent it to the support team and they said they were going to get back to my within 24 hours and i am trying to buy a program in the app store for work.  How can I expedite this process?

    I just bought a iTunes card and its not accepting it.  It already sent it to the support team and they said they were going to get back to my within 24 hours and i am trying to buy a program in the app store for work.  How can I expedite this process?

    Has it been 24 hours?
    I take it this was a gift card.  iTunes Store:  Invalid, Inactive, or Illegible codes http://support.apple.com/kb/TS1292 - gift cards
    I don't know if this provides an alternative means: https://expresslane.apple.com ; select 'iTunes' in the first column; 'iTunes Store' in the second column
    If you are really desperate you could buy the app yourself, then request reimbursement.

  • Automating the OCR process

    How can I automate (Programmatic) the OCR process i have a number of documents that i want to search but it would take for ever if i Should do it one by one

    Have you considered using a Batch Sequence ? There's a OCR sequence already listed in the options list.

  • Expedite impdp process

    Hi All,
    We are importing Oracle Application 11i database from AIX 5.3 to RHEL5, Database version 10.2.0.4
    Following MetaLink note: 10g Release 2 Export/Import Process for Oracle Applications Release 11i [ID 362205.1]
    Having a database size of 132.99 GB we generated the export dump file of size 32 GB from the source. Import process took around 36 hours
    Our Linux machine has 2 CPU’s with 8 cores
    How to expedite the import process??
    Kindly suggest
    Thanks
    SK

    Hi,
    I also had the same issue with impdp and have raise a service request with Oracle support. When I ran an strace on the process, i am getting these messages:
    times(NULL) = 466841684
    semtimedop(6782976, 0x7fff1c25fc70, 1, {1, 0}) = -1 EAGAIN (Resource temporarily unavailable)
    semtimedop(6782976, 0x7fff1c25fc70, 1, {1, 0}) = -1 EAGAIN (Resource temporarily unavailable)
    semtimedop(6782976, 0x7fff1c25fc70, 1, {1, 0}) = -1 EAGAIN (Resource temporarily unavailable)
    getrusage(RUSAGE_SELF, {ru_utime={3, 477471}, ru_stime={0, 171973}, ...}) = 0
    getrusage(RUSAGE_SELF, {ru_utime={3, 477471}, ru_stime={0, 171973}, ...}) = 0
    semtimedop(6782976, 0x7fff1c25fc70, 1, {1, 0}) = -1 EAGAIN (Resource temporarily unavailable)
    semtimedop(6782976, 0x7fff1c25fc70, 1, {1, 0}) = -1 EAGAIN (Resource temporarily unavailable)
    getrusage(RUSAGE_SELF, {ru_utime={3, 477471}, ru_stime={0, 171973}, ...}) = 0
    getrusage(RUSAGE_SELF, {ru_utime={3, 477471}, ru_stime={0, 171973}, ...}) = 0
    getrusage(RUSAGE_SELF, {ru_utime={3, 477471}, ru_stime={0, 171973}, ...}) = 0
    times(NULL) = 466842185
    times(NULL) = 466842185
    I also on OEL 5.4
    I tried altering semaphore settings to the following value, but did not help much..
    kernel.sem = 5010 641280 5010 128
    Regds,
    ARS

  • How to do parallel processing with dynamic internal table

    Hi All,
    I need to implement parallel processing that involves dynamically created internal tables. I tried doing so using RFC function modules (using starting new task and other such methods) but didn't get success this requires RFC enabled function modules and at the same time RFC enabled function modules do not allow generic data type (STANDARD TABLE) which is needed for passing dynamic internal tables. My exact requirement is as follows:
    1. I've large chunk of data in two internal tables, one of them is formed dynamically and hence it's structure is not known at the time of coding.
    2. This data has to be processed together to generate another internal table, whose structure is pre-defined. But this data processing is taking very long time as the number of records are close to a million.
    3. I need to divide the dynamic internal table into (say) 1000 records each and pass to a function module and submit it to run in another task. Many such tasks will be executed in parallel.
    4. The function module running in parallel can insert the processed data into a database table and the main program can access it from there.
    Unfortunately, due to the limitation of not allowing generic data types in RFC, I'm unable to do this. Does anyone has any idea how to implement parallel processing using dynamic internal tables in these type of conditions.
    Any help will be highly appreciated.
    Thanks and regards,
    Ashin

    try the below code...
      DATA: w_subrc TYPE sy-subrc.
      DATA: w_infty(5) TYPE  c.
      data: w_string type string.
      FIELD-SYMBOLS: <f1> TYPE table.
      FIELD-SYMBOLS: <f1_wa> TYPE ANY.
      DATA: ref_tab TYPE REF TO data.
      CONCATENATE 'P' infty INTO w_infty.
      CREATE DATA ref_tab TYPE STANDARD TABLE OF (w_infty).
      ASSIGN ref_tab->* TO <f1>.
    * Create dynamic work area
      CREATE DATA ref_tab TYPE (w_infty).
      ASSIGN ref_tab->* TO <f1_wa>.
      IF begda IS INITIAL.
        begda = '18000101'.
      ENDIF.
      IF endda IS INITIAL.
        endda = '99991231'.
      ENDIF.
      CALL FUNCTION 'HR_READ_INFOTYPE'
        EXPORTING
          pernr           = pernr
          infty           = infty
          begda           = '18000101'
          endda           = '99991231'
        IMPORTING
          subrc           = w_subrc
        TABLES
          infty_tab       = <f1>
        EXCEPTIONS
          infty_not_found = 1
          OTHERS          = 2.
      IF sy-subrc <> 0.
        subrc = w_subrc.
      ELSE.
      ENDIF.

  • How to call BPEL process in JSP page

    Hi
    I am new to BPEL.please help me how to call BPEL process in JSP page.
    Thank You...

    Check this thread ....
    How can i call asyncronous BPEL process from Java Class????
    Tom..

  • How to configure quality process with batch management.

    Dear Friends,
                we have a scenario,our client receive goods with 101movement type  into quality inspection stock.
    once stock is passed quality check stock,then we will take into unrestricted stock with 321 movement type.
    failed in quality test will  be rejected.please give me suggestion how to map the scenario.while i am testing
    the process in my sandbox,its asking batch number.its not allowing me to post unrestricted stock with 321
    movement type.how to make batch as optional in this scenario?if batch is mainted for the material,how to
    configure the process.we are not using QM module.
    please suggest me.
    Regards,
    Varun

    In Batch management config in Logistic general, Check for the movement type 101 & 321 whether batch creation has been activated to Manual, Automatic, or no creation. In your case it looks like for mvt 321 batch creation is set to manual & for 101 no creation.
    if batch creation is set to manual, enter a manual batch no & proceed.
    But to cross verify wheter 101 has generated batch or not please check the stocks in MMBE.
    Hope this helps.
    Regards
    Mithun

  • How does the GR processing time affect the scheduling of the process order & the latest start date in the operation.

    Hi
    Can anyone explain  how does the GR processing time affect the scheduling of the process order & the latest start date in the operation overview.

    Hi
    GR processing time means number of workdays required after receiving the material in storage.
    Check this link:GR Processing time
    Regards,
    Anupam Sharma

  • How much ram and processing power in my imac will meet my graphic design needs?

    Hi,
    I'm in the market for a new imac. I'm trying to figure out how much ram I'll need and which processor will be sufficient for my graphic design needs.
    I'm gonna need it to be robust enough to have InDesign, Photoshop, and Illustrator open at once along with spotify, safari with many tabs open, and a couple other apps including evernote and game from time to time. Also, I'm gonna be managing a good deal of fonts in font explorer. How much ram and processing power will I need in my imac to keep everything snappy with all these apps going at the same time?
    Any advice on this would be much appreciated. Feel free to include any other relevant information you think I should know.
    Thanks, Nick

    Computers are out of date when you open the box
    Ok, getting serious, that iMac should be a viable workhorse for what you want for a good five years, and taht depends on how much ram you put in it, add really fast external storage, and so on.
    Didn't throw this in earlier so as to not influence the discussion: my daughter is the senior art director, VP, at a graphics design firm in NYC.  Has been in the business for a number of years.  When she changed out her Mac at work, bought, or company bought, the 27" iMac model just before the latest, with maxed out CPU/GPU, and storage.  They maxed the memory to 32 GB for her, then added a 30" Apple cinema display so she has almost 5' of display in front of her.  There is nothing she cannot have open all spread across that display area.  She works almost exclusively in print media, occassionally condescends to do web stuff.  And has a massive array of RAID drives hanging on it.  But that is a setup an individual would be hard pressed to go with.
    At home she uses a MacBook Pro with top cpu and display but that is all.
    The point, just how massive do you want to go depends on how fast you have to work; in the office where time is money you need tons of horsepower.  At home, you scale it to your abilitty to juggle other tasks at the same time.
    I think your choices have been great, the discussion has focused on what is important and especially what can and cannot be changed in the future.
    Best of luck setting this up.

  • HOW TO STOP THE PROCESS CHAIN WHICH IS RUNNING IN THE PRODUCTION?

    HI ALL,
    CAN ANYONE TELL ME HOW TO STOP THE PROCESS CHAIN WHICH IS RUNNING DAILY AT 5.00 PM. I NEED TO STOP THE PROCESS CHAIN FOR COUPLE OF DAYS AND THEN RESTART IT AGAIN.
    cAN ANYONE TELL ME THE PROCEDURE TO STOP THE ENTIRE PROCESS CHAIN RUNNING IN THE PRODUCTION.
    THANKS
    HARITHA

    Hi,
    First and foremost let me advice you to be very careful while doing this.
    For Rescheduling
    RSPC> chain > Goto > Planning view and
    click on Execution tab > select > Remove from Schedule and then in Maintain variant of start process reschedule for the day you require it to run.
    For terminating active chain
    You can start from SM37, find the process WID/PID then go to SM50 or SM51 and kill it. Once its done come back to RSMO and check the request, it should be red but again manually force to red and save by clicking on the total status button in the status tab. This shuld ensure that the process is killed properly.
    The next step will be to go to targets that you were loading and remove the red requests from those targets.
    Note: For source system loads you may have to check if the request is running in the source system and kill if needed and pull it again.
    But for BW datamart delta loads u may have reset the datamarts in case u are going to pull the delta again.
    Re: Kill a Job
    Re: Killing a process chain.
    Regards,
    JituK

  • How to stop the process chain showing status as yellow but no process step

    Dear Friends,
    How to stop the process chain showing status as yellow but no process step is running in that process chain.
    We have manually triggered the process chain for sales it finished successfully till load data but the next step is create index and DB statistics. Both of this steps are in unscheduled position only and no background job for this.
    Please guide me.
    Thanking you in advance.
    Regards,
    Shubhangi

    Hi,
      At times even I have faced this situation.  During those times, running the Function module RSPC_PROCESS_FINISH by passing the right parameters came to my rescue.
    Regards,
    Raj

  • How to get the process id of a sql statement or a session  ....

    How to get the process id of a sql statement or a session . ..?
    Thanks

    What about this?
    SELECT pid
      FROM v$session s, v$process p
    WHERE p.addr = s.paddr
       AND s.sid = :sid;   -- replace :sid with your session idRegards.
    Al

  • Disable Auto-Rotation in OCR Process (Acrobat 9 Pro)

    Is there a way to disable the auto-rotation step as part of the OCR process? I have documents which I assemble in from images of tables. (If I had acces to the text of the tables, I wouldn't be using images of them). I place each screenshot in the correct orientation, but when I have Acrobat 9 Pro OCR the document, it auto-rotates many pages into the wrong orientation (some 90° clockwise; others 90° counterclockwise and some 180°). Since Acrobat is horribly confused by what it is seeing, I need to disable the auto-rotation part of the process so that it will OCR what it finds exactly as it finds it.

    Very likely the pages of interest have a least one character of renderable text. This might not be readily seen by you or me but it'd be there.
    Acrobat's OCR will not process a page that has any renderable text.
    Be well...

  • How to run a process flow in recovery mode

    Hi,
    I have 10 Mappings in a Process Flow. While executing that process flow, All of sudden It got errored out at 5th mapping.
    Please explain me how to run the process flow again from the 5th mapping( which got errored out in the previos run)....i.e I do not want to run the first 4 mappings in that process flow again, I want to run only the remaining mappings in the process flow.
    Please let me know in case you need more information / explaination.
    Thanks in advance...

    Hi
    On the question of process flows and resuming the following article gives some ideas, it has to be designed in the process flow basically;
    http://www.rittmanmead.com/2008/05/resuming-your-etl-process-in-owb/
    The article describes some ideas and techniques for tracking success/failure of flows and restarting.
    Cheers
    David

  • How to monitor RFC processing in XI

    Hi Friends,
    In the IDoc to RFC scenario please tell me How to monitor RFC processing in XI..
    Thanks and Regards
    Sri

    Sri,
      You can monitor in SXI_MONITOR/SXMB_MONI. If its Syncronous then u can see the request and response messages in the above mentioned transaction.
      To get more details you can go for RWB and select ur message and check for audit log's.
    Best regards,
    raj.

Maybe you are looking for