Error group by

hello everyone,
i've a syntax problem in this query, i can't be able to find the error. i want to calculate subtotal with function group by ROLL UP, but THE FUNCTION GROUP BY  doesn't work. Can anybody help me? thank you
SELECT T2.CardName, T1.CardName, T0.U_DtInMan, T0.U_DtRiMan, T0.U_ImpMan, 13 - month(T0.[U_DtInMan]) AS  Mesi_manutenzione, (T0.[U_ImpMan] * (13 - month(T0.[U_DtInMan])) /12) AS importo_annuale_manutenzione FROM OINV T0  INNER JOIN OCRD T1 ON T0.CardCode = T1.CardCode INNER JOIN OCRD T2 ON T0.FatherCard = T2.CardCode WHERE T0.U_ImpMan <> 0 and  T0.U_DtRiMan >=[%0] and  T0.U_DtRiMan <=[%1] GROUP BY  T2.CardName WITH  ROLLUP

hi Suda,
thank you very much for your availability, i changed my query in this mode:
it seems to work but the subtotal doesn't calculate for groups T2.CardName, but  it continues to calculate them in increasing way. what do you advise me to do? thank you
SELECT T2.CardName, T1.CardName, T0.U_DtInMan, T0.U_DtRiMan, T0.U_ImpMan, 13 - month(T0.[U_DtInMan]) as mesi_fatturazione, (T0.[U_ImpMan] * (13 - month(T0.[U_DtInMan])) /12), Count(T2.cardname), Count(T1.CardName), Count(T0.U_DtInMan), Count(T0.U_DtRiMan), SUM((T0.[U_ImpMan] * (13 - month(T0.[U_DtInMan])) /12)) AS TOTALE_MANUTENZIONI  FROM OINV T0  INNER JOIN OCRD T1 ON T0.CardCode = T1.CardCode INNER JOIN OCRD T2 ON T0.FatherCard = T2.CardCode WHERE T0.U_ImpMan <> 0 and  T0.U_DtRiMan >=[%0] and  T0.U_DtRiMan <=[%1]   GROUP BY  T2.CardName, T1.CardName, T0.U_DtInMan, T0.U_DtRiMan, T0.U_ImpMan, (T0.[U_ImpMan] * (13 - month(T0.[U_DtInMan])) /12)  WITH  ROLLUP

Similar Messages

  • Error Group- RFC_ERROR_SYSTEM_FAILURE in BEx

    Hi All,
    When i run a query in BEx i get an error message which says that an exception that could not be caught occured. the Error Group- RFC_ERROR_SYSTEM_FAILURE in BEx.
    Godhuli

    hi Godhuli,
    try to click 'detail', more info ?
    logon on to bw, check detail short dump with transaction st22.
    you may need to apply bw front end support package or SAPGUI patch, what's your version and support package level ?

  • Getting an error - group function not allowed here

    Below is the merge statement...
    getting an error - group function not allowed here
    WHY????
    merge into summary
    using
    (select
    a.user_id,
    min(a.start_time_utc),
    max(a.end_time_utc),
    sum(a.duration_seconds),
    /*total_upload
    total_download
    total_traffic,*/
    max(r.package_id),
    last_usage_charge, -------hard coded
    max(r.peak_rate),
    max(r.bst_plantype),
    max(r.free_value), ---for free value
    a.IsPeak,
    sum(a.TotalDiscount)
    from aaa_sessions a,rate_plan r,subscriber_info si
    where
    si.EXTERNAL_ID=a.USER_ID
    and
    si.PACKAGE_ID=r.PACKAGE_ID
    group by
    user_id,bst_plantype,ispeak)t ------do we need to use alias here
    on
    (summary.user_id=t.user_id
    and
    summary.type_of_summary=t.bst_plantype
    and
    summary.ispeak=t.ispeak)
    When matched then
    update
    set
    start_date =decode((t.start_time_utc-summary.start_date)-abs(t.start_time_utc-summary.start_date),0,summary.start_date,t.start_time_utc),
    end_date=decode((t.end_time_utc-summary.end_date)-abs(t.end_time_utc-summary.end_date),0,t.end_time_utc,s.end_date),
    total_duration=summary.total_duration+sum(duration_seconds),
    total_upload=summary.total_upload+sum(upload_bytes),
    total_download=summary.total_download+sum(download_bytes),
    total_traffic=summary.total_upload+sum(upload_bytes)+summary.total_download+sum(download_bytes)
    When not matched then
    INSERT
    (user_id ,
    start_date,
    end_date,
    total_duration,
    /*total_upload
    total_download
    total_traffic,*/
    rate_plan_id,
    last_usage_charge,
    peak_rate,
    type_of_summary,
    IsPeak,
    TotalDiscount)
    VALUES
    (t.user_id,
    t.start_time_utc,
    t.end_time_utc,
    t.duration_seconds,
    /*t.output_bytes,
    t.input_bytes,
    t.output_bytes+aa.input_bytes,*/
    t.PACKAGE_ID,
    1, ---hard coded the value
    t.PEAK_RATE,
    t.BST_PLANTYPE,
    t.ispeak,
    t.free_value);

    This is the query,...
    Its giving no complilation errors..
    I have not used aggregate functions in the insert/update..
    have used only decode...
    and nowhere i found that aggegate functions not allowed in the insert/update stmts of merge..
    Can u please post a link where it is mentioned...
    MERGE INTO summary
    USING (SELECT a.user_id, MIN (a.start_time_utc) stc,
    MAX (a.end_time_utc) etc, SUM (a.duration_seconds) ds,
    SUM (a.download_bytes) download,
    SUM (a.upload_bytes) upload, MAX (r.package_id) pkg_id,
    MAX (r.peak_rate) p_rate, MAX (r.offpeak_rate)
    ofp_rate,
    MAX (r.bst_plantype) plan_type,
    SUM (r.free_value) free_val, a.ispeak,
    MAX (r.peak_pulse) p_pulse,
    MAX (r.offpeak_pulse) ofp_pulse
    FROM aaa_sessions a, rate_plan r, subscriber_info si
    WHERE si.external_id = a.user_id
    AND si.package_id = r.package_id
    GROUP BY user_id, bst_plantype, ispeak) t
    ON ( summary.user_id = t.user_id
    AND summary.type_of_summary = t.plan_type
    AND summary.rate_plan_id = t.pkg_id
    AND summary.ispeak = t.ispeak)
    WHEN MATCHED THEN
    UPDATE
    SET start_date =
    DECODE ( (t.stc - summary.start_date)
    - ABS (t.stc - summary.start_date),
    0, summary.start_date,
    t.stc
    end_date =
    DECODE ( (t.etc - summary.end_date)
    - ABS (t.etc - summary.end_date),
    0, t.etc,
    summary.end_date
    total_duration = summary.total_duration + t.ds,
    total_download = summary.total_download + t.download,
    total_upload = summary.total_upload + t.upload,
    total_traffic =
    summary.total_upload
    + t.upload
    + summary.total_download
    + t.download,
    last_usage_charge =
    DECODE (t.plan_type,
    0, (t.ds - t.free_val)
    / DECODE (t.ispeak, 0, t.ofp_pulse, p_pulse)
    * DECODE (t.ispeak, 0, t.ofp_rate, t.p_rate),
    ((t.download + t.upload) - t.free_val
    * DECODE (t.ispeak, 0, t.ofp_rate, t.p_rate)
    WHEN NOT MATCHED THEN
    INSERT (user_id, start_date, end_date, total_duration,
    total_download, total_upload, total_traffic, rate_plan_id,
    last_usage_charge, peak_rate, type_of_summary, ispeak,
    totaldiscount)
    VALUES (t.user_id, t.stc, t.etc, t.ds, t.download, t.upload,
    t.download + t.upload, t.pkg_id,
    DECODE (t.plan_type,
    0, (t.ds - t.free_val)
    / DECODE (t.ispeak, 0, t.ofp_pulse, p_pulse)
    * DECODE (t.ispeak, 0, t.ofp_rate, t.p_rate),
    ((t.download + t.upload) - t.free_val
    * DECODE (t.ispeak, 0, t.ofp_rate, t.p_rate)
    t.p_rate, t.plan_type, t.ispeak, t.free_val);
    COMMIT;

  • RFC_ERROR_COMMUNICATION ERROR Group PUBLIC not found

    I using the SAP Discovery 2004s system.  When I logon to Portal using J2EE_ADMIN, then enter any tab for HR like HR admin or ESS I get the following error:
    com.sap.mw.jco.JCO$Exception: (102)
    RFC_ERROR_COMMUNICATION:
    Connect to message server host failed Connect_PM TYPE=B MSHOST=iwdfvm2160
    GROUP=PUBLIC R3NAME=ERP MSSERV=sapmsERP PCS=1 LOCATION CPIC (TCP/IP)
    on local host with Unicode
    ERROR Group PUBLIC not found
    TIME Thu Dec 14 11:03:48 2006 RELEASE 700 COMPONENT LG VERSION 5 RC -6
    MODULE lgxx.c LINE 4288 DETAIL LgIGroupX COUNTER
    I have a PUBLIC entry in SMLG and I have a valid entry in etc/services.  The problem I think is with SMLG the PUBLIC  entry does not have a green box under the status field.  Can someone elaborate on this more?

    Ensure that your host file contains three entries pointing to IP addrsss of Discovery System:
    <IP ADDRESS>[tab] SAPDiscoverySystem<space>iwdfvm2160<space>owdfvm2160.wdf.sap.corp
    This addresses the internal file names as well as SAPDiscoverySystem.  This can also be accomplished with three entrie in your company DNS but many companies do not allow out-of-domain entries.
    I will modify the instructions on Prerequisites page.
    Rick

  • ERROR "Group Public not found" when I run project TutWD_FlightList

    Hi everyone,
    I created Web Dynpro project TutWD_FlightList exactly as tutorial "Creating a Web Dynpro Application Accessing ABAP Functions ".
    I chose "Data type"  for "Dictionary Meta Data" and "Destination type" for "Load-balanced connection",  when I  clicked test connection, the error information as follow:
    com.sap.mw.jco.JCO$Exception: (102) RFC_ERROR_COMMUNICATION: Connect to message server host failed Connect_PM  TYPE=B MSHOST=sapserver GROUP=PUBLIC R3NAME=I01 MSSERV=sapmsI01 PCS=1 <b>ERROR       Group PUBLIC not found</b> TIME        Thu Mar 01 16:57:35 2007 RELEASE     640 COMPONENT   LG VERSION     5 RC          -6 MODULE      lgxx.c LINE        3531 DETAIL      LgIGroup COUNTER     2
    It seems that the nature reason is "<b>Group Public not found</b>".
    But I had created the "Public" group with transaction SMLG in related R/3 system,
    and I can logon R/3 via "Public" group both on my laptop and on WebDynpro server. So I think "Public" group is ok.
    The error information for "Ping" is :
    Failed to ping JCo destination 'WD_FLIGHTLIST_MODELDATA_DEST'.
    Is there any friends meet the same problem ?
    Could you please give me any suggestion ?
    Thanks !
    Best Regards,
    Jianguo Chen

    jianguo,
    Strange... Is Status field for PUBLIC is ok (green) in SMLG?
    If you just want to run tutorial try group SPACE -- as far as I know it always exists.
    Valery Silaev
    SaM Solutions
    http://www.sam-solutions.net

  • Slow logins to domain, several event ID errors (group policy, netlogon, NTP errors)

    We have a laptop user who was experiencing slow logons in a remote office.   (Remote office has 100 users, only 1 is reporting the issue).  Helpdesk swapped computers to give the user brand new hardware.   The new laptop worked
    fine while in the IT department in the main office, the user returned to their desk in their remote office after replacing the laptop and logged in and experienced the same slow logon issues as the older laptop.
    Logons take up to 45 mins to process.  (Login script hangs and does not process).  During the process, you can check IPConfig and it received the proper DNS settings.  you can ping the authenticating server by name.  We have scanning
    on our local copiers setup to scan to the users desktop, and this errors out.  DNS on the AD controller shows the proper IP address for the machine and you can ping the machine by name.
    System Event log is loaded with errors:
    Event ID 5719 - Netlogon, computer not able to setup a secure session with a domain controller in the domain
    Event ID 1129 - Group Policy, processing of Group Policy failed because of lack of network connectivity
    Event ID 129 - Time Service, NTP Client was unable to set a domain peer to use as a time source
    Event ID 5783 - NetLogon, The session setup to the WIndows NT or 2000 domain controller (xxx) for the domain is not responsive.  RPC call cancelled.   (NOTE - you can ping this domain controller by name and by IP with no issues)
    Event ID 130 - Time-Service, NTP client unable to set a domain peer
    All these seem to point to RPC errors timing out because they cannot communicate to the network resources.  The problem happens on wired or wireless connections.  We had the user move to a different network connection (one we know is working for
    another user) the problem persists.   The problem was on the original computer and continues to happen even after replacing the hardware with a brand new laptop.
    I have tried running the following hotfix.  Which does not resolve the issue: 
    http://support2.microsoft.com/kb/2459530 which technically this shouldn't be an issue because we use DHCP off the 2003 AD domain controller.
    I have checked the domain controller, AD Replication is processing with no issues.  DNS is working.  The local DHCP server has no issues or events related to this account and neither does the local DNS server or the authenticating server (which
    is in another remote office). 
     

    Hi,
    As we know, most of the time error event 5719 is caused by network connectivity issues or name resolution issue, I suggest you refer to this link to make a further analysis
    http://blogs.technet.com/b/instan/archive/2008/09/18/netlogon-5719-and-the-disappearing-domain.aspx
    And this link:
    Root Causes for Slow Boots and Logons
    http://social.technet.microsoft.com/wiki/contents/articles/10130.root-causes-for-slow-boots-and-logons-sbsl.aspx
    Yolanda Zhu
    TechNet Community Support

  • Error: Group Function Is Not Allowed Here

    Post Author: simiora
    CA Forum: WebIntelligence Reporting
    Hi,
    Created a measure in the Universe, which is based on a BO built-in function "PERCENTILE".
    When this measure is in the WebI report, this field is also added to the GROUP BY caluse of the select statement, which will give the above error.
    Is measure defined wrong? How to eliminate a field from the GROUP BY clause. We are using Oracle database and BOXI Rel 2.
    Thanks.

    Lucy,
    begin
    select max(sim_trip.finish_time) into finish_time,
          max(sim_trip.start_time) into start_time  from sim_trip
    WHERE ((sim_trip.operator_counter = :P500_operator_counter));
    if (:P500_start_time > finish_time)
       then   return true;
    else
    return false;
    end if;
    end;Your select statement is wrong. It should be:
    begin
    select max(sim_trip.finish_time),max(sim_trip.start_time)
      into :P500_start_time,:P500_finsh_time 
      from sim_trip
      WHERE ((sim_trip.operator_counter = :P500_operator_counter));
    if (:P500_start_time > :P500_finish_time)
       then   return true;
    else
    return false;
    end if;
    end;Robert
    http://apexjscss.blogspot.com

  • Error grouping items - Error 9024: Cannot modify a layer that is locked

    Hello,
    I'm trying to group all sublayers so that i can easily resize the group.  But when I run this code:
    var gi = doc.activeLayer.groupItems.add();
    for(var i = 0; i < doc.selection.length; i++) {
         doc.selection[i].move(gi, ElementPlacement.PLACEATBEGINNING);
    I get an error saying 'Error 9024: Cannot modify a layer that is locked'.  I have checked and the layer is not locked at all. Some layers resize fine, but it keeps getting stuck on one or 2 layer within each .ai file I have. 
    Any ideas what this might be?
    Thanks,
    James

    Fixed this.  I had not selected a layer as I was running a batch. So i changed
    doc.activeLayer.groupItems.add();
    to
    layer.groupItems.add(); //layer is the current layer being processed.

  • ESS error : Grouping Value

    Hi
    We have implemented ESS 1.41 on our portal 7.0 system.
    While executing ESS applications for making changes in ESS data mention error is getting displayed in Personal Information work set for  ESS application i.e.,Address, Personal Data, etc.
    Data record 0000020500061      9999123120110507000 has grouping value "" instead of "02"
    Please share pointers to resolve this error.
    Regards,
    SK

    Hi SK,
    In Transaction SE 38 run report RPUFIXDS to remove the inconsistency.
    Follow the instructions in OSS note 783499, to prevent the inconsistencies from  happening again.
    PS: Please try to search on SDN before posting the question in forum. This problem has been discussed numerous time. It will help you in long run.
    Happy learning.
    Thanks
    Prashant

  • Error - "Group cannot be found" after rename user group

    Hi,
    I got the error message below after I clicked at 'edit' button in the "People and Groups" page (/_layouts/15/groups.aspx). Before I get this error message, I renamed the group name. It seems like it was looking for the old name when I clicked at
    'edit' button. However, I can still access the Group Setting page by go to the group page -> settings -> Group Settings. Once I renamed the group name back to what it was. I can click at the 'edit' button without any error.
    Can someone please explain to me about this issue? 
    Thank you,

    Hi,
    This is what I have in the log
    Correlation ID: 383abd9c-5f4c-707e-c171-bb7bd63f8d2e Date and Time: 9/29/2014 2:50:53 PM
    09/29/2014 14:50:53.08 OWSTIMER.EXE (0x3C3C)                  
    0x16F4
    SharePoint Foundation         Monitoring                    
    nasq Medium  
    Entering monitored scope (Timer Job MySite-Instantiation-Interactive-Request-Queue). Parent No
    a415c502-5c7f-494d-b58e-f8deec07d9b8
    09/29/2014 14:50:53.08 OWSTIMER.EXE (0x3C3C)                  
    0x16F4
    SharePoint Foundation         Logging Correlation Data      
    xmnv Medium  
    Name=Timer Job MySite-Instantiation-Interactive-Request-Queue
    383abd9c-8f41-707e-7d8c-e722a2386e1c
    09/29/2014 14:50:53.08 OWSTIMER.EXE (0x3C3C)                  
    0x16F4
    SharePoint Portal Server      
    Personal Site Instantiation   aj58q
    Medium   <LogTimerJobInstance> Starting timer My Site Instantiation Interactive Request Queue (e94a6caa-b0f5-4897-b489-585ca50c7803) for web application: SharePoint2013Intranet - 80. Function: MySiteInstantiationJob:Execute
    383abd9c-8f41-707e-7d8c-e722a2386e1c
    09/29/2014 14:50:53.08 OWSTIMER.EXE (0x3C3C)                  
    0x16F4
    SharePoint Portal Server      
    Personal Site Instantiation   aj58r
    Medium   <LogTimerJobInstance> Finishing on timer My Site Instantiation Interactive Request Queue (e94a6caa-b0f5-4897-b489-585ca50c7803) for web application: SharePoint2013Intranet - 80.  Function:
    MySiteInstantiationJob:Execute 383abd9c-8f41-707e-7d8c-e722a2386e1c
    09/29/2014 14:50:53.08 OWSTIMER.EXE (0x3C3C)                  
    0x16F4
    SharePoint Foundation         Monitoring                    
    b4ly Medium  
    Leaving Monitored Scope (Timer Job MySite-Instantiation-Interactive-Request-Queue). Execution Time=3.75969571551692
    383abd9c-8f41-707e-7d8c-e722a2386e1c                  
    b4ly Medium  
    Leaving Monitored Scope (Timer Job MySite-Instantiation-Interactive-Request-Queue). Execution Time=3.75969571551692
    383abd9c-8f41-707e-7d8c-e722a2386e1c

  • GETTING AN ERROR -GROUP FUNCTIO NOT ALLOWED  HERE

    SELECT user_id, packageid,
    DECODE (bstplantype,
    0, ( CEIL ( SUM (duration_seconds) ------GROUP FUNCTION OT ALLOWED HERE
    / ( DECODE (ispeak,
    0, offpeakpulse,
    peakpulse
    * convert_duration (ratingunit, pulseunit)
    * DECODE (ispeak, 0, offpeakpulse, peakpulse)
    * convert_duration (ratingunit, pulseunit)
    - (freevalue * convert_duration (ratingunit, pulseunit)),
    CEIL ( (SUM (upload_bytes) + SUM (download_bytes))
    / ( DECODE (ispeak, 0, offpeakpulse, peakpulse)
    * convert_bytes (ratingunit, pulseunit)
    * DECODE (ispeak, 0, offpeakpulse, peakpulse)
    * convert_bytes (ratingunit, pulseunit)
    - (freevalue * convert_bytes(ratingunit, pulseunit)))
    FROM aaa_interim a, subscriber_rate_tab srt
    WHERE a.user_id = srt.externalid
    AND a.isday=srt.FREEVALUETYPE
    AND DECODE (bstplantype,
    0, ( CEIL ( SUM (duration_seconds)
    / ( DECODE (ispeak,
    0, offpeakpulse,
    peakpulse
    * convert_duration (ratingunit, pulseunit)
    * DECODE (ispeak, 0, offpeakpulse, peakpulse)
    * convert_duration (ratingunit, pulseunit)
    - (freevalue * convert_duration (ratingunit, pulseunit)),
    CEIL ( (SUM (upload_bytes) + SUM (download_bytes))
    / ( DECODE (ispeak, 0, offpeakpulse, peakpulse)
    * convert_duration (ratingunit, pulseunit)
    * DECODE (ispeak, 0, offpeakpulse, peakpulse)
    * convert_duration (ratingunit, pulseunit)
    - (freevalue * convert_duration (ratingunit, pulseunit))) >
    0.8 * MIN (NVL (srt.creditthreshold, 0))
    GROUP BY user_id,
    packageid,
    bstplantype,
    ispeak,
    peakpulse,
    offpeakpulse,
    ratingunit,
    pulseunit,
    freevalue,
    vendor_Session_id ------to sum up all the stop records belonging to the same user_id and session(stitching and all)

    Hi
    Can't really be bothered checking this properly given what you have posted as a question but, at first glance, I think you actually mean something like this...
    SELECT   user_id,
             packageid,
             DECODE(bstplantype,
                    0,
                    (CEIL(SUM(duration_seconds) ------GROUP FUNCTION OT ALLOWED HERE
                          / (DECODE(ispeak, 0, offpeakpulse, peakpulse)
                             * convert_duration(ratingunit, pulseunit)))
                     * DECODE(ispeak, 0, offpeakpulse, peakpulse)
                     * convert_duration(ratingunit, pulseunit))
                    - (freevalue * convert_duration(ratingunit, pulseunit)),
                    CEIL((SUM(upload_bytes) + SUM(download_bytes))
                         / (DECODE(ispeak, 0, offpeakpulse, peakpulse)
                            * convert_bytes(ratingunit, pulseunit)))
                    * DECODE(ispeak, 0, offpeakpulse, peakpulse)
                    * convert_bytes(ratingunit, pulseunit)
                    - (freevalue * convert_bytes(ratingunit, pulseunit)))
    FROM     aaa_interim a, subscriber_rate_tab srt
    WHERE    a.user_id = srt.externalid AND a.isday = srt.freevaluetype
    GROUP BY user_id,
             packageid,
             bstplantype,
             ispeak,
             peakpulse,
             offpeakpulse,
             ratingunit,
             pulseunit,
             freevalue,
             vendor_session_id
    HAVING   DECODE(bstplantype,
                    0,
                    (CEIL(SUM(duration_seconds)
                          / (DECODE(ispeak, 0, offpeakpulse, peakpulse)
                             * convert_duration(ratingunit, pulseunit)))
                     * DECODE(ispeak, 0, offpeakpulse, peakpulse)
                     * convert_duration(ratingunit, pulseunit))
                    - (freevalue * convert_duration(ratingunit, pulseunit)),
                    CEIL((SUM(upload_bytes) + SUM(download_bytes))
                         / (DECODE(ispeak, 0, offpeakpulse, peakpulse)
                            * convert_bytes(ratingunit, pulseunit)))
                    * DECODE(ispeak, 0, offpeakpulse, peakpulse)
                    * convert_bytes(ratingunit, pulseunit)
                    - (freevalue * convert_bytes(ratingunit, pulseunit))) >
                (0.8 * MIN(NVL(srt.creditthreshold, 0)))Not a great query though. I would look into the CASE statement and subquery factoring (the WITH clause) to make this readable and remove repetition.
    Cheers
    Ben

  • Error while creating  group chart of accounts

    hi
    i am learning sapfico now.while i was practicising to create group chart of accounts ,i got an error"group chart of accounts not created to a/c no 111111.".first i created chart of accounts  code for group chart of accounts.then i have created chart of accounts  per company code.like wise i have created 2 account groups and 2 retained earning a/cs(1 for per company code & 1 per group chart of account purpose)
    while i was creating GL master records in FS00 i got the error like that.any any body please help me.

    Hi,
    Have you entered "111111" in the filed group account number?  If so, this account should be available / created in your group chart of account.
    Hope it helps
    Saravanan.A

  • Group is not assigned error in LSWM when uploading Routings

    Hi All,
    I am trying to upload the routings using LSMW Direct Input method using program RCPTRA02. While executing the lsmw, i am getting an error " Group cannot be determined for material XXXXXXXX plant XXXXX". But the SAP has to assign the Group while creating the routing for the material and plant. I dont know why its throwing that error. Is there any problem with the mapping which i dont think so. Any suggestions to resolve the error.
    Thanks

    Hi ben,
    we have exactly the same problem. Have you found some solution?
    I would appreciate so much if you could keep in contact with me in order to explain me the solution. Please reply the message and write the solution as detailed as it would be possible.
    Thanks in advance.

  • REIMS application Group policy error

    Hi all,
    We r getting the error 'Group policy processing aborted' in REIMS application event log on EDI server.Plz help me out if any one has any light on this.
    Thanks in advance.
    Sap Basis.

    Hi,
    As I go through the .xml logs, nothing special was detected.
    Would you please let me the file server's hardware configuration and how is the server's performance?
    Besides that, could you please ask user to try on another pc and check if the problem still occurs.
    Then we may able to narrow down the scope for troubleshooting.
    Thanks and regards,
    Elaine
    Please remember to mark the replies as answers if they help and unmark them if they provide no help. If you have feedback for TechNet Subscriber Support, contact [email protected]

  • Error while opening a query in query designer

    Hello all,
    There is an issue with the BEx Query Designer. A user is facing the following error while he tries to open a query using the Query Designer.
    Error:
    Error Group
    RFC_ERROR_COMMUNICATION
    Message
    Connect to SAP gateway failed
    Connect_PM  GWHOST=10.233.0.167, GWSERV=sapgw00, SYSNR=00
    LOCATION    CPIC (TCP/IP) on local host
    ERROR       partner '10.233.0.167:3300' not reached
    TIME        Wed Nov 26 16:35:58 2008
    RELEASE     710
    COMPONENT   NI (network interface)
    VERSION     39
    RC          -10
    MODULE      nixxi.cpp
    LINE        2985
    DETAIL      NiPConnect2
    SYSTEM CALL connect
    ERRNO       10060
    ERRNO TEXT  WSAETIMEDOUT: Connection timed out
    COUNTER     1
    Please help me in resolving this issue.
    Regards,
    Shahid Ahmed.

    Connect to SAP gateway failed
    You cant connect to gataway, may be it's down to (if you have
    some issues going on the server
    Regards.

Maybe you are looking for

  • Screen lights up

    Hi, since a week ago, my macbooks screen give a white screen or about half a second when I start it up (so before the apple logo comes on) or when I get it out of the hybernate. Is that normal? Thanx!

  • Ink Cartridges not near what it should

    My son purchased me a hp5520 last year for my birthday, I have purchased ink at least 4 times in a year. I do not print that much and dont understand what the problem is. The last time I bought ink it was gone in a month. I just bought ink today and

  • How to keep laptop and desktop separate?  Are now linked somehow

    Hi, I'm an idiot with computers and I'm baffled by this.  My husband has just taken over my laptop for his use.  It is synced somehow with the desktop, which I use, and I don't want it to be.  For example, he has wiped out all of my Safari bookmarks

  • Module pool using ABAP Objects

    Hi All ,      I have a requirement for creating a transaction/module pool prog using OO ABAP  .     Can you please send some sample documents to guide completely about the creation and execution of the transaction . Rewards are assured !! Regards, Ra

  • Understanding the Creative Cloud Plans for a first-time photoshop user

    I've never had photoshop before and I downloaded just the free 30-day trial. Then I purchased the Creative Cloud Photography plan (the one that's 9.99 a month). But I need help understanding what this offer me, because in the description this seemed