BSIS showing wrong entries

Hello,
At my company, they run the MR11 to check for GR/IR variances and then clear these variances using the F.13 transaction. Finally, the F.19 transaction is run to check for PO's having the GR/IR variance.
There are some old PO's of 2005/2006 which are showing up on the F.19 report despite the fact that they have no GR/IR variance. I checked the PO's and they have no mismatches wither in GR/IR quantity or amount. 
Some of these PO have different GR and IR dates but some others have the same date on the GR and IR. So even if it is the former case, as the F.13 clearing is done every month end, these PO's have been picked up for clearing.
I notice that these PO's are in the BSIS table (as they belong to the GL 211005 - A/P Accrual (Goods Received/Invoice Received) and so they appear in the F.19 output. However, once the F.13 clearing is done, the entry should disappear from the BSIS table. I am not sure why it is still there in
the table.
Could someone please explain why these PO's still show up on the F.19 report and in the BSIS table and if there is any way to remove these entries from the F.19 report?
Any help will be greatly appreciated.
Thanks,
Rugmani

I am having this same problem! It is happening whether I am connected to WiFi or not. I have tried to reset my location settings and that did nothing. I am hoping to find a solution.

Similar Messages

  • Report J2I9 showing wrong entries..

    Dear All,
    We have created stock transfer PO.Delivery ,billing and excise invoice is created but while creating excise invoice by mistake user put series group which is for normal sales entry instead of stock transfer.
    Now when we are executing report J2I9 (Inputs taken in particular month) one serial no entry is showing missed in the report which is above entry(After serial no 58,serial no 60 appears and 59 is missing) and because of this my abstract value is coming wrong which is same of the serial no 59.
    My question is if J2I9 shows report for inputs taken only, then why this entry is calculated in abstraction of above report.
    Also other stock transfer entries are not appearing then why this is appearing even if i am putting normal sales series group it should not appear.
    what needs to do to solve it.
    Naren

    Hi Sujit,
         Thanks for your reply.  As you said, if it's because of exception aggregation, the same(wrong total)will be displayed for all the sales offices right?
    Could you please let me know what are all the important tabs you want me to show?
    Awaiting for your reply..
    with thanks and regards,
    Antony Jerald.

  • Data in the cube is showing wrong when compared with ODS

    Hello BW Gurus,
    We have a waste report in production planning on Cube and ODS separately. The same info package loads both targets (which means same infosource) but when we run a report on Cube, the records are showing multiple entries (i.e. Key Figures are not matching when compared to ODS) where as the ODS records are showing correctly as it was in R/3. There are totally 6 key figures out of which 4 pulled from R/3 and 2 are populated in BW. 
    An Example:
    Waste report in PP run for plant 1000 for 12/2005 and process order 123456.  The operational scrap should be 2.46% and the component scrap should be 3.00% for material 10000000.  The report is showing 7.87% for planned operational waste % and 9.6% for planned component waste %.  These values are not correct.  The ODS values for order 123456 matched the data in R/3 for component and operational scrap.
    There is a Start routine to the ODS and also to the cube. I am not good at ABAP so requesting your Help.
    <b>Here is the ODS Code:</b>
    tables:  /BI0/PPRODORDER.
      loop at data_package.
        select single COORD_TYPE
                      PRODVERS
          into (/BI0/PPRODORDER-COORD_TYPE,
                /BI0/PPRODORDER-PRODVERS)
          from /BI0/PPRODORDER
         where PRODORDER = data_package-PRODORDER
           and OBJVERS   = 'A'.
        if sy-subrc = 0.
          if /BI0/PPRODORDER-COORD_TYPE = 'XXXX'
          or /BI0/PPRODORDER-COORD_TYPE = 'YYYY'.
            data_package-PRODVERS = space.
          else.
            data_package-PRODVERS = /BI0/PPRODORDER-PRODVERS.
          endif.
        endif.
        if data_package-calday = space
        or data_package-calday = '00000000'.
          if data_package-TGTCONSQTY NE 0.
            data_package-calday = data_package-ACTRELDATE.
          endif.
        endif.
        modify data_package.
      endloop.
    <b>Here is Cube Code:</b>
    tables:  /BI0/PPRODORDER,
               /BIC/ODS.
      TYPES:
      BEGIN OF ys_mat_unit,
        material                 TYPE /bi0/oimaterial,
        mat_unit                 TYPE /bi0/oimat_unit,
        numerator                TYPE /bi0/oinumerator,
        denomintr                TYPE /bi0/oidenomintr,
      END OF ys_mat_unit.
      DATA:
        l_s_mat_unit             TYPE ys_mat_unit,
        e_factor                 type p decimals 5.
      loop at data_package.
        select single COORD_TYPE
                      PRODVERS
          into (/BI0/PPRODORDER-COORD_TYPE,
                /BI0/PPRODORDER-PRODVERS)
          from /BI0/PPRODORDER
         where PRODORDER = data_package-PRODORDER
           and OBJVERS   = 'A'.
        if sy-subrc = 0.
          if /BI0/PPRODORDER-COORD_TYPE = 'XXX'
          or /BI0/PPRODORDER-COORD_TYPE = 'YYY'.
            data_package-PRODVERS = space.
          else.
            data_package-PRODVERS = /BI0/PPRODORDER-PRODVERS.
          endif.
        endif.
        if data_package-calday = space
        or data_package-calday = '00000000'.
          if data_package-TGTCONSQTY NE 0.
            data_package-calday = data_package-ACTRELDATE.
          endif.
        endif.
        data_package-agsu     = 'GSU'.
        data_package-agsu_qty = 0.
        select single gr_qty
                      base_uom
          into (/BIC/ODS-gr_qty,
                /BIC/ODS-base_uom)
          from /BIC/ODS
         where prodorder = data_package-prodorder
           and material  = data_package-material.
        if sy-subrc = 0.
          if /BIC/ODS-base_uom = 'GSU'.
            data_package-agsu_qty = /BIC/ODS-gr_qty.
          else.
            SELECT SINGLE * FROM /bi0/pmat_unit
              INTO CORRESPONDING FIELDS OF l_s_mat_unit
              WHERE material   = data_package-material
                AND mat_unit   = 'GSU'
                AND objvers    = 'A'.
            IF sy-subrc = 0.
              IF l_s_mat_unit-denomintr <> 0.
                e_factor = l_s_mat_unit-denomintr /  
                              l_s_mat_unit-numerator.
                multiply /BIC/ODS-gr_qty by e_factor.
                data_package-agsu_qty = /BIC/ODS-gr_qty.
              ENDIF.
            else.
              CALL FUNCTION 'UNIT_CONVERSION_SIMPLE'
                EXPORTING
                  INPUT                = /BIC/ODS-gr_qty
                  NO_TYPE_CHECK        = 'X'
                  ROUND_SIGN           = ' '
                  UNIT_IN              = /BIC/ODS-base_uom
                  UNIT_OUT             = 'GSU'
                IMPORTING
                  OUTPUT               = DATA_PACKAGE-gsu_qty
                EXCEPTIONS
                  CONVERSION_NOT_FOUND = 1
                  DIVISION_BY_ZERO     = 2
                  INPUT_INVALID        = 3
                  OUTPUT_INVALID       = 4
                  OVERFLOW             = 5
                  TYPE_INVALID         = 6
                  UNITS_MISSING        = 7
                  UNIT_IN_NOT_FOUND    = 8
                  UNIT_OUT_NOT_FOUND   = 9
                  OTHERS               = 10.
            endif.
          endif.
        endif.
        modify data_package.
      endloop.
    some how the AGSU qyt is not populating in the cube and when I dbug the code, I could see a clean record in the internal table but not in the cube.
    your suggestion and solutions would be highly appreciated.
    thanks,
    Swathi.

    Hi Swathi,
    May be you might want to look into the way the % is being calculated in the cube. If the formula involves counting the no. of records, then you will also be counting the -ve records that are posted in the cube unless you have had a compression on the cube. that might give you wrong numbers.
    Doniv

  • Wrong entry posted in Excise Invoice.

    Dear All,
    We are in now golive stage and I found one issue regarding the post the excise invoice for capital material.
    Issue is- I create one purchase order for capital material through account assignment category F (Internal order)
    While doing GR through 101 movement type and after that post the excise invoice in J1IEX,accounting entries showing correct.
    But same PO while doing GR through 103 and capture excise invoice and then 105,after that post excise invoice in J1IEX, accounting entries showing wrong.It's shows reverasal entries.
    Please suggest any soluation.I check from my side all config is correct.
    Thanks & regards,
    Vinay Patel

    Hello,
    Thanks for your valuable replay. Is it any SAP note for that?
    Regards,

  • [SOLVED] stellarium showing wrong objects positions

    just stellarium showing wrong things, like the location or time are wrong...
    i discover stellarium long time ago but i barely uses it, some time ago i remember that i see the moon in it and looking outside i can see the moon too! it was awesome, lately i noticed that the objects that i see in the program, say the moon, the sun, are not in the correct "place" for example right now here in argentina time is 08:40am and i see the sun like it was near midday, and i can say that now the moon never shows where it needs to be
    I've set localtime to UTC when i installed arch, but i remember one time setting it to localtime and back to UTC but not remember why, besides i dont know the diference...
    here's my rc.conf
    # /etc/rc.conf - Main Configuration for Arch Linux
    # LOCALIZATION
    # LOCALE: available languages can be listed with the 'locale -a' command
    # HARDWARECLOCK: set to "UTC" or "localtime"
    # TIMEZONE: timezones are found in /usr/share/zoneinfo
    # KEYMAP: keymaps are found in /usr/share/kbd/keymaps
    # CONSOLEFONT: found in /usr/share/kbd/consolefonts (only needed for non-US)
    # CONSOLEMAP: found in /usr/share/kbd/consoletrans
    # USECOLOR: use ANSI color sequences in startup messages
    LOCALE="en_US.utf8"
    HARDWARECLOCK="UTC"
    TIMEZONE="America/Buenos Aires"
    KEYMAP="es"
    CONSOLEFONT=
    CONSOLEMAP=
    USECOLOR="yes"
    # HARDWARE
    # Scan hardware and load required modules at bootup
    MOD_AUTOLOAD="yes"
    # Module Blacklist - modules in this list will never be loaded by udev
    MOD_BLACKLIST=()
    # Modules to load at boot-up (in this order)
    # - prefix a module with a ! to blacklist it
    MODULES=(r8169 slhc snd-mixer-oss snd-pcm-oss snd-page-alloc snd-pcm snd-timer snd snd-hda-intel soundcore kqemu loop)
    # Scan for LVM volume groups at startup, required if you use LVM
    USELVM="no"
    # NETWORKING
    HOSTNAME="aleyscha"
    # Use 'ifconfig -a' or 'ls /sys/class/net/' to see all available
    # interfaces.
    # Interfaces to start at boot-up (in this order)
    # Declare each interface then list in INTERFACES
    # - prefix an entry in INTERFACES with a ! to disable it
    # - no hyphens in your interface names - Bash doesn't like it
    # Note: to use DHCP, set your interface to be "dhcp" (eth0="dhcp")
    lo="lo 127.0.0.1"
    eth0="dhcp"
    INTERFACES=(lo eth0)
    # Routes to start at boot-up (in this order)
    # Declare each route then list in ROUTES
    # - prefix an entry in ROUTES with a ! to disable it
    gateway="default gw 192.168.0.1"
    ROUTES=(!gateway)
    # Enable these network profiles at boot-up. These are only useful
    # if you happen to need multiple network configurations (ie, laptop users)
    # - set to 'menu' to present a menu during boot-up (dialog package required)
    # - prefix an entry with a ! to disable it
    # Network profiles are found in /etc/network-profiles
    #NET_PROFILES=(main)
    # DAEMONS
    # Daemons to start at boot-up (in this order)
    # - prefix a daemon with a ! to disable it
    # - prefix a daemon with a @ to start it up in the background
    DAEMONS=(syslog-ng iptables network netfs crond autofs fuse @fam @hal @alsa @clamav @avahi-daemon @gpm @sensors !postfix)
    # End of file
    B
    Last edited by leo2501 (2008-10-15 03:07:04)

    Just in case: Did you set your location correctly in stellarium? I noticed that the new version (0.10) reseted the settings.
    BTW. UTC is time in GMT (e.g. London, England) and localtime is time wherever you are (Argentila I guess). If your clock is set to localtime and settings are for UTC it could be cause of your problems.
    Last edited by jase (2008-10-13 07:02:16)

  • Reversal Document is Showing wrong figure in Service Tax Report

    Hi All,
    The  data inconsistence in Service Tax Report.
    The  reversal documents are showing the excess amount while runnig the Service tax report.
    Could you please help in finidng the reason and solution for this behaviour. All reversal documents are showing excess amounts in this case.
    Thanks,
    Nandu

    Hi all,
    The Tax transfer amount of reversal document should be Zero in ST Report and in Final GL. But the service tax report is showing wrong figures.
    We reversed the tax transfer document to remove the wrong line from Serv. Tax Report as well as from Final GL.
    As per the business requirement if any invoice and payment is wrongly done, that should be reversed.
    Before reversal of this we need to reverse the tax transfer entry, then only we can reverse the payment as well as the Invoice.
    Apart from this, If any other procedure please let me know in order to avoid errors in the service tax report
    Regards,
    Nandu

  • "Browse other backup disks" shows strange entries

    Does anybody know what the **** this means:  ==>>
    After deleting my TC ("zero out data") and 3-times backup the "Browse other backup disks" shows these entries. Backups on an external drive ("1TB ASJ") look OK.
    Any idea what wrong here?
    Airport Utility shows ==>

    Yes, those appear in Mountain Lion since 10.8.2.  They're "phantoms" -- leftovers from previous viewings of network backups, that didn't get cleared from the record.
    They don'e really mean anything, and will go away after a Restart.
    EDIT: Reported as a bug, not fixed yet.  Maybe the next update . . .
    Message was edited by: Pondini

  • Spotlight keeps showing iCal entries!

    OK, must be doing something wrong... I went to Preferences, Spotlight, and unchecked iCal. Even after a reboot, Spotlight still ends up listing iCal entries.
    Whoops! OK, different issue. I'm using Find in the Finder window; thought it was using the Spotlight index and settings.
    How do I get it to stop showing iCal entries?

    Not certain any of this will help, but move this file to the trash and reboot, or log in and out. Then restore your Spotlight settings (Find is Spotlight.) In your Home Folder Library.
    /Users/yourusername/Library/Preferences/com.apple.spotlight.plist
    Or, force Spotlight to re-index the drive: drag the HD icon into the Privacy tab of Spotlight. Leave it for a minute, then remove it by clicking the minus.
    Or, just live with it. Spotlight is known to be highly erratic at searching.

  • Data in the cube is showing multiple entries when compared with ODS

    Hello BW Gurus,
    We have a waste report in production planning on Cube and ODS separately. The same info package loads both targets (which means same infosource) but when we run a report on Cube, the records are showing multiple entries (i.e. Key Figures are not matching when compared to ODS) where as the ODS records are showing correctly as it was in R/3. There are totally 6 key figures out of which 4 pulled from R/3 and 2 are populated in BW.
    An Example:
    Waste report in PP run for plant 1000 for 12/2005 and process order 123456. The operational scrap should be 2.46% and the component scrap should be 3.00% for material 10000000. The report is showing 7.87% for planned operational waste % and 9.6% for planned component waste %. These values are not correct. The ODS values for order 123456 matched the data in R/3 for component and operational scrap.
    There is a Start routine to the ODS and also to the cube. I am not good at ABAP so requesting your Help.
    Here is the ODS Code:
    tables: /BI0/PPRODORDER.
    loop at data_package.
    select single COORD_TYPE
    PRODVERS
    into (/BI0/PPRODORDER-COORD_TYPE,
    /BI0/PPRODORDER-PRODVERS)
    from /BI0/PPRODORDER
    where PRODORDER = data_package-PRODORDER
    and OBJVERS = 'A'.
    if sy-subrc = 0.
    if /BI0/PPRODORDER-COORD_TYPE = 'XXXX'
    or /BI0/PPRODORDER-COORD_TYPE = 'YYYY'.
    data_package-PRODVERS = space.
    else.
    data_package-PRODVERS = /BI0/PPRODORDER-PRODVERS.
    endif.
    endif.
    if data_package-calday = space
    or data_package-calday = '00000000'.
    if data_package-TGTCONSQTY NE 0.
    data_package-calday = data_package-ACTRELDATE.
    endif.
    endif.
    modify data_package.
    endloop.
    Here is Cube Code:
    tables: /BI0/PPRODORDER,
    /BIC/ODS.
    TYPES:
    BEGIN OF ys_mat_unit,
    material TYPE /bi0/oimaterial,
    mat_unit TYPE /bi0/oimat_unit,
    numerator TYPE /bi0/oinumerator,
    denomintr TYPE /bi0/oidenomintr,
    END OF ys_mat_unit.
    DATA:
    l_s_mat_unit TYPE ys_mat_unit,
    e_factor type p decimals 5.
    loop at data_package.
    select single COORD_TYPE
    PRODVERS
    into (/BI0/PPRODORDER-COORD_TYPE,
    /BI0/PPRODORDER-PRODVERS)
    from /BI0/PPRODORDER
    where PRODORDER = data_package-PRODORDER
    and OBJVERS = 'A'.
    if sy-subrc = 0.
    if /BI0/PPRODORDER-COORD_TYPE = 'XXX'
    or /BI0/PPRODORDER-COORD_TYPE = 'YYY'.
    data_package-PRODVERS = space.
    else.
    data_package-PRODVERS = /BI0/PPRODORDER-PRODVERS.
    endif.
    endif.
    if data_package-calday = space
    or data_package-calday = '00000000'.
    if data_package-TGTCONSQTY NE 0.
    data_package-calday = data_package-ACTRELDATE.
    endif.
    endif.
    data_package-agsu = 'GSU'.
    data_package-agsu_qty = 0.
    select single gr_qty
    base_uom
    into (/BIC/ODS-gr_qty,
    /BIC/ODS-base_uom)
    from /BIC/ODS
    where prodorder = data_package-prodorder
    and material = data_package-material.
    if sy-subrc = 0.
    if /BIC/ODS-base_uom = 'GSU'.
    data_package-agsu_qty = /BIC/ODS-gr_qty.
    else.
    SELECT SINGLE * FROM /bi0/pmat_unit
    INTO CORRESPONDING FIELDS OF l_s_mat_unit
    WHERE material = data_package-material
    AND mat_unit = 'GSU'
    AND objvers = 'A'.
    IF sy-subrc = 0.
    IF l_s_mat_unit-denomintr <> 0.
    e_factor = l_s_mat_unit-denomintr /
    l_s_mat_unit-numerator.
    multiply /BIC/ODS-gr_qty by e_factor.
    data_package-agsu_qty = /BIC/ODS-gr_qty.
    ENDIF.
    else.
    CALL FUNCTION 'UNIT_CONVERSION_SIMPLE'
    EXPORTING
    INPUT = /BIC/ODS-gr_qty
    NO_TYPE_CHECK = 'X'
    ROUND_SIGN = ' '
    UNIT_IN = /BIC/ODS-base_uom
    UNIT_OUT = 'GSU'
    IMPORTING
    OUTPUT = DATA_PACKAGE-gsu_qty
    EXCEPTIONS
    CONVERSION_NOT_FOUND = 1
    DIVISION_BY_ZERO = 2
    INPUT_INVALID = 3
    OUTPUT_INVALID = 4
    OVERFLOW = 5
    TYPE_INVALID = 6
    UNITS_MISSING = 7
    UNIT_IN_NOT_FOUND = 8
    UNIT_OUT_NOT_FOUND = 9
    OTHERS = 10.
    endif.
    endif.
    endif.
    modify data_package.
    endloop.
    some how the AGSU qyt is not populating in the cube and when I dbug the code, I could see a clean record in the internal table but not in the cube.
    your suggestion and solutions would be highly appreciated.
    thanks,
    Swathi.

    Hi Swathi
    In ODs we have option of overwriting and addition however in Cube we have only adition.Thats why you are getting multiple enteries.
    If you are running daily full load on the cube then please delete the earlier requests.
    So at one point of time there should be only one full load request in cube. Hope this will solve your problem.
    Regards,
    Monika

  • LR 5.3 showing wrong thumbnails

    I have been running LR 5.3 smoothly for a while but a couple of minutes ago LR started to show wrong thumbnails, it shows thumbnails from a delete Snapshot. I have tried purging my cache but nothing happens. I have upgraded from LR 3 to LR 3.5  Ideas ? This is my system:
    Lightroom version: 5.3 [938183]
    Operating system: Windows 7 Home Premium Edition
    Version: 6.1 [7601]
    Application architecture: x64
    System architecture: x64
    Logical processor count: 2
    Processor speed: 1.9 GHz
    Built-in memory: 3003.1 MB
    Real memory available to Lightroom: 3003.1 MB
    Real memory used by Lightroom: 912.9 MB (30.4%)
    Virtual memory used by Lightroom: 901.7 MB
    Memory cache size: 364.0 MB
    Maximum thread count used by Camera Raw: 2
    System DPI setting: 96 DPI
    Desktop composition enabled: Yes
    Displays: 1) 1366x768
    Application folder: C:\Program Files\Adobe\Adobe Photoshop Lightroom 5.3
    Library Path: C:\Users\User\Pictures\Lightroom\Lightroom 5 Catalog.lrcat
    Settings Folder: C:\Users\User\AppData\Roaming\Adobe\Lightroom
    Installed Plugins:
    1) 500px
    2) Behance
    3) Canon Tether Plugin
    4) Facebook
    5) Flickr
    6) Leica Tether Plugin
    7) Nikon Tether Plugin
    8) SmugMug
    Config.lua flags: None
    Adapter #1: Vendor : 8086
        Device : 2a42
        Subsystem : 360b103c
        Revision : 7
        Video Memory : 64
    AudioDeviceIOBlockSize: 1024
    AudioDeviceName: Speakers (Conexant High Definition SmartAudio 221)
    AudioDeviceNumberOfChannels: 2
    AudioDeviceSampleRate: 44100
    Build: LR5x89
    CardID: 10818
    Direct2DEnabled: false
    GPUDevice: D3D
    MaxTexture2DSize: 8192
    OGLEnabled: true
    Renderer: Mobile Intel(R) 4 Series Express Chipset Family
    ShaderModel: 10.0
    Vendor: Intel
    VendorID: 32902
    Version: 8086:2a42:360b103c:0007

    I have had this problem also ever since I updated to 5.3,  I think it is a major bug!
    At random the preview window on the left doesnt show the preview of the presets anymore when I hover them, and when I click back and forth to other images it suddenly starts working again, its a very annoying problem and I cannot believe that Adobe isnt aware of it yet!
    Marcel

  • "Invoice History Report "show wrong balance for supplier invoice with USD

    Invoice History Report show wrong balance for supplier invoice with USD Currency
    After I run this report i see in the last of this report there is difference between the supplier total
    USD (Currency ) and the open Balance USD , it is decreased the open balance
    for supplier with 2300 USD with out any reasons
    bellow is some data copy of the report
    ======================================================
    Supplier Site Total: SAR 34,700.00
    Supplier Site Total: USD 39,000.00
    Supplier Total: SAR 34,700.00
    Supplier Total: USD 39,000.00
    Open Balance: SAR 34,700.00
    Open Balance: USD 36,700.00
    *** End of Report ***
    ==============================================
    please advise me from where can this differenc ( 39000 - 36,700=2300 )COMMING
    or it is bug in this report , becuase i compare this report with other report in account payable like
    -supplier open balance letter
    -invoice register report
    -invoice aging report
    all this report give me the amount for supplier USD =39000
    BUT AGIN FROM WHERE THE SYSTEM DECREASED THE AMOUNT TO 36,700
    thanks

    Can you try running Create Accounting For payments just before you run the Invoice History Report and re-check .
    Thanks

  • Iphone 4 showing wrong IP address for home wireless

    2 days ago we reset our home wireless password and updated our devices (ipad, laptop, and two cell phones). Now my iphone 4 will no longer connet to the wireless. It accepts the new password to join the network but it never connects. It is showing wrong IP address. How can I change it to the correct IP ? Tried hard rest, forget network, and renew lease all trying to get it to automatically update the info. Out of ideas. Any suggestions?

    I have the exact same router as you, I have Comcast, and I am having the exact same INFURIATING problem.
    Comcast and Apple have no ideas. Linksys tells me I am having a router problem.
    I even went so far as to buy a new router and modem from Linksys (as they claim they no longer make the router/modem combo because it doesn't work well). I still don't buy this... my PC, my PS3, my DS... all of them connect to the router perfectly.
    I have the new modem and router here and planned to give that a whirl tonight but Comcast was being difficult and saying it could take 72 hours to activate my new modem. Totally unsat. I had them reconnect the WCG200 and I am still trouble shooting to no avail...
    If anyone finds a fix (short of a new router and new modem)... please post!

  • HT5622 I wrongly entered my apple id into my new i phone . It was my e mail address with a letter wrong I have registered right on the i cloud account but when I go to get apps it still shows wrong e mail How do I delete this incorrect e mail Thanks Mike

    I wrongly entered my apple id into my new i phone . It was my e mail address with a letter wrong
    I have registered correctly on the i cloud account but when I go to get apps it still shows wrong e mail
    How do I delete this incorrect e mail? Thanks Mike

    settings - app/itunes store - sign out - sign back in.

  • I just installed Yosemite.  Notifications Center will not show ICal entries that were on my ICal at time of installation.  How do I get events to show in Notification Center?

    I just installed Yosemite.  Notifications Center will not show ICal entries that were on my ICal at time of installation.  How do I get events to show in Notification Center?

    Submit your feedback requesting this feature directly to Apple using the appropriate link on the Feedback page:
    http://www.apple.com/feedback

  • FBL5N t code and BSEG table is showing wrong contract number

    Hi,
    The proces flow is contract number>sales order>DMR-->Invoice
    Now when I am checking the VBFA table it's showing correct contract number against invoices but FBL5N t code and BSEG table are showing wrong contract numbers.
    Why FBL5N and BSEG table is showing wrong contract number?
    Currently we are using one enhancement and user exit is used to incorporate one customized field as identifier for bill type.
    1. During the billing document release to accounting VFX3, The user exit triggering and it is update the customized fields and Net settlement indicator.
    2. Using the Invoice number, get the fields VGBEL(Document number of the reference document) and VGPOS (Item number of the reference item) from VBRP and read table VBAP with VBELN and POSNR, to get DMR number (Sales Document) that created for the Invoice.
    3. Use fields VGBEL and VGPOS on table VBAP to get the sale order number.
    4. By using the Sales order number, get the Distribution channel to update Net indicator field
    In accounting table BSEG-UZAWE = JF must be updated on the customer line.
    5. Retrieve the sale order number and item level to get customized field from table VBAP
    Any pointers.
    Thanks
    Ashu

    Hi Reazuddin,
    Thanks for your reply,
    I am concercerned about BSEG table and using user exit EXIT_SAPLV60B_008 to post the document in FI.
    Now in we have enhanced this user exit  for contracts and included in this way.
      SELECT SINGLE ZZ_CONTRACT FROM VBAK INTO (LC_CONTRACT) WHERE VBELN EQ cvbrp-vgbel.
    Endloop.
    *Moving the values to final accounting table
    loop at xaccit.
    xaccit-vertn = lc_contract.
    xaccit-VBEL2 = xaccit-AUBEL.
    xaccit-xref3 = lc_vbel2.
    MODIFY xaccit .
    ENDLOOP.
    Clear: lc_contract,lc_vgbel,lc_vgpos,lc_vbel2.
    But I am getting correct data when checked other clients( development and quality), this problem I am getting in production.
    Do I need to ask the ABAP'er to debug this enhancement in production?
    Thanks
    Ashutosh

Maybe you are looking for