Error in query with COUNT expression

Hi
I have a query that returns an error as follows:
"Column Ambiguously defined"
the code is as follows:
SELECT
          ce_family_member.student_id ,
          ce_family_member.last_name ,
          st_enrollment.grade_level ,
          ce_family_member.DATE_OF_BIRTH ,
          ce_family_member.GENDER,
          at_hourly_attendance_records.ABSENCE_REASON_CODE,
          at_hourly_attendance_records.CALENDAR_DATE,
          COUNT(at_hourly_attendance_records.student_id) AS days_absent
          FROM
                  at_hourly_attendance_records,
                  ce_family_member,
                  st_enrollment
          WHERE
          st_enrollment.student_id = at_hourly_attendance_records.student_id
         AND ce_family_member.student_id = st_enrollment.student_id
            AND st_enrollment.school_id = 705
            AND st_enrollment.school_year = 2006
            AND st_enrollment.district_number = 1000
            AND at_hourly_attendance_records.ATTENDANCE_STATUS = 'A'
            AND at_hourly_attendance_records.CALENDAR_DATE < '16-MAR-06'
          GROUP BY student_id; All help is highly appreciated. Thanks very much in advance

Hi
I followed your suggestion. But I still get an error as follows:
Not a Group By Expression. And it points to the second line (ce_family_member)
SELECT
          st_enrollment.student_id ,
          ce_family_member.last_name ,
          st_enrollment.grade_level ,
          ce_family_member.DATE_OF_BIRTH ,
          ce_family_member.GENDER,
          at_hourly_attendance_records.ABSENCE_REASON_CODE,
          at_hourly_attendance_records.CALENDAR_DATE,
          COUNT(st_enrollment.student_id) AS days_absent
          FROM
                  at_hourly_attendance_records,
                  ce_family_member,
                  st_enrollment
          WHERE
          st_enrollment.student_id = at_hourly_attendance_records.student_id
         AND ce_family_member.student_id = st_enrollment.student_id
            AND st_enrollment.school_id = 705
            AND st_enrollment.school_year = 2006
            AND st_enrollment.district_number = 1000
            AND at_hourly_attendance_records.ATTENDANCE_STATUS = 'A'
            AND at_hourly_attendance_records.CALENDAR_DATE < '16-MAR-06'
          GROUP BY st_enrollment.student_id; Thanks a lot for your kind suggestions

Similar Messages

  • Error in query with COUNT expression and Group By Clause

    Hi
    I have this query that when run gives me the following error:
    SQL command not properly ended:
    The code is as below:
    SELECT
              st_enrollment.student_id ,
              ce_family_member.last_name ,
              st_enrollment.grade_level ,
              ce_family_member.DATE_OF_BIRTH ,
              ce_family_member.GENDER,
              at_hourly_attendance_records.ABSENCE_REASON_CODE,
              at_hourly_attendance_records.CALENDAR_DATE,
              COUNT(st_enrollment.student_id) AS days_absent
              FROM
                      at_hourly_attendance_records,
                      ce_family_member,
                      st_enrollment
              WHERE
              st_enrollment.student_id = at_hourly_attendance_records.student_id
             AND ce_family_member.student_id = st_enrollment.student_id
                AND st_enrollment.school_id = 705
                AND st_enrollment.school_year = 2006
                AND st_enrollment.district_number = 1000
                AND at_hourly_attendance_records.ATTENDANCE_STATUS = 'A'
                AND at_hourly_attendance_records.CALENDAR_DATE < '16-MAR-06'
              GROUP BY st_enrollment.student_id,
                       ce_family_member.last_name
                         st_enrollment.grade_level ,
                         ce_family_member.DATE_OF_BIRTH ,
                         ce_family_member.GENDER,
                         at_hourly_attendance_records.ABSENCE_REASON_CODE,
                         at_hourly_attendance_records.CALENDAR_DATE;
           All suggestions are gratefully acknowledgment, Thanks in advance

    Thanks a lot. In fact I discovered it myself and I am immensely grateful to you for pointing the error..

  • Strange error in Zheevr with Studio Express 6/10

    I have found a strange anomaly exposed by my code while testing Studio Express 6/10.
    At runtime I was seeing a large number of copies of the error message
    ** On entry to ZHEEVR, parameter number 22 has an illegal value.
    ** On entry to ZHEEVR, parameter number 22 has an illegal value.
    On closer investigation this arose in execution of the code
        ! Workspace query -- set "size(cwork,1)" to -1; this is stored in optimal_size
        optimal_size = -1
        call zheevr('v','a','u',N,matrix,size(matrix,1),1.0_dp,1.0_dp,1,1, &
           &        abs_tol,num_eigval,eigenvalues,eigenvectors,size(eigenvectors,1),isupp,cwork,optimal_size, &
           &        rwork,optimal_size,iwork,optimal_size, status)
        optimal_size = iwork(1)
        deallocate(iwork,stat=status)
        if (status/=0) call io_abort('Error in deallocating iwork in algor_diagonalise_hermitian')
        allocate(iwork(optimal_size),stat=status)
        if (status/=0) call io_allocate_abort('iwork','algor_diagonalise_hermitian')
      [.. deallocate and reallocate cwork and rwork similarly to iwork .]
        call zheevr('v','a','u',N,matrix,size(matrix,1),1.0_dp,1.0_dp,1,1, &
           &        abs_tol,num_eigval,eigenvalues,eigenvectors,size(eigenvectors,1),isupp,cwork,size(cwork,1), &
           &        rwork,size(rwork,1),iwork,size(iwork,1),status)
       On return status=-22, corresponding to a size error in the "iwork" argument.
    So in other words, the code makes an enquiry of the size to use for the iwork array, allocates an array
    of that size. However the computational call rejects the size that the enquiry call advised!
    If I allocate a larger array (size > 40*N) then the call succeeds and no error is generated. I should point out
    that this code works well with Intel MKL, AMD ACML, GotoBLAS, and other LAPACK implementations, and
    only fails with sunperf. If I link the Sun f95-compiled code against GotoBLAS instead of sunperf it also works
    correctly.
    Is there some anomaly in the Sunperf implementation of zheevr?
    The platform is x86_64 linux (Mandriva 2010) with 32-bit integer memory model. The matrix size of one
    failing case was 4 and the first call of zheevr returned iwork(1)=32, though it fails for other small sizes too.

    Yes, there are formulas for figuring out the optimal workspaces. For Studio Express 6/10, this is based on LAPACK version 3.1.1. The ZHEEVR interface
    and workspace formulas are :
    SUBROUTINE ZHEEVR( JOBZ, RANGE, UPLO, N, A, LDA, VL, VU, IL, IU, ABSTOL, M, W, Z, LDZ, ISUPPZ, WORK, LWORK,
    $ RWORK, LRWORK, IWORK, LIWORK, INFO )
    WORK (workspace/output) COMPLEX*16 array, dimension (MAX(1,LWORK))
    LWORK (input) INTEGER
    The length of the array WORK. LWORK >= max(1,2*N)
    For optimal efficiency, LWORK >= (NB+1)*N, where NB is the max of the blocksize for CHETRD and for CUNMTR as returned by ILAENV
    You could just use MAX(1, 2*N) for the size of WORK. But this is sub-optimal. To get the optimal size, this is more work since it involves calls to
    ILAENV. But it should give you better performance. Here is what calculating the optimal WORK size should look like :
    INTEGER ILAENV
    EXTERNAL ILAENV
    INTEGER LWMIN, NB
    LWMIN = MAX(1, 2*N)
    NB = ILAENV( 1, 'CHETRD', UPLO, N, -1, -1, -1 )
    NB = MAX( NB, ILAENV( 1, 'CUNMTR', UPLO, N, -1, -1, -1 ) )
    LWKOPT = MAX( ( NB+1 )*N, LWMIN )
    RWORK (workspace/output) REAL*8 array, dimension (MAX(1,LRWORK))
    LRWORK (input) INTEGER
    The length of the array RWORK. LRWORK >= max(1,24*N)
    So for RWORK, this is much simpler. Just make it MAX(1, 24*N)
    IWORK (workspace/output) INTEGER array, dimension (MAX(1,LIWORK))
    LIWORK (input) INTEGER
    The dimension of the array IWORK. LIWORK >= max(1,10*N)
    IWORK is also simple. Just make it MAX(1, 10*N)
    You can also view the source code for this at www.netlib.org if you need further details. Hope this helps.
    -Jeremy

  • Error in filter with SQL Expression

    HI Experts,
    I have a sql query which works fine, but have to_date funtion() in the where clause as below :
    and oe.ORDERED_DATE BETWEEN to_date('09-APR-2009 23:59:59','DD-MON-YYYY HH24:MI:SS')
    AND to_date('10-APR-2009 23:59:59','DD-MON-YYYY HH24:MI:SS')
    and (ol.ORDERED_ITEM LIKE 'abckdo%' OR ol.ORDERED_ITEM LIKE 'xysalnb%')
    I am trying to create an OBIEE report with filter where the values of the filter are select as SQL Expression. and gave value to first variable as "to_date('09-APR-2009 23:59:59','DD-MON-YYYY HH24:MI:SS')" and the second variable as " to_date('10-APR-2009 23:59:59','DD-MON-YYYY HH24:MI:SS')"
    But the report is giving me an error. If I remove the date condition, then the report works fine. Can anyone give some inputs in resolving the problem. The mentioning of the HH24:MI:SS is very import to get the right resultset.
    Thanks in Advance.
    svr

    Hi SVR,
    I've had similar difficulties in the past with OBIEE and using the TO_DATE in the logical SQL expressions. I'm not sure if OBIEE recognizes TO_DATE or if it only recognizes TO_DATE is certain situations.
    However, I believe OBIEE recognizes the CAST( AS DATE) in all situations. Here's what I would recommend doing.
    1) Go into the connection pool associated with the report your creating and click on the second tab, "Connection Scripts"
    2) In the "Execute on Connect" area, click the "New" button and paste the following code: alter session set NLS_DATE_FORMAT='DD-MON-YYYY HH24:MI:SS' ** this step changes the default DD-MON-YYYY format of Oracle, to the format you will be giving the data in.
    3) Save the RPD and bounce the services if you made this change off-line.
    4) Instead of using TO_DATE() on your formulas, use CAST('09-APR-2009 23:59:59' AS DATE). Since we changed the default DATE mask to be the format that you're passing in, you should no longer see any issues.
    Hope that helps!
    -Joe

  • Error using Filter with SQL Expression

    Hey all -
    New to Oracle BI, and getting a problem with Filters that use SQL Expressions.
    The column I'm filtering on is a 4 digit year, expressed as a VARCHAR2(4 byte) in the physical database. My SQL Expression in the filter is:
    Column: CAL YEAR 4 DIGIT
    Operator: Is equal to/in
    SQL Expression: TO_CHAR(ADD_MONTHS(SYSDATE, -24), 'YYYY'))
    when I click on the "Results" Tab I get the following error message:
    Error Codes: YQCO4T56:OPR4ONWY:U9IM8TAC:OI2DL65P
    Odbc driver returned an error (SQLExecDirectW).
    State: HY000. Code: 10058. [NQODBC] [SQL_STATE: HY000] [nQSError: 10058] A general error has occurred. [nQSError: 27002] Near <(>: Syntax error [nQSError: 26012] . (HY000)
    I've isolated the issue to the expression above. If I put in a literal value and supply a four digit year like below it works:
    Column: CAL YEAR 4 DIGIT
    Operator: Is equal to/in
    SQL Expression: *2008*
    Any ideas on what's causing my problem?
    Thanks!
    Mac

    macearl wrote:
    SQL View does not display unless data is returned by the query. Is that normal?
    Also, none of these options shows the literal result of the expression we built, i.e.:
    expression: CAST(YEAR(TIMESTAMPADD(SQL_TSI_MONTH, -24, CURRENT_DATE)) as CHAR)
    result: *2008*
    Having the ability to test expressions and see their results would be very helpful in debugging. If anyone knows how to do that please share!
    Thanks!
    MacOk, Probably shoud have figured this out before, but in response to my own question, the way to view the result of an expression is to add the expression as a column and include it in the Table Presentation.
    - Mac (he can be taught)

  • Query with COUNT DISTINCT

    Hello,
    We are in 10g ...
    I have to compute COUNT DISTINCT of customers, per month, and YearToDate.
    Per month, I think I found it out ...
    On the year to date ... I have no clue at all ... and I hope that you could provide me with a solution or advice...
    Here is my example :
    month cust
    200711 A
    200711 B
    200712 A
    200712 C
    200801 A
    200801 B
    200802 A
    200802 C
    200803 A
    200803 C
    200803 A
    200804 D
    I would like to get this :
    month cust_count cust_count_YTD
    200711......2................2 (because cust A and B)
    200712......2................3 (because cust A and C)
    200801......2................2 (Back to 0 at the beginning of each year)
    200802......2................3 (because cust A and C)
    200803......2................3 (because cust A and C, and A but count distinct)
    200804......1................4 (because D)
    Thank you in advance,
    Olivier

    Oh This is an interesting question.
    create table custTable(yyyymm,cust) as
    SELECT '200711','A' FROM dual UNION all
    SELECT '200711','B' FROM dual UNION all
    SELECT '200712','A' FROM dual UNION all
    SELECT '200712','C' FROM dual UNION all
    SELECT '200801','A' FROM dual UNION all
    SELECT '200801','B' FROM dual UNION all
    SELECT '200802','A' FROM dual UNION all
    SELECT '200802','C' FROM dual UNION all
    SELECT '200803','A' FROM dual UNION all
    SELECT '200803','C' FROM dual UNION all
    SELECT '200803','A' FROM dual UNION all
    SELECT '200804','D' FROM dual;
    select distinct yyyymm,cust_count,
    sum(WillSum) over(partition by substr(yyyymm,1,4) order by yyyymm) as cust_count_YTD
    from (select yyyymm,count(distinct cust) over(partition by yyyymm) as cust_count,
          case Row_Number() over(partition by substr(yyyymm,1,4),cust order by yyyymm)
          when 1 then 1 else 0 end as WillSum
            from custTable)
    order by yyyymm;or
    select yyyymm,count(distinct cust) as cust_count,
    sum(sum(WillSum)) over(partition by substr(yyyymm,1,4) order by yyyymm) as cust_count_YTD
    from (select yyyymm,cust,
          case Row_Number() over(partition by substr(yyyymm,1,4),cust order by yyyymm)
          when 1 then 1 else 0 end as WillSum
            from custTable)
    group by yyyymm
    order by yyyymm;
    YYYYMM  CUST_COUNT  CUST_COUNT_YTD
    200711           2               2
    200712           2               3
    200801           2               2
    200802           2               3
    200803           2               3
    200804           1               4similer threads
    Rolling unique person count by month over a time period
    [SQL] how can i get this result....??(accumulation distinct count)

  • Parser error: XSD 2015 with regular expression

    The Oracle java parser is rejecting a document with the following error message:
    SD-2015: (Error) Invalid facet 'pattern' in element 'simpleType'I'm not excatly certain what the parser is objecting to, because the error messages aren't document (subject of a different rant). Now the thing it's rejecting is this:
      <xsd:simpleType name="TelCountryCodeType">
                 <xsd:restriction base="xsd:string">
                         <xsd:pattern value="[0-9]{1,3}"/>
                    </xsd:restriction>
            </xsd:simpleType>So is it choking because it doesn't like regular or for some other reason?
    TIA, APC

    Thanks - the code:
    String regExp = new String ("\"(http://)([.[^\"]]*)\"");seems to work. (I awarded you the duke dollars from your first post, becaues that was the "ahha" moment. )
    Thanks!!!

  • Error in query with setWuereClauseParam

    Hi!
    I have a ViewObject that contains this query:
    SELECT *
    FROM ENTIDADES Entidades
    WHERE (EXISTS (select null    
                        from accesos_entidad accEnt    
                        where ? = accEnt.entidad_id   
                        and accEnt.entidad_id_habilitada = Entidades.entidad_id    
                        and accEnt.tipo_entidad='CLIENTE'
              )In an Action class i do:
    ViewObject vo= getAppMod().findViewObject("EntiVO");
    vo.setWhereClauseParam(0,"2");
    vo.executeQuery();but i have an error "Missing IN or OUT parameter at index:: 1"
    why???
    please help..
    Thanks!!!!

    i did an expert mode view like this:
    select empno
    , ename
    from emp
    where exists
    select 'x'
    from emp_reports
    where report_year=?)
    and used it in a data forward action like this:
    public void onSetCurrentRowWithKey( DataActionContext ctx )
         System.out.println("onSetCurrentRowWithKey-Start");
         // do this event
         invokeEventAction( ctx );
        DCBindingContainer bc = ctx.getBindingContainer();
        DCIteratorBinding iter = bc.findIteratorBinding("ViewEmpReportsDueView1Iterator");
        Row parent = iter.getCurrentRow();
        ViewEmpReportsDueViewRow empRptDueRow = (ViewEmpReportsDueViewRow) parent;
         String strReportYear = empRptDueRow.getReportYear();
         AppModule am = (AppModule) getApplicationModule("AppModuleDataControl", ctx );
         ViewObject vo = am.findViewObject("EmpReportLookupExpertView1");
         vo.setWhereClauseParam(0, strReportYear );
         vo.executeQuery();
         Row r = vo.first();
         if (r!=null) {
            System.out.println( r.getAttribute("Empno") );
         System.out.println("onSetCurrentRowWithKey-End");
    and it worked ok - no errors.

  • A Query with LOB's requires OCI8 mode, but OCI7 mode is used

    Hello all,
    I am using Oracle 10g. We have two tables and in that, in one table i have a Long Raw Column and in the other table i have a BLOB field. When i use the select query to fetch the details from the table with Long Raw field it is working fine and at the same time if i use the select query on the table with the BLOB field it is giving me an error
    'A query with LOB's requires OCI8 mode, but OCI7 mode is used.'
    Please help.
    Thanks.
    Vinodh. S

    Hi Oleg,
    I think your client machine is not setup to connect to the Database. Run the Oracle Net8 Assistant or the Net8 Easy Config to connect to the Database.
    This should work.
    Samuel.
    PS: I need someone to answer my question, please

  • What is wrong with this XPath count expression

    I have an input message with a list of desired part codes.
    >
    <Message>
    ...<order_id>1234</order_id>
    ...<project_id>5678</project_id>
    ...<partCodeList>
    ......<partCode>xxxxxx</partCode>
    ......<partCode>yyyyyyyy</partCode>
    ..</partCodeList>
    </Message>
    >
    I attempting to count the partCodes that match a particular string. I have stored the desired string in a simple variable called devicePartCode. The Xpath expression statement looks like:
    >
    count(bpws:getVariableData('inputVariable','payload','/client:Message/client:partCodeList')/client:partCode = bpws:getVariableData('devicePartCode')) > 0
    >
    The execution error I get is:
    >
    ORABPEL-05002
    Message handle error.
    An exception occurred while attempting to process the message "com.collaxa.cube.engine.dispatch.message.invoke.InvokeInstanceMessage"; the exception is: Invalid xpath expression.
    Error while parsing xpath expression "count(bpws:getVariableData('inputVariable','payload','/client:Message/client:partCodeList')/client:partCode = bpws:getVariableData('devicePartCode')) > 0", the reason is Expected ')' instead of '='..
    Please verify the xpath query "count(bpws:getVariableData('inputVariable','payload','/client:Message/client:partCodeList')/client:partCode = bpws:getVariableData('devicePartCode')) > 0" which is defined in BPEL process.
    >
    The BPEL process I guess never gets started because there is no recorded instance when executed. Instead, the error is only found in the domain's log.
    It seems like the internal bpws:getVariableData(...) are not being evaluated before the XPath count expression is evaluated.
    Any suggestions on how to rewrite the XPath search would be appreciated.

    I tried that, but it doesn't compile.
    >
    Error(361):
    [Error ORABPEL-10039]: invalid xpath expression
    [Description]: in line 361 of "C:\woo\bpel\MTIPS_DEV\src\MTIPS_DEV_CreateDeviceRecords\bpel\MTIPS_DEV_CreateDeviceRecords.bpel", xpath expression "count(bpws:getVariableData('inputVariable','payload','/client:MTIPS_DEV_CreateDeviceRecordsProcessRequest/client:partCodeList/[client:partCode = bpws:getVariableData('devicePartCode')]') > 0" specified in <from> is not valid, because XPath query syntax error.
    Syntax error while parsing xpath expression "count(bpws:getVariableData('inputVariable','payload','/client:MTIPS_DEV_CreateDeviceRecordsProcessRequest/client:partCodeList/[client:partCode = bpws:getVariableData('devicePartCode')]') > 0", at position "167" the exception is Expected: ).
    Please verify the xpath query "count(bpws:getVariableData('inputVariable','payload','/client:MTIPS_DEV_CreateDeviceRecordsProcessRequest/client:partCodeList/[client:partCode = bpws:getVariableData('devicePartCode')]') > 0" which is defined in BPEL process.
    [Potential fix]: Please make sure the expression is valid.

  • Problem with count query

    I am connecting to the excel and running the following query:
    Select Count(*) from [RIF$];
    I is working fine and giving me total count of rows
    Now when i try the following version of count
    Select Count(Distinct Status) from [RIF$];
    where Status is a column name.
    It is giving the following error:
    java.sql.SQLException: [Microsoft][ODBC Excel Driver] Syntax error (missing operator) in query expression 'Count(Distinct Status)'.
    Pls help me
    its as always urgent

    This shouldn't execute in the quiery analyzer too, you don't have a java problem. I am not sure this is the optimal but you can try something like:
    select count(c_id) from (select distinct pcid c_id from contragent) cntr HTH
    Mike

  • Error executing a query with large result set

    Dear all,
    after executing a query which uses key figures with exception aggregation the BIA-server log (TrexIndexServerAlert_....trc) displays the following messages:
    2009-09-29 10:59:00.433 e QMediator    QueryMediator.cpp(00324) : 6952; Error executing physical plan: AttributeEngine: not enough memory.;in executor::Executor in cube: bwp_v_tl_c02
    2009-09-29 10:59:00.434 e SERVER_TRACE TRexApiSearch.cpp(05162) : IndexID: bwp_v_tl_c02, QueryMediator failed executing query, reason: Error executing physical plan: AttributeEngine: not enough memory.;in executor::Executor in cube: bwp_v_tl_c02
    --> Does anyone know what this message exactly means? - I fear that the BIA-Installation is running out of physical memory, but I appreciate any other opinion.
    - Package Wise Read (SAP Note 1157582) does not solve the problem as the error message is not: "AggregateCalculator returning out of memory with hash table size..."
    - To get an impression of the data amount I had a look at table RSDDSTAT_OLAP of a query with less amount of data:
       Selected rows      : 50.000.000 (Event 9011)
       Transferred rows :   4.800.000 (Event 9010)
    It is possible to calculate the number of cells retreived from one index by multiplying the number of records from table RSDDSTAT_OLAP by the number of key figures from the query. In my example it is only one key figure so 4.800.000 are passed to the analytical engine.
    --> Is there a possibility to find this figure in some kind of statistic table? This would be helpful for complex queries.
    I am looking forward to your replies,
    Best regards
    Bjoern

    Hi Björn,
    I recommend you to upgrade to rev 52 or 53. Rev. 49 is really stable but there are some bugs in it and if you use BW SP >= 17 you can use some features.
    Please refer to this thread , you shouldn't´t use more than 50% (the other 50% are for reporting) of your memory, therefor I have stolen this quote from Vitaliy:
    The idea is that data all together for all of your BIA Indexes does not consume more then 50% of total RAM of active blades (page memory cannot be counted!).
    The simpliest test is during a period when no one is using the accelerator, remove all indexes (including temporary) from main memory of the BWA, and then load all indexes for all InfoCubes into ain memory. Then check your RAM utilization.
    Regards,
    -Vitaliy
    Regards,
    Jens

  • How to create an ABAP Query with OR logical expression in the select-where

    Hi,
    In trying to create an ABAP query with parameters. So it will select data where fields are equal to the parameters entered. The default logical expression is SELECT.. WHERE... AND.. However I want to have an OR logical expression instead of AND.. how can I attain this??
    Please help me on this.. Points will be rewarded.
    Thanks a lot.
    Regards,
    Question Man

    Hi Bhupal, Shanthi, and Saipriya,
    Thanks for your replies. But that didn't answer my question.
    Bhupal,
    You cannot just replace AND with OR in an ABAP QUERY. ABAP QUERY is a self generated SAP code. You'll just declare the tables, input parameters and output fields to be displayed and it will create a SAP standard code. If you'll try to change the code and replace the AND with OR in the SAP standard code, the system will require you to enter access key/object key for that particular query.
    Shanthi,
    Yes, that is exactly what need to have. I need to retireve DATA whenever one of the conditions was satisfied.
    Saipriya,
    Like what I have said, this is a standard SAP code so we can't do your suggestion.
    I have already tried to insert a code in the ABAP query (there's a part there wherein you can have extra code) but that didn't work. Can anybody help me on this.
    Thanks a lot.
    Points will be rewarded.
    Regards,
    Question Man

  • Error while trying to Execute the Query with Customer Exit

    Hi Experts,
           I am having a Query with Customer Exit, it is working fine for all the Employess, except for one. When i try to remove the Customer Exit it is working for her too. Below is the error i am getting.
    system error in program SAPLLRK0 and form RSRDR; CHECK_NAV_INIT_BACK
    Thanks,
    Kris.

    Hello Kris,
    Are you working with multiprovider? Please check if OSS notes 813454,840080 or 578948 are applicable in your case.
    Regards,
    Praveen

  • Error in query " Value '' of characteristic  is not a number with  spaces "

    Hi Gurus,
    I am facing an error in a query with the description:
    Error
    Value '' of characteristic  is not a number with  spaces
    System error in program SAPLRRK0 and form RSRDR;SRRK0F30-01-
    Description
    This error is occuring in Production system only, the report is running fine in Development environment.
    The error is also visible when I execute it in RSRT, I am not able to find the cause of error through RSRT.
    Can anyone please help me with the possible solutions.
    Thanks & Regards,
    Shreyas

    Hi Juergen,
    thanks for the input, I tried to run the report after loading the master data but still there was no improvement.
    I am not sure why this kind of problem is rising, some of the similar reports on same infoprovider are running fine.
    Please let me know if you know anything about the cause of error.
    Thanks & Regards,
    Shreyas

Maybe you are looking for

  • How to change the Purchase Organization filed in the Purchase requistion..

    Hello All, I am creating the requirement of material through MD62. Later I am runiing MRP through MDO3 to create the purchase requistion against that. Now my requirement is that if the source list is not maintainted ( ME01) for that material, I want

  • How to convert back from UTF8 to ISO-8859-1 encoding?

    hi, I have a bunch of XML files which were wrongly encoded, and we lost all our accent characters. ie: é become é so how can I recover my XML files using powershell? so I want to change all the UTF8 ecoded characters back to the original ISO accent

  • Credit Limit  by specific Material (product)

    Dear Experts, Could you please suggest me any body how to maintain credit limit by specific material (Product). Let say Customer Pepsi has 3 products i.e X,Y and Z....pepsi (customer) has credit limit 100 USD. Here the customer credit limit is 100 us

  • CS5 Save for web not showing in Name order..Help

    Hi I have noticed today that something has changed. I am using Photoshop CS 5 on Windows XP Pro. When saving images for web (for my proofing system i do which is saving photos of cars i.e CAR-10_01, _02 and so on then CAR-22_01, _02 and so on  when i

  • Converting from GroupWise to Outlook

    Currently we have GroupWise installed.  We are migrating to Exchange.  We want to pre-install Outlook 2010 several weeks ahead of time.  On the day the user is migrated, we are leaving the GroupWise software intact, but users will use Outlook.  I am