Barcode or field question

Hi, just a question, is it possible to insert a barcode or any field into an image using oracle document capture ? what oracle application can i use for this if is not possible....??? thanks...

ODC is able to <b>read</b> barcodes. If you want to mark scanned sheets (e.g to prevent duplicate readings or skipping a page), you will need a scanner that is capable to print the barcode to the page prior to reading it. If you want just to add an arbitrary text to an image/document, you had better use a DTP application.
From Oracle stack, you could use PDF Watermarking (a feature of UCM) or AutoVue, which is capable of marking independently nearly any kind of electronic resource.
Pls. provide more details what you are trying to achieve.

Similar Messages

  • Default Barcode Scan field in Agentry SMP 3.0 WindowsCE Client

    Hi Experts,
    We are currently implementing Inventory Manager 4.0 and have a need to default the cursor to the Barcode Scan field when navigating from a menu screen to a transaction screen. However, a blank screen displays with just a Cancel and OK button instead of just showing the transaction screen with the cursor defaulted to Barcode Scan field. Is there a way to skip this blank screen if we default the focus to a Barcode Scan field and just display the transaction screen with the cursor defaulted to the Barcode Scan field?
    Second issue we are having is that the Barcode Scan field does not trigger the scanner automatically. User still needs to manually turn on the wedge scanner, which is the software provided by Motorola, to enable the scanner. From my understanding, using a Barcode Scan field will supposedly enable the scanner of the WindowsCE devices.
    Thanks!
    Tags edited by: Michael Appleby

    1) It sounds like you have Full Pop-up screens enabled. Go to a non Transaction Screen and click on the Agentry Symbol and select No-poput
    2) The Agentry clients have 2 cursors.  1 for the user to see, and a second one for the barcode.  This way if a screen has barcode scanning field the user will just the button and scan the field and the data will go in, and then the barcode cursor will move to the next barcode field.
    In your client folder do you have the AgentryScanner.dll file?  This is the Dll file the client uses to call the scanner.  One way to know if it working or not, on the barcode scanning fields you will see a little barcode button.

  • About QTY barcode fields question

    Now I want to scan a qty barcode to handle,the quetion is that the first scan qty is 20,it display OK.When the second scan qty is 1,it display is '10'.
    Can anyone please help me out with this?
    thanks in advacne..

    Now I want to scan a qty barcode to handle,the quetion is that the first scan qty is 20,it display OK.When the second scan qty is 1,it display is '10'.
    Can anyone please help me out with this?
    thanks in advacne..

  • BarCode in PDF Question

    Hi, I try to make bar code in a PDF form. Question is, how can I make the value move from one field to another and bypassing something in between those field. For example:
    On the form on my end, I have Passport Number, Name, Exp. Date, DoB etc...the Customer would send in a form with Passport Number, Name, DoB (Bypassing the Exp.Date since this value is automatically calculated). The system is closed so I have to do with barcode. Any one please tell me how I can program the barcode so it can bypass the Exp.Date part.
    Thanks

    When you set up a bar code field, you can specify which fields you want to be included on the Value tab of the field properties dialog.

  • New Calculated field question. Complicated I think.

    I have managed to create this table from a MySQL database: http://ppbm5.com/DB-PPBM5.php
    The field 'Total' is a calculated field using this SQL query:
    $query_Recordset1  = 'SELECT *, `Disk I/O`+`MPEG2-DVD`+`H264-BR`+IFNULL(`MPE On`,`MPE  Off`) As Total, `CPU`*`Cores` As Phys_Cores FROM `Personal_data` WHERE 1  ORDER BY (`Disk I/O`+`MPEG2-DVD`+`H264-BR`+IFNULL(`MPE On`,`MPE Off`)),  `Date & Time` ASC';
    So far, so good, but as you may have  noticed, there is a next field called 'Rel. Perf.' which only contains  blanks. And that is where my problems start.
    The table is sorted by 'Total' and the first record shows these figures and field names that are relevant for my question:
    Fields: 'Total'  'Disk I/O'  'MPEG2-DVD'   'H.264-BR'   'MPE On'   'MPE Off'
    Values:  131,        67,              21,                  37,              6,              64
    In addition, I use four 'weight' figures, let's say these are 0.27 , 0.30 ,  0.20 and 0.23 denoted as W1, W2, W3, W4.
    First step is to calculate four temp values, using a formula like this resulting in T1, T2, T3 and T4:
    T1 = W1 x  Total /Disk I/O; T2 =  W2 x Total/MPEG2-DVD ; T3 = W3 x Total/H.264-BR ; T4 = W4 x Total/(IFNULL(MPE On, MPE Off)
    Note that this only applies to the top record and here the SUM(T1, T2, T3, T4) results in 131, equal to the Total.
    The result of 100 x SUM(T1, T2, T3, T4)/ Total = 100 should be the 'Rel.Perf.' result for the top record.
    Now  is gets difficult. Let me call the records R1, R2, R3, ..., Rx. Now, in  the previous step we have established that the figure 100 should into  R1.
    For R2 the result of the 'Rel.Perf.' is 100 x SUM(T1 x Disk  I/O(2), T2 x MPEG2-DVD(2), T3 x (H.264-BR(2), T4 x (IFNULL(MPE on, MPE  Off)))/ Total(2)
    For R3 the result of the 'Rel.Perf.' is 100 x  SUM(T1 x Disk I/O(3), T2 x MPEG2-DVD(3), T3 x (H.264-BR(3), T4 x  (IFNULL(MPE on, MPE Off)))/ Total(3)
    etcetera for all the rest of the records in the table.
    A  complicating factor is that the reference point of the top machine  should remain fixed at 100, but when doing queries, the top machine may  not be in the query results, but all the query results for the Rel.Perf.  should be derived from these scores. Life would be infinitely easier if  one would be certain that the top machine is fixed, but that is not the  case.
    Sorry to make this such a long and complicated post, but  for those who have struggled through this long message, if you have any  suggestions on how to make this work, I would appreciate it.
    Thanks in advance.
    Harm, while non is intended.
    PS. I have been trying to generate a SQL query, using the following code:
    $query_Recordset1 = 'SELECT *, FORMAT(`Disk I/O`+`MPEG2-DVD`+`H264-BR`+IFNULL(`MPE On`,`MPE Off`),0) As Total, FORMAT((54.661*`Disk I/O`+161.25*`MPEG2-DVD`+71.66666*`H264-BR`+645*IFNULL(`MPE On`,`MPE Off`))/129,1) As RPI,`CPU`*`Cores` As Phys_Cores FROM `Personal_data` WHERE 1 ORDER BY 54.661*`Disk I/O`+161.25*`MPEG2-DVD`+71.66666*`H264-BR`+645*IFNULL(`MPE On`,`MPE Off`), `Disk I/O`+`MPEG2-DVD`+`H264-BR`+IFNULL(`MPE On`,`MPE Off`) ASC';
    For static work it is OK, but not when a new top performer submits his data.

    Hi William,
    Per my understanding that you want to count the number of the value in the field wait which is smaller then 15, right?
    I have tested on my local environment and that you can add the calculated field (Count) using the expression as below:
    =IIF(Fields!wait.Value<15,1,0)
    Insert an outside group row and then get the total count by using below expression:
    =SUM(Fields!Count.Value)
    Preview you will get the result like below:
    If your problem stil exists, please try to provide some sample data and the exprect count result you want.
    Any problem, please feel free to ask.
    Regards
    Vicky Liu
    Vicky Liu
    TechNet Community Support

  • Unable to Preview barcode font fields in Word Template Builder PDF Preview

    I have searched for solutions to this problem but did not find anything that I have not tried. I have IDAutomation Barcode fonts installed and am using the Word template builder v10.1.3.4 Build 129. My Templates work fine in EBS, but I cannot Preview in a PDF, any fields that are formatted with my barcode or MICR fonts. I have created an xdo.cfg file as per the documentation and placed it in C:\Program Files\Oracle\BI Publisher\BI Publisher Desktop\Template Builder for Word\config. I can successfully preview in an RTF, but not a PDF. Any suggestions?
    Here is my xdo.cfg file:
    <config version="1.0.0" xmlns="http://xmlns.oracle.com/oxp/config/">
         <!-- Properties -->
         <properties>
              <!-- System level peoprties -->
              <!-- PLEASE SELECT A VALID TEMPFILE DIRECTORY!!! -->
              <property name="system-temp-dir">E:\Temp</property>
              <!-- PDF compression -->
              <property name="pdf-compression">true</property>
              <!-- PDF security -->
              <property name="pdf-security">false</property>
              <property name="pdf-open-password">user</property>
              <property name="pdf-permissions-password">owner</property>
              <property name="pdf-no-printing">true</property>
              <property name="pdf-no-changing-the-document">true</property>
         </properties>
    <!-- Font setting -->
         <fonts>
              <!-- Windows Wingdings font -->
              <font family="Wingdings" style="normal" weight="normal>
              <truetype path="C:\WINDOWS\Fonts\WINGDING.ttf" />
              </font>
              <!-- GnuMICR font -->
              <font family="GnuMICR" style="normal" weight="normal>
              <truetype path="C:\WINDOWS\Fonts\GnuMICR.ttf" />
              </font>
              <!-- IDAutomationC39L -->
              <font family="IDAutomationC39L" style="normal" weight="normal>
              <truetype path="C:\WINDOWS\Fonts\IDAutomationC39L.ttf" />
              </font>
              <!-- IDAutomationC39M -->
              <font family="IDAutomationC39M" style="normal" weight="normal>
              <truetype path="C:\WINDOWS\Fonts\IDAutomationC39M.ttf" />
              </font>
              <!-- IDAutomationC39S -->
              <font family="IDAutomationC39S" style="normal" weight="normal>
              <truetype path="C:\WINDOWS\Fonts\IDAutomationC39S.ttf" />
              </font>
              <!-- IDAutomationC39XL -->
              <font family="IDAutomationC39XL" style="normal" weight="normal>
              <truetype path="C:\WINDOWS\Fonts\IDAutomationC39XL.ttf" />
              </font>
              <!-- IDAutomationC39XS -->
              <font family="IDAutomationC39XS" style="normal" weight="normal>
              <truetype path="C:\WINDOWS\Fonts\IDAutomationC39XS.ttf" />
              </font>
              <!-- IDAutomationC39XXL -->
              <font family="IDAutomationC39XXL" style="normal" weight="normal>
              <truetype path="C:\WINDOWS\Fonts\IDAutomationC39XXL.ttf" />
              </font>
              <!-- IDAutomationHC39L -->
              <font family="IDAutomationHC39L" style="normal" weight="normal>
              <truetype path="C:\WINDOWS\Fonts\IDAutomationHC39L.ttf" />
              </font>
              <!-- IDAutomationHC39M -->
              <font family="IDAutomationHC39M" style="normal" weight="normal>
              <truetype path="C:\WINDOWS\Fonts\IDAutomationHC39M.ttf" />
              </font>
              <!-- IDAutomationHC39S -->
              <font family="IDAutomationHC39S" style="normal" weight="normal>
              <truetype path="C:\WINDOWS\Fonts\IDAutomationHC39S.ttf" />
              </font>
              <!-- IDAutomationHC39XL -->
              <font family="IDAutomationHC39XL" style="normal" weight="normal>
              <truetype path="C:\WINDOWS\Fonts\IDAutomationHC39XL.ttf" />
              </font>
              <!-- IDAutomationHC39XS -->
              <font family="IDAutomationHC39XS" style="normal" weight="normal>
              <truetype path="C:\WINDOWS\Fonts\IDAutomationHC39XS.ttf" />
              </font>
              <!-- IDAutomationHC39XXL -->
              <font family="IDAutomationHC39XXl" style="normal" weight="normal>
              <truetype path="C:\WINDOWS\Fonts\IDAutomationHC39XXL.ttf" />
              </font>
         </fonts>
    </config>
    Thank for any assistance.
    Regards,
    Donn

    The fonts settings did not show up properly. Here is an example inside comments:
              <!-- IDAutomationHC39S -->
    <!--     <font family="IDAutomationHC39S" style="normal" weight="normal> -->
    <!--     <truetype path="C:\WINDOWS\Fonts\IDAutomationHC39S.ttf" /> -->
    <!--     </font> -->
    The font family, name, and path have been checked thoroughly.
    Thanks,
    Donn

  • Help with scripting a period in barcode between fields.

    Good Morning,
    I need help scripting a barcode that has a period as a separator in between fields.
    I have 3 fields that I need all encoded in to one barcode and need a period as separators.
    EMPID
    FormName
    EMPSSN
    I need barcode to read as follows
    EMPID.FormName.EMPSSN
    546514.Harvest123.555284569
    I am very new to this and any help would be greatly appreciated.

    When you go to the Barcode's Value tab and select "Custom calculation script", you get an empty template of how the barcode's value is calculated, which you can then fill-in with the names of the form fields. You can also edit the separator used between the values. I'm not sure the result is a valid barcode, strictly speaking, but it works. Here's the code I used:
    /* Customize: */
    function bMemberOf(strName, aStrNames)
        for (var nMembIdx in aStrNames)
            if (strName == aStrNames[nMembIdx])
                return true;
        return false;
    function strTabDelimited(oParam)
        var bNeedTab = false;
        var strNames = "";
        var strValues = "";
        for (var i = 0; i < oParam.oDoc.numFields; ++i)
            var strFieldName = oParam.oDoc.getNthFieldName(i);
            if ((null == oParam.aFields || bMemberOf(strFieldName, oParam.aFields))
                && (null == oParam.strXclField || strFieldName != oParam.strXclField)
                && (oParam.oDoc.getField(strFieldName).type != "button"))
                if (bNeedTab)
                    if (oParam.bFieldNames)
                        strNames += "."; // I changed these two lines so the separator is a period instead of the default tab
                    strValues += ".";
                if (oParam.bFieldNames)
                    strNames += strFieldName;
                strValues += oParam.oDoc.getField(strFieldName).value;
                bNeedTab = true;
        if (oParam.bFieldNames)
            return strNames + "\n" + strValues;
        else
            return strValues;
    try
        if ( app.viewerVersion >= ADBE.PMD_Need_Version )
            event.value = strTabDelimited({oDoc: this, aFields: ["EMPID", "FormName", "EMPSSN"], bFieldNames: true});
        else event.value = " ";
    catch (e)
        event.value = " ";

  • Text field questions: 1. Scrolling 2. Multiple Lines

    Hello,
    I am creating a form with Adobe LiveCycle Designer 7.
    I have two questions:
    1. When I have a text field, and I enter the text in the PDF view, it will keep going until I stop. This causes the text field to become a scroll box. How do I stop that? I want the text to stop when there is no more room left. I understand there is a length limit, but that mean I have to count the number of characters, and also estimate as to what amount off room each character takes. For example, 'i' takes a lot less room than 'Q' with the default font.
    2. I want my text field too look like this:
    TEXT FIELD: ____________________________________
    How do I do that? I can only get the caption to, when set to left, be in the middle of the field. Also I cannot see the literal 'multiple lines'.
    Thanks a lot!

    I have answer for the first question....all you need to do is copy the following JS code to enter event of each field that you have trouble with.
    var acroSOM = this.somExpression.substr(15, this.somExpression.length - 1);
    var acroField = event.target.getField(acroSOM);
    acroField.doNotScroll = true;
    I doubt there is an answer other than NO (in LC 7) for your second question.
    Good luck,
    SekharN

  • SAPScript  - Fields Question

    Hi all expert,
    I'm relatively new to sapscript. This is what i wish to do..
    Let's say i want to print the vendor address with the addrnumber,
    then take the address from ADRC using the same addrnumber.
    From the spec, these are the fields which are required:
    Name1, Name2, Name3, Name4, str_suppl1, str_suppl2, street, str_suppl3 and tel_number
    Expected:
    Kraft Foods Limited
    Rm 1606 16/F
    Str_suppl2
    street
    str_suppl3
    tel_number
    my question is...how to ignore those empty fields.. what if one of the fields required is not filled..will sapscript leave a gap to something like this if str_suppl2 is not field
    Kraft Foods limit
    Rm 1606 16/F
    street
    str_suppl3
    tel_number
    is there anyway to ignore the gap so that it will be printed to the next line instead of leaving a line..
    thanks all comments are appreciated.

    Hi Yew Wing,
    The best option is to use the
    /: ADDRESS
              /:    ADDRESSNUMBER &ADRC-ADRNR&
              /: ENDADDRESS
    This way the system will automatically format the address for you. You need not worry about the blank space and other formatiing options. You need not select all the other fields as well. Just pass the Address number and rest the command ADDRES and ENDADDRESS will do automatically.
    Cheers
    VJ

  • Search field question

    I am brand new to this and had a question about search fields. I noticed that when I create an application the pages created during this initial process will load a search feature into every 'form on a table with report' by default. Yet if I create those same pages after the initial application creation process the search function is missing.
    I assume that this is by design. Am I missing a step in the setup of my pages that would include this search? Or do I need to manually add it to each new page? If I do need to manually add it what is the easiest way to do it?
    Thanks in advance

    If you create pages after the initial creation you need to add the search functionality yourself. That's not that hard:
    1) add search item
    2) change your report query to include a where clause for the search
    3) add a branch to your page (same page)
    4) add a button that does the submit of your page
    Hope that helps,
    Dimitri

  • Scripting and metadata field question

    I'm trying to set up a subscription response, that is triggered on a check box which adds all of a FCP project's element's Master Assests to it's member productions. I.E. FCP project "A" which contains elements 1,2&3 and resides in Production "Z", will have the master assets 1,2&3 added to production Z when metadata field "Add Assests" is checked.
    My questions are these:
    1) How do I create a metadata field with just a check box (this a very basic questions, but so far I've only been able to get a "TRUE/FALSE" boolean, which works, but isn't as nice as a check box.
    2) My approach to accomplishing this is a bit more convoluted than I think is necessary, it is thus:
    -Use subscription to write XML.
    -get AssetID for Project from XML
    -Use fcsvr_client listparentlinks /Asset/ID(from above) | grep out the element ids
    -use fcsvr_client listchildlinks /element/ID(from above) --linktype 12 | grep out the Asset ID for each of the elements listed in step 3
    -use fcsvr_client listchildlinks /Asset/ID(of origional FCP project) --linktype 1 | grep put the project ID for each of the member projects
    -use fcsvr_client make_link --linktype 1 /project/(ID from above) /asset/(each of the master assets for each element in FCP project)
    Is this the best approach? Can I add multile assests in one command on the last one? Has anyone already scripted this? Am I missing some automated way to do this in FCSvr already.
    Any help would be appreciated.
    Thanks.

    As to the question of if anyone has scripted this already, I have created a script which pulls all of the element metadata and places it in the associated assets of a Final Cut Pro project. You can check out the video that shows this in detail on the MacHarmony website. To be able to add the assets to a production would be a fairly easy step. The way you are going about it sounds like it should work just fine. We actually go direct to the postgres to improve performance and simplify the creation of tasks such as this, but the WriteXMLs should give you what you need as well.
    -- Jason
    Jason Perr
    MacHarmony

  • Barcode Data Field Identifier in template

    Does anyone know how to include a Data Field Identifier (for use with Oracle Mobile Applications) in a barcoded field? We have successfully included barcoded item numbers on XML Publisher reports. The Oracle Warehousing documentation says that you should be able to prefix the field with a P and that will identify the following data as an item number and put it into the correct field when it is scanned. Has anyone done this successfully in an XML Publisher template?

    Thanks, Tim. We discovered that it is a problem with a custom mobile form that Oracle developed for us. It works fine on the standard mobile forms that we are using. The format I'm using in the template is:
    PBAR_VAL where BAR_VAL is a form field that contains the item number.

  • Address Book - Birthday Field question

    I was trying to make an entry on the birthday field in one of my contacts. The field does not give me an option to change the year of birth. It defaults to 2000.
    The other question is how can we set up alerts, so that we can maybe send out a card in advance? Thanks!
    Is there a way to fix this?
    imac user

    With the Address card in Edit mode you should be able to click the year field and after it highlights blue, change it to the year you need.
    According to Address book Help, in the Address Book Help Menu;
    You can keep track of contacts’ birthdays by creating a birthday calendar that automatically includes all the birthdays in your address book.
    1. In Address Book, make sure you’ve entered the birthdate for each contact whose birthday you want to track.
    2. In iCal, choose iCal > Preferences.
    3. In the General pane, select the “Show Birthdays calendar” checkbox.
    Birthdays in your address book are automatically added to the Birthdays calendar in iCal. When you add or remove birthday information in Address Book, the Birthdays calendar is also updated. You can’t make changes to the Birthdays calendar in iCal; to change it, you must edit the information in Address Book.
    You can check in iCal Help for info on setting alerts.

  • Expanding text field question?

    Is it possible to have a text field push all other fields below it down the page as a user fills the box with text content?
    ie. a text area with a logo graphic below it which always is positioned exactly the same distance between it and the content.
    Thanks...

    You can use a dynamic form created by LiveCycle Designer for this.

  • AP invoice interface - payment block field question

    Hi,
    Peoplesoft is our main system for finance. We are using SAP for logistics applications. I am building a interface to send AP invoice details from SAP to peoplesoft on a daily basis. This interface needs to pick up only those invoice that are free for payment i.e. bseg-zlspr (payment block) field is blank. For example, if an invoice is in invoice verification process, it should not be sent. Till this point, it is easy to get the details of these invoices.
    Once the invoice verification is done, bseg-zlspr field will become blank and needs to be picked up by interface. But the issue is how to select these invoices. Since the interface will run daily, I can select for invoices that are created on that day or changed on that day. But the issue, when the value of bseg-zlspr field is changed from blocked to free for payment, none of the date field value changes on either bkpf or bseg tables.
    Any ideas how to handle this???

    hi,
    use change document analysis like tcode FB04
    -> try fm CHANGEDOCUMENT_READ_HEADERS
    A.
    Message was edited by:
            Andreas Mann

Maybe you are looking for

  • How to use preprocess​or directives (#define) in C++ header file with LabVIEW 8.2

    I have a C++ header file that contains around 2000 preprocessor directives: #define MEM_1   0xC #define MEM_2   0xD #define MEM_3   0x18 I want to be able to "access" these memory offsets by identifier name (MEM_1) in my LabVIEW program like I would

  • Getting List OF Non Sap Sources

    Hi experts, Because of several changes we aremaking on the server, we need to know exactly each flat file connected to our BW system. When I go to the RSA1/  Source Systems / Flat Flies I Can get a list of each DataSource connected to this files, but

  • What are various data speeds supposed to be?

    I am doing my research now on the iPhone while awaiting the end of my Sprint contract. I currently on the slow Sprint data network using a Treo 650. All my bookmarks are to text based mobile sites: BBC, NYT, etc. I was playing with an iPhone here in

  • Using Async calls in a Util class

    I have a Utility class that I want to put code in that I'm reusing over and over again.  This includes Async.handleEvent calls.  If I call an instance of the Util class from a [Test(async)] method, can I use the Async call in that other event? When I

  • CD rom does not appear in boot menu in lenovo G500 windows 8

    Hello I want to format my lenovo G500 windows 8 and install windows 7 but I can't because the CD rom does not appear in the boot menu Solved! Go to Solution.