Error in Comparison

Hello, my name is Matias. I am from Argentina, ORT school. First of all, i should tell you, i am not an expert when it comes to English, so if there is something you do not understand let me know, jeje. Me and my team are working in a project, with labview program. We are having trouble when comparing some types of data.I do not know how to explain it, so i am going to show you an example. This is not our program, is just an example that shows the problem we are having. If you prefer i can upload the full program.
Thanks in advance
Solved!
Go to Solution.
Attachments:
test.vi ‏66 KB

The Or function will not accept dynamic data for both terminals. You need to convert the dynamic data to "real" data using the Convert From Dynamic Data VI. You can insert this function in the wire coming from your DAQ Assistant. In your case you're just acquiring one sample, so you want to convert to a scalar. See attached modification.
Attachments:
test MOD.vi ‏84 KB

Similar Messages

  • Error running comparison report

    In a Demo instance for release 12.1.2 I run the extract for Profiles selection set, then on the same instance, changed some of the profile values and re-run the same extract. When I run the comparison report using both extract files I get the following error message:
    Entity Name: Profile Options
    Ignore Warnings and Continue: No
    Update Existing Records: Yes
    Time Taken(seconds): 89.0
    java.sql.SQLException: ORA-20001: The following PL/SQL exception:
    -1422: ORA-01422: exact fetch returns more than requested number of rows
    occurred in procedure az_comp_reporter.compare
    on this statement:
    procedure end
    ORA-06512: at "APPS.AZ_COMP_REPORTER", line 755
    ORA-06512: at "APPS.AZ_COMP_REPORTER", line 180
    Any help how to troubleshoot this?
    Thanks

    Hi:
    Please check for the report preferences for the key attributes marked for comparison. Also, please log a SR for tracking this issue with development.
    Thanks,
    Lokesh

  • Conditional error for comparison of sine waves

    Hello Everyone,
    i am making a small program that is for some changes in sine waves and later i have to compare to set my condition. i cannot get through this error. i actually want out put as bolean so my condition for loop is attached with this output. Anybody please help
    Regards
    Qasim
    Solved!
    Go to Solution.
    Attachments:
    error.png ‏29 KB
    test.vi ‏63 KB

    Have a look at the examples of the mixed signal graph. That indicator 'eats' nearly everything... wfrms together with XY data with ...
    However I didn't get the intensity graph included
    Greetings from Germany
    Henrik
    LV since v3.1
    “ground” is a convenient fantasy
    '˙˙˙˙uıɐƃɐ lɐıp puɐ °06 ǝuoɥd ɹnoʎ uɹnʇ ǝsɐǝld 'ʎɹɐuıƃɐɯı sı pǝlɐıp ǝʌɐɥ noʎ ɹǝqɯnu ǝɥʇ'
    Attachments:
    mixedsig.vi ‏12 KB

  • While creating a PO (GL Error)

    Hi FI Gurus,
    When i am creating a PO through ME21N so system is automatically taken the GL but system is giving error on this GL.
    The error is:
    Comparison of the field selection strings from the G/L account 604310 and the account assignment category 1 reveals that there is an incompatible combination of field selections for the field selection group 'WBS element'.
    The G/L account field selection is stored in table T004F; that for the account assignment is stored in table T162K.
    Kindly tell me how i can rectify this error.
    Regards,
    Yasir

    HI,
    JUST GOTO T CODE OBYC AND CHECK WETHER GL IS ASSIGNMENT ACCOUNT IS ASSIGNED  R NOT....
    JUST CHECK
    IF USEFUL ASSSIGN POINTS....
    REGARDS,
    SANTOSH KUMAR

  • Error while Comparing 2 Document

    Hello Acrobat Support team:
    i had developed new acrobat plugin,it used to Connect on oracle database and get List of Documents need to be compared using
    DigSigCompareWords [SDK.8] , it works fine but some documents fires error
    [the comparison could not be completed, error while parsing a form , type 3 font, or pattern] how can i handle this error ?
    Best Regards;

    Hi Kishore,
    Please check the sales order is this relevent for the delivery or not.
    Check the copy control settings between your sales document type and delivery document type in VTLA transaction.
    Check the incompletion log for the sales order.
    I hope it will help you,
    Regards,
    Murali.

  • Can't find answer to Query Of Queries runtime error

    Not only I browsed this forum but also googled this problem but unfortunnately I have no luck in finding the answer.
    All I did was writing this simple query:
    <cfquery name="test" dbtype="query">
    select SSN,BirthDate from myquery where SSN <> '' OR BirthDate <> ''
    </cfquery>
    and I got this error:
    Query Of Queries runtime error.
    Comparison exception while executing <>.
    Unsupported Type Comparison Exception: The <> operator does not support comparison between the following types:
    Left hand side expression type = "DOUBLE".
    Right hand side expression type = "STRING".
    I tried the following and did not work either, still got the same error.
    <cfquery name="test" dbtype="query"> 
    select SSN,BirthDate from myquery
    where SSN <> <cfqueryparam cfsqltype="CF_SQL_VARCHAR" value=""/>  
    OR BirthDate <> <cfqueryparam cfsqltype="CF_SQL_VARCHAR" value=""/></cfquery>
    Has someone ever encountered the same problem and know how to solve it?

    HELP ! ! !  Going into testing soon. I need this to work to get correct report results ! ! ! !
    My issue seems similar to the one under discussion and the reply from lawhite01 caught my eye. Can you roll my issue into this discussion?
    This is a 2 parter. The second part is the QoQ part, but the 1st part has a line in the query that is similar to the QoQ one and it uses the same data. Part 1 also throws an error.
    PART # 1.
    I'm trying to use a query table created through QueryNew and then query it.
    I need multiple columns in the query table I create:
    <cfscript>
            tot_AllCurrentDraftListing = QueryNew("AnnounceNum, JP_PDLoc, JP_JS_Title, JP_JS, JP_KW_1, JP_JobTitle, JP_Open, JP_Close, JP_CloseType, JP_CloseName, JP_PosNeed, JP_DirectHire, JP_Desc, JP_Draft, JP_Archived, JP_State, JP_AreaName, JP_AreaID, JP_AreaAlias, JP_Fac_SU, JP_Fac_Facility, JP_FAC_ID, JP_Grade1, JP_sal_low1, JP_sal_high1, JP_Grade2, JP_sal_low2, JP_sal_high2, JP_Grade3, JP_sal_low3, JP_sal_high3, JP_Grade4, JP_sal_low4, JP_sal_high4, JP_Grade5, JP_sal_low5, JP_sal_high5, JP_Posted, JP_TypeHire, JP_HRemail");
        </cfscript>
    Then I populate all the cells of the query table.
    Then I set up to use the created query table.
    I do this first:
        <cfquery name="qAltPostID" datasource="#at_datasource#">
             SELECT AltPoster, fk_Job_AnnounceNum
             from JOB_JPContacts
             Where AltJPContactType = 'AltPosterID'
             and AltPoster = '#session.IHSUID#'
             </cfquery>
    Then, in my first query using the created query, I expect to need to choose from multiple values, so I'm using this line in the query (this is NOT a QoQ query):
                and AnnounceNum IN (<cfqueryparam cfsqltype="CF_SQL_varchar" value="#ValueList(qAltPostID.fk_Job_AnnounceNum)#">)
    I've also tried:
                   and AnnounceNum IN (#ValueList(qAltPostID.fk_Job_AnnounceNum)#)   
    and:
                   and JOB_AnnounceNum IN
                    SELECT fk_Job_AnnounceNum
                    from JOB_JPContacts
                    Where AltJPContactType = 'AltPosterID'
                    and AltPoster = '#session.IHSUID#'
    ERROR is: one record should return. I get 0.
    PART # 2: Here's the QoQ part.
    I get the error:
    Query Of Queries runtime error.
    Comparison exception while executing IN.
    Unsupported Type Comparison Exception: The IN operator does not support comparison between the following types:
    Left hand side expression type = "LONG".
    Right hand side expression type = "STRING".
    A tutorial I found gave an example using only one column for this part of the fix:
         tot_AllCurrentDraftListing = QueryNew("AnnounceNum", "CF_SQL_VARCHAR")
    How would I set up the query with the datatype when I'm using multiple columns:
    <cfscript>
            tot_AllCurrentDraftListing = QueryNew("AnnounceNum, JP_PDLoc, JP_JS_Title, JP_JS, JP_KW_1, JP_JobTitle, JP_Open, JP_Close, JP_CloseType, JP_CloseName, JP_PosNeed, JP_DirectHire, JP_Desc, JP_Draft, JP_Archived, JP_State, JP_AreaName, JP_AreaID, JP_AreaAlias, JP_Fac_SU, JP_Fac_Facility, JP_FAC_ID, JP_Grade1, JP_sal_low1, JP_sal_high1, JP_Grade2, JP_sal_low2, JP_sal_high2, JP_Grade3, JP_sal_low3, JP_sal_high3, JP_Grade4, JP_sal_low4, JP_sal_high4, JP_Grade5, JP_sal_low5, JP_sal_high5, JP_Posted, JP_TypeHire, JP_HRemail");
        </cfscript>
    I used this code after all the cells contained values and before running my QoQ query:
            <cfloop index="intID" from="1" to="#tot_AllCurrentDraftListing.recordcount#" step="1">
                <cfset tot_AllCurrentDraftListing["AnnounceNum"] [intID] = JavaCast("string", intID) />
            </cfloop>
              Is that correct?
    Thanks.
    Whoever can help me with this should be awarded extra points ! ! ! !

  • Function erroring

    The function below is supposed to convert a character in the v_House_Number.
    v_House_Number would look like U0006564VA2WKN or U0006564V02WKN.
    If it contains VA, the house_number remains unchaged. If it contains V01, V02, V03...V10,..V20 etc, those characters will have to be changed to VA1 (instead of V01, where A is ascii character 65), VA2, VA3...VB1 (instead of V10, where B is ascii character 66),...VC1 (instead of V20, where C is ascii character 67) etc. up to V99.
    I have created the function below which should do what is required, but it keeps on bringing back error after error.
    Can someone help as any time I fix an error, another one seems to appear?
    Any suggestion on where I am going wrong?
    Some of the errors I am getting are listed below.
    Thanks
    FUNCTION Convert_House_Prefix(v_House_Number VARCHAR2) RETURN VARCHAR IS
        v_Oldsubstring VARCHAR2(3);
        v_Part1        VARCHAR2(3);
        v_Part2        VARCHAR2(3);
        v_Newsubstring VARCHAR2(15);
        v_Newpart1     VARCHAR2(3);
        v_Newpart2     VARCHAR2(3);
      BEGIN
        v_Oldsubstring := Substr(v_House_Number, 10, 2);
        v_Part1        := Substr(v_Oldsubstring, 1, 1);
        v_Part2        := Substr(v_Oldsubstring, 2, 1);
        IF v_Part1 := 0
        THEN
          v_Newpart1 := 'A';
          v_Newpart2 := v_Part2;
        END;
      ELSE
      v_Newpart1 := (Ascii(65 + v_Part1));
      v_Newpart2 := v_Part2 + 1;
    END IF;
    RETURN v_Newsubstring := Substr(v_House_Number, 1, 9) + v_Newpart1 + v_Newpart2 + Substr(v_House_Number, 12);
    END;---------
    Error: PLS-00103: Encountered the symbol "=" when expecting one of the following:
    . ( * @ % & = - + < / > at in is mod not rem then
    <an exponent (**)> <> or != or ~= >= <= <> and or like
    between ||
    The symbol "* was inserted before "=" to continue.
    Line: 765
    Text: v_Part2 VARCHAR2(3);
    Error: PLS-00103: Encountered the symbol ";" when expecting one of the following:
    if
    Line: 769
    Error: Hint: Comparison with NULL in 'Concat_Participate_Rows'
    Line: 512
    Text: IF v_Participant_String <> ''
    Error: Hint: Variable 'v_Newsubstring' is declared but never used in 'Convert_House_Prefix'
    Line: 766
    Text: v_Newsubstring VARCHAR2(15);
    Error: Hint: Value assigned to 'v_Part1' never used in 'Convert_House_Prefix'
    Line: 772
    Text: v_Part1 := Substr(v_Oldsubstring, 1, 1);
    Error: Hint: Value assigned to 'v_Newpart1' never used in 'Convert_House_Prefix'
    Line: 777
    Text: v_Newpart1 := 'A';
    Error: Hint: Value assigned to 'v_Newpart2' never used in 'Convert_House_Prefix'
    Line: 778
    Text: v_Newpart2 := v_Part2;
    Error: Hint: Function 'Convert_House_Prefix' does not return a value
    Line: 762
    Text: FUNCTION Convert_House_Prefix(v_House_Number VARCHAR2) RETURN VARCHAR IS

    Thanks,
    I have made some extra changes and the function below works.
    FUNCTION Convert_House_Prefix(v_House_Number VARCHAR2) RETURN VARCHAR2 IS
        v_Oldsubstring VARCHAR2(3);
        v_Part1        VARCHAR2(3);
        v_Part2        VARCHAR2(3);
        v_Newsubstring VARCHAR2(15);
        v_Newpart1     VARCHAR2(3);
        v_Newpart2     VARCHAR2(3);
      BEGIN 
        v_Oldsubstring := Substr(v_House_Number, 10, 2); --i.e.:01
        v_Part1        := Substr(v_Oldsubstring, 1, 1); --0
        v_Part2        := Substr(v_Oldsubstring, 2, 1); --1
        IF v_Part1 = 0
        THEN
          v_Newpart1 := 'A';
          v_Newpart2 := v_Part2;
                ELSE
            v_Newpart1 := Chr(65 + v_Part1);
            v_Newpart2 := v_Part2 + 1;
          END IF;  
             v_Newsubstring := Substr(v_House_Number, 1, 9) || v_Newpart1 ||
                          v_Newpart2 || Substr(v_House_Number, 12);
        RETURN v_Newsubstring;
      EXCEPTION
        WHEN OTHERS THEN
          RETURN Substr(v_House_Number, 1, 9) || v_Oldsubstring || Substr(v_House_Number,
                                                                          12);
      END Convert_House_Prefix;I need to add the case where v_part1 = o (letter 'o') rather then a number.
    I have tried the below and other ways but, although it does not error, it does not do the conversion, any idea, please?
    FUNCTION Convert_House_Prefix(v_House_Number VARCHAR2) RETURN VARCHAR2 IS
        v_Oldsubstring VARCHAR2(3);
        v_Part1        VARCHAR2(3);
        v_Part2        VARCHAR2(3);
        v_Newsubstring VARCHAR2(15);
        v_Newpart1     VARCHAR2(3);
        v_Newpart2     VARCHAR2(3);
      BEGIN
        v_Oldsubstring := Substr(v_House_Number, 10, 2); --i.e.:01
        v_Part1        := Substr(v_Oldsubstring, 1, 1); --0
        v_Part2        := Substr(v_Oldsubstring, 2, 1); --1
        IF v_Part1 = 0
        THEN
          v_Newpart1 := 'A';
          v_Newpart2 := v_Part2;
        ELSE
          IF v_Part1 = 'O'
          THEN
            v_Newpart1 := 'A';
            v_Newpart2 := v_Part2;
          ELSE
            v_Newpart1 := Chr(65 + v_Part1);
            v_Newpart2 := v_Part2 + 1;
          END IF;
        END IF;
        v_Newsubstring := Substr(v_House_Number, 1, 9) || v_Newpart1 ||
                          v_Newpart2 || Substr(v_House_Number, 12);
        RETURN v_Newsubstring;
      EXCEPTION
        WHEN OTHERS THEN
          RETURN Substr(v_House_Number, 1, 9) || v_Oldsubstring || Substr(v_House_Number,
                                                                          12);
      END Convert_House_Prefix;

  • Errors with querying a query table using non-QoQ query and QoQ query

    HELP ! ! !  Going into testing soon. I need this to work to get correct report results ! ! ! !
    My issue seems similar to the one just answered about Query of Queries RunTime Error
    and the reply from lawhite01 caught my eye.
    This is a 2 parter. The second part is the QoQ part, but the 1st part has a line in the query that is similar to the QoQ one and it uses the same data. Part 1 also throws an error.
    PART # 1.
    I'm trying to use a query table created through QueryNew and then query it.
    I need multiple columns in the query table I create:
    <cfscript>
            tot_AllCurrentDraftListing = QueryNew("AnnounceNum, JP_PDLoc, JP_JS_Title, JP_JS, JP_KW_1, JP_JobTitle, JP_Open, JP_Close, JP_CloseType, JP_CloseName, JP_PosNeed, JP_DirectHire, JP_Desc, JP_Draft, JP_Archived, JP_State, JP_AreaName, JP_AreaID, JP_AreaAlias, JP_Fac_SU, JP_Fac_Facility, JP_FAC_ID, JP_Grade1, JP_sal_low1, JP_sal_high1, JP_Grade2, JP_sal_low2, JP_sal_high2, JP_Grade3, JP_sal_low3, JP_sal_high3, JP_Grade4, JP_sal_low4, JP_sal_high4, JP_Grade5, JP_sal_low5, JP_sal_high5, JP_Posted, JP_TypeHire, JP_HRemail");
        </cfscript>
    Then I populate all the cells of the query table.
    Then I set up to use the created query table.
    I do this first:
        <cfquery name="qAltPostID" datasource="#at_datasource#">
             SELECT AltPoster, fk_Job_AnnounceNum
             from JOB_JPContacts
             Where AltJPContactType = 'AltPosterID'
             and AltPoster = '#session.IHSUID#'
             </cfquery>
    Then, in my first query using the created query, I expect to need to choose from multiple values, so I'm using this line in the query (this is NOT a QoQ query):
                and AnnounceNum IN (<cfqueryparam cfsqltype="CF_SQL_varchar" value="#ValueList(qAltPostID.fk_Job_AnnounceNum)#">)
    I've also tried:
                   and AnnounceNum IN (#ValueList(qAltPostID.fk_Job_AnnounceNum)#)   
    and:
                   and JOB_AnnounceNum IN
                    SELECT fk_Job_AnnounceNum
                    from JOB_JPContacts
                    Where AltJPContactType = 'AltPosterID'
                    and AltPoster = '#session.IHSUID#'
    ERROR is: one record should return. I get 0.
    PART # 2: Here's the QoQ part.
    I get the error:
    Query Of Queries runtime error.
    Comparison exception while executing IN.
    Unsupported Type Comparison Exception: The IN operator does not support comparison between the following types:
    Left hand side expression type = "LONG".
    Right hand side expression type = "STRING".
    A tutorial I found gave an example using only one column for this part of the fix:
         tot_AllCurrentDraftListing = QueryNew("AnnounceNum", "CF_SQL_VARCHAR")
    How would I set up the query with the datatype when I'm using multiple columns:
    <cfscript>
            tot_AllCurrentDraftListing = QueryNew("AnnounceNum, JP_PDLoc, JP_JS_Title, JP_JS, JP_KW_1, JP_JobTitle, JP_Open, JP_Close, JP_CloseType, JP_CloseName, JP_PosNeed, JP_DirectHire, JP_Desc, JP_Draft, JP_Archived, JP_State, JP_AreaName, JP_AreaID, JP_AreaAlias, JP_Fac_SU, JP_Fac_Facility, JP_FAC_ID, JP_Grade1, JP_sal_low1, JP_sal_high1, JP_Grade2, JP_sal_low2, JP_sal_high2, JP_Grade3, JP_sal_low3, JP_sal_high3, JP_Grade4, JP_sal_low4, JP_sal_high4, JP_Grade5, JP_sal_low5, JP_sal_high5, JP_Posted, JP_TypeHire, JP_HRemail");
        </cfscript>
    I used this code after all the cells contained values and before running my QoQ query:
            <cfloop index="intID" from="1" to="#tot_AllCurrentDraftListing.recordcount#" step="1">
                <cfset tot_AllCurrentDraftListing["AnnounceNum"] [intID] = JavaCast("string", intID) />
            </cfloop>
              Is that correct?
    Thanks.
    Whoever can help me with this should be awarded extra points ! ! ! !

                and AnnounceNum IN (<cfqueryparam cfsqltype="CF_SQL_varchar" value="#ValueList(qAltPostID.fk_Job_AnnounceNum)#">)
    If you're passing a list as a param, you need to tell <cfqueryparam> it's a list.  Read:
    http://livedocs.adobe.com/coldfusion/8/htmldocs/Tags_p-q_18.html#1102474
    ERROR is: one record should return. I get 0.
    It's a bit hard to comment on this sort of thing without knowing the data involved.
    A tutorial I found gave an example using only one column for this part of the fix:     tot_AllCurrentDraftListing = QueryNew("AnnounceNum", "CF_SQL_VARCHAR")
    How would I set up the query with the datatype when I'm using multiple columns:
    Again, this is a matter of reading the relevant docs:
    http://livedocs.adobe.com/coldfusion/8/htmldocs/functions_m-r_19.html#292759
    As a general rule, if you're having trouble with the syntax of a CFML statement, look it up in the docs.
    Adam

  • Excel 2003 to 2013 VBA migration bug

    Hello!
    I need to convert mission critical workbooks with much VBA code from Excel 2003 to Excel 2013, of which some were originally created using Excel 97.
    When running any VBA macro I get 0x80028018 errors. A similar problem is described in KB320369 - BUG: "Old format or invalid type library"
    error when automating Excel - however in my case it's
    VBA, not .NET or VSTO and
    I have installed the proper language packs.
    I need to describe more detailed:
    Even when I open the legacy workbook in 2013, create a new blank sheet, delete all old sheets and all VBA code, forms etc., put a new command button in, calling any new VBA sub, I get that error.
    When I create a new workbook from scratch, put a new command button in, calling any new VBA sub, there is no error!
    It also makes no difference, if I save it in compatibility mode xls or as new xlsm. See the screenshots.
    I believe there is some legacy metadata in vbaProject.bin, which makes Excel 2013 choke.
    Thanks!
    L.
    Run-Time Error Message:
    Comparison of the zipped contents of "Book2", the newly created workbook, and "L_VK_1_min", the converted legacy workbook:

    Hi asklucas,
    Are you installing mutiple version of Excel on the same computer? Can you check the wether the reference is correct in tools-reference?
    >>I believe there is some legacy metadata in vbaProject.bin, which makes Excel 2013 choke.<<
    Is it helpful that conver the XLSM to XLSX, then copy the code in to XLSX and save it to XLSM back?
    If not, I suggest that you create a new workbook and copy the orgial code into the new workbook as a workaround.
    Event if there are many workbook, we can write an application to automate this process. Here are some helpful links for your reference:
    Objects (Visual Basic Add-In Model)
    OfficeTalk: Display a List of All VBA Procedures in a Workbook from the Ribbon
    Hope it is helpful.
    Regards & Fei
    We are trying to better understand customer views on social support experience, so your participation in this interview project would be greatly appreciated if you have time. Thanks for helping make community forums a great place.
    Click
    HERE to participate the survey.

  • Counting rows when subtracting several slicer options from another

    Hi Everyone
    I am trying to count the number of rows in a pivot table/chart that equal the value of one slicer value minus other slicer values. I don't know if you can use countrows for this, but I tried countax and I am getting an error for "comparison operations
    cannot be performed on values of incompatible types".
    Is this syntax related to countax or a logical issue?
    Paul
    Revised formula:
    =countax(s1Perm1,s1Perm1[Exit]="Still in Out-of-Home Care"-(s1Perm1[Exit]="Adoption"+s1Perm1[Exit]="Aged Out"+s1Perm1[Exit]="Other Exit"+s1Perm1[Exit]="Reun/Cust/Guard"))
    Original formula:
    =(CALCULATE(countrows(s1Perm1),FILTER(ALL(s1Perm1[ExitMonthCategory]),s1Perm1[ExitMonthCategory] <= MAX(s1Perm1[ExitMonthCategory]))))/(CALCULATE(COUNTROWS(s1Perm1),ALL(s1Perm1[Exit],s1Perm1[ExitMonthCategory])))

    Hi Julian
    I incorporated the above solution into the existing cumPercent function. It runs without error and correctly calculates the total cases for the last interval on the x-axis, however, it does not aggregate the total along all intervals along the x-axis, like
    the current cumPercent does.
    I can't figure out how the Filter part of the function should work to do this?
    Paul
    Current cumPercent function:
    =(CALCULATE(countrows(s1Perm1),FILTER(ALL(s1Perm1[ExitMonthCategory]),s1Perm1[ExitMonthCategory] <=MAX(s1Perm1[ExitMonthCategory]))))/(CALCULATE(COUNTROWS(s1Perm1),ALL(s1Perm1[Exit],s1Perm1[ExitMonthCategory])))
    Modified cumPercent function with above modification:
    =(CALCULATE((CALCULATE(countrows(s1Perm1),ALL(s1Perm1[Exit]))-
    (calculate(COUNTROWS(s1Perm1),s1Perm1[Exit]="Adoption")+
    calculate(COUNTROWS(s1Perm1),s1Perm1[Exit]="Aged Out")+
    calculate(COUNTROWS(s1Perm1),s1Perm1[Exit]="Reun/Cust/Guard")+
    calculate(COUNTROWS(s1Perm1),s1Perm1[Exit]="Other Exit"))),FILTER(ALL(s1Perm1[ExitMonthCategory]),s1Perm1[ExitMonthCategory] <= MAX(s1Perm1[ExitMonthCategory]))))/(CALCULATE(COUNTROWS(s1Perm1),ALL(s1Perm1[Exit],s1Perm1[ExitMonthCategory])))
    Modified cumPercent screenshot (not aggregating along x-axis):
    Current cumPercent function (does aggregate along x axis intervals):

  • Change pointers for PDS

    Hi Gurus,
    I am not able to transfer the changes to BOMs in ECC. I am using the transaction CURTO_CREATE_BOM. This transaction is not picking up the changes in BOM.
    Are there any SAP Standard change pointers that I need to activate to enable change transfer for PDS'?
    Any response is appreciated.
    Thanks,
    Shiv.

    I did try that transaction, but it does not work. I am only transferring BOMs to APO. There is no production version attached to the BOM. And i need a production version to compare PDS with BOM using /SAPAPO/RTO_ORD_COMP.
    When I run this transaction w/o production version, I get the following error -
    "No comparison for product 420-0002-0002 location P100 production version : Production Version not Found     "

  • InDesign CC 2014 Update failure

    |  - 0 fatal error(s), 6 error(s)
    02/24/15 13:31:39:940 | [INFO] |  | OOBE | DE |  |  |  | 16191 | OSX version: 10.10.2 
    02/24/15 13:31:39:940 | [INFO] |  | OOBE | DE |  |  |  | 16191 |
    02/24/15 13:31:39:940 | [INFO] |  | OOBE | DE |  |  |  | 16191 | ----------- Payload: Adobe ID CC2014 AppLang_10.1.0.071_AdobeInDesign10AppLang-en_US 10.1.0.71 {FF177666-4833-11E4-80B3-84C2D6A8D6B3} -----------
    02/24/15 13:31:39:940 | [INFO] |  | OOBE | DE |  |  |  | 16191 | ERROR: DW062: Comparison of paths cannot succeed because the left-hand-side is invalid.(Seq 74)
    02/24/15 13:31:39:940 | [INFO] |  | OOBE | DE |  |  |  | 16191 | ----------- Payload: Adobe ID CC2014 AppFSet_10.1.0.071_AdobeInDesign10AppFSet-Roman 10.1.0.71 {A2BC3FAC-485E-11E4-960D-1DE4D7A8D6B3} -----------
    02/24/15 13:31:39:940 | [INFO] |  | OOBE | DE |  |  |  | 16191 | ERROR: DW062: Comparison of paths cannot succeed because the left-hand-side is invalid.(Seq 3)
    02/24/15 13:31:39:940 | [INFO] |  | OOBE | DE |  |  |  | 16191 | ----------- Payload: Adobe ID CC2014 AppBase_10.1.0.071_AdobeInDesign10AppBase-mul 10.1.0.71 {675A08B8-4859-11E4-A266-E5E9D6A8D6B3} -----------
    02/24/15 13:31:39:940 | [INFO] |  | OOBE | DE |  |  |  | 16191 | ERROR: DW062: Comparison of paths cannot succeed because the left-hand-side is invalid.(Seq 934)
    02/24/15 13:31:39:940 | [INFO] |  | OOBE | DE |  |  |  | 16191 | ----------- Payload: Adobe ID CC2014 AppLang_10.2.0.069_AdobeInDesign10AppLang-en_US 10.2.0.69 {1DAE0F30-AE7E-11E4-A56A-D39D8AEE24EA} -----------
    02/24/15 13:31:39:940 | [INFO] |  | OOBE | DE |  |  |  | 16191 | ERROR: DW062: Comparison of paths cannot succeed because the left-hand-side is invalid.(Seq 74)
    02/24/15 13:31:39:940 | [INFO] |  | OOBE | DE |  |  |  | 16191 | ----------- Payload: Adobe ID CC2014 AppBase_10.2.0.069_AdobeInDesign10AppBase-mul 10.2.0.69 {54BDCC40-AEAB-11E4-8307-1E4389EE24EA} -----------
    02/24/15 13:31:39:940 | [INFO] |  | OOBE | DE |  |  |  | 16191 | ERROR: DW062: Comparison of paths cannot succeed because the left-hand-side is invalid.(Seq 934)
    02/24/15 13:31:39:940 | [INFO] |  | OOBE | DE |  |  |  | 16191 | ----------- Payload: Adobe ID CC2014 AppFSet_10.2.0.069_AdobeInDesign10AppFSet-Roman 10.2.0.69 {F0C6B382-AEAF-11E4-AF47-3F4F8AEE24EA} -----------
    02/24/15 13:31:39:940 | [INFO] |  | OOBE | DE |  |  |  | 16191 | ERROR: DW062: Comparison of paths cannot succeed because the left-hand-side is invalid.(Seq 3)
    02/24/15 13:31:39:940 | [INFO] |  | OOBE | DE |  |  |  | 16191 |
    02/24/15 13:31:39:940 | [INFO] |  | OOBE | DE |  |  |  | 16191 | Please search the above error string(s) to find when the error occurred.
    02/24/15 13:31:39:941 | [INFO] |  | OOBE | DE |  |  |  | 16191 | These errors resulted in installer Exit Code mentioned below.
    02/24/15 13:31:39:941 | [INFO] |  | OOBE | DE |  |  |  | 16191 | -------------------------------------------------------------------------------------
    02/24/15 13:31:39:941 | [INFO] |  | OOBE | DE |  |  |  | 16191 |
    02/24/15 13:31:39:941 | [INFO] |  | OOBE | DE |  |  |  | 16191 | Exit Code: 7 - Unable to complete Silent workflow.
    02/24/15 13:31:39:941 | [INFO] |  | OOBE | DE |  |  |  | 16191 | Please see specific errors for troubleshooting. For example, ERROR: DW062 ...
    02/24/15 13:31:39:941 | [INFO] |  | OOBE | DE |  |  |  | 16191 | *=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*
    02/24/15 13:31:39:941 | [INFO] |  | OOBE | DE |  |  |  | 16191 | END - Installer Session
    02/24/15 13:31:39:941 | [INFO] |  | OOBE | DE |  |  |  | 16191 | *=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*

    Try copying the InDesign Defaults file from the previous version -- that's where they live, or save them to an external file from the Printer Presets > Define... dialog in the old version and load them from the same dialog in the new one. See Replace Your Preferences

  • Single quotes to be stored

    I buliding a where clause.....
    something like
    ' where werks = '1001' '.
    here its not allowing me to pass the quotation mark..
    i know that there is some method to do this.....  can any body help

    its still going to dump.
    Error: A comparison value is missing from the dynamic WHERE condition.
    it_where-where =
    'mandt = sy-mandt and paramid = "ZPP_LINE_STP" and param1 = "RESP CD"'.
    APPEND it_where.
      SELECT  param2 paramdesn INTO TABLE it_desc FROM zpp03parameter
              CLIENT SPECIFIED WHERE (p_where).
      IF sy-subrc = 0.
        SORT it_desc ASCENDING BY param2.
      ENDIF.

  • SMQ2: SYSFAIL Comparison error during the execution of a simple

    Hi folks, I have an operation mapping interface determination with exactly 1 target message of occurence 0..1, that means the mapping output can be nothing for some input messages, that means a target message is not produced so that the output looks like this:
    <?xml version="1.0" encoding="UTF-8"?>
    <Messages><Message1/></Messages>
    In services builder the test finishes successfully when no output message is produced. Also in integration builder i can test the configuration and it works without errors.
    But in runtime the message status is set to "Recorded for Outbound Processing" in SXI_MONITOR and the queue status of the message to "Message has errors". The message stops in SMQ2 with "SYSFAIL" as status and statusText "Comparison error during the execution of a simple" (truncated).
    Anybody experienced the same? How has the output of an operation mapping to look like when no target message is produced?
    I also tested with an output like this when no target is produced, but this results in System error "Split mapping created no messages" in SXI_MONITOR:
    <?xml version="1.0" encoding="UTF-8"?>
    <ns0:Messages xmlns:ns0="http://sap.com/xi/XI/SplitAndMerge">
    <ns0:Message1></ns0:Message1></ns0:Messages>
    Thanks for your help, best regards, Martin

    You seem to be having a multi-mapping involved.
    The operation mapping has to produce at least the start and end tag.....even if the entire message is not present
    Ex:
    <SRC>
    <First>
    <Middle>
    <Last>
    </SRC>
    If above is the structure, then it should be ensured that at least <SRC></SRC> is created by your mapping program....however in your case this is not happening....the tags that you see Messages and Message1 are due to the multi-mapping program and your message should be more than this.
    if you say that occurence is 0..1 then what you can do is map this 0..1 node (root) with at least a blank Constant.
    Unless you create a message (even though empty) you will continue to receive the error message.
    Regards,
    Abhishek.

  • Query Builder - Where Clause - Could not format error using date comparison

    We've come across a bug in the Query Builder, under the Create Where Clause tab, if you select a column of Date type plus one of the comparison operators =, !=, <, >, <=, >=, BETWEEN or NOT BETWEEN it displays an error in the Logging Page:
    Level: Severe
    Source: o.d.r.queryBuilder.SQLGenerator
    Message: Could not format :2010-09-02 16:20:31.0
    Then under the Show SQL tab it doesn't display the date(s) you selected, e.g.
    WHERE LAST_UPDATE BETWEEN AND
    Also the View Results tab does not display any results.
    You can still press Apply to add the SQL as is to the editor window and from there you have to manually code in the date parameters.
    We're using the latest version of SQL Developer 2.1.1.64.45 Windows 32bit version with JDK

    Hi Gordon,
    When I add the following lines:
    declare @refdt1 date
    set @refdt =
    /*select 1 from jdt1 t0 where t0.RefDate*/ '[%1]'
    declare @refdt2 date
    set @refdt =
    /*select 1 from jdt2 t0 where t0.RefDate*/ '[%2]'
    WHERE T0.RefDate >= @refdt1 and T0.RefDate <= @refdt2
    ... the error message is now:
    Must declare the scalar variable @refdt1
    Note: Before adding these lines, the query works perfectly, and returns totals from the whole database (with dynamically generated column headings!)
    Thanks
    Leon Lai
    AMENDED QUERY:
    declare @refdt1 date
    set @refdt1 =
    /*select 1 from jdt1 t0 where t0.RefDate*/ '[%1]'
    declare @refdt2 date
    set @refdt2 =
    /*select 1 from jdt1 t0 where t0.RefDate*/ '[%2]'
    --------- I inserted the 6 lines above ---------------------
    DECLARE @listCol VARCHAR(2000)
    DECLARE @query VARCHAR(4000)
    SELECT @listCol =
    STUFF
    ( SELECT DISTINCT   '],['    +    CAST(month(T0.RefDate) AS varchar)
    FROM  JDT1 T0
    FOR XML PATH('')
    ), 1, 2, ' ') +   ']'
    SET @query =
    'SELECT * FROM
    (SELECT Account, month (T0.RefDate) Month , Debit
    FROM JDT1 T0
    ------------------- I add the WHERE clause below --------------------
    WHERE T0.RefDate >= @refdt1 and T0.RefDate <= @refdt2
    GROUP BY Account, RefDate, Debit
    ) S
    PIVOT
    Sum(Debit)
    FOR Month IN ('+@listCol+')
    ) AS pvt'
    EXECUTE (@query)
    Edited by: LEONLAI on Oct 21, 2011 2:36 PM

Maybe you are looking for

  • How can I search or filter to see only videos?

    I've returned from an extended trip and have downloaded all of my media into Aperture and iPhoto by extension. Is there a way in which I can search or filter to locate all my videos so I can move them to a single location (other than looking for an i

  • Using bapi_po_create1 to create PO with return item - Order Combination

    Hello, There's a shipping tab that appears in a purchase return item, and in it there's a flag called Order Combination. Only i can't seem to find a way to change that flag using this BAPI, nor using bapi_po_change. Any ideas? Thank you in advance. D

  • Is the iPod touch 5th gen going to have 3g

    Please answer and does the strap thing have a button for the metal thing on the bottom left.

  • Rman restore files from diff location

    Hi, In rman backups i have kept 3 location of backup /disk1,/disk2,sbt.now i want to restore the datafile or archive file from only location /disk2 .how can i do that.I dont want to give the backupset name or tag etc etc.Can i point allocate channel

  • What is unicode Checks in Upgradation Project

    Hi Folks, Can any one tell me .. What is Unicode Checks in Uopgradation Project.. What it is Uded for? Y it is need in Upgradation Project?