Collections Worklist: Total dispute amt is not a sumation of the disputes

Hi All,
I have a weird problem in my collections worklist at the moment where, when the list is generated, on the outer screen before your drill into the Business Partner, the value for "Disputed Amount" does not match the sum of the open disputes for that BP.
I have tried de-activating all of the BAdI implementations we had in place for various minor changes but it has had no affect. When I debug in the BAdI "UDM_WL_ITEM_CREATE_C" - "Enhancement of worklist items on creation" the BP is coming in with a reduced list of dispute cases or in some cases none at all.
From about 3 months ago it seems that our disputes are not being picked up to be added to the overall amount.
Any ideas would be greatly appreciated.
Thanks,
Brenton.

You realise this is not Apple?
It is a community forum, of Apple users like yourself.
It does sound like you are dealing with someone else anyway, such as your phone company. Dispute the charge with your Credit company, which shouldn't be a problem since it is fairly obviously a double charge.
And yes stand up for what is right, whoever it is is just a typical bureaucracy and straightening them out takes persistence.
Peter

Similar Messages

  • Total is not getting displayed in the ALV output.

    Hi,
    Total is not getting displayed in the ALV output.
    I m using :REUSE_ALV_BLOCK_LIST_APPEND & REUSE_ALV_BLOCK_LIST_DISPLAY
    Are  there any issues with it as the same settings are working fine with REUSE_ALV_LIST_DISPLAY
    source code:
    DATA: layout TYPE slis_layout_alv,
          IT_eventS  TYPE slis_t_event,
          fcat   TYPE slis_t_fieldcat_alv WITH HEADER LINE,
          rec_fcat TYPE slis_t_fieldcat_alv WITH HEADER LINE.
    TYPES: BEGIN OF ty_tab,
          belnr TYPE dberchz-belnr,
          belzart TYPE dberchz-belzart,
          net TYPE dberchz-nettobtr,
          END OF ty_tab.
    DATA: lt_tab TYPE STANDARD TABLE OF ty_tab.
    SELECT belnr belzart nettobtr
      FROM dberchz
      INTO TABLE lt_tab[]
    WHERE belnr eq '000000000001'.
      if sy-subrc ne 0.
      ENDIF.
    *  defining layout
    layout-colwidth_optimize = 'X'.
    layout-def_status = 'X'.
    *defning event
    *event
    *defining field catalog
    fcat-col_pos = 1.
    fcat-fieldname = 'BELNR'.
    fcat-tabname  = 'LT_TAB'.
    APPEND fcat.
    fcat-col_pos = 2.
    fcat-fieldname = 'BELZART'.
    fcat-tabname  = 'LT_TAB'.
    APPEND fcat.
    fcat-col_pos = 3.
    fcat-fieldname = 'NET'.
    fcat-tabname  = 'LT_TAB'.
    fcat-do_sum = 'X'.
    APPEND fcat.
    *calling alv
    CALL FUNCTION 'REUSE_ALV_BLOCK_LIST_INIT'
      EXPORTING
        i_callback_program             = 'YZ_PLR'
    *   I_CALLBACK_PF_STATUS_SET       = ' '
    *   I_CALLBACK_USER_COMMAND        = ' '
    *   IT_EXCLUDING                   =
    CALL FUNCTION 'REUSE_ALV_BLOCK_LIST_APPEND'
      EXPORTING
        is_layout                        = layout
        it_fieldcat                      = fcat[]
        i_tabname                        = 'LT_TAB'
        it_events                        = IT_EVENTS[]
    *   IT_SORT                          =
    *   I_TEXT                           = ' '
      tables
        t_outtab                         = lt_tab[]
    * EXCEPTIONS
    *   PROGRAM_ERROR                    = 1
    *   MAXIMUM_OF_APPENDS_REACHED       = 2
    *   OTHERS                           = 3
    IF sy-subrc <> 0.
    * MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
    *         WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
    ENDIF.
    CALL FUNCTION 'REUSE_ALV_BLOCK_LIST_DISPLAY'
    Thanks,
    Gaurav

    Hi
    No I don't think, this is my code (based on your code) and it works fine:
    TYPE-POOLS SLIS.
    DATA: BEGIN OF LT_TAB OCCURS 0,
           BELNR LIKE BSEG-BELNR,
           GJAHR LIKE BSEG-GJAHR,
           WRBTR LIKE BSEG-WRBTR,
           WAERS LIKE BKPF-WAERS,
          END OF LT_TAB.
    DATA: LAYOUT     TYPE SLIS_LAYOUT_ALV,
          IT_EVENTS  TYPE SLIS_T_EVENT,
          FCAT       TYPE SLIS_T_FIELDCAT_ALV WITH HEADER LINE,
          REC_FCAT   TYPE SLIS_T_FIELDCAT_ALV WITH HEADER LINE.
    START-OF-SELECTION.
      FCAT-COL_POS       = 1.
      FCAT-FIELDNAME     = 'BELNR'.
      FCAT-TABNAME       = 'LT_TAB'.
      FCAT-REF_FIELDNAME = 'BELNR'.
      FCAT-REF_TABNAME   = 'BSEG'.
      APPEND FCAT.
      FCAT-COL_POS       = 2.
      FCAT-FIELDNAME     = 'GJAHR'.
      FCAT-TABNAME       = 'LT_TAB'.
      FCAT-REF_FIELDNAME = 'GJAHR'.
      FCAT-REF_TABNAME   = 'BSEG'.
      APPEND FCAT.
      FCAT-COL_POS       = 3.
      FCAT-FIELDNAME     = 'WRBTR'.
      FCAT-TABNAME       = 'LT_TAB'.
      FCAT-CFIELDNAME    = 'WAERS'.
      FCAT-REF_FIELDNAME = 'WRBTR'.
      FCAT-REF_TABNAME   = 'BSEG'.
      FCAT-DO_SUM        = 'X'.
      APPEND FCAT.
      FCAT-COL_POS       = 4.
      FCAT-FIELDNAME     = 'WAERS'.
      FCAT-TABNAME       = 'LT_TAB'.
      FCAT-REF_FIELDNAME = 'WAERS'.
      FCAT-REF_TABNAME   = 'BKPF'.
      FCAT-DO_SUM        = SPACE.
      APPEND FCAT.
      SELECT * FROM BSEG INTO CORRESPONDING FIELDS OF TABLE LT_TAB
        WHERE BUKRS = 'MAAB'
          AND BELNR = '0000000001'.
      LT_TAB-WAERS = 'EUR'.
      MODIFY LT_TAB FROM LT_TAB TRANSPORTING WAERS WHERE WAERS = SPACE.
    *CALLING ALV
      CALL FUNCTION 'REUSE_ALV_BLOCK_LIST_INIT'
        EXPORTING
          I_CALLBACK_PROGRAM = 'ZPROVAMAX5'.
      CALL FUNCTION 'REUSE_ALV_BLOCK_LIST_APPEND'
        EXPORTING
          IS_LAYOUT   = LAYOUT
          IT_FIELDCAT = FCAT[]
          I_TABNAME   = 'LT_TAB'
          IT_EVENTS   = IT_EVENTS[]
        TABLES
          T_OUTTAB    = LT_TAB[].
      CALL FUNCTION 'REUSE_ALV_BLOCK_LIST_DISPLAY'.
    I've also inserted a currency field
    Max

  • Goods Receipt Collective Slip for Mat Doc is not printing

    HI All,
    I have a strange issues. I'm trying to print collective slip for Goods Receipt which is created against of PO.
    I able to print Individual Slip when i create GR(Mat Doc) against PO with movement type 101. But I'm not able to print the Collective Slip when I create GR(Mat Doc) against PO with movement type 101. I'm saving the GR document by selecting collective slip. Error I'm getting is "The system could not create Output".
    I check the condition records in MN21, condition record is in place.
    I check in OMB5, for movement type and material document configuratio its there.
    I check in NACR, condition record is there.
    I found that In table NAST, entry for GR document created using collective slip is not available, but Individual slip GR Doc entries are there in NAST table.
    any help on this matter is highly appreciated.
    I check in SDN, Googled it, but no result.
    Thanks in Advance.

    check this
    2. Before you set up the output determination, you have to run the program RM07NCUS for each client in which you want to use the output determination function.
    This program copies the basic settings from the SAP standard client (000).
    from there:
    http://help.sap.com/saphelp_46c/helpdata/en/ed/6cec6eb435d1118b3f0060b03ca329/content.htm
    and check you have define some printer for the output.

  • User has contribute access but he is not able to access the site collection...

    User has contribute access but he is not able to access the site collection...

    What error does he get.
    Can you share fiddler trace(check if any 404 error)
    what error do we see in ULS Logs
    Create disableloopback
    registry on server
    http://support.microsoft.com/kb/926642/en-us

  • My ipad mini is totally drain and after plug it to regain the power its not working anymore.can somebody knows how to make my ipad work again

    my ipad mini is totally drain and after plug it to regain the power its not working anymore.can somebody knows how to make my ipad work again

    Reset iPad
    Hold down the Sleep/Wake button and the Home button at the same time for at least ten seconds, until the Apple logo appears
    Note: Data will not be affected.

  • AW01N- Total of write up not matching with total of indivudual transaction

    Hi,
    While viewing any Asset via AW01N, the total of Write up  transaction is not matching with the total of individual transactions displayed in same screen.(It displays only last transaction value in total of write up transcation)
    We applied OSS note No. 762128 still the problem exists.
    Please inform me if anybody has resolved this before.
    Thanks
    Prasad

    Hi,
    Please note that the determination of the costs behaves differently in
    the itemization and in the cost component split.
    In the itemization, each item is rounded separately, while in the cost
    component split first the individual items will be added up and then the
    value will be rounded. The differences can be avoided by increasing the
    lot sizes.
    Please review sap note 168238, which explains the systems behaviour
    and check the solution.
    To avoid the occurrance of this problem you should
    - always cost the header material again if an ingoing component with
      changed values is being costed.
    - also cost all materials again following a price calculation for a
      particular period.
    Please do not forget:
    The itemization view only displayed the itemization on that level,
    while the cost component view will display the cost component split
    from all levels.
    Please review sap note 889474. Sap note 66900 also explain why
    small differences arise between the itemization and the cost component
    split.
    I hope helps,
    Regards,
    MLM

  • Totals for CKF are not matching

    Hi All,
    We recently upgraded to BI7 and we created Aggregates in the system. We have few calculated key figures (CFK) in the system. When we execute the queries they are not hitting the aggregates in the system because of the property, calculation before aggregation.
    We changed that property calculation before aggregation to calculation after aggregation then the queries are hitting the aggregates. So we moved the aggregates to BQ and BP. There the values for the totals in the report are not matching. For ex: we have value 10 for a CKF in five rows then the total in the result row should be 50 but that is not the case now, it is showing as 45 or 55 some value. The totals are not matching in all the reports where this CKF is involved.
    But when we keep the calculation before aggregation property as it is, then the total values for this CKF are matching in the report. But now the problem is that the queries do not hit the aggregates.
    So instead of going for a CKF we tried with creating a formula in the query with the same calculation as it is in the CKF, but for that formula also the total values are not matching. When we check and compared the formula calculation with other CKFu2019s in the system, we found out that those CKFs which involved the calculations such as multiplication and division the totals are not matching but if the CKF is containing addition and subtraction then the Totals are matching. This is the same case in across all the systems except in Production.
    We have testing system (BT), which is a copy of production; the totals are matching for this CKF in one report. But if we include the same CKF in some other report then the totals for this CKF are not matching in that report.
    We are unable to figure out why the same CKF with same properties and calculations is not behaving in the same way across all the systems. If anybody comes across such issue please let us know how to proceed further.
    Thanks for your patience.
    Hope for your response...

    Hi himanshu,
    If you are using Addition, subtraction with Multiplication & Division, just maintain all in the Sequence how you required using brackets.
    If you are using formula in Row & Column also try to use formula Collision.
    http://help.sap.com/saphelp_nw04/helpdata/EN/d2/02223c5f00612be10000000a11402f/content.htm
    Regards,
    Rajdeep.

  • Z2 screen does not totally black out when not in use

    Hi, I noted after upgrading to lollipop os, that my screen does not totally off ( still some dim light is emitted from the screen) even when I have set the phone to time out the screen to after 5 mins is inactivity. Why is that so and what can I do to make it black out totally when screen is time out?
    Appreciate all your advices.

    Hi hesper
    Welcome to the community! Since you're new please be sure that you have checked out our Discussion guidelines.
    Since this has occurred after the update what I suggest is running a Software Repair on your handset as it is very likely to fix the problem. 
    Download the PC Companion software and install it on your PC.
    Once installed on your PC, double-click the PC Companion icon on your desktop to start the update.
    Please ensure your phone is powered off and not connected to the PC when you begin this process. You are not required to connect the phone until after step 10.
    1. Install and open PC Companion then select Support Zone.
    2. Phone Software Update.
    3. Start.
    4. Repair Phone
    5. Continue
    6. Accept data removal
    7. Next
    8. Wait for prepare
    9. Select Phone
    10. Follow the connection steps
    NOTE: The software repair will delete all user data
    To back up your phone using PC Companion:
    1. Go to Support  to install PC Companion on a Windows computer. 
    2. When installed, start PC Companion on the computer. 
    3. Connect your phone to the computer using a USB cable. 
    4. Click Start under Backup & Restore. 
    5. Follow the on-screen instructions.
    Hope this helps! Keep us updated
     - Official Sony Xperia Support Staff
    If you're new to our forums make sure that you have read our Discussion guidelines.
    If you want to get in touch with the local support team for your country please visit our contact page.

  • Group/Sort Summary Totals for Duration % Complete not working

    Hello, I'm new to this forum and have used p3 off and on years ago and had some exposure to p5, my background is more toward Project Controls - Cost management rather than scheduling. Here is my issue/question: I was told by the PM not to baseline the schedule (I know, I should have but I didn't, I did as I was specifically requested), that is a topic for another day, however. I am trying to understand the process of the % completes on my resource loaded schedule which all activities are set to duration percent complete. The schedule has roughly quarter of the activities which have been actualized, but my issue is with the "Summary Totals" of the duration % complete when I select that option in the Group/Sorting. All of the activities in a group for example will show 0% complete but the Summary Total of those activities will show greater than 0% or some of the activities duration % completes show a value greater than 0% but the Summary Total of those activities show 0%. What is causing this and why are they not consistent? Any help is greatly appreciated!
    Shannon

    I'm currently showing the duration % complete with a renamed label. The total is not rolling up to the summary. I've also discovered that the unit % complete is not calculating correctly too I believe. For example: I have 3708 budgeted hours and have expended 656 hours and the Unit % Complete is showing 19.08% when I would have thought that the % would have been calculated based on Actual Units (656) / Budgeted Units (3708) totaling 17.69% not 19.08% which it is showing. I cannot find in the reference manual how the percent completes are calculated for units nor in the help section of the software itself either. An explenation would be greatly appreciated!
    Shannon

  • SCCM Collection Query All Clients where Advertisement not successful

    Hi
    I'm trying to create a collection with a dynamic membership query.
    I want only the clients on which an advertisement status is not successful.
    So I can see on which clients the advertisement didn't not apply.
    When I use this query, I see the clients on which the advertisement was successful:
    select SMS_R_SYSTEM.ResourceID,SMS_R_SYSTEM.ResourceType,SMS_R_SYSTEM.Name,SMS_R_SYSTEM.SMSUniqueIdentifier,SMS_R_SYSTEM.ResourceDomainORWorkgroup,SMS_R_SYSTEM.Client from SMS_R_System where SMS_R_System.ResourceId in (select ResourceID from SMS_ClientAdvertisementStatus where AdvertisementID = "BMA20408" and LastStateName = "Succeeded")
    So my idea was to set the != Succeeded
    But then I have no clients in the collection.
    Any Idea how I can solve that?

    Hi,,sorry, but it looks like that I'm too stupid for copy and paste.
    I tried this one:
    select SMS_R_SYSTEM.ResourceID,SMS_R_SYSTEM.ResourceType,SMS_R_SYSTEM.Name,SMS_R_SYSTEM.SMSUniqueIdentifier,SMS_R_SYSTEM.ResourceDomainORWorkgroup,SMS_R_SYSTEM.Client from SMS_R_System where SMS_R_SYSTEM.ResourceID not in (select SMS_ClientAdvertismentStatus.ResourceID
    from SMS_ClientAdvertisementStatus where SMS_ClientAdvertisementStatus.AdvertisementID = "P0120EFE" and SMS_ClientAdvertisementStatus.laststatusmessageID in (10021))
    and always, whe I want ot save the script I got the message that there is a mistake. I'm not able to find the mistake - can please anyone help me?
    Regards
    Rolf

  • Ical won't sync with yahoo calendar. Get error....There was an unexpected error with the request (domain CalDAVErrorDomain / error 1 / description 'The collection at "/dav/xyx/Inbox/" is not an inbox.').

    Hello, I get the below error when I start iCal and it tries to sync with my Yahoo Calendar. Any thoughts?
    There was an unexpected error with the request (domain CalDAVErrorDomain / error 1 / description 'The collection at "/dav/xyx/Inbox/" is not an inbox.').

    I am having same problem - I've added events to Ical and it's not updating in my Yahoo calendar. Getting this message: There was an unexpected error with the request (domain CalDAVErrorDomain / error 1 / description 'The collection at "/dav/mcarthur_c/Inbox/" is not an inbox.').

  • TS3408 When I open safari from the dock it opens as a small window at the top of the screen that is totally white and does not have a tool bar or exit options.  All I can do is force quit to exit.  What do I do?

    When I open safari from the dock it opens as a small window at the top of the screen that is totally white and does not have a tool bar or exit options.  All I can do is force quit to exit.  What do I do?

    With Safari open, press Command ,   (comma) to open Safari Preferences then select the Extensions tab.
    Turn that off, quit (or force quit) Safari then relaunch to test.

  • Good afternoon! We purchased the product Adobe master collection 5.5 AOO Litsense RU. Distribyutiv program has been lost, and now we can not find it on the site. There we find different versions of the program other than Russian. Please tell me where to d

    Good afternoon! We purchased the product Adobe master collection 5.5 AOO Litsense RU. Distribyutiv program has been lost, and now we can not find it on the site. There we find different versions of the program other than Russian. Please tell me where to download it?

    Voronello volume license installation files are available under the end user or deploy to account at https://licensing.adobe.com/.

  • Lightroom refuses the correct serial number. Creative Suite stop working.  Adobe is treating people with total disrespect and does not even have a phone number where we could call. I will move soon to other software,

    Creative Suite stop working after backing up the program from Time Machine. Adobe is treating people with total disrespect and does not even have a phone number where we could call. I will move soon to other software. I paid for the software and it is totally abusive this behavior from Adobe.

    Trying to reinstall via transfer does not work.
    Phone support | Orders, returns exchanges
    http://helpx.adobe.com/x-productkb/global/phone-support-orders.html
    For the link below click the Still Need Help? option in the blue area at the bottom and choose the chat option...
    Serial number and activation chat support (non-CC)
    http://helpx.adobe.com/x-productkb/global/service1.html ( http://adobe.ly/1aYjbSC )

  • How do I let lightroom show the actrual number of files in a map and not a number including the total of all submaps?

    How do I let lightroom show the actrual number of files in a map and not a number including the total of all submaps?

    If by "map" you mean directory or folder, in the Library menu there is a toggle for "show photos in subfolders".

Maybe you are looking for

  • Is it ok to charge your iphone overnight?

    Hi. So I charge my iphone 5 overnight. I was wondering if overcharging it could harm the iPhones battery. Please answer :)

  • Report to know the  Spent Time Logged into SOD by any user

    Hi gurus Is it possible that we can create a report to know how much time has been spent by user into CRMOD. For eg someone logs every day 10 minutes .If he logs for 15 days in a month , then the report should show 150 minutes. Is this possible Waiti

  • How to check ,how many  users are logged in and logged out in oracle ebs 11i/R12.

    Hi Experts, Kindly let me know how to check ,how many  users are logged in and logged out in oracle ebs 11i/R12. Also, in the database level too ,Do we need to write any trigger for this? Thanks in advance.

  • SAP gateway connection failed

    Hi All, Due to restructure in DMZ in our network, IP addr of our R3 server is changed from 172.20.x.x to 192.168.x.x. and the original IP is NATted for connections. We can able to access SAPGUI, but RFCs from this server to other systems is not worki

  • IWeb, Dot Mac, family packs... and Domain names???

    I'm a volunteer involved with recreational trails and historical preservation organizations in a rural area. I've been talking with the leadership of these (not-well-funded) organizations for some time about the benefits of establishing web sites for