Standard extractor 2LIS_04_P_MATNR is not functioning as expected for GLTRP

Hi All,
I am working on the data source 2LIS_04_P_MATNR. When i compare fields basic start/ finish and schedule start/finish  dates(GLTRP, GLTRS etc) with the table AFKO, for few records these dates are not matching.
Please share with me if anyone faced the same issue.
I think this is the problem with standard extractor 2LIS_04_P_MATNR. Please let me know is there any SAP note for this.
Edited by: kiran kumar reddy chinthaparthi on Oct 29, 2010 12:18 PM

..a few years later, but we encountered the same issue and found the resolution. Our issue was the basic finish date (AFPO-GLTRP) was not updated to BW.
SAP Notes of interest:
787807
- Different data for a request in the R/3 and BW systems
100082
- Change is not updated after release
Resolution:
In OPL5 transaction de-select the release versions for the plant/order type combinations.

Similar Messages

  • SCM Upgrade 4x to 7 Macros have issues not functioning as expected

    Hi All,
    We have upgraded SCM 4x to 7 and some of macros are not functioning as expected.
    This is a start macro Specifically for lay out attributes macro where many of the key figures are editable, which are not suppose to be.
    I have deactivated and activated, I have also verified the syntax of the production and quality macros. I did not find any difference. but behaving differently.
    Please share your thoughts any one come across this kind of issues.
    Appreciate your help.
    Thanks,
    Sreeni

    Sreeni,
    When you upgraded from 4.1 to 7.X, did you have to go throuh any interim steps like to 5.0 or 5.1 first.
    My understanding is that you can go from 4.1 directly to 7.0.
    Can you share your experience. Do you have any lessons learned that you put into a document that you would share.
    Shane

  • Notify when self password reset is not functioning as expected

    Hi Team,
    We are on EP7 and we have enabled the users to reset their own passwords.This function works at times and few occasions users don't receive emails after reseting the password. All the required configurations are in place. So we are caught in a situation where we are not sure whether to advise the users to use this function or we do a manual reset of passwords for them.
    Is there anyway that we get a notification when this particular service is not working as expected.
    regards
    bharat

    Hi,
    you told that it is working for some users.
    check the email id property of users for those who r unable to get email or smtp server down at that time?
    whether that particular email domain is allowed from smtp server.
    Regards,
    Koti Reddy

  • 2LIS_03_BF standard extractor extracts data not

    Hi,
    I enabled the standard extractor 2LIS_03_BF (movement of goods), I am testing the data extraction through RSO2 transaction, and does not draw anything (0 records) and tables sources (mseg and mkpf) if data exists I perform some configuration prior to extractor, to extract data?
    This is active in the transaction LBWE.
    Greetings,

    Hi,
    Please check whether the following settings were maintained under
    SBIW - Settings for Application-Specific Data Sources (PI) - Settings:
    Inventory Controlling - Determine Industry Sector and Stock
    initialization.
    Maintain the Industry sector as "Standard" and Initialize the stocks
    under stock initialization 2LIS_03_BX.
    Also maintain the Application Indicator for BTE under transaction "BF11"
    view: TBE11 in R/3.
    Fill the setup tables for material movements 2LIS_03_BF and
    revaluations 2LIS_03_UM
    Set up tables for Inventory can be seen under SE11.
    1. MC03BX0SETUP
    2. MC03BF0SETUP
    3. MC03UM0SETUP
    Make sure after carrying out the above activities these tables should
    display records.
    Then start the extraction using 2LIS_03_BF, and 2LIS_03_UM data sources.
    Santosh
    Edited by: Santhosh Nagaraj on Nov 2, 2009 10:20 PM

  • TCP Window sizing not working as expected for Windows server 2008 R2 SP1

    Hi ,
    TCP window size is not working as expected. It is varying . Aplied the hotfix suggested by Microsoft and set the multipliccation factor as 1.The window size is not getting auto tuned based on the client machine. The data transfer rate is getting degraded.
    Please help.
    Thanks,
    Pro1962

    Hi,
    I think window auto-tuning is enabled.
    You can disable it by running the following commend.
    netsh interface tcp set global autotuninglevel=disabled
    Hope this helps.

  • [Test(expects="Error")] not functioning as expected

    When testing against implementation code which is expected to throw an exception the test fails even when the expected exception is thrown.
    I broke this test down into a very simple example to help illustrate the issue:
    public class ExpectsExampleTest
        [Test(expects="Error")]
        public function testExpects():void
            throw new Error();
    The above code result in the following error:
    6/11/2009 23:23:39.519 [WARN] FlexUnit4 There was 1 failure:
    6/11/2009 23:23:39.522 [WARN] FlexUnit4 1 tests::ExpectsExampleTest.testExpects Error
    Not sure if I am missing something or not, however the implementation appears to be correct.
    Thanks,
    Eric

    mlabriola wrote:
    Eric,
    there was a bug surrounding this issue. Latest bits in SVN should have it corrected. There was a difference between the docs and code.
    if you get the latest, it will work as is, or, you can change the word expects to expected and it will likely work in yours.
    It the new version it accepts either,
    Mike
    thanks mike, you're right

  • Standard Macbook Keyboard Shortcuts Not Functioning

    I have a Macbook running 10.5.7.
    For some time, I have been unable to use any standard keyboard shortcuts such as CMD-N to open a new finder window etc.
    I have re-installed the MAC OS X software from clean, reset the defaults for keyboard shortcuts in System Preferences but nothing works. I don't believe it's the keyboard as I have tried holding the option key while booting and do get the screen offering which drive to boot from.
    Every now and then, following a "Restore Defaults" in keyboard shortcuts, they will function but following a re-start, they are no-go again.
    This applies to all shortcuts such as CMD-SHIFT-4 to grab a screen shot. Simply no keyboard shortcuts work at all.
    Any ideas?
    Thanks
    Darryn

    I don't have an answer, but I just experienced the same problem. Suddenly my copy/paste shortcut doesn't work. I hope someone provides an answer soon!

  • AppleScript to play playlist starting at certain track not functioning as expected...

    I'm trying to write an AppleScript that scans a playlist called "iMac Shuffle" and finds the last song that was played in the playlist by comparing the last played date of the next track to see if it is less than the current track, in which case play that track. This is my code so far:
    tell application "iTunes"
         set i to 1
         repeat while played date of track i in playlist "iMac Shuffle" < played date of track (i + 1) in playlist "iMac Shuffle"
              set i to (i + 1)
         end repeat
         reveal track (i + 1) in playlist "iMac Shuffle"
         play track (i + 1) in playlist "iMac Shuffle"
    end tell
    It finds the correct track and begins playing, but when the track ends, it always seems to skip to the song after the last tracked I manually started playing.
    For example, I manually played track 3 but paused it halfway through. I ran my script and track 6 started playing, which is correct according to the last played date, so all is well. However, when track 6 ends, instead of track 7 playing, track 4 begins.
    This is incredibly frustrating. Does anyone know why this is happening?

    This is, I think, the expected behavior. If itunes is playing a playlist, and applescript interrupts to play a different song, then next track ought to send it back to the next track in the playlist before the interruption, not the next track after the interruption. The workaround is not to use the next track command, but specify tracks directly.  i.e.:
    tell application "iTunes"
              set t to (get selection)
              repeat with i from 1 to 5
                        play item i of t
                        repeat until player position > 3
                                  delay 1
                        end repeat
              end repeat
      stop
    end tell

  • TDMS file viewer not functioning as expected

    I'm new to LV so I'm probably doing something obvious to the battle hardened among you, I'd appreciate a hand!
    I've got a cRio that's running a modified version of one of the datalogging examples, and it's logging to its internal memory, which I FTP into and collect when done. But I'm having some issues with viewing it after. I've created a VI on the host system that looks for the TDMS files on the C drive of the host. I log a file with name "data". I copy over the TDMS and TDMS_Index files to the C drive of the host computer and run the TDMS fileviewer VI on the host, which checks for the file existing and opens it. If the file isn't there it complains, of course (but shows old data in the background). If it is there it opens it. However this is where the problems begin.
    The index headers for the top of the columns of data seem to be changed inside the files but do not always change in the fileviewer output, and the data seems to never be updated with the new data, despite all files having been erased in between runs. I've tried 4 or 5 re-loggings and always get the old data, and often the old indexes. Out of curiosity I changed the log filename to "data2" and changed the viewer path to the new file, copied it across and opened it and it worked flawlessly. Then delete-all and re-recording with the "data2" filename the problem returns - old data held until filename changed.
    The files on the CRio and host are definitely changing each time - their sizes vary when copied across - but the viewer VI doesn't seem to reflect any changes unless the filename is changed on each run, which is a pain. I assumed LV may have some sort of cache of the data, so tried closing LV down each time but it didn't help at all.
    Any ideas? As I say, probably something very obvious but I'm new to LV and haven't spotted it.
    Cheers

    Hey James,
    Your code seems fine; I won’t be able to run it as I don’t have access to
    the Hardware at the moment our RIO is currently under test. However I would
    like to get a screen shot of the TDMS file viewer and also a copy of the TDMS
    file, a brief description of how you want the file edited would be perfect. I
    have done some small re-architecting to your code also. I have just moved the
    data display to the host, as in your "untitled" VI you had a timed
    loop and a normal loop in the same frame. The normal loop in this condition
    will take priority over the timed loop and this could be the reason behind the
    strange data logging experienced in your system. Remember your rules of data
    flow in LabVIEW, so long as all you functions are joining via wires they will
    execute in order and therefore there is no need for sequence structures.
    I have attached the modified code to this post.
    Regards
    Andrew George @ NI UK
    Attachments:
    Host.vi ‏17 KB
    RIO.vi ‏86 KB

  • HT3737 Desktop directory not functioning as expected

    When I open up desktop as a window (directory) the listing options are grayed out, so if, for instance, I want to list by "Date Modified" it will not work.
    All the listing options at the top of the page are non functional, where can I fix this? OSX Lion 10.7.4
    Thanks!

    Thanks for responding so quickly.  I had just determined it was a "pin" issue.  I removed the pin and now it works normally.  Seems like mobile browsers should be allowed to scroll horizontally while zoomed in even if the menu bar is pinned.
    The test site is www.creativegraphicsnc.com/hold/bluedog
    I'm a Sitegrinder user looking to make a change and am new to Muse.  I've got a lot to learn.

  • Locking SMPTE position not functioning as expected

    After I've locked a region's smpte position and resize it from the bottom left corner, the region does not 'snap back' to the "locked" position as I understand it should.
    Am I missing something?
    I'm on Logic 8.01
    Thanks,
    Shaun

    mlabriola wrote:
    Eric,
    there was a bug surrounding this issue. Latest bits in SVN should have it corrected. There was a difference between the docs and code.
    if you get the latest, it will work as is, or, you can change the word expects to expected and it will likely work in yours.
    It the new version it accepts either,
    Mike
    thanks mike, you're right

  • Process not functioning as expected

    APEX - 4.1.0.00.32
    DB version - 10g
    Web server architecture - OHS
    Browser - IE8
    Theme - 9
    I have two processes set up to capture audit trail information, (date and user that created a record, date and user that last updated a record). The create process is working as expected but the update process is not.
    create process is "on submit - before computations and validations"
    the code in the process source is
    :P6_CREATE_DATE := sysdate;
    :P6_CREATE_USER := v('APP_USER');
    :P6_LAST_CHANGED_DATE := sysdate;
    :P6_LAST_CHANGED_USER := v('APP_USER');
    I have the conditions set to "pl/sql expression" and expression is "nvl(:REQUEST,'-1') in ('CREATE')"
    that works fine, but the update is "on submit - before computations and validations"
    the code in the process source is
    :P6_LAST_CHANGED_DATE := sysdate;
    :P6_LAST_CHANGED_USER := v('APP_USER');
    I have the conditions set to "pl/sql expression" and expression is "nvl(:REQUEST,'-1') in ('SAVE')"
    I have put a message in the process success message, and can see that the update process is running, but the code is not happening as I am not seeing the date updated.
    Thank you in advance for any assistance.

    I have put output statements in with the code and I can see the page values being set, but when I turn debug on and check I can see the update happen but the two fields I am trying to update are not part of the update statement, it is like Apex does not recognize the values have changed.
    These two fields do get picked up a part of the insert on a create so there should not be anything wrong with the fields.
    very confused.

  • Direct mapping in updates rules not functioning as expected

    Hi experts,
      I have a character string with only digits (NUMC) which is mapped in udpate rules of a ODS. Its a direct mapping from another ODS. Inspite of that, we are having scenarios where the source ODS is filled and the character in the destination ODS is coming as empty. The source ODS is looking up that value from another ODS.
    I am wondering why is it so. I am in 3.5 enviornment.

    Is it just this field coming up as blank or other fields too,
    Do you any start routine or any kind of filtering in place in the update rules.
    Just try to simulate a update and see if you can find anything.
    /people/pavan.bayyapu/blog/2006/09/06/debugging-data-upload-in-bw
    Also make sure you "No Update" is not selected in update rules for this field.
    Edited by: sam hennry on Mar 28, 2008 1:15 PM
    Edited by: sam hennry on Mar 28, 2008 1:17 PM

  • CRM Search for business transactions, not functioning as expected

    Hello All:
    I am not sure if this is a authorization issue or something to do with config.
    Using transactions CRMD_BUS2000120 - Process Complaints and CRMD_BUS2000126 - Maintain Activities I am trying to perform an open/all search on documents the user has access to, but for some bizarre reason it only lists the documents to which the user is defined as 'own'. But, if I try to open a document for the transaction type the user is authorized to, it lets me open it.
    From a security settings perpective, i would think that the system would perform a check in the following order:
    1) Your own documents (authorization object CRM_ORD_OP)
    2)   a) Authorization objects CRM_ACT, CRM_OPP, CRM_SAO, CRM_SEO, CRM_CO_SE, CRM_CON_SE, CRM_LEAD, CRM_CMP, CRM_CO_SA, CRM_CO_SC
    b) Authorization object CRM_ORD_PR
    c) Authorization object CRM_ORD_OE
    any suggestions?
    Thanks
    KT

    Hi Ravindranath
    Check if your system time zone settings are correct:
    IMG>SAP Web Application Server>General Settings>Time Zones>Maintain System Settings
    IMG>SAP Web Application Server>General Settings>Time Zones>Maintain Time Zones
    Hope this helps
    Regards
    Pragasen

  • NAT not functioning as expected

    I am trying to build a lab network that will simulate our production network using a pair of brand new Cisco 1921 routers. However when I setup the lab side with static nat neither the Lab Router nor the Production router will properly translate the address. When I try to ping 10.99.99.3 I get no response. 
    I have hooked up a workstation on the Lab side and it can ping the local gateway, the outside interface, and the outside interface on the remote router. However I as mentioned neither routers can ping the translated ip but the workstation can ping the local global ip. 
    I have attached the configs. I have searched through several of the Cisco documentation pdf's but I am at a loss. 
    Just a quick note on setup right now I have them paired on Gi 0/1 with a cross-over cable and Gi 0/0 will be the lan. Currently Lan is only setup on the Lab side. Outside is 10.99.99.1 and 10.99.99.2. Inside on Lab side is 10.1.20.253

    I have put output statements in with the code and I can see the page values being set, but when I turn debug on and check I can see the update happen but the two fields I am trying to update are not part of the update statement, it is like Apex does not recognize the values have changed.
    These two fields do get picked up a part of the insert on a create so there should not be anything wrong with the fields.
    very confused.

Maybe you are looking for

  • Unable to read E$ table records into excel file in linux machine

    Hi I am using below code in ODI procedure to read E$ table record and store it in excel file ODI Procedure: Technology=Java Beanshall and Command on Target I written below code and placed it in CKM Oracle KM <@ String OS = System.getProperty("os.name

  • Query output format

    Hello I would like to have this out put: PID PCODE P_NUMBER L_NAME USED     NEW 191 TI4-35304     4-3530 POS     6     2                TCC      0     1 192 PI4-36701     4-3670 POS     4     23                TCC     0     18 193 TI4-34906     4-349

  • AR Aging by Profit Centre

    Hi All, I would like to know is there a standard way in generating AR Aging by Profit Centre ? If not what is the other alternative Thanks Nathan

  • Why is aperture not importing merged libraries as projects

    Hi Everyone: I'm trying to move a large library of RAW files to another library on the same machine.  I tried exporting the whole library but there were a lot of corrupted files (or at least they had the yellow triangles on them), and when I selected

  • FEBA - bank statements not processed (status yellow)

    Hi, When using the FEBA transaction (Bank statements), some bank statements were not processed. They have the status yellow. What does this mean? How can I process it? Thank you. Kind regards, Linda