2LIS_02_S896 issue : Records are not updated into BW

Hi
->We use 2LIS _ 02 _ SCL extractor to pass PO's to BW with delta.
->Works fine until the last week ,
->But on a particular date ( 15.05.2007) some of the records are not updated in BW.They are even not found at PSA level itself
->For eg for a material X there are two entries found in R/3 ( MB51 ) for the same posting date, now one of them is picked in BW (PSA level ) and other is not.
->There was no load fail / delta fail in BW and there is no exit written for this.
->Records are not updated in RSA3.
Let me know how this issue can be fixed.Its urgent.
Thanks,
Jilani

Hi Gagan,
Kindly check if you have any selection restrictions in your infopackage.
Regards.

Similar Messages

  • Records are not inserted into MTL_TXN_REQUEST_HEADERS,MTL_TXN_REQUEST_LINES

    Hi all,
    I am doing pick release thru API.
    For that , I have run following API successfully but my problem is that records are not inserted into MTL_TXN_REQUEST_HEADERS , MTL_TXN_REQUEST_LINES
    tables so that I cannot generate the move order. Can anyone suggent the valuable tips for that ?
    1. WSH_DELIVERIES_PUB.create_update_delivery
    2. WSH_DELIVERY_DETAILS_PUB.Detail_to_Delivery
    3. WSH_PICKING_BATCHES_PUB.CREATE_BATCH
    4. WSH_PICKING_BATCHES_PUB.RELEASE_BATCH
    5. WSH_DELIVERIES_PUB.Delivery_Action ( for p_action_code = 'PICK-RELEASE' )
    regards with thanks in advance
    sanjay

    Hi All,
    To create a Move Order Header & Line Record in MTL_TXN_REQUEST_HEADERS and MTL_TXN_REQUEST_LINES tables , I have run an seeded
    procedure : CreateMoveOrderHeader & CreateMoveOrderLines .
    The procedure : CreateMoveOrderHeader was run successfully but when I am going to run procedure : CreateMoveOrderLines , it is giving
    an error .
    Following Error text I am receiving at the time of running of procedure : CreateMoveOrderLines .
    Initialized applications context: 5707 50138 660
    *==========================================================*
    Calling INV_MOVE_ORDER_PUB.Create_Move_Order_Lines API
    *==========================================================*
    Return Status: E
    Error Message :INV
    *==========================================================*
    From the above error message, no specific error is received . Only " Error Message : INV " is received hence it is very difficult to judge & resolve an error .
    Can anyone guide me that what is an error ? For what reason I am getting an error ?
    regrads
    Sanjay

  • Records are not updating.

    Hi,
    Some of our newly created records and not updating during the full refresh of database. Can someone suggest the something on this?
    Thanks in Advance!!!
    PG

    DSO is nothing but overwright and addtion option , so i think again excute DTP
    or
    similer data is there or not check it,because some times simeler data available at that time it happen.
    Regards,
    BAbu
    Edited by: maheshbabu157 on Jul 9, 2011 5:37 PM
    Edited by: maheshbabu157 on Jul 9, 2011 5:37 PM

  • Records are not showing

    what is wrong with this code? it is not showing my 7 records.
    the output is this [LINK|http://i338.photobucket.com/albums/n440/googleb0y/album1/output01.jpg]
    when i use the debugger, intenal table is empty. [LINK|http://i338.photobucket.com/albums/n440/googleb0y/album1/debug01.jpg]
    where did i go wrong? thanks for the help.
    data: begin of WA,
            MYUID       type ZADDRESSBOOK-USERID,
            MYFNAME     type ZADDRESSBOOK-FNAME,
            MYLNAME     type ZADDRESSBOOK-LNAME,
          end of WA.
    data: ITAB like table of WA.
    select USERID FNAME LNAME
          from ZADDRESSBOOK
          into corresponding fields of table ITAB.
    write: / SY-DBCNT, 'records found'.
    if sy-subrc eq 0.
        loop at ITAB into WA.
          write: / WA-MYUID, WA-MYFNAME, WA-MYLNAME.
        endloop.
    endif.

    Ur problem is with the select statement...
    data: begin of WA,
            MYUID       type ZADDRESSBOOK-USERID,
            MYFNAME     type ZADDRESSBOOK-FNAME,
            MYLNAME     type ZADDRESSBOOK-LNAME,
          end of WA.
    data: ITAB like table of WA.
    select USERID FNAME LNAME
          from ZADDRESSBOOK
          into corresponding fields of table ITAB.
    write: / SY-DBCNT, 'records found'.
    if sy-subrc eq 0.
        loop at ITAB into WA.
          write: / WA-MYUID, WA-MYFNAME, WA-MYLNAME.
        endloop.
    endif.
    When u use corresponding fields of  addition SAP searches for same field names in table itab but u declare ur table with diff. field names..thats why these records are not entered into the table..as same field names are not found in the table...so to avoid it pl. try.this code:
    data: begin of WA,
            MYUID          type ZADDRESSBOOK-USERID,
            MYFNAME     type ZADDRESSBOOK-FNAME,
            MYLNAME     type ZADDRESSBOOK-LNAME,
          end of WA.
    data: ITAB like table of WA.
    select USERID FNAME LNAME
          from ZADDRESSBOOK
          into table ITAB.
    write: / SY-DBCNT, 'records found'.
    if sy-subrc eq 0.
        loop at ITAB into WA.
          write: / WA-MYUID, WA-MYFNAME, WA-MYLNAME.
        endloop.
    endif.
    Regards,
    Joy.

  • Record not updating into table helpme

    in the following functionmodule record is not commiting into table is there any wrong please hep me.
    FUNCTION Z_MZPR_DETAILS.
    ""Local Interface:
    *"  IMPORTING
    *"     VALUE(ZPRHEADER) TYPE  BAPIMEREQHEADER OPTIONAL
    *"     VALUE(ZPRHEADERX) TYPE  BAPIMEREQHEADERX OPTIONAL
    *"  EXPORTING
    *"     VALUE(ZNUMBER) TYPE  BAPIMEREQHEADER-PREQ_NO
    *"     VALUE(RETURN) LIKE  BAPIRET2 STRUCTURE  BAPIRET2
    *"  TABLES
    *"      ZPRITEM STRUCTURE  BAPIMEREQITEMIMP
    *"      ZPRITEMX STRUCTURE  BAPIMEREQITEMX OPTIONAL
    *"      ZPRACCOUNT STRUCTURE  BAPIMEREQACCOUNT OPTIONAL
    *"      ZPRACCOUNTX STRUCTURE  BAPIMEREQACCOUNTX OPTIONAL
    DATA:ITAB LIKE TABLE OF ZPRDETAILS WITH HEADER LINE,
         ZRETURN LIKE TABLE OF RETURN WITH HEADER LINE.
    CALL FUNCTION 'BAPI_PR_CREATE'
    EXPORTING
       PRHEADER                    = ZPRHEADER
       PRHEADERX                   = ZPRHEADERX
      TESTRUN                     =
    IMPORTING
       NUMBER                      = ZNUMBER
      PRHEADEREXP                 =
      TABLES
       RETURN                      = ZRETURN
       PRITEM                      = ZPRITEM
       PRITEMX                     = ZPRITEMX
      PRITEMEXP                   =
      PRITEMSOURCE                =
       PRACCOUNT                   = ZPRACCOUNT
      PRACCOUNTPROITSEGMENT       =
       PRACCOUNTX                  = ZPRACCOUNTX.
      PRADDRDELIVERY              =
      PRITEMTEXT                  =
      PRHEADERTEXT                =
      EXTENSIONIN                 =
      EXTENSIONOUT                =
      PRVERSION                   =
      PRVERSIONX                  =
      ALLVERSIONS                 =
    ITAB-BANFN = ZNUMBER.
    APPEND ITAB.
    IF ZRETURN-NUMBER = '000'.
    UPDATE ZPRDETAILS from TABLE ITAB.
    COMMIT WORK.
    ENDFUNCTION.

    HI,
    IF ZRETURN-NUMBER = '000'.
    <b>MODIFY ZPRDETAILS from TABLE ITAB.</b>
    COMMIT WORK.
    <b>ENDIF.</b>
    Best regards,
    Prashant

  • I am having multiple issues with syncing my iphone calendar and outlook There are often 1 hour time differences in the entries on the 2 devices and sometimes events that have been amended are not updated on iphone I mostly enter items on my laptop

    I am having multiple issues with syncing my iphone calendar and outlook calendar on my laptop
    I mostly enter the original items on my laptop
    There are often 1 hour time differences in the entries on the 2 devices and sometimes events that have been amended are not updated on iphone

    This sounds like an error in Time Zone support. The time zone needs to be the same in Outlook as well as the phone.

  • Signed DocuSign documents are not updating in Microsoft Dynamics CRM record

    My organization uses DocuSign with our Microsoft Dynamics CRM Online instance.
    When we first applied the DocuSign solution, we could send documents using the Send with Docusign feature and a signed version would be automatically up[dated in the same CRM record when the process was complete.
    Recently, the signed copies are not updating in the CRM.

    We don't know. Better to ask over here.
    https://community.dynamics.com/crm/f/117.aspx
    Regards, Dave Patrick ....
    Microsoft Certified Professional
    Microsoft MVP [Windows]
    Disclaimer: This posting is provided "AS IS" with no warranties or guarantees , and confers no rights.

  • Reports are not updated on the dashboard

    Hello guys
    I have created some reports and dashboards in OBIEE. Everything looks good. The only problem is that they are not updated with new data as the days go by.
    In other words, the next day and the day after when users log in to view the same report, they are still seeing the same old data where it should be updated already when new data were already loaded into the db. When clicking on refresh botton, it still didn't update..
    I believe there must be some caching issues that causes it, but cache is needed as a part of performance tuning. So how would I be able to update the record and not slowing the performance for reports that are updating daily?
    Please help

    Hi,
    This certainly sounds like a caching issue, you need to decide on a method for purging the cache of stale entries. My personal favourite is a custom informatica WF added as a following task to the DAC execution plan. This WF calls as OBDC function against the Analytics ODBC which purges the cache, ensuring that there are no stale entries after the ETL has finished.
    For more info on caching please see my blog entry here:
    [http://obiee-tips.blogspot.com/2009/09/obiee-query-caching.html|http://obiee-tips.blogspot.com/2009/09/obiee-query-caching.html]
    Regards,
    Matt

  • Delta records are not loading from DSO to info cube

    My query is about delta loading from DSO to info cube. (Filter used in selection)
    Delta records are not loading from DSO to Info cube. I have tried all options available in DTP but no luck.
    Selected "Change log" and "Get one request only" and run the DTP, but 0 records got updated in info cube
    Selected "Change log" and "Get all new data request by request", but again 0 records got updated
    Selected "Change log" and "Only get the delta once", in that case all delta records loaded to info cube as it was in DSO and  gave error message "Lock Table Overflow" .
    When I run full load using same filter, data is loading from DSO to info cube.
    Can anyone please help me on this to get delta records from DSO to info cube?
    Thanks,
    Shamma

    Data is loading in case of full load with the same filter, so I don't think filter is an issue.
    When I follow below sequence, I get lock table overflow error;
    1. Full load with active table with or without archive
    2. Then with the same setting if I run init, the final status remains yellow and when I change the status to green manually, it gives lock table overflow error.
    When I chnage the settings of DTP to init run;
    1. Select change log and get only one request, and run the init, It is successfully completed with green status
    2. But when I run the same DTP for delta records, it does not load any data.
    Please help me to resolve this issue.

  • Planned orders are not taking into account the processing time

    Hi,
    Could you please tell me why planned orders quantities are not based on processing time from the material master.
    Materials was set before with 1 day in house production , no matter of lot size.
    Based on routings I updated material master with processing time depending on lot size.
    What is bottering me now is that planned orders are not taking into account processing time. (e.g.  based on my processing time 1000 pce are produced  in 3 days, but planned orders show me that 1000 pce are still need  in 1 day , but it  can not be produced in 1 day   ).
    what did I miss?
    Thanks a lot for any information!

    Hello Simona
    The in house production time from tab MRP 2 is lot size independent.
    However, on tab work scheduling you can define a lot size dependent times.
    Please observe that, if you have entered an in house production time, the processing time will not be considered. The F1 help of the field provides the following explanation:
    You can define work scheduling times in the material master record in one of two ways:
    Either you enter the in-house production time. If required, you can get the system to update this value from the routing.
    Or you enter the setup, teardown, processing, and interoperation times. If you maintain these values, the system determines the in-house production time on the basis of lot size.
    Therefore, if you want to consider the processing time, you should remove the in house processing time.
    BR
    Caetano

  • Excise rates are not updated

    Hi friends
    When i am creating ARE3 document, in item details Duty rates tabe- excise rates are showing 0, whereas Duty values are coming,
    I have checked in table j_1iexcdtl - duty rates are not updated and duty values are updated
    How to update the table j_1iexcdtl
    Thanx and Regards
    srini

    Dear MBS
    Thanks for reply
    I am doing deemed export process
    I am using TAXINN calculation procedure and pricing procedure was ZDEEM.
    as you said i have already done the classify condition types as below
    ZDEEM - JEXP - BED percentage
    ZDEEM - JECS - ECS percentage
    ZDEEM - JA1X - AT1 percentatge
    I have checked the table and it was updated,
    now i am trying to create ARE3 document but the values are not coming into ARE3 document, only ECS percentage is coming and all the values are showing 0
    and how to resolve the issue
    Regard
    srini

  • In my iPhone the images and videos are not changing into landscape mode

    In my iPhone the images and the videos are not changing into landscape mode. And it is switching off  automatically

    Hi vijenderreddy,
    Thanks for using Apple Support Communities.  This article has some steps to try if your iPhone is unexpectedly powering off:
    iPhone: Hardware troubleshooting
    http://support.apple.com/kb/ts2802
    Will not turn on, will not turn on unless connected to power, or unexpected power off
    Verify that the Sleep/Wake button functions. If it does not function, inspect it for signs of damage. If the button is damaged or is not functioning when pressed, seek service.
    Check if a Liquid Contact Indicator (LCI) is activated or there are signs of corrosion. Learn about LCIsand corrosion.
    Connect the iPhone to the iPhone's USB power adapter and let it charge for at least ten minutes.
    After at least 30 minutes, if:
    The home screen appears: The iPhone should be working. Update to the latest version of iOS if necessary. Continue charging it until it is completely charged and you see this battery icon in the upper-right corner of the screen . Then unplug the phone from power. If it immediately turns off, seek service.
    The low-battery image appears, even after the phone has charged for at least 20 minutes: See "iPhone displays the low-battery image and is unresponsive" symptom in this article.
    Something other than the Home screen or Low Battery image appears, continue with this article for further troubleshooting steps.
    If the iPhone did not turn on, reset it while connected to the iPhone USB power adapter.
    If the display turns on, go to step 4.
    If the display remains black, go to next step.
    Connect the iPhone to a computer and open iTunes. If iTunes recognizes the iPhone and indicates that it is in recovery mode, attempt to restore the iPhone. If the iPhone doesn't appear in iTunes or if you have difficulties in restoring the iPhone, see this article for further assistance.
    If restoring the iPhone resolved the issue, go to step 4. If restoring the iPhone did not solve the issue, seek service.
    For the issue of images not changing orientation, see this article:
    iOS: Screen does not rotate
    http://support.apple.com/kb/ts3805
    Cheers,
    - Ari

  • Shaped layers are not updating in ae after changing them in Photoshop

    I created a photoshop CS3 file that has a grid and 3 layers with editable shapes (a graph that has to be changed daily). When importing them into AE CS3 as a comp cropped layers, After Effects sees the layers and layer masks correctly. The problem is when we go back into photoshop and only change the points on the shape layers, save the file, and open the saved After Effects file, the shaped layers are not updated. Even the reload footage does no avail .
    Steps to reproduce issue
    1. Create a layer in photoshop and make a shape
    2. Save the photoshop file.
    3. Import the Photoshop file in After Effects as a comp
    4. Save the After Effects Project
    5. Reopen the photoshop file and edit points on the shape layer.
    6. Save the Photoshop file
    7. Open the After Effects project.
    8. The SHAPE layer WILL NOT UPDATE. The mask is still the same as the original first saved file.

    No, they don't. Andrew is correct. Once imported, shape paths from PSDs will become masks and those have no relation to any external reference items. They are AE-internal. The apparent question is, how complex your graphs are. If you check out one of my old tutorials on creativeCOW you can find a line chart rigged with expressions and thus fully editable from within AE. Similar projects can be created for other chart types and in fact I had several of them already on my website (and will provide them again, if and when I get around to finally updating it). Also do not forget that you could use plugins such as Digital Anarchy's Data Animator (now owned by Red Giant and being reworked into an updated version called Datamator)...
    Mylenium

  • Last Skipped Date, Skip count, are not updated in any songs that i listen in my iPhone5s

    I've been using smart playlist that's relays on the play count, last skipped date and skipped count fields... I have been using an old ipod to heard my music through this smart playlist that live updates all the time and it was working great.
    So my issue is, since i bought a new iPhone 5S and start using it to listen music, my smart playlist that relays on " play count, last skipped date, skipped count " fields are not updating, and when i connect my iphone to the PC i realize that those fields never update after i play or skip any song in my iPhone.
    So, I'm not sure if this is an iPhone restriction, that i need to use my iPod again to get my smart playlist that relys on those fields to work... or my iphone is defective and need to re-install the iOS.
    Any help on this matter will be enormously appreciated
    Thanks in advance

    I have playlists that rely on the Last Skipped and
    Skip Count properties of songs, but these items only
    seem to be triggered if the song is fast forwarded
    between 3-20 seconds into the song. I tried to skip
    I think this is how it's intended, though there isn't much info on this feature. I've seen the same behavior and other users have reported same.
    One thing that threw me off for a bit using this feature was trying to use with playlists where the songs had "remember playback position" checked. Last skipped doesn't register at all with these tracks.

  • Delta changes in R/3 sales document are not coming into CRM

    Hi Middleware experts,
    We are on CRM 5.0 SP 005 with ECC 5.0 SP 007 and using the scenario X for sales documents replication.
    Now the order is created in CRM and successfully transfered to R/3. I can see 3 Bdocs in SMW01 with green lights. First Bdoc says 'R/3 adapter is called', second Bdoc says 'the order is successfully saved' and displays a warning 'The sales document is not yet complete: Edit data' and third Bdoc has no messages. Also I do not see any struck queues in CRM and in R/3
    I am able to edit the sales document in both the systems as per the scenario X. Now I have completed and saved the document in R/3. Surprisingly these changes are not coming into CRM and no new entries in SMW01. Also R/3 SMQ1 and CRM SmQ2 doesn't show any entries. I am also not able to debug, since I do not see any Bdocs in SMW01.
    Now, if I changes the document in CRM and these changes are coming into R/3.
    Also all documents created in R/3 are successfully going into CRM including delta changes in R/3.
    I do not have any clue on what is happening? Highly appreciated, if you can help me.
    Thanks,
    PK

    Hi PK,
    In R3AC1 only we put the filter. So if you do not have any other filter then make sure that you are changing the order which was created not before the date mentioned.
    I would recommend you to just deregister the CRM system in R/3 Transaction SMQS and do some changes in the orders and check any queues are getting created corresponding to that order, If yes that means filter is not an issue. Then debug the queue and find the exact problem. Also make sure that the order you are changing in R/3 is of the same order type what you have mentioned in the filter.
    Make sure to registor back the CRM other wise all the queues will get stuck in R/3 outbound.
    <b>Reward points if it helps!!</b>
    Best regards,
    Vikash.
    Message was edited by: Vikash Krishna

Maybe you are looking for

  • Line Item Header Data.

    Hi Expert, My client requirement is, when run fbl1 trx code then hide its header and legend information. they do not to display that infromation. Kindly help me out in this regards. Thanks Syed Tayab Shah

  • What's the best approach to automatically upload file to Sharepoint?

    Hi xMII experts, Does anyone  have experience on  how to automatically upload the file Sharepoint(Windows Sharepoint Services) ?  I tried to google but only find the below solutions: --Create a .Net  application.Write the Webservice reference in the

  • Composite relationship in SAP XI

    Hi all, Does SAP XI supports composite relationship ? plz anybody help me. regards, sekhar

  • Workflow: getting yet to review users on workflow

    Hi all, Is there any idocscript function to retreive the persons who are yet to review a content item on a workflow. I found that wfComputeStepUserList will retrieve all the users in a workflow. But how if i want to send email to persons after a x nu

  • How to recover system from new hdd T410

     Hello, please, help me to recover my system. I have a new HDD and trying to recover my system from "Lenovo_recovery" partition. Partition has been copped from old HDD. 1) I have chcked there are all files in "Lenovo_Recovery". 2) installed trial ver