Problem in Rollup- ECCS

Hi,
My client has a problem while executing the data monitor in ECCS process.
The following error is coming up when we run GL25 transaction Code.
Data records cannot be processed - terminating processing
Message no. G3618
*Diagnosis*
*After checking all combinations of the consolidation processing ledger to which the data is being rolled into, the consolidation units, and the fiscal years (from 001/2009 to 001/2009), the system concludes that processing cannot take place (that is, the data cannot be reset, and thus, be re-posted). The following conditions must be met in order to process data for a ledger, consolidation unit, and fiscal year:*
*1. The consolidation unit must be contained in the reset set. If the reset set does not contain a set for the characteristic "consolidation unit", this is the same as if all consolidation units were contained.*
*2. If the rollup was started within the data monitor, the consolidation unit must either be equal to the consolidation unit for which data is being entered, or be contained in the selected consolidation group.*
*3. If status management is active, the task cannot be blocked for any period of the fiscal year that lies within the selected time frame for data entry.*
*System Response*
*Processing will be terminated.*
Can any one please help me out on this.
Thanks in advance.
Regards,
Satish

Dear Satesh,
If you had already run the rollup for example for periods 000-006 posting to EC-CS 
period 006 it wouldn´t make sense to execute it from 000 to 016 (or from
000 to any other period >= 007) now, because data of period periods    
000-006 would be posted again. You should execute the rollup only 
for periods >= 7 now.                                                  
I hope it helps.
Cheers,
David

Similar Messages

  • EC-CS - Problem with rollup in consolidation

    Hello SAP Guru,
    We have a manufacturing client who went live last month with a technical upgrade from 4.6C to ECC 6.  We use EC-CS and are in the middle of completing our first month-end process.  We encountered a problem during profit centers rollup (transaction CXCD).  During the data upload step, all the profit centers rollup correctly except one: a dummy profit center for the company code 1000.  Data is not loaded in that receiving consolidation unit associated with the dummy sending profit center.  The same CXCD transaction worked without problem in SAP 4.6C - for all other consolidation units/profit centers.
    In fact we noticed that when we ran transaction CXNT against the problem consolidation unit, it showed that that "consolidation unit was NOT already integrated".  We can't get that consolidation unit to "integrate". 
    The client produced Balance Sheet and P&L statement by profit centers. We tried everything and have exhausted all avenues.  If you can give some leads/suggestions where else we can investigate, it's much appreciated.
    Thank you

    Hi,
    I've got the same issue but it seems that mine AppId is set correctly?
    Following Situation --> tested everything with beta app in store --> everything worked fine.
    Afterwards a submitted a new app for real app store and changed the appID to new one.
    Microsoft rejected my app because of unexpected app crash.
    I tried to reproduce the issue and voila --> app is crashing at this line
    var listing = await CurrentApp.LoadListingInformationAsync(); with
    System.Exception: Exception from HRESULT: 0x805A0194
       at System.Runtime.CompilerServices.TaskAwaiter.ThrowForNonSuccess(Task task)
       at System.Runtime.CompilerServices.TaskAwaiter.HandleNonSuccessAndDebuggerNotification(Task task)
       at System.Runtime.CompilerServices.TaskAwaiter`1.GetResult()
    Anyadvice :(? Thx

  • Query help - problems with ROLLUP

    I'm trying to make a query i can use for an alert, it generates sales for the past 7 days.
    This query works fine:
    SELECT
          CASE WHEN GROUPING(T0.[CardCode]) = 0
                THEN CAST (T0.[CardCode] AS CHAR(8))
                ELSE 'ALL'
          END AS Customer#,
          SUM(T0.[Max1099]) AS "Total Sales",
          SUM(T0.[GrosProfit]) AS "Gross Profit" 
    FROM OINV T0
    WHERE T0.[DocDate] >= DATEADD(dd,DATEDIFF(dd,0,GETDATE())-7,0) AND T0.[Max1099] > 0
    GROUP BY T0.[CardCode] WITH ROLLUP
    And it gives me this:
    #     Customer#*     Total Sales*     Gross Profit*     
    1     C2235              8,285.87       4,165.77            
    2     C2236           10,191.39              4,197.95            
    3     C2253                570.56               311.17          
    4     C3008           18,756.76       5,720.21            
    5     ALL                   37,804.58    14,395.10            
    Which is great. Gives me a total at the end, and substitutes "ALL" for the customer number. Lovely.
    Problem #1: I REALLY want it to give the Customer Name NEXT TO the Customer Number. But when I try to add it, i have to add it to the GROUP BY as well. Which changes the query to this:
    SELECT
          CASE WHEN GROUPING(T0.[CardCode]) = 0
                THEN CAST (T0.[CardCode] AS CHAR(8))
                ELSE 'ALL'
          END AS Customer#,    
          CardName as "Cust Name",     
          SUM(T0.[Max1099]) AS "Total Sales",
          SUM(T0.[GrosProfit]) AS "Gross Profit"
    FROM OINV T0
    WHERE T0.[DocDate] >= DATEADD(dd,DATEDIFF(dd,0,GETDATE())-7,0) AND T0.[Max1099] > 0
    GROUP BY T0.[CardCode], T0.[CardName] WITH ROLLUP
    And changes my output to THIS:
    #     Customer#     Cust Name                             Total Sales     Gross Profit     
    1     C2235             Acme Products                      8,285.87               4,165.77     
    2     C2235          (blanks blanks)                        8,285.87               4,165.77     
    3     C2236             Some Other Products             10,191.39               4,197.95     
    4     C2236          (blanks blanks blanks)            10,191.39               4,197.95     
    5     C2253             Third Customer Name             570.56                  311.17     
    6     C2253          (blanks blanks blanks)                570.56                  311.17     
    7     C3008             Fourth Customer Name       18,756.76       5,720.21     
    8     C3008          (blanks blanks blanks)                                               18,756.76       5,720.21     
    9     ALL                                                                  37,804.58     14,395.10     
    ( I have replaced actual customer names, of course, and replaces actual blanks with the word 'blanks' so it would be more legible.)
    I can't figure out a way to simply list the customer name next to the number. Instead , it gives me a summary for the CardCode and a summary for the CardName.
    I've tried combining the two into one field, on the fly, but haven't been successful.
    Problem #2 - extra credit!
    If i really want this done right, i should also have a query that pulls the same data from ORIN (Credit Memos) and do a UNION ALL, but when i do this, is simply rejects me at the word "UNION"
    any and all help appreciated, and to test this, you can just cut and past the query into SAP, it will run right there, no mods needed.
    oops. I had to change the "Not Equal" symbol to just "greater than" for "Max1099" because it was just dropping the symbol...
    Edited by: Dante Amodeo on Jan 18, 2012 6:30 PM

    Try:
    SELECT CAST (T0.CardCode AS CHAR(8)) AS Customer#,
    MAX(T0.CardName) 'Customer Name',
    SUM(T0.Max1099) AS 'Total Sales',
    SUM(T0.GrosProfit) AS 'Gross Profit'
    FROM OINV T0
    WHERE DATEDIFF(dd,T0.DocDate,GETDATE())<=7 AND T0.Max1099 > 0
    GROUP BY T0.CardCode
    UNION ALL
    SELECT 'ALL','',SUM(T0.Max1099),
    SUM(T0.GrosProfit)
    FROM OINV T0
    WHERE DATEDIFF(dd,T0.DocDate,GETDATE())<=7 AND T0.Max1099 > 0

  • Smartform Printing Problem in SAP ECC 6.0 with Ehp6

    Hi Sap Expert,
    Our Sap System has been upgraded from ECC 6.0 to ECC 6.6 ( Ehp6). now we are  facing  problem in to print smart forms .
    I have a smart form with one page and three copies are there.
    On first it was written ORIGINAL, on second DUPLICATE and third one is TRIPLICATE.
    When I see the print preview it shows all the three pages ( ORIGINAL,  DUPLICATE and  TRIPLICATE. ). but when i give the command to print.  it will only 3 copies
    ORIGINAL. and when i convert into PDF it shows only one page ORIGINAL.
    I want ORIGINAL,  DUPLICATE and  TRIPLICATE printout in single command.
    Note : Before Up gradation of sap system it worked fine.
    Guide me.........

    Hi Marques,
    Yes, my problem has solved,
    Write the code Driver Program:
    Declare Internal Table as:
    DATA : BEGIN OF ITAB OCCURS 0,
              I TYPE I,
              TEXT TYPE CHAR20,
              END OF ITAB.
    and Append 3 time this Itab with the no of copies of form ( Original, Duplicate and Triplicate ) as
        ITAB-I = 1.
       ITAB-TEXT = 'Original'.
       APPEND ITAB.
       CLEAR ITAB.
    Now,
    LOOP AT ITAB.
    call function module of smartforms as
    CALL FUNCTION fm_name
       EXPORTING
        CONTROL_PARAMETERS         = CO
        OUTPUT_OPTIONS             = OT
    *   USER_SETTINGS              = 'X'
         L_***                      =  L_***
         V_INDX                     = ITAB-I
    * IMPORTING
       TABLES
         IT                         = IT
    and modify the smart form as
    write the code in window
    IF V_INDX = '1'.
    v_text = 'Original'.
    ELSEIF V_INDX = '2'.
    v_text = 'Duplicate'.
    ELSEIF V_INDX = '3'.
    v_text = 'Triplicate'.
    ENDIF.

  • Problem with rollups

    We have created batch jobs for rollups on the cube to commence after the load is over. But this job gets finished in notime and job log says that "no rollups necessary". In the joblog we can also see that it tries to rollup from request 00000000, which is not present to latest request. then it says
    "Aggregation of InfoCube terminated, as end request ID 0000000000 not permitted
    Rollup is finished: Data target , from 0000185518 to 000000000
    No rollup necessary"
    When we stop the scheduled batch job and execute it manually then rollups get completed successfully.
    could anyone advise on this. Thanks in adv.

    Hi Rao,
    What is the program you are using in the batch job. May be thats what is causing the problem. May be you are not passing the correct parameter to it.
    Bye
    Dinesh

  • Security Parameter Problem in SAP ECC 6.0

    Hi eveyone,
    We have just activated the profile parameters written below in our new
    SAP ECC 6.0 system.
    login/min_password_lng = 6
    login/min_password_digits = 1
    login/min_password_letters = 1
    login/fails_to_user_lock = 10
    login/fails_to_session_end = 5
    login/password_expiration_time = 90
    We have tried to logon the system as DDIC, the system wanted a new
    password. We have changed the password many times more than 5 times.
    But when we try to give the old password, it still says that "The
    password must be different from your last 5 passwords".
    The problem goes on, even you inactivate the parameters in the profile
    and restart the SAP.
    How can we solve this problem?

    Hi everyone,
    I want active the profile parameter login/min_password_digits = 1 and
    login/min_password_letters = 1 by RZ10. The system give the message:
    E login/min_password_digits is not identified identically on all servers.
    I changed this parameter on all servers but this message was always there.
    Is it OK after restart system?
    Best regards
    Valachova Miroslava

  • Workflow Problem between  SRM & ECC

    Hi,
      We are facing a typical scenario in the workflow for Purchase Requisition.
    System:
    1.     SAP ECC 6.0
    2.     SAP SRM 5.0
    Problem Description:
    1.     In our landscape, ECC is connected to SRM portal for creation of PRs through SRM.
    2.     For this the user logs into SRM system and creates a shopping cart. After creation of shopping cart, it goes for approval in SRM system.
    3.     Once approved, BAPI 'BAPI_REQUISITION_CREATE' used at the SRM backend to create PRs in ECC.
    4.     After this, the workflow gets triggered and a work item is being sent for approvals in ECC.
    5.     There is an enhancement (ES_SAPLMEWQ) been done in the BAPI u2018BAPI_REQUISITION_CREATE' to trigger the workflow.
    6.     We have used the standard function module u2018SAP_WAPI_CREATE_EVENTu2019.
    7.     Now the problem is that, this is working fine in QAS and Dev systems. But it fails in PRD for some of the SRM triggered PRs.
    8.     After our initial analysis, we observed that, for the PRs, it has failed to trigger workflow, the initiator had logged into SRM using FR language where as, those PRs whose initiator had logged into SRM portal using u2018ENu2019 language it had worked fine.

    Recently I was facing a similar issue with SAP_WAPI_START_WORKFLOW function module where I did not maintain the container element name in the program with different language. I will request you to maintain the event container element name in France inside the program whefre you are calling the FM SAP_WAPI_CREATE_EVENT.  Most probably you will be using Text Symbol that you need to maintain in French language.
    Thanks
    Arghadip

  • Problem creating standard ECC Parent-Child Hierarchy in HANA

    Hi all -
    I've been trying to get a hierarchy to work on the front end of a stand alone HANA system using profit center hierarchy data from SETLEAF / SETNODE tables from ECC. Here is how my test hierarchy looks:
    Following another post I found around here, I created an attribute view and filtered SETNAME to 'TST_HANA'.
    The resulting data when connected to my attribute view caused an error that there was no root node, so I manually inserted the last row shown here (where PCA_PARENT = SETNAME and PCA_CHILD = SUBSETNAME):
    Finally, I created my parent-child hierarchy in the attribute view and connected that view to my data foundation in the analytic view via left-outer join between Profit Center and VALFROM. However, when I go to connect to my view via MDX in excel, I get the following message:
    "Hierarchy create error: Multiple parents not allowed for hierarchy node TST_ND1" Clearly from the data, there aren't multiple parents for TST_ND1. It's already a pain that to use a standard hierarchy I have to manually insert a root node, but that doesn't even seem to fix the problem.
    Can anyone suggest how to fix this to get a standard profit center hierarchy working?
    Thank you!
    AZ

    Hi,
    According to me, Hierarchy level will work fine in ms excel  for all analytical, calculation view using MDX Provider..
    Do you have any composite primary key or composite foreign key in the tables....
    r u getting correct level hierarchy output in Hana studio... plz check with all types of permutation possible.if u r getting correct output in analytical view w.r.t hana but fails to get in Ms excel..
    please create Calculation view of that.. & then check the output in ms-excel..
    Thanks,

  • Chinese language problem in IDES ECC 6.0 SR3

    I just finished the installation of IDES ECC 6.0 SR3, but after i changed zcsa/installed_languages to '1DE' and tried to logon using 'ZH' which stand for chinese, it doesn't work and only show messy codes.
    According to note 1244548:
    "The system already contains more than 20 languages. Use transaction SMLT to check the status and set the system profile parameter zcsa/installed_languages accordingly to use them."
    It should be alright, anything configuation i missed?
    Lin

    Hi ,
         zcsa/installed_languages parameter has to set for each language .We suppose that you set is correctly i.e. code for chinese is 1.Please check it once again .If you feel this code for chinese language is correct then you need to install this language in SMLT tcode.
           Please remember that only english & german language comes as default in SAP .Any language ther than this you have to install it via SMLT tcode.You can find the CD of these languages at marketplace.
           Please dont forget to supplement language after installation of chinese.
        Also as you said in post that you system contains more than 20 languages but your profile contains calue of only three .Please make sure that you set this parameter contaning values for each language.Please use tcode I18n to get the help for same.
    Thanks..
    Mohit
    Edited by: mohit gupta on Mar 5, 2010 11:29 AM

  • Problem with convert_otf Ecc 6.0

    Can you help with this?
    So basically we are focussed on why convert_otf is behaving differently in ECC 6 and its working fine in 4.6C. Fields were getting clipped in the final output is what we found in the debugger and the logo did not show up when we saved a copy of the program as a local object
    Thanks
    Mike

    I have a similar issue. In CRM 3.0 everything is fine but in 5.0 the .pdf file is not being created properly. I've traced it back far enough to see that the otf table is not being constructed properly. It's different in the new system (much smaller) so when convert_otf is called the pdf file is unreadable.
    Anyone help?
    Matt

  • Problem un-installing ECC 6.0 on Redhat EL 4 / MaxDB

    Hi,
    After encountering a few problems with my installation I decided to run an un-install using sapinst. I enter the passwords for the Database System Administrator and Database Manager Operator and click next but sapinst just hangs. The bottom of the window shows it is "checking values..." and I am unable to proceed any further.
    How can I resolve this and continue the un-install?
    Thanks!

    Hi dirk, thanks for your help.
    Here are the last entries in the import_monitor.log
    TRACE: 2007-01-30 02:24:16 com.sap.inst.migmon.LoadTask run
    Loading of 'SAPSSRC' import package is started.
    TRACE: 2007-01-30 02:24:16 com.sap.inst.migmon.LoadTask processPackage
    Task file generation for 'SAPSSRC' import package:
    /usr/sap/DHU/SYS/exe/run/R3load -ctf I /sapdb/ECC_6.0/ECC_6.0_Export/51032272_1/EXP6/DATA/SAPSSRC.STR /tmp/sapinst_instdir/ERP/SYSTEM/ADA/CENTRAL/AS/DDLADA.TPL
    SAPSSRC.TSK ADA -l SAPSSRC.log
    TRACE: 2007-01-30 02:24:16 com.sap.inst.migmon.LoadTask processPackage
    Loading of 'SAPSSRC' import package into database:
    /usr/sap/DHU/SYS/exe/run/R3load -i SAPSSRC.cmd -dbcodepage 1100 -l SAPSSRC.log -nolog -c 0
    and here is the contents for R3load.exe.log
    sapparam: sapargv( argc, argv) has not been called.
    sapparam(1c): No Profile used.
    sapparam: SAPSYSTEMNAME neither in Profile nor in Commandline
    /usr/sap/DHU/SYS/exe/run/R3load: START OF LOG: 20070129174550
    /usr/sap/DHU/SYS/exe/run/R3load: sccsid @(#) $Id: //bas/700_REL/src/R3ld/R3load/R3ldmain.c#8 $ SAP
    /usr/sap/DHU/SYS/exe/run/R3load: version R7.00/V1.4
    Compiled Aug 29 2006 06:35:03
    /usr/sap/DHU/SYS/exe/run/R3load -testconnect
    DbSl Trace:   prepare() of C_0000, rc=1, rcSQL=-942 (POS(28) Unknown table name:SVERS)
    DbSl Trace: SQL PREPARE on connection 0, rc=-942 (POS(28) Unknown table name:SVERS)
    (DB) INFO: connected to DB
    (DB) INFO: The MaxDB logwriter is switched off#20070129174551
    (DB) INFO: disconnected from DB
    /usr/sap/DHU/SYS/exe/run/R3load: job completed
    /usr/sap/DHU/SYS/exe/run/R3load: END OF LOG: 20070129174551
    It does not always hang on the same job but at some point during the ABAP import phase. I suspect it may be a database related issue but I am not entirely sure.

  • Problem while installing ECC 5.0 on RHEL

    Hi
    I am new to this forum .The problem is @ the end of the database instance installation .
    it says a library GLIBC 2.3.4 is needs to be installed . tried installing even that but hard luck ..
    Regards
    Vinay.K

    Vinay,
    usually in such cases it is good to post some additional information or try to post some info from the logfile or state your versions, etc. Working with just this info (for others) is like looking in to a crystal ball or just plainly guessing.
    So, can we please have some more info, version numbers, log file outputs, etc?
    Regards,
    Bas

  • Problem in BDC ECC 6.0

    I have created a BDC in ECC 6.0 , when I am executing it after all coding it is not accepting the file (nethier in notepad nor in excel) thats why it is not uploading the data in the screen, can anybody help me to resolve this and tell me why it is happening? it is not showing error but not accepting the file.
    Message was edited by:
            Moni Bindal

    Hi,
    Please check the Upload function modules,
    the parameters are properly passed.
    CALL FUNCTION 'GUI_UPLOAD'
      EXPORTING
        filename                      = 'C:\MAT.XLS'
       FILETYPE                      = 'DAT'
       HAS_FIELD_SEPARATOR           = 'X'
      tables
        data_tab                      = IT_MAT.
    Thanks,
    KC

  • Problem with DDR ECC

    Hello Friends!
    I am in trouble!I've got a MSI-746f with 746FX SiS chipset, the original Bios firmware, AMD Atlhon Xp 2200+, and a single Stick of DDR 266mhz 1024mb ECC PC2100 that won't work!
    This DDR module is perfectlly working in a server (Made by IBM) but in my mainboard no !If someone can help me I'd be happy!!
    Thank you very much

     registered ECC
    were is the word registered in your first post or the second
    i suggest you lighten up
    as im not prepared to donate my time for free
    to people with your kind of attitude

  • Material Replication problem from SAP ECC to CRM 2007

    I am trying to load material data from SAP to CRM.  Materials are in general coming across however i have a lot of errors visible in smw01 with the following entries:
    @0A@     BDoc validation error     PRODUCT_MAT     mBDoc Validate     06/04/2010     14:20:05     QAS100     R3AI_MATERIAL     MW_RFC_USER     DF6FDBE147AC2EF1B467002264F6091A
    On closer examination i can see that the specific issue relates to teh following:
    A key was used twice for multirow set type CRMM_PR_TAX
        Message no. COM_PRODUCT512                        
    I can see on closer examination of the individual entries why the issue is occuring when i show the Bdoc message extra data I can see that there are multiple entries for CRMM_PR_TAX
    CLI PRODUCT_GUID                     TAX TAX TAX_ TAX_GROUP            TAX_TARIFF_CODE  T C VALID_FROM          VALID_TO            UPNAME       H LOGSYS                                                                               
    400 00000000000000000000000000000000 IE      MWST NONE                                      06/04/2010 13:20:05 12/31/9999 23:59:59 MW_RFC_USER    QAS100   
    400 00000000000000000000000000000000 US      UTXJ NONE                                      06/04/2010 13:20:05 12/31/9999 23:59:59 MW_RFC_USER    QAS100   
    400 00000000000000000000000000000000 US      UTXJ NONE                                      06/04/2010 13:20:05 12/31/9999 23:59:59 MW_RFC_USER    QAS100   
    400 00000000000000000000000000000000 US      UTXJ NONE                                      06/04/2010 13:20:05 12/31/9999 23:59:59 MW_RFC_USER    QAS100   
    I also note that the PRODUCT_GUID is blank 00000000000000000000000000000000 whic shouldn't be the case.
    It's just not clear to me what i need to do to resolve the issue
    Any help would be greatly appreciated
    Regards
    Eddie

    I am trying to load material data from SAP to CRM.  Materials are in general coming across however i have a lot of errors visible in smw01 with the following entries:
    @0A@     BDoc validation error     PRODUCT_MAT     mBDoc Validate     06/04/2010     14:20:05     QAS100     R3AI_MATERIAL     MW_RFC_USER     DF6FDBE147AC2EF1B467002264F6091A
    On closer examination i can see that the specific issue relates to teh following:
    A key was used twice for multirow set type CRMM_PR_TAX
        Message no. COM_PRODUCT512                        
    I can see on closer examination of the individual entries why the issue is occuring when i show the Bdoc message extra data I can see that there are multiple entries for CRMM_PR_TAX
    CLI PRODUCT_GUID                     TAX TAX TAX_ TAX_GROUP            TAX_TARIFF_CODE  T C VALID_FROM          VALID_TO            UPNAME       H LOGSYS                                                                               
    400 00000000000000000000000000000000 IE      MWST NONE                                      06/04/2010 13:20:05 12/31/9999 23:59:59 MW_RFC_USER    QAS100   
    400 00000000000000000000000000000000 US      UTXJ NONE                                      06/04/2010 13:20:05 12/31/9999 23:59:59 MW_RFC_USER    QAS100   
    400 00000000000000000000000000000000 US      UTXJ NONE                                      06/04/2010 13:20:05 12/31/9999 23:59:59 MW_RFC_USER    QAS100   
    400 00000000000000000000000000000000 US      UTXJ NONE                                      06/04/2010 13:20:05 12/31/9999 23:59:59 MW_RFC_USER    QAS100   
    I also note that the PRODUCT_GUID is blank 00000000000000000000000000000000 whic shouldn't be the case.
    It's just not clear to me what i need to do to resolve the issue
    Any help would be greatly appreciated
    Regards
    Eddie

Maybe you are looking for

  • Wher I should I put the data sources.

    Hi all, in connect pool where I shoul put the following staff <database> <jndi-name>jdbc/sqlserver</jndi-name> <driver type="com.microsoft.jdbcx.sqlserver.SQLServerDataSource"> <serverName>csdevsqla01.office.foo</serverName> <databaseName>Reports</da

  • Sales Order Fields

    Hi All We have a situation where we have Key account customer that fax their Purchase Orders to us with a price. The Credit Sales Ord Type we have designed forces user to populate this amount into this field when capturing the Sales Order for the cus

  • Problem to compile .java class

    hi, i'm using/creating a package of classes....and as per my knowledge there is no need to write explicit import if u r importing/using an instance of class1 in other class2 in the same package..... I'm doing the same..... but the problem arrises her

  • Black stripes on the back of MB case!!!

    it has been there for a long time now, it does not look very visible on the photo but it's quite remarkable in real since its on the bottom i didnt care it too much now i finally decide to ask if it matters or not, my warranty will expire this june,

  • Agents determination using Organization chart

    Hi, I have a Organization chart. and I assigned a Job in that Organization chart to the Agents assignment in TASK. Job Is assigned to a user ( US.....) I am not knowing how to get that agents So as to start the task. I am taking about the AGENTS fiel