Is this the correct procedure ?

Hi experts,
As per my knowledge i am following the following procedure for
extracting Inventory data.Please suggest me whether it is correct
or not:
1.Activate 2Lis_03_bx datasource in rsa5 and run intialization of
setup tables in the tcode MCNB and transport in
rsa6.Replicate datasource into bi system. Create transformations
between datasource and Infocube.Create Info package with
generate Initial status and load the data upto PSA.
Create DTP and set it to Delta With Get data by request and load
data to the info cube.Compress the request with No marker update
not set.( I unchecked the check box and compressed the request ).
the setting Get data by request.
2.Activate 2Lis_03_bf datasource in rsa5 & LBWE fill the setup
tables in the transaction oli1bw and transport in
rsa6.Replicate datasource into bi system. Create transformations
between datasource and DSO.Create Init of delta with data
transfer Info package and load the data upto PSA..
Create DTP and set it to Delta With Get data by request and load
data to the DSO. And then create DTP with Delta with get data by
request between DSO and infocube  and load the data into the
same cube in which the 2lis_03_bx was loaded and Compress the
request with No marker update set. ( I checked the check box and
compressed the request ).
3.Activate 2Lis_03_um datasource in rsa5 & LBWE and fill the
setup tables in olizbw and transport
in rsa6.Replicate datasource into bi system. Create
transformations between datasource and DSO ( Same DSO in
which 2lis_03_bf was loaded ).   Create Init of delta
with data transfer Info package and load the data upto PSA..
Create DTP and set it to Delta With Get data by request and load
data to the DSO. And then create DTP with Delta with get data by
request between DSO and infocube  and load the data into the
same cube in which the 2lis_03_bx & 2lis_03_bf were loaded and
Compress the request with No marker update set. ( I checked the
check box and compressed the request ).
Can anyone please suggest me whether it is the correct procedure
or not and also suggest me what are the standard relevant cubes
and DSO's ( With keyfields )  which are used to load the data from
2lis_03_bx,2lis_03_bf, 2lis_03_um.
Full points will be assigned.
Thanks & Regards,
V N.

Dear VN,
the way you are extracting is correct and while loading to the cube and doing the compression especially for inventory please follow the steps as follows.
2lis_03_BX = Stock initialization, (first we have to do this and check no marker update and compress)
2lis_03_BF = Material Moments, (do the loadu2026and donu2019t do compression)
2lis_03_UM = Revaluations, (after this load also completed do compression on both the loads normally)
NOTE: if you want to see for which request the no marker update option is set and for which request the option is not used, go to the log file of each compression and if you see messages like REF POINT UPDATE then the marker was not updated in this compression.
Please assign points if it helps...
still you need any further calirify please let us know..
Thanks,
Ashok

Similar Messages

  • What is the correct procedure for upgrading to aperture 3.4

    I am working in South Sudan and am shortly going to be in a place where I can download all the updates. The last time I did an update was around 2 weeks ago.
    I presume that there will be updates for Mountain Lion, iPhoto and Aperture, plus a whole pile of iOS updates. From the support questions I see that there is a number of people having problems.
    I presume that the first thing to do will be to rebuild the library of aperture.
    What is the correct procedure after that?

    If I do an upgrade through AppStore, and find it does not work, do I uninstall first by removing to trash? What do you mean by revert to an earlier version, and which previous version of Aperture should I use.
    Neville,
    So you did buy Aperture from the AppStore?
    Then move the Aperture application to the Trash, but do not empty it, just in case
    Sign into the AppStore and reinstall. In this case you do not need to revert to an earlier version. If the AppStore installer does not find an Aperture in your Applications folder, it will have to make a full install, and no incompatible frameworks should remain, as is the problem with the partial upgrades right now.
    Yes, I have a bootable clone,
    And have you checked, if you really can boot from your clone? Just being very cautious.
    Do you use facebook? Some posters are having problems, even after reinstalling, if the want to publish to Facebook. Post back, if you encounter that problem.
    Good Luck
    Léonie

  • What is the correct procedure to connect and collect events from IPS through SDEE

    What is the correct procedure to connect and collect events from IPS through SDEE?
    We are a 3rd party application, that needs to collect and analyze the IPS events for a client.
    Currently the approach we are following is
    1) get a SubscriptionId using the URL below
    https://IP_Of_IPS/cgi-bin/sdee-server?action=open&events=evIdsAlert&force=yes
    This gets us a subscriptionId which is used in step 2
    2) Collect events from the url below
    https://IP_Of_IPS/cgi-bin/sdee-server?confirm=yes&action=get&subscriptionId=sub-sample&startTime=1362699903575432000
    a few more notes here are
    - starttime is current time in nanoseconds
    the peculiar problem here is that, even though we specify todays date, SDEE returns us the events from mid Feb (today is march 7)
    we did try a few combinations, but are out of ideas.
    any help or direction would be appreciated

    This is more an application issue than an IPS issue.
    Have you compared your app against other apps [IME]?

  • Is this the correct syntax to submit a job using DBMS_JOB.SUBMIT?

    Hello,
    Is this the correct syntax to submit a job?
    DECLARE
    v_job_number NUMBER;
    v_job_command VARCHAR2(1000) := 'PREPARE_ORACLE_TEXT_SEARCH;';
    v_interval VARCHAR2(1000) := 'trunc(SYSDATE)+1+7/24';
    BEGIN
    DBMS_JOB.SUBMIT(v_job_number, v_job_command, sysdate, v_interval, false);
    COMMIT;
    END;
    Thanks
    Doug

    DECLARE
    v_job_number NUMBER;
    v_job_command VARCHAR2(1000) := 'BEGIN
    PREPARE_ORACLE_TEXT_SEARCH; END;';
    v_interval VARCHAR2(1000) :=
    'trunc(SYSDATE)+1+7/24';
    BEGIN
    DBMS_JOB.SUBMIT(v_job_number, v_job_command, sysdate,
    v_interval, false);
    COMMIT;
    END;
    About your error:
    PLS-00201: identifier 'PREPARE_ORACLE_TEXT_SEARCH'
    must be declared
    ORA-06550: line 1, column 96:
    PL/SQL: Statement ignored
    The problem is that the job cannot find the procedure
    (maybe own by an other user). The user who run the
    job is not the same as the owner of the package.
    Bye, AronYou forget the semicolon after END.
    But we don't need here begin - end Block.
    So it's OK.
    v_job_command VARCHAR2(1000) := 'PREPARE_ORACLE_TEXT_SEARCH;'[b];
    As you right mentioned, it is probably problem with owner or typo in the name of procedure.
    Regards
    Dmytro Dekhtyaryuk
    Message was edited by:
    dekhtyar

  • Update my app. What is the correct procedure for updating an app/folio?

    I designed a folio in Indesign CS6 and created an app of the folio in adobe dps and succesfully uploaded it to the app store. Now I want to update my app. What is the correct procedure for updating an app/folio?

    no, just update your content and recreate the Single Edition App. Your certificate should still be valid so there is not need to recreate these.
    ... your App ID absolutely need to be the exact same one you used for the first version if you want to make sure this is an update.

  • Is this the correct type of Ram for a mac mini?

    I have a 2007 Mac mini, and want to go from 1gig to 2 gigs of Ram.
    I currently have 2 512's
    I need to know 2 things. (i'm pretty sure on both but i'm not a huge hardware guy to bare with me)
    1. Will there be any compatibility problems? I.e if i upgrade to 2 gigs will it even help or because the rest of the computer is not being upgraded will it be useless?
    2. If i'm good to go, Is this the correct type of Ram? http://www.crucial.com/store/mpartspecs.aspx?mtbpoid=4E665783A5CA7304
    Not sure if these are needed but will post anyway:
    Model Name: Mac mini
    Model Identifier: Macmini2,1
    Processor Name: Intel Core 2 Duo
    Processor Speed: 2 GHz
    Number Of Processors: 1
    Total Number Of Cores: 2
    L2 Cache: 4 MB
    Memory: 1 GB
    Bus Speed: 667 MHz
    Type: DDR2 SDRAM
    Thank you in advance <3

    NO, it will NOT work.
    You have to find the memory specific for Mac, and rule of thumb, Mac Intel chips usually take "ECC" memory. On occasions, You can get away with Non-ECC (on certain PPC Power Mac G5 towers) -- You can check on-line stores, like Newegg, Tigerdirect, or Goolge search for the Mac Mini memory. I got mine (for my two Mac 2,1) on line, and I put 4G (2x 2G), although only 3G was available.
    It is worth of upgrade it. just need to find the right memory.

  • The correct procedure to install PeopleTools 8.49

    Dear Friends,
    Hello. I am still not sure the correct procedure to install PeopleTools 8.49. I have done the following:
    Step 1: Install Windows Server 2003
    Step 2: Install MS SQL Server 2005
    Step 3: Install BEA WebLogic 8.1
    Step 4: Download 7 disks of PeopleTools 8.49 from Oracle e-delivery site
    Step 5: Install PeopleTools 8.49 using setup.exe located in Disk 1.
    Step 6: Setup PeopleSoft Database using C:\PeopleTools8.49\setup\PsMpDbInstall\setup.exe
    Step 7: Install Tuxedo using C:\PeopleTools8.49\appserv\pstuxinstall.exe
    Step 8: Install application server using C:\PeopleTools8.49\appserv\psadmin.exe
    Step 9: Install PIA using C:\PeopleTools8.49\setup\PsMpPIAInstall\setup.exe
    From Step 1 to Step 6, my system works correctly. But from Step 7 to Step 9, my system is not working correctly. Is the above procedure correct to install PeopleTools 8.49 in Windows Server 2003 ? Thanks.
    Lucy

    Nicolas,
    Thanks a lot for replying to me. I have 3 questions as follows:
    First, How many PeopleTools can be installed using 7 disks ?
    As I indicated in previous discussed, I have done:
    Step 4: Download 7 disks of PeopleTools 8.49 from Oracle e-delivery site and extract them.
    Step 5: Install PeopleTools 8.49 using setup.exe located in Disk 1.
    Step 6: Setup PeopleSoft Database using C:\PeopleTools8.49\setup\PsMpDbInstall\setup.exe
    In step 5, setup.exe in Disk 1 load all of files in 7 Disks into C:\PeopleTools8.49\ and PsMpDbInstall install PeopleSoft Database successfully. I can log into Application Designer and develop my first application successfully in 2-tier mode.
    Second, As you said in previous discussion, "Tuxedo is apart from PeopleSoft..." , do you mean I don't need to do Step 7: Install Tuxedo using C:\PeopleTools8.49\appserv\pstuxinstall.exe
    Third, I don't understand how to install the rest of PeopleTools using the files in 7 Disks. Are they application Server and PIA ? Thus, we do:
    Step 8: Install application server using C:\PeopleTools8.49\appserv\psadmin.exe
    Step 9: Install PIA using C:\PeopleTools8.49\setup\PsMpPIAInstall\setup.exe
    Lucy

  • On my i pad mini what is the correct procedure to LOCK our IPAD MINI for automatic i cloud back up ?

    on my i pad mini what is the correct procedure to LOCK our IPAD MINI for automatic i cloud back up ? I am never sure the back up is working. It checked the owner manual but did not find what I need. Can someone give mt the step by step "how to" help so That I know everything is completely backed up to i cloud
    thank you
    olefuzz0115

    Are you plugging in every night, locking the iPad and connected to WiFi? Are you meeting all three requirements?
    Well that is what I do and it works for me because I can see the next day that the new backup shows in Settings>iCloud>Storage and Backup>Backup Now. If you look at my screenshot - you will see that I experimented to make sure that it would work. I responded on July 3 at 12:24 PM when you posted. Then I locked the iPad, plugged it in and waited for about 30 minutes before I unlocked the iPad to see if it backed up. The screenshot shows the backup was completed at 12:44 PM on July 3.
    I also backup with iTunes and I almost never auto backup. I just initate the back up on my own. But the instructions that I posted are right from the settings. You can read it for yourself in the screenshot.
    You do have to wait for at least 24 hours before the next backup will take place, but if you are getting a message that you haven't backed up a week later, I can't explain that.
    Dont trust that message. Look and see what the date of the last backup was. That's the only way to know for sure.

  • Is this the correct area for IPhoto 7.1.5?

    Trying to fix a friends computer (a thankless task). It's a dualgig G4 with OS 10.4.11
    Finally got just about everything working but IPhoto won't launch. Did a complete update from OS10.4 and all appropriate apps including from IPhoto 7.0.1
    first, is this the correct area? In the heading for Iphoto discussions, it jumps form iphoto 6 to iphoto 08.
    Since before I did the software updates, IPhoto would not launch either from the doc or the program icon in the application folder. Any ideas what to do?

    Yes. This is the correct forum. iPhoto 7.1.5 is iPhoto 08. This is the numbering relationship between iPhoto and iLife:
    ▪ iPhoto 1: released January 2002
    ▪ iPhoto 2 (iLife): released January 2003
    ▪ iPhoto 4 (iLife '04): released January 2004
    ▪ iPhoto 5 (iLife '05): released January 2005
    ▪ iPhoto 6 (iLife '06): released January 2006
    ▪ iPhoto 7 (iLife '08): released August 2007
    ▪ iPhoto 8 (iLife '09): released January 2009
    ▪ iPhoto 9 (iLife '11): released October 2010
    What happens when you try to launch iPhoto?
    Try the following: delete the iPhoto preference file, com.apple.iPhoto.plist, that resides in your Home/Library/Preferences folder.
    NOTE: If you're moved your library from its default location in your Home/Pictures folder you will have to point iPhoto to its new location when you next open iPhoto by holding the the Option key. You'll also have to reset the iPhoto's various preferences.

  • VT01N: what is the correct  procedure for creating shipment

    Hi Gurus ,
    Please tellme the correct  procedure for creating shipment  in VT01N   with respect to the  Sales order  no .  there  are  deliveries and ohter  sceens what to do  first .
    Regards, Jaspal

    Hi Jaspal,
    Procedure for creating shipment sequence goes as:
    <b>Shipping Processing and Analyses</b>
    Shipping activities.
    Deliveries.
    Picking and confirmation.
    Packing.
    Goods issue.
    Collective processing.
    Shipment.
    Billing.
    Sales Information System.
    Standard analyses.
    Backorder processing.
    Sales and distribution documents.
    Functional analyses.
    Planning.
    Pls refer the link:
    http://www.sap-img.com/sap-sd.htm for more details.
    Regards,
    Hemachandra K S

  • Is this the correct ram for my asus sabertooth

    Is this the correct memory:
    Kingston HyperX 12GB (3 x 4GB) 240-Pin DDR3 SDRAM DDR3 1600 (PC3 12800) XMP Desktop Memory Model KHX1600C9D3K3/12GX
    For this Board:
    ASUS Sabertooth X58 LGA 1366 Intel X58 SATA 6Gb/s USB 3.0 ATX Intel Motherboard

    Yes, that RAM will fit in your motherboard. At $109, it's well worth it to get 2 kits to get 24GB... if your budget allows.

  • Is this the correct forum for iMovie HD 6.0.3 ?

    Just want to make sure I'm in the right place before I ask my question! Thanks!

    riley2 wrote:
    Re: Is this the correct forum for iMovie HD 6.0.3 ?
    Just want to make sure I'm in the right place before I ask my question! Thanks!
    no, iMHD6 is the correct forum..
    http://discussions.apple.com/forum.jspa?forumID=1115

  • HT1751 After "Restoring iTunes Library Backup" it wont link to the files in the iTunes folder. I've followed the correct procedure, and iTunes lists all my music correctly (but with no artwork), but can't locate any of the files. Using Windows 7. Help ple

    After "Restoring iTunes Library backup" it wont link to the files in the iTunes folder. I've followed the procedure as described, and the iTunes folder is in the correct location. iTunes lists all my music correctly (albeit with no artwork), but can't locate any of the files.
    I've been restoring my iTunes folder from a backup hard drive to a new computer on which I've downloaded the latest iTunes (10.7). If this is a newer version than the one I backed up with could this be the problem? (I had the latest (to my knowledge) iTunes when I backed up the folder about 3 weeks ago, was this version 10.7?)
    Or is the version of iTunes (within recent updates) not an issue when restoring a library?
    Using Windows 7.
    Any help please?

    From the top of the page where the scripts live...
    The general method of use is to download the script to a folder of your choice, e.g. your Desktop, Downloads folder or create a folder at ...\iTunes\Scripts. Select a playlist or highlight some tracks in iTunes and then double-click on the script to execute it. If no specific tracks are selected the script will try to work with all tracks in the current playlist. Some scripts offer a choice of track by track confirmation of changes or fully automatic processing of the selection. Many of the scripts can optionally display a progress bar while running.
    You are strongly advised to backup your entire library, or at the very least the iTunes Library.itl file, before use. Test the behaviour of your chosen script on a small group of files first to make sure it does what you want before applying it to large numbers of files.
    Most builds of Windows will execute *.vbs scripts when you double-click them. If that doesn't happen then you might need to visit the Add/Remove Programs or Programs & Features control panel to enable the Windows Scripting Host. I can track down details if you have issues.
    Backing up and restoring data is an area that is often glossed over. Most people don't try to learn much about it until they've lost something important. (Me too )
    If your iTunes library was in the usual layout then normally copying the whole iTunes folder from the User's Music folder in the old computer to the User's Music folder in the new one will usually work fine. Ideally this is done before iTunes is installed so that there is no empty library to replace, and all settings are picked up from the old library. This post contains more details.
    tt2

  • What is the correct procedure to follow after restoring a Mac from a Time Machine Backup?

    Hi all,
    I did a Time Machine backup of my entire system (Time Machine Backup 1) before bringing my Macbook Pro to the Apple Store to to have it tested.   After the TM backup I wiped the laptop leaving only the OS (Mountain Lion) on it so that I could determine whether the problems with my system were hardware or software related. The computer passed all tests.
    After bringing my Macbook home I did a fresh intall of all the software and everything worked fine.  At this point I did another Time Machine backup (in the same location as the previous backup) so that if I ever had problems with my system I could revert to this working backup (Time Machine Backup 2.0).  I used my laptop without issue and created a number of new documents.  I did not transfer the documents from the previous time machine backup (Time Machine Backup 1).  As time progressed I did regular Time Machine backups (backups 2.1 etc.) installed a few new pieces of software and started having system issues again. 
    At that point I did another Time Machine backup (in the same location as the previous backups) (Time Machine Backup 3) so that my new documents would be safe.  At this point I could see all of my TM backups in finder.  Then I used Command + R while booting up and restored my system from what I thought was the clean backup (Time Machine Backup 2).  In fact it the TM backup I used was not the correct backup (It was one of the backups between 2.0 and 3 and I needed to go back further).  I was concerned, at this point, because I did not (and still do not) know what type of effect restoring the system from an old Time Machine backup would have on the Time Machine structure going forward  I was unsure whether doing so and having an "old" system backed up might break the structure so I stopped Time Machine from running a new backup. 
    When I attempted to look for one of the older versions of the Time Machine backups I discovered that there were no longer any listings for TM backups in their previous location.  In fact, the only thing I could see was one line in the place where the multiple backups were previously.  I took my laptop and NAS (where the TM backups were stored) to the Apple Store and the "genius" said something about the TM backup being "parsed"?  He also described it as a "broken window" and he "sees the broken glass but has no idea how it broke".  He also said "neither he nor anyone at Apple would be able to assist me" and that I'd have to go to a data recovery place.
    Fortunately I did use a second drive to backup the original system (Backup 1) but I really don't want to lose the files created ater Backup 2 / prior to Backup 3.
    Does anyone know what happened / how I can get my Time Machine backups back without forking out tons of cash?
    thanks
    John
    OS ML 10.8.4, Macbook Pro Retina
    Synology DS412 (time machine backup to a file folder)

    I actually already checked Pondini's and didn't find the answer.  Any other suggestions?
    thanks

  • Whats the correct procedure to installing/updating Audigy 2

    Hi all, I am terribly confused with all the updates.
    Is this correct?
    I install the drivers and software that came with my Audigy 2.
    Then I go to Creative site and download all the updates? Or just some? if so, which ones and how do I know which ones I need and which ones I already have or do not need?
    Also, how do I install the latest BETA openAL driver? Do I uninstall all Creative software or JUST the driver?
    Thanks.

    After your original cd has been installed and you have rebooted to your sound working correctly,install the older software updates (the ones before the August '05 ones).
    Then install the Nov. '03 Driver using the downloaded setup.
    After reboot, extract that driver setup with an extracting tool like Winzip or WinRar.
    From the extracted driver folder, run CTZAPP.EXE and choose to overwrite previously installed and shared files.
    Reboot twice.
    Install the .84.55-R Driver setup.
    You shouldn't need to run CTZAPP.EXE over itself this time as this file seems to have fixed the problem of the older releases where the driver files were not completely updated or reported as Microsoft signed in Device Manager. You may want to verify this in Windows Device Manager. Mine updated fine with this setup without needing the additional CTZAPP step. All driver files were the correct version and the "signed" designation icon's were all there.
    Now, you may install all the other software updates from August, as well as the latest Audio Console software.
    You don't need to install the latest beta driver unless you play newer OpenAL games. Those drivers break some aspects of the Creative software, although you can still control those broken parts of EAX Console through the new Audio Console.
    If you want to install those beta's, read the instructions first and do what Creative instructs. I successfully applied everything I told you to do, but have no experience using those beta drivers to this point so can not help you there.

Maybe you are looking for