"Invalid golden template" error using Vision

Hello,
I'm trying to compare two images (to locate a hole that's present in one of them) using the IMAQ Compare Golden Template vi, and I'm getting the following error:  "Error - 1074395770 occurred at IMAQ Compare Golden Template", "Invalid golden template."  I've included a copy of my vi and a screen snapshot of the error.
Can you help me with this?  I am relatively new to Labview, so there may be a simple solution to this.
Thanks,
Doug D.
Attachments:
files.zip ‏61 KB

cb,
Thanks for the tip about the "Golden Template Inspection Example.vi"; that was helpful.
Yes, I'm still getting the same error.  It looks like the problem is with my template file.  Basically I just converted a .jpg file (attached) to .png.  But it seems that the "IMAQ Match Pattern 2" and "IMAQ Compare Golden Template" VIs both require a template image with pattern matching info in it, and I can't create one that works using the "IMAQ Setup Learn Pattern 2" and "IMAQ Setup Learn Pattern 2" VIs.
Does anyone have information or an example on how to create a template file for the "Golden Template Inspection Example VI?
Doug
Attachments:
No_hole.jpg ‏394 KB

Similar Messages

  • Invalid Content-Type error using JAXM

    Hi,
    I have deployed sample JAXM application to weblogic server 7.0. When I ran the
    client it is throwing following error,
    javax.xml.soap.SOAPException: Invalid Content-Type:text/html
    java.security.PrivilegedActionException: javax.xml.soap.SOAPException: Unable
    to internalize message
    Following is the SOAP message I am sending to the service,
    <soap-env:Envelope xmlns:soap-env="http://schemas.xmlsoap.org/soap/envelope/">
    <soap-env:Body>
    <Item ID="101" NAME="Java" PRICE="$29.99"></Item>
    <Item ID="102" NAME="Java 2" PRICE="$39.99"></Item>
    <Item ID="103" NAME="JAXM" PRICE="$19.99"></Item>
    <Item ID="104" NAME="Web Services" PRICE="$49.99"></Item>
    </soap-env:Body>
    </soap-env:Envelope>
    The above application is working fine in SUN ONE Application server.
    --Muthu

    Hi Muthu,
    Take a look at the SAAJ spec:
    http://java.sun.com/xml/downloads/saaj.html
    Towards the top part of the doc shows the diffs.
    Regards,
    Bruce
    Muthu wrote:
    >
    Hi Bruce,
    Thanks for your reply. Could I know what is the difference between JAXM and SAAJ?
    --Muthu.
    Bruce Stephens <[email protected]> wrote:
    Hello,
    Product management has stated that we have no plans to support JAXM.
    Sun
    has removed any depencies between JAXM and JAXRPC and created SAAJ as
    a
    replacement for the JAXM dependencies. JAXM will not be part of J2EE
    1.4. We support SAAJ in 8.1.
    Thanks,
    Bruce
    Muthu wrote:
    Hi,
    I have deployed sample JAXM application to weblogic server 7.0. WhenI ran the
    client it is throwing following error,
    javax.xml.soap.SOAPException: Invalid Content-Type:text/html
    java.security.PrivilegedActionException: javax.xml.soap.SOAPException:Unable
    to internalize message
    Following is the SOAP message I am sending to the service,
    <soap-env:Envelope xmlns:soap-env="http://schemas.xmlsoap.org/soap/envelope/">
    <soap-env:Body>
    <Item ID="101" NAME="Java" PRICE="$29.99"></Item>
    <Item ID="102" NAME="Java 2" PRICE="$39.99"></Item>
    <Item ID="103" NAME="JAXM" PRICE="$19.99"></Item>
    <Item ID="104" NAME="Web Services" PRICE="$49.99"></Item>
    </soap-env:Body>
    </soap-env:Envelope>
    The above application is working fine in SUN ONE Application server.
    --Muthu

  • I get an 'Invalid Image Type' error when using the Locate Features. (Evaluatio​n version)

    I'm using the Evaluation Version of Vision Builder. I Simulate Acquisition using my own image (jpg), which loads fine. However, when I try to use any of the Inspection Steps features, other than Enhance Images, I get an "Invalid Image Type" error.

    Hello,
    Vision Builder functions usually work with a certain image type. For example, all the functions listed under Binary (in the menubar) will only work with binary images. Likewise, color functions will work for color images and grayscale will work for grayscale images.
    You can convert a color image into a grayscale by extracting a color plane and a grayscale image can be converted to binary using the threshold function.
    Hope this helps!
    Regards,
    Yusuf C.
    Applications Engineering
    National Instruments

  • Invalid Cursor Position Error on Windows XP using CachedRowSet

    Hello, I don't know if this question lies here, but I thought it would be the well suited place so please pardon me if it isn't. I am trying to access multiple pages from my database on my XP machine but I am getting an "invalid cursor position" error when trying to access the next page. I don't know how this error is coming about because it works well on a Vista machine with no errors. I don't know if it is my drivers or something that brings about the problem. I am using mysql connecter 5.1.10, JRE 1.6.0_02 and windows XP SP2
    Below is a simple code that brings the error.
    package Admin; import javax.sql.rowset.CachedRowSet; import com.sun.rowset.CachedRowSetImpl; public class test { public void table() { try { CachedRowSet crs=new CachedRowSetImpl(); crs.setUrl("jdbc:mysql://host:3306/database");         crs.setUsername("User");         crs.setPassword("password"); crs.setCommand("select * from myTable"); int[] keys = {1}; crs.setKeyColumns(keys); crs.execute(); crs.last(); if(crs.getRow()>500){ //new overLimit(); } crs.setPageSize(3); crs.execute(); while (crs.next()) { System.out.print("page one----"); System.out.println(crs.getString(1)); } while(crs.nextPage()){ System.out.println("page two---"); while (crs.next()) { System.out.println("in page two"); System.out.println(crs.getString(1)); } } } catch (Exception e) { e.printStackTrace(); } } public static void main(String []args){ new test().table(); } }

    Yes I am running the same code on both machines. The output I get on the XP machine is shown below. I modified the code I posted earlier and replaced the "page two" text with "page (then page number)" and also omitted the "in page two" text for better readability---------PAGE 0---------
    DB09140110
    DU35463010
    EX29201810
    ---------PAGE 1---------
    EX38341510
    EX40471810
    KZ280299
    ----------PAGE 2---------
    LA130299
    LC130299
    MC081009
    ----------PAGE 3---------
    RZ300502
    VA130299
    VI020209
    ----------PAGE 4---------
    YX101008
    ZE220299
    ZF231105and vista....
    ----------PAGE 0---------
    EX38341510
    EX40471810
    KZ280299
    ----------PAGE 1---------
    LA130299
    LC130299
    MC081009
    ----------PAGE 2---------
    RZ300502
    VA130299
    VI020209
    ----------PAGE 3---------
    YX101008
    ZE220299
    ZF231105

  • WebPart is raising the following error "Invalid data has been used to update the list item.The field you are trying to update may be read only"

    I have created a farm solution and then i deploy it to SharePoint server, the code looks as follow, and i use it to update a page info values (as the current page values represents old info):-
    [ToolboxItemAttribute(false)]
    public partial class VisualWebPart1 : WebPart
    // Uncomment the following SecurityPermission attribute only when doing Performance Profiling using
    // the Instrumentation method, and then remove the SecurityPermission attribute when the code is ready
    // for production. Because the SecurityPermission attribute bypasses the security check for callers of
    // your constructor, it's not recommended for production purposes.
    // [System.Security.Permissions.SecurityPermission(System.Security.Permissions.SecurityAction.Assert, UnmanagedCode = true)]
    public VisualWebPart1()
    protected override void OnInit(EventArgs e)
    base.OnInit(e);
    InitializeControl();
    using (SPSite site = new SPSite(SPContext.Current.Site.Url))
    using (SPWeb web = site.OpenWeb())
    SPList list = web.Lists["Pages"];
    web.AllowUnsafeUpdates = true;
    foreach (SPListItem items in list.Items)
    items["Author"] = "SharePoint";
    items["Created"] = "01/08/2014 01:44 PM";
    items.Update();
    list.Update();
    web.AllowUnsafeUpdates = false;
    protected void Page_Load(object sender, EventArgs e)
    but when i try adding this web part to a page i got the following error:-
    Invalid data has been used to update the list item.The field you are trying to update may be read only
    so can anyone advice?

    i only changed lines bitween 
    web.AllowUnsafeUpdates = true;
    and
    web.AllowUnsafeUpdates = false;
    and other parts of code remains without change
    so it will updates all pages in current web
    yaşamak bir eylemdir

  • Photoshop v7.0 I get the error "missing or invalid personalization information"  This used to run, I'm now on Windows 7 64 bit.  Anyone have any ideas please?  Thanks.

    I get the error "missing or invalid personalization information"  This used to run, I'm now on Windows 7 64 bit.  Anyone have any ideas please?  Thanks.

    Hi,
    If my memory serves me right (it’s some while since I changed and I have not used Photoshop for some years…) I was running it on XP.  I upgraded to Win 7 on  a new machine but ported across files, programmes etc.  I cannot recall if Photoshop ever ran on Win 7.
    I have tried to reinstall but the CD is warped and despite applying pressure to it neither of my drives likes it.  I have Photoshop 7 on my third hard drive, a portable drive, which came from the XP machine.
    Sorry, long-winded but I hope it helps.

  • Does anyone know how to delete a template created in error using PAGES?

    I created some templates in error using PAGES and cannot figure out how to remove them/delete them.  Anyone know how to do this?  Fran

    Look in the More like this on the right.

  • How to use : bind character in DB adapter Select Query SOA11g. Getting Error code :17003 .java.sql.SQLException: Invalid column index error

    Hi All,
    The Actual query to perform is below.
    SELECT name,number from emp  WHERE CASE WHEN :1='T' AND term_date IS Not NULL THEN 1 WHEN :1='A' AND term_date IS NULL THEN 1 WHEN :1='ALL' THEN 1 ELSE  1 END = 1;
    I have tried in DB adapter like below as a parameter for :1 as #vInputParam
    SELECT name,number from emp  WHERE CASE WHEN #vInputParam='T' AND term_date IS Not NULL THEN 1 WHEN #vInputParam='A' AND term_date IS NULL THEN 1 WHEN #vInputParam='ALL' THEN 1 ELSE  1 END = 1;
    Getting Error code :17003 .java.sql.SQLException: Invalid column index error.
    Please suggest me on using ':' bind character in DB adapter Select Query SOA11g.
    Can someone help me on this please?
    Thanks,
    Hari

    Hi,
    Could you please make sure your binding style(Oracle Positional,Oracle named..etc) of the Seeded VO and Custom Vo are same.
    This is the option you will get when you are extending your vo. So make sure that both are same.
    You can refer the below link too
    VO extension leads to "Invalid column index" exception
    Thanks
    Bharat

  • At&t +1 (1) (216)116-11 error invalid number please resend using 10 digit mobile number

    tried all the method proposed for former similar questions. None works. Even more confused about whether it is the problem of AT&T or apple or both? How can I solve it. It's really annoying!

    Are you in the US? If you are in the US, you don't need to call or text the full number unless it is a toll free number.
    You can just use the 10 digit number XXX-XXX-XXXX
    It seems the number is invalid so AT&T respond back saying that "at&t +1 (1) (216)116-11 error invalid number please resend using 10 digit mobile number"
    If you are using the right number and you know for sure it is a working number, try delete the number in question that you try to text to like call history or text history of that number and just delete it. Do not delete the number in your contacts though. Delete history pertaining to it in calls and text.
    Then try it again to text to the number.

  • ORA-00902: invalid datatype comile error while using CAST function

    Hi everyone,
    I'm getting ORA-00902: invalid datatype compilation error while using CAST function.
    open ref_cursor_list for select empName from TABLE(CAST(part_t AS partnumberlist));
    The partnumberlist and ref_cursor_list is declared in the Package spec as given below.
    TYPE ref_cursor_list IS REF CURSOR;
    TYPE partnumberlist IS TABLE OF emp.empName%TYPE;
    The error points the partnumberlist as invalid datatype in TOAD because of this i'm unable to compile the package.
    Any suggestion
    Thanks and regards
    Sathish Gopal

    Here is my code for
    package Spec
    CREATE OR REPLACE PACKAGE "HISTORICAL_COMMENTZ" AS
    TYPE prior_part_data_record IS RECORD (
    prior_part_row_id PGM_RPLCMNT_PART.PR_PART_ROW_S_ID%TYPE,
    prior_pgm_chng_s_id PGM_RPLCMNT_PART.PR_PGM_CHNG_S_ID%TYPE
    TYPE parts_list IS TABLE OF prior_part_data_record;
    --TYPE parts_list IS TABLE OF NUMBER;
    TYPE partnumberlist IS TABLE OF PGM_RPLCMNT_PART.PR_PART_ROW_S_ID%TYPE;
    TYPE partnumber_cursor IS REF CURSOR;
    TYPE comment_record IS RECORD (
    pgm_s_id                     PGM_PART_CMNT.PGM_S_ID%TYPE,
    part_row_s_id                PGM_PART_CMNT.PART_ROW_S_ID%TYPE,
    pgm_chng_s_id                PGM_PART_CMNT.PGM_CHNG_S_ID%TYPE,
    cmnt_txt                     PGM_PART_CMNT.CMNT_TXT%TYPE,
    cmnt_dt                     PGM_PART_CMNT.CMNT_DT%TYPE,
    updt_rsrc_id                PGM_PART_CMNT.UPDT_RSRC_ID%TYPE
    TYPE comment_list IS TABLE OF comment_record;
    global_pgm_s_id INTEGER := 0;
    global_part_row_s_id INTEGER := 0;
    err_num NUMBER := 999999;
    err_msg VARCHAR2 (250);
    PROCEDURE getComments (
    pgm_s_id IN NUMBER,
    part_row_s_id IN NUMBER,
    partnumber_cursorlist out partnumber_cursor);
    END;
    Package Body
    CREATE OR REPLACE PACKAGE BODY HISTORICAL_COMMENTZ
    AS
    FUNCTION getPriorPart
    (param_prior_pgm_chng_s_id IN PGM_RPLCMNT_PART.PR_PGM_CHNG_S_ID%TYPE,
    return_prior_part_data_record IN OUT prior_part_data_record
    RETURN INTEGER
    IS
    retVal INTEGER;
    prior_part_row_id INTEGER;
    prior_pgm_chng_s_id INTEGER;
    local_prior_part_data_record prior_part_data_record;
    BEGIN
    SELECT PR_PART_ROW_S_ID AS prior_part_row_id, PR_PGM_CHNG_S_ID AS prior_pgm_chng_s_id
    INTO local_prior_part_data_record
    --SELECT PR_PART_ROW_S_ID INTO retVal
    FROM PGM_RPLCMNT_PART
    WHERE PGM_S_ID = global_pgm_s_id AND CUR_PGM_CHNG_S_ID = param_prior_pgm_chng_s_id;
    return_prior_part_data_record := local_prior_part_data_record;
    retVal := 0;
    RETURN retVal;
    EXCEPTION
    WHEN NO_DATA_FOUND
    THEN
    err_num := SQLCODE;
    err_msg := 'SQL Error ' || SUBSTR (SQLERRM, 1, 250);
    DBMS_OUTPUT.put_line ('SQLERROR = ' || err_msg);
    retVal := -1;
    RETURN retVal;
    WHEN OTHERS
    THEN
    err_num := SQLCODE;
    err_msg := 'SQL Error ' || SUBSTR (SQLERRM, 1, 250);
    DBMS_OUTPUT.put_line ('SQLERROR = ' || err_msg);
    retVal := -1;
    RETURN retVal;
    END getPriorPart;
    FUNCTION getComment (found_parts_list IN parts_list, comments OUT comment_list)
    RETURN INTEGER
    IS
    CURSOR init_cursor
    IS
    SELECT PGM_S_ID,PART_ROW_S_ID,PGM_CHNG_S_ID,CMNT_TXT,CMNT_DT,UPDT_RSRC_ID
    FROM PGM_PART_CMNT WHERE 1 = 2;
    retVal INTEGER;
    indexNum PLS_INTEGER;
    local_part_record prior_part_data_record;
    local_comment_record comment_record;
    local_part_row_s_id NUMBER;
    i PLS_INTEGER;
    BEGIN
    OPEN init_cursor;
    FETCH init_cursor
    BULK COLLECT INTO comments;
    i := 0;
    indexNum := found_parts_list.FIRST;
    WHILE indexNum IS NOT NULL
    LOOP
    local_part_record := found_parts_list(indexnum);
    local_part_row_s_id := local_part_record.prior_part_row_id;
    SELECT PGM_S_ID,PART_ROW_S_ID,PGM_CHNG_S_ID,CMNT_TXT,CMNT_DT,UPDT_RSRC_ID
    INTO local_comment_record FROM PGM_PART_CMNT
    WHERE PGM_S_ID = global_pgm_s_id
    AND PART_ROW_S_ID = local_part_row_s_id;
    comments(i) := local_comment_record;
    i := i + 1;
    END LOOP;
    RETURN retval;
    EXCEPTION
    WHEN NO_DATA_FOUND
    THEN
    err_num := SQLCODE;
    err_msg := 'SQL Error ' || SUBSTR (SQLERRM, 1, 250);
    DBMS_OUTPUT.put_line ('SQLERROR = ' || err_msg);
    RETURN retval;
    WHEN OTHERS
    THEN
    err_num := SQLCODE;
    err_msg := 'SQL Error ' || SUBSTR (SQLERRM, 1, 250);
    DBMS_OUTPUT.put_line ('SQLERROR = ' || err_msg);
    RETURN retval;
    END getComment;
    PROCEDURE getComments
    pgm_s_id IN NUMBER,
    part_row_s_id IN NUMBER,
    partnumber_cursorlist OUT partnumber_cursor)
    IS
    comment_recordlist comment_record;
    retPartnumberlist partnumberlist;
    found_parts_list parts_list;
    local_part_record prior_part_data_record;
    is_more_parts BOOLEAN;
    driver_chng_s_id NUMBER;
    num_parts NUMBER;
    retVal NUMBER;
    comments comment_list;
    returnPartnumberlist partnumberlist;
    iloopCounter PLS_INTEGER;
    inx1 PLS_INTEGER;
    part_t partnumberlist :=partnumberlist(100,200,300);
    CURSOR part_list_init_cursor
    IS
    SELECT PR_PART_ROW_S_ID,PR_PGM_CHNG_S_ID FROM PGM_RPLCMNT_PART WHERE 1 = 2;
    CURSOR inIt_cursor
    IS
    SELECT 0 FROM DUAL WHERE 1 = 2;
    BEGIN
    DBMS_OUTPUT.ENABLE (5000000);
    global_pgm_s_id := pgm_s_id;
    global_part_row_s_id := part_row_s_id;
    SELECT PART_ROW_S_ID AS prior_part_row_id, PR_PGM_CHNG_S_ID AS prior_pgm_chng_s_id
    INTO local_part_record
    FROM PGM_RPLCMNT_PART
    WHERE PGM_S_ID = global_pgm_s_id AND PART_ROW_S_ID = global_part_row_s_id AND
    CUR_PGM_CHNG_S_ID IN (SELECT MAX(CUR_PGM_CHNG_S_ID) FROM PGM_RPLCMNT_PART WHERE
    PGM_S_ID = global_pgm_s_id AND PART_ROW_S_ID = global_part_row_s_id
    GROUP BY PART_ROW_S_ID);
    OPEN part_list_init_cursor;
    FETCH part_list_init_cursor
    BULK COLLECT INTO found_parts_list;
    -- Add the existing part to the found list
    found_parts_list.EXTEND;
    found_parts_list(1) := local_part_record;
    driver_chng_s_id := local_part_record.prior_pgm_chng_s_id;
    num_parts := 1;
    is_more_parts := TRUE;
    WHILE (is_more_parts) LOOP
    retVal := getPriorPart(driver_chng_s_id,local_part_record);
    IF (retVal != -1) THEN
    found_parts_list.EXTEND;
    num_parts := num_parts + 1;
    found_parts_list(num_parts) := local_part_record;
    driver_chng_s_id := local_part_record.prior_pgm_chng_s_id;
    ELSE
    is_more_parts := FALSE;
    END IF;
    END LOOP;
    --num_parts := getComment(found_parts_list,comments);
    OPEN init_cursor;
    FETCH init_cursor
    BULK COLLECT INTO returnPartnumberlist;
    num_parts := found_parts_list.COUNT;
    FOR iloopCounter IN 1 .. num_parts
    LOOP
    returnPartnumberlist.EXTEND;
    returnPartnumberlist(iloopCounter) := found_parts_list(iloopCounter).prior_part_row_id;
    END LOOP;
    retPartnumberlist := returnPartnumberlist;
    open
    *          partnumber_cursorlist for select PR_PART_ROW_S_ID from TABLE(CAST(retPartnumberlist AS historical_commentz.partnumberlist));*                              
    DBMS_OUTPUT.put_line('Done....!');
    EXCEPTION
    some code..............................
    END getComments;
    END HISTORICAL_COMMENTZ;
    /

  • Error in data template while using database function

    Hi,
    I have created a datatemplate in BI Publisher with the following code.
    <dataTemplate name = "AuditReport" dataSourceRef = "pg">
    <dataQuery>
    <sqlStatement>
    SELECT b.*,s.audit_table_name,s.audit_operation,s.AUDIT_TIME_STAMP
    FROM bi_audit_records b,sys_audit s
    where b.AUDIT_ID=s.AUDIT_ID
    </sqlStatement>
    </dataQuery>
    <dataTrigger name="beforeReport" source="fn_audit_data(to_date('2010-04-01','yyyy-mm-dd'),to_date('2010-04-02','yyyy-mm-dd'),'ADMIN')"/>
    </dataTemplate>
    But when I try to view this, I am getting the following error.
    A name was started with an invalid character.
    Error processing resource 'http://<system name>:9704/xmlpserver/servlet/xdo'. ...

    Hi,
    This issue is related Oracle database issue, check with Basis/Dba team. Oce they resolved you can run the report with selections.
    If you know the table name you can check in SE14 (Data base Utility) and adjust the table. Some times it will work out.
    Hope it helps you.
    Riyez

  • Invalid color template image

    I try to do patttern matching using IMAQ Vision. Both source and
    template images are .BMP files and are generated in a VB .NET program
    through NI Framegrabber. IMAQ Match Color Pattern gives me the
    following error message:
    Error-1074395384 occurred at IMAQ Match Color Pattern
    Invalid color template image
    Do I have to use .PNG files when doing pattern matching?
    Thanks.

    Hey John123,
    I was wondering what version of Vision that you are using? Have you tried to run any of the example programs, like the ColorPatternMatching example that can be found in the following directory: C:\Program Files\National Instruments\Vision\Examples\MSVB.NET\2. Functions\Color Pattern Matching. I was able to run this example program by using .BMP images and not PNG images. So to answer your question, you don't have to use PNG files with this function, you can use Bitmap images. You can use any kind of image that have a 32-bit RGB or HSL bit depth.
    If you are acquiring from a Framegrabber, I would suggest that you double check and make sure that the images that you are getting from your camera are actually 32-bit, and not 16-bit. Also, you could post a couple of your images on this thread, and I could try them out with an example that uses the IMAQ Match Color Pattern function. Try some other BMP images and do you get the same error? Try the example program, and see if that gives you the error with your images. Let me know if you have any questions. Thanks, and have a great day.
    Regards,
    DJ L.

  • Delete language template in use Cisco ISE

    Hi I have a problem updating my ise, there is a faulty language template in use as I can see in the log files, its not a system template so I want to proceed to delete it, but I can't because its still in use by a sponsor or a user, the problem is that sponsor grups had this option *Maximum Duration of Account set to 999999.
    Is there a way to logout all sponsors (they are not local users)?
    this is the output log when updating the ise, I had to open a TAC case because my firs support couldn´t update form the latest 1.1.4 to 1.2
    PortalConfigUpgradeUtil: getInstance
    adding default attributes to SponsorUser.
    UpgradeUtil: Add attribute: DefaultGuestRole to object type: SponsorUser
    UpgradeUtil: Added attribute: DefaultGuestRole
    UpgradeUtil: Add attribute: DefaultTimeProfile to object type: SponsorUser
    UpgradeUtil: Added attribute: DefaultTimeProfile
    UpgradeUtil: Add attribute: DefaultLanguageNotification to object type: SponsorUser
    UpgradeUtil: Added attribute: DefaultLanguageNotification
    UpgradeUtil: Add attribute: LoginUsername to object type: SponsorUser
    UpgradeUtil: Added attribute: LoginUsername
    Setting default attributes on SponsorUser ...
    upgrade default attributes for sponsoruser: 175fa0e0-8969-11e1-8db8-005056b00068
    upgrade default attributes for sponsoruser: domainuser1
    upgrade default attributes for sponsoruser: domainuser2
    failed to update sponsor user: Invalid Language Template: Spanish
    com.cisco.cpm.nsf.api.exceptions.NSFEntitySaveFailed: Invalid Language Template: Spanish
        at com.cisco.cpm.guest.impl.SponsorUserImpl.save(SponsorUserImpl.java:916)
        at com.cisco.cpm.guest.upgrade.PortalConfigUpgradeUtil.updateDefaultSponsorUserAttributes(PortalConfigUpgradeUtil.java:149)
        at com.cisco.cpm.guest.upgrade.GuestUpgradeService.upgradeGuestDefaults(GuestUpgradeService.java:3154)
        at com.cisco.cpm.guest.upgrade.GuestUpgradeService.upgrade(GuestUpgradeService.java:349)
        at com.cisco.cpm.infrastructure.upgrade.impl.UpgradeServiceRegistrar.UpgradeServices(UpgradeServiceRegistrar.java:131)
        at com.cisco.cpm.infrastructure.upgrade.impl.UpgradeServiceRegistrar.main(UpgradeServiceRegistrar.java:184)
    GuestUpgradeService: Failed to upgrade guest defaults Invalid Language Template: Spanish
    Error while applying changes in version: 1.2.0.882 class: com.cisco.cpm.guest.upgrade.GuestUpgradeService
    com.cisco.cpm.infrastructure.upgrade.api.UpgradeFailureException: com.cisco.cpm.nsf.api.exceptions.NSFEntitySaveFailed: Invalid Language Template: Spanish
        at com.cisco.cpm.guest.upgrade.GuestUpgradeService.upgradeGuestDefaults(GuestUpgradeService.java:3162)
        at com.cisco.cpm.guest.upgrade.GuestUpgradeService.upgrade(GuestUpgradeService.java:349)
        at com.cisco.cpm.infrastructure.upgrade.impl.UpgradeServiceRegistrar.UpgradeServices(UpgradeServiceRegistrar.java:131)
        at com.cisco.cpm.infrastructure.upgrade.impl.UpgradeServiceRegistrar.main(UpgradeServiceRegistrar.java:184)
    Caused by: com.cisco.cpm.nsf.api.exceptions.NSFEntitySaveFailed: Invalid Language Template: Spanish
        at com.cisco.cpm.guest.impl.SponsorUserImpl.save(SponsorUserImpl.java:916)
        at com.cisco.cpm.guest.upgrade.PortalConfigUpgradeUtil.updateDefaultSponsorUserAttributes(PortalConfigUpgradeUtil.java:149)
        at com.cisco.cpm.guest.upgrade.GuestUpgradeService.upgradeGuestDefaults(GuestUpgradeService.java:3154)
        ... 3 more
    ERROR! isedataupgrade.sh FAILED. ISE GLOBAL DATA UPGRADE FAILED
    After a clean install to 1.2 and installing the backup of 1.1.4 I get the same error
    failed to update sponsor user: Invalid Language Template: Spanish
    com.cisco.cpm.nsf.api.exceptions.NSFEntitySaveFailed: Invalid Language Template: Spanish
         at com.cisco.cpm.guest.impl.SponsorUserImpl.save(SponsorUserImpl.java:916)
         at com.cisco.cpm.guest.upgrade.PortalConfigUpgradeUtil.updateDefaultSponsorUserAttributes(PortalConfigUpgradeUtil.java:149)
         at com.cisco.cpm.guest.upgrade.GuestUpgradeService.upgradeGuestDefaults(GuestUpgradeService.java:3154)
         at com.cisco.cpm.guest.upgrade.GuestUpgradeService.upgrade(GuestUpgradeService.java:349)
         at com.cisco.cpm.infrastructure.upgrade.impl.UpgradeServiceRegistrar.UpgradeServices(UpgradeServiceRegistrar.java:131)
         at com.cisco.cpm.infrastructure.upgrade.impl.UpgradeServiceRegistrar.main(UpgradeServiceRegistrar.java:184)
    GuestUpgradeService: Failed to upgrade guest defaults Invalid Language Template: Spanish
    Error while applying changes in version: 1.2.0.882 class: com.cisco.cpm.guest.upgrade.GuestUpgradeService
    com.cisco.cpm.infrastructure.upgrade.api.UpgradeFailureException: com.cisco.cpm.nsf.api.exceptions.NSFEntitySaveFailed: Invalid Language Template: Spanish
         at com.cisco.cpm.guest.upgrade.GuestUpgradeService.upgradeGuestDefaults(GuestUpgradeService.java:3162)
         at com.cisco.cpm.guest.upgrade.GuestUpgradeService.upgrade(GuestUpgradeService.java:349)
         at com.cisco.cpm.infrastructure.upgrade.impl.UpgradeServiceRegistrar.UpgradeServices(UpgradeServiceRegistrar.java:131)
         at com.cisco.cpm.infrastructure.upgrade.impl.UpgradeServiceRegistrar.main(UpgradeServiceRegistrar.java:184)
    Caused by: com.cisco.cpm.nsf.api.exceptions.NSFEntitySaveFailed: Invalid Language Template: Spanish
         at com.cisco.cpm.guest.impl.SponsorUserImpl.save(SponsorUserImpl.java:916)
         at com.cisco.cpm.guest.upgrade.PortalConfigUpgradeUtil.updateDefaultSponsorUserAttributes(PortalConfigUpgradeUtil.java:149)
         at com.cisco.cpm.guest.upgrade.GuestUpgradeService.upgradeGuestDefaults(GuestUpgradeService.java:3154)
         ... 3 more
    ERROR! isedataupgrade.sh FAILED. ISE GLOBAL DATA UPGRADE FAILED

    Hi, Alexander De Menezes from the tac team helped me to solve this issue, it is related to the internal oracle database.
    Kind regards

  • BI Composer - Error of Invalid BIPS Connection error

    Hello Experts -
    When we select the subject area to create analysis in BI composer then we get "Invalid BIPS Connection" error.
    This mught not be related to BI COmposer.
    Could you help us here in debugging this issue.
    Thank you!

    Hi
    I too facing same error in obiee11.1.1.6.2Bp1 version
    Earlier Its working fine inOBIEE11.1.6.0 version and just now upgraded into obiee1111621 then the bi composer throwing bi composer invalid connection
    I just Confirming below I did
    1.Instanconfig file bi composer tag enable as true
    2. Extending oracle.bicomposer.template.11.1.1 etc by using weblogic configuration wizard and odbc configured
    3. Fmw em update ( host,port,user,password etc on System MBean configuration
    4.) also tried to install that bicomposer script file via command prompt still it's not working
    Note:bi comppser obiee11.1.1.6.0 version was working fine for me
    My current setup having ssl and I am on windows ..already checked oracle not and some blog but no luck ..
    Edited by: Devarasu on Aug 31, 2012 1:30 AM

  • Saving Images Using Vision Acquisition Express

    I'm trying to save an Image as a jpg using Vision Acquisition Express. My code looks like this. I am able to view the images and scroll through them afterwards, but when I add the file saving portion, I get an error that says "Error 1074395995 occured at IMAQ WriteBMPFile File not found."
    How should I go about Fixing this? 
    Also, when i was running this before, I was getting a memory error and I couldn't figure out how to clear the memory. I was only able to fix this by scraping my previous script and starting over. I haven't gotten this error so far.
    Attachments:
    TakingImages.vi ‏156 KB

    Hi,
    The error you are getting indicates that the file path is invalid.  I just set the file path to my desktop and I could save the files.  I would double check to make sure the path you specified is valid for the computer you are running it on.
    As far as the memory error, it is really hard to say what the cause is.  If you aren't getting it anymore then I wouldn't be to concerned.
     Regards,
    Greg H.
    Applications Engineer
    National Instruments

Maybe you are looking for

  • Labor for purchase - How do we handle that?

    Hi Forum, When an item is Labor or Travel, it is available only for sales? How do you handle a Contract Wage that you buy for 75 dollars an hour but sell it for 150 dollars an hour? Yes we can make the above item a non-inventory regular item (that is

  • ORaMTS Support of Multiple Business Logic Servers

    Does the 8.1.7.4.0 of Oracle Services For MTS beta support multiple business logic servers connecting to a single Oracle database instance using MTS DTC coordinated transactions without a single point of failure? We would like to ensure that if any b

  • Disable SSL 2.0 on Windows 2008 R2

    Hi. Can anyone give me a step by step on how to disable SSL 2.0 on IIS 7.5 please? I cannot find an article for it and those refering to IIS 7.0 do not seem to work. Regards, Morris Best Regards, Morris Fury AFRIDATA.net

  • Scrolling suddenly very slow

    Good evening, I'm having trouble with my up and down arrows for scrolling through anything, websites, PDFs etc...I can swear it was fine just a few minutes ago before I was playing around with the settings, but I can't seem to find anything that has

  • KeyEvent ENTER codes

    Hi!! I've found a problem in my textfields. Maybe someone could help me. I have some textfields in a Jtable. This fields extend form jtextfield but have been modified for having an specific format. For example, one only allow five digits. The problem