Use of 2LIS_02_SCL and 2LIS_03_BF

Hi,
Could someone please throw some light on the use of different fields in 2LIS_02_SCL and also for BF datasources.
What the fields represent, what kind of data do they bring to BW, and kind of reports that can be created on them?
Eg: I had a particular doubt on the field values for sales and Cost and Quantity against materials for each PO...what is Posting Date? and What is the significance of Movement Type 001 and 002...
Any scenarios that help my query get answers would also be appreciated..or some kind of documentation...
Points would be awarded...
Thanks,
Aby

Hi,
2lis_03_bf  is used to extract the material movement data from MM Inventory Management (MM-IM) consistently to a BW system.
2lis_02_scl  extracts consistent basic data for analyzing purchasing documents to a BW system
http://help.sap.com/saphelp_nw70/helpdata/EN/8d/bc383fe58d5900e10000000a114084/frameset.htm
http://help.sap.com/saphelp_nw70/helpdata/EN/05/c69480c357354a8846cc61f7b6e085/frameset.htm
Regards.

Similar Messages

  • Stock using AFS (2LIS_03_BX and 2LIS_03_BF)

    Hi,
    I have enhanced 2LIS_03_BF and 2LIS_03_UM extractors with AFS-specific fields, according to note 458676.
    But the note do not enhance 2LIS_03_BX with AFS-specific fields.
    <b>
    Can I use 2LIS_03_BX to do opening stock balance to enhanced BF extractor?</b>
    (must I enhance BX? )
    Taki

    You must check if the new fields are required for the initial inventory....try toload and check....
    In this PDF file you can find how to handle inventory management scenarios
    https://www.sdn.sap.com/irj/servlet/prt/portal/prtroot/docs/library/uuid/f83be790-0201-0010-4fb0-98bd7c01e328
    Regards
    Message was edited by:
            Oscar Díaz

  • Inventory  DSO  using   2LIS_03_BX  and  2LIS_03_BF

    Hi experts,
    We  are planning to have a DSO   with  cumulative  key figures  using the datasources 2LIS_03_BX  and  2LIS_03_BF.  DSO will have  stock initialization data and  material  movements data. it   should  reflect current  stock status(as  of data load time) including material  movements.
    Any  thought  on this item is appreciated.
    Thanks,
    Varun.

    Hi,
    Please check this
    ODS for 2lis_03_bf
    /thread/253109 [original link is broken]
    Hope this helps you.
    -Mayuri

  • 2LIS_02_SCL and GR

    Greetings Gurus,
    I'm in the process of testing my 2LIS_02_SCL, and am running into issues.  I have used the MIGO transaction in R/3 to receive 300 of 500 quantities.  I use MB51 to verify the movement occurs in R/3, however, my deltas are not picking these changes up (no process key, or BWVORG, of '002' Goods Receipt types).
    I try and force it by changing the dates on my Schedule line, using txn ME23N.  Now I see Schedule line deltas in my PSA when I load, however only for process key types of '001'  purchase order quantities. 
    Regards,
    Alex

    Hi,
    Did you setup the followings steps in R3?
    1)Tx(BF11)
    -Check if the Business Warehouse Flag was checked.
    2)Tx(SBIW)
    -Choose the menu path Business Information Warehouse  - Settings for Application-Specific DataSources  - Logistics - Settings:Purchasing  -Determine Industry Sector.
    -Choose Standard (Core) in SAP BW Usage.
    -Choose Save.
    Asigns point if useful please

  • Fill setup table 2LIS_03_BX and 2LIS_03_BF at same time

    Hi Guys,
    Can someone tell me whether I can run background Job to fill setup table of 2LIS_03_BX and 2LIS_03_BF at the same time?
    By the way, whether I can run background job by different sever using different filters(site range A, B, C) to filling setup table of 2LIS_03_BX?
    Thanks.
    Regards,
    Rojay

    Hi Rajesh,
    All three data source have setup table concept.
    LO extraction means you should fill the setup tables.
    2LIS_03_BX (Stock Initialization for Inventory Management)
    2LIS_03_BF (Goods Movements from Inventory Management)
    2LIS_03_UM (Revaluations) - captures revaluation data.
    please refer the below document for your reference.
    SAP BW - Inventory data loading step by step(0IC_C03)
    Inventory Data Loading (MM) to BW PRD system
    Thanks,
    Phani.

  • How we will use these Job_open and Job_submit job_close??

    Hi Experts,
    i am new in Developement, i need one help here my problem is
    I have one issue which is a report here i am getting the data into internal table, that data fetching i want to schedule it in background job..
    can any body tell me how can i use the JOB_OPEN and JOB_SUBMIT function modules....
    plz provide any example..
    Thanks in Advance,
    Venkat N

    Hi,
    Here is the sample program
    *Submit report as job(i.e. in background) 
    data: jobname like tbtcjob-jobname value
                                 ' TRANSFER TRANSLATION'.
    data: jobcount like tbtcjob-jobcount,
          host like msxxlist-host.
    data: begin of starttime.
            include structure tbtcstrt.
    data: end of starttime.
    data: starttimeimmediate like btch0000-char1.
    Job open
      call function 'JOB_OPEN'
           exporting
                delanfrep        = ' '
                jobgroup         = ' '
                jobname          = jobname
                sdlstrtdt        = sy-datum
                sdlstrttm        = sy-uzeit
           importing
                jobcount         = jobcount
           exceptions
                cant_create_job  = 01
                invalid_job_data = 02
                jobname_missing  = 03.
      if sy-subrc ne 0.
                                           "error processing
      endif.
    Insert process into job
    SUBMIT zreport and return
                    with p_param1 = 'value'
                    with p_param2 = 'value'
                    user sy-uname
                    via job jobname
                    number jobcount.
      if sy-subrc > 0.
                                           "error processing
      endif.
    Close job
      starttime-sdlstrtdt = sy-datum + 1.
      starttime-sdlstrttm = '220000'.
      call function 'JOB_CLOSE'
           exporting
                event_id             = starttime-eventid
                event_param          = starttime-eventparm
                event_periodic       = starttime-periodic
                jobcount             = jobcount
                jobname              = jobname
                laststrtdt           = starttime-laststrtdt
                laststrttm           = starttime-laststrttm
                prddays              = 1
                prdhours             = 0
                prdmins              = 0
                prdmonths            = 0
                prdweeks             = 0
                sdlstrtdt            = starttime-sdlstrtdt
                sdlstrttm            = starttime-sdlstrttm
                strtimmed            = starttimeimmediate
                targetsystem         = host
           exceptions
                cant_start_immediate = 01
                invalid_startdate    = 02
                jobname_missing      = 03
                job_close_failed     = 04
                job_nosteps          = 05
                job_notex            = 06
                lock_failed          = 07
                others               = 99.
      if sy-subrc eq 0.
                                           "error processing
      endif.
    Regards
    Sudheer

  • I'm using matchbook pro and I'm unable to find iPhoto after upgrading to Maverick os

    I'm using matchbook pro and I'm unable to find iPhoto after upgrading to Maverick os

    Open the Mac App Store application and see if iPhoto is under your "Purchases" tab.
    Clinton

  • Help using multiple iphones and ipods on itunes

    Okay, is there any simple way to use multiple apple products thru itunes. I can log in on my account and sync my iphone/ipod, then I log out and log back in with my daughter's account info. I plug her itouch in and it wants to read all of my apps(some apps we both have on our devices). Have problems with music sharing as well. Still a PC user. Get very frustrated with itunes. spend way too much time trying to do things that should be simple. please help! Thank you!

    Are you using method 1 with different windows user accounts?
    http://support.apple.com/kb/HT1495
    Sounds like you are currently using method 2 and not happy with it.

  • I want to buy a new apple tv but it used hdmi cables and my house is only wired for analog.  Is there any way I can use the apple tv on analog cables?

    I want to buy a new apple tv but it used hdmi cables and my house is only wired for analog.  Is there any way I can use the apple tv on analog cables?

    Welcome to the Apple Community.
    It's do-able, but I don't think it's a great idea.
    DVI
    Some users with DVI have managed to get their TV's to work with DVI-HDMI cables. DVI carries no audio, so alternative connections need to be explored to enable audio. DVI doesn't necessarily support HDCP as well as other standards used by HDMI (which may or may not be an issue)
    Analogue
    There are hardware converters that will convert HDMI to various other types of output, however there are some issues with doing so that you should be aware of.
    HDCP
    HDCP compliant converters will not allow you to watch HDCP protected content such as that from the iTunes Store. Non compliant converters exist but we cannot discuss them under the Terms of Use for these communities.
    Resolution and aspect ratio
    I'm not aware of any converters that will scale the output from the Apple TV, any TV or projector which is used will need to be widescreen and support resolutions of 720p (Apple TV 2), 720p/1080p (Apple TV 3)
    DAC
    DAC (Example Only - Not a recommendation or suggestion that this is suitable in your circumstances)

  • IPad2 and a new MacBook running Lion, Both Devices use the same Apple ID which is a Hotmail eMail id. Can I create a new iCloud eMail Id and use iCloud eMail and continue to use my Hotmail Id for my Apple Id and use it for iTunes, iCloud

    I have an iPad2 and a new MacBook running Mountain Lion. Both Devices use the same Apple ID which is a Hotmail eMail id. Can I create a new iCloud eMail Id and use iCloud eMail and continue to use my current Hotmail Id for my Apple Id for iTunes, iCloud.
    Note, I will use both Hotmail and iCloud eMail.

    Welcome to the Apple Community.
    In order to change your Apple ID or password for your iCloud account on your iOS device, you need to delete the account from your iOS device first, then add it back using your updated details. (Settings > iCloud, scroll down and hit "Delete Account")

  • I'm using Time Machine and a LaCie external drive to backup. I also have a 8 GB LaCie flash drive I want to use for small jobs. If I plug the LaCie flash drive in, is my Mac going to think it is the LaCie external drive and start trying to backup?

    I'm using Time Machine and a LaCie external drive to backup. I also have a 8 GB LaCie flash drive I want to use for small jobs. If I plug the LaCie flash drive in, is my Mac going to think it is the LaCie external drive and start trying to backup?

    no.

  • I have an older macbook pro and the hard drive is starting to go (making loud noises). i tried to back up to an external hard drive (my passport essential se) using time machine and the computer keeps shutting down. suggestions to complete backup please?

    I have an older macbook pro and the hard drive is starting to go (making loud noises). i tried to back up to an external hard drive (my passport essential se) using time machine and the computer keeps shutting down. the same thing happens when just trying to save my pictures from iphoto to a flash drive. suggestions to complete backup please?

    Sounds like you'll need to access that drive while it is not booted. You need to replace it anyway, so do that, then one way or another (ext enclusure, et), access it and copy files.
    If you keep trying to boot it, you might kill it for good and not get your files, so just swap it out first.

  • Using Adobe Bridge and iPhoto together

    I use Adobe Bridge (and Photoshop) to work on my photos. iPhoto is not an option since I shoot in Camera RAW. I also own an Apple TV and want to store all of my photos in iPhoto so they are available to the rest of my family via Apple TV. Has anyone figured out a way to do image manipulation first in Bridge & Photoshop and then have them sent (or later updated) in iPhoto in an automated fashion?
    Conceptually, every time I add or change a photo in Bridge or Photoshop, I'd like to convert it to JPG, and add or modify the image in iPhoto.

    Also make sure PS's File handing preferences "Macimize PSD and PSB File Compatibility" is set to Always and that there are no alpha channels in the file. An alpha channel will cause the black image that you're referring to.
    TIP: For insurance against the iPhoto database corruption that many users have experienced I recommend making a backup copy of the Library6.iPhoto (iPhoto.Library for iPhoto 5 and earlier) database file and keep it current. If problems crop up where iPhoto suddenly can't see any photos or thinks there are no photos in the library, replacing the working Library6.iPhoto file with the backup will often get the library back. By keeping it current I mean backup after each import and/or any serious editing or work on books, slideshows, calendars, cards, etc. That insures that if a problem pops up and you do need to replace the database file, you'll retain all those efforts. It doesn't take long to make the backup and it's good insurance.
    I've created an Automator workflow application (requires Tiger), iPhoto dB File Backup, that will copy the selected Library6.iPhoto file from your iPhoto Library folder to the Pictures folder, replacing any previous version of it. It's compatible with iPhoto 6 and 7 libraries and Tiger and Leopard. iPhoto does not have to be closed to run the application, just idle. You can download it at Toad's Cellar. Be sure to read the Read Me pdf file.

  • Installing Adobe Photoshop 10. Using Windows 7 and IIE.  Get message "error:1"

    Installing Adobe Photoshop 10.  Using Windows 7 and IE.  Gt message  "error:1"

    Not sure what CS3 is.  Attached is a screen shot of the error message I get when trying to use Photoshot Elements 10.
    Looks like I can't attach a Word or PDF document or paste an immage.
    This forum may not be very user friendly.
    Let mehttp:// know if there is another way to communicate.
    Thanks,
    Phil
    <Removed by Moderator>

  • How can I create an csv/excel file using pl/sql and then sending that file

    How can I create an csv/excel file using pl/sql and then sending that file to a clients site using pl/sql?
    I know how to create the csv/excel file but I can't figure out how I would get it to the clients site.

    968776 wrote:
    How can I create an csv/excel file using pl/sql and then sending that file to a clients site using pl/sql?
    I know how to create the csv/excel file but I can't figure out how I would get it to the clients site.You are trying to do it at a wrong place..
    Whay do you want database (pl/sql) code to do these things?
    Anyhow, you may be interested in :
    {message:id=9360007}
    {message:id=9984244}

Maybe you are looking for