Setting staging area in VA01

Hello,
I would like to set an indication to the sales order in ERP for the purpose to determine the right staging area in EWM:
[EWM] Storage control by alternative staging area according to sales order
But I dont found the field "staging area/door determination group" in the sales order: VA01->TA
Features
In order that the system can perform staging area and door determination in the background, you must define determination rules. When doing this, you first specify which values the system is to compare with the values in the delivery:
●      Inbound delivery process: Warehouse process type and staging area/door determination groups
●      Outbound delivery process: Routes, departure calendar, staging area/door determination groups, and destination sequence numbers
You then define which of the values named under u201CUseu201D are to be determined by the system.
http://help.sap.com/saphelp_scm70/helpdata/EN/52/08b240ac052817e10000000a1550b0/frameset.htm
Thanks in advance!
Best regards,
Laura

Hi Laura,
In order that the system can perform staging area and door determination in the background,
Regards
Seegal

Similar Messages

  • Staging Area Schema

    My source and target table is same and I am trying to update certain column in table XXX, I have set staging area different then target and specify the staging schema where I do have the create table prevelige but when I run this interface its trying to create temp table in target schema where I do not have preveilege to create table.Any clue ...?
    In the interface I have checked all my mapping process is in staging area not source or target.
    Any clue ...?
    Thanks

    HI,
    It depends on the KM that you are using... If you are using a IKM Incremental Update then the process will create a temp table at target because it needs it to make the PK comparation.
    My suggestions to work around it:
    1) if your ETL allows, work with the IKM Control Append
    2) If you need of a Incremental Update ELT just point the "Work Area" at the target Physical Schema to the "Staging Area" Schema, change the Database connection user to the user of Staging Area and give him the necessary grants at the tables of the target schema (insert and update i imagine),
    Just to be sure, are you using Oracle DB as source, staging and target?

  • Staging Area with OWB 10.2 - necessary or not?

    Hi to all,
    I have read so much about Staging Area and OWB 10.2 that I am totally confused: Some documents and powerpoints in the web say you do not need one, others say you need one. The thing is I am planning a DWH and now I am not sure if a staging area is necessary or not, because the mappings do the ETL jobs internal so I am not sure about the staging area. Most of my data sources are Tables/Views/MViews in a database.
    Thank you very much for any help concerning this question!
    Regards
    Thomas

    Would you prefer the answer that you MAY need one? Then again, you may just WANT one!
    For example, if you are building against a high transaction volume, busy 24/7 OLTP system then you may find that you need a local snapshot in order to do a complete build with a consistent set of source data for all your numbers to be consistent.
    Then again, you also may just find that bringing over just delta data into a local snapshot makes for much more efficient load rather than running against huge full remote tables if they are not well partitioned and/or indexed.
    Then again, complex joins run against a remote system may run more efficiently if you bring the data across with simple table dumps into a staging area that you can index to optimize your queries rather than have to deal with poor performance of complex joins over a dblink. Especially if you need to perform complex joins accross more than one db link to multiple source source systems. How big a cartesion product do you want bouncing around the network to perform that sort of scenario? Sure, maybe you can do it - but how much are you going to impact performance across the boards doing things like that?
    Is the source system already stresed to the max and sitting on a vintage piece of equipment, but your shiny new DW environment is blessed with tons of resources that will make the ETL run faster by several factors if you first copy the data over locally?
    So, do you need a staging area?
    Fact is that there is no generic correct answer to this question.
    You have to look at the specifics of your data requirements and your environment to answer that question. There are costs and benefits to having a staging area, and you have to determine which way the cost/benefit analysis comes out for your specific project.
    Mike

  • Staging area and base are in different schema/tablespace

    Please can someone give me some advantages and disadvantages to keep staging tables and base tables in same schema. For eg we have staging area where we daily truncate staging table, load in the stg table and do transformation process. Once done we will move the staging table data to base tables. Base tables sizes are huge volume like 6 to 8 million rows as there is no purging done.
    I want to suggest to my team that we should keep them in separate schemas as I understand it will be good from I/O point.
    Is there any other reason to keep staging and base tables in separate schema/tablespace.

    Hi,
    Definitely I agree with previous answers. You wrote that staging area, transformation etc.. So I think it's a datawarehouse. Staging and base tables should be stored in different data files also in different harddrives. During the ETL task there can be high load on the Disk subsystem. Storing them in different schemas is another subject which is not related with the disk performance.
    When it comes to blocksize of the datafile, there is a approach like this:
    If the database is used for OLTP systems, it would be good idea to setup smaller size blocks. But when we're talking about a datawarehouse, it's highly recommended to use larger block sizes like 16KB or 32KB. This setting has an advantage related to reading, accessing data blocks.
    Regards,
    Cuneyt

  • E$ table to be created in STAGING Area

    Hello All,
    I have an interface that has Staging Area different from TARGET. I have created an ODI Constraint in the target table in my model. Currently, when I run the scenario, the E$ table is created in the target database.
    Because we are planning to use E$ for the tracking purpose for which the INtegration team would have access.
    1) How can I force the E$ table be created in the ODI STAGING AREA (Database) rather than creating at the target database ?
    2) What is the use of RECYCLING ERROR in IKM ?
    Kindly clarify.
    Thanks

    Hi Nag,
    Unfortunately a huge KM modification is necessary to accomplish this or divide in more than one interface (process). Let me try to explain:
    An IKM Incremental Update create the I$ at target even when the stage area is another Logical Schema because it needs the target table to "decide" what records are to update and what are to insert.
    Because of that, the internal the ODI algorithmic set the connections to the target once the I$ will be created there anyway.
    To accomplish what you need it will be necessary to change the way that this kind of ETL is done and force the connections to the new staging area.
    That is possible but will take some time.
    An alternative solution, by process, could be;
    1) make a copy of the target at staging area (if possible, I mean, if the amount of records allows it)
    2) add 2 columns to this copy to flag the kind of dml (flg_ins, flg_upd for instance)
    3) copy all desired constraints to the temporary table
    4) use the same original interface but change the target to the temporary table.
    5) at mapping check just "insert" to column flg_ins (value "Y" for instance)
    6) at mapping check just "update" to column flg_upd (value "Y" for instance)
    7) execute the interface
    8) create a procedure with 2 steps:
    9) step 1 - tab source: select all records from temporary table where flag_ins = 'Y'
    - tab target; insert into original target
    10)step 2 - tab source: select all records from temporary table where flag_upd = 'Y'
    - tab target; update into original target
    for the itens 9 and 10 will be necessary to choose the technology and respective Logical Schema.
    If the amount of records at target doesn't allow this technique than:
    Or will be necessary change the IKM
    Or work with DBLINK from target to staging if both technologies are Oracle and to create a dblink will be possible. Any way IKM customization will be necessary, but a small one.
    Does it make any sense to you?

  • Invalid Staging area

    When i try to install Oracle 8i on windows 2000 which compatible to windows 98 it is giving me "invalid staging area" can anybody help me please
    Regards
    Pavan

    XP requires an installation of the NT version of Oracle. There is a bug for 8i that involves the following solution to start the service. First, set the database service as Manual. Then do this:
    There is a very irritating solution.(Atleast it works.)Open the windows Task Manager(ctrl+shift+esc) and under the process tab there will be one called ORACLE.EXE. Right-Click and select End Process Tree. Now start the Database from the Oracle administration for Windows NT MMC. Once This is done You will find the ORACLE.EXE process running in the Task Manager. Right-Click on this and set the priority to above normal or anything higher than normal. If you managed to do this in time, you may find the memory usage increasing to more than 40MB(It will be more than 50 MB if the default database was chosen). If you were not fast enough you may have to repeat the whole procedure once again.
    This has to be done everytime the system is started. A good solution would be to hibernate instead of shutting down.

  • Creating Staging Area

    Hi all,
    I am trying to create staging area in R12, when i ran the perl script(adautostg.pl) it was going fine, but when it has asked me to insert Database Disk 2 it says, invalid DVD, i tried from the second set of media pack but same problem arised.
    So now im copying all the zip files to local HDD so that i can unzip....this is the second method im following...
    please give any suggestion on this...thread.....

    First off your question relates to e-Business Suite not Database so you are in the wrong forum. In the future please post the appropriate location where your question will be on-topic.
    Second ... there are two possibilities. First that you have a corrupt DVD and the second that you are inserting the wrong Disk2.
    I have posted the 11.5.10 version of the process here:
    http://www.psoug.org/ebs/ebs_tree.html
    and the v12 one is essentially identical.
    If you still can not get it to work open an SR at metalink.

  • Load file into Oracle without staging area

    Is it possible to change LKM to do this?
    Thanks

    Yes it is.
    You can set the 'Work Schema' (staging) of your topology object to the same as your target (Data Schema), then all objects will be created in the target (C$ I$ etc), therefore no staging area is required - although this is not best practice.
    If you want to remove the staging tables altogether, then you can alter the knowledge module to load directly into the target in your LKM. It depends on the method you are using (external tables, sqlloader for example). You IKM will also need amending to basically do nothing, but has to be present for the interface to work.
    Cheers
    Bos
    Edited by: Bos on Apr 7, 2011 8:54 AM

  • Oracle 8.1.5 Invalid Staging Area Error

    I get an error message: Invalid staging area. There is no top level components for Windows NT available for installing
    from this staging area. I installed this version successfully running win98, but i get this error with XP. I tried renaming the symcjit.dll
    as suggested in some of the earlier posting with no success. Any help is appreciated.
    Thanks,
    Will

    copy disk to hardrive in a temporary directory. go to properties for setup.exe (right click on file used to install oracle). Select the compatiblity tab. make sure the check box "run this program in compatibility mode" is checked. In combo box select windows 98.

  • Lookup in staging area

    We have a column on the source table which contain a person's country information. A single country name could be represented in different formats (for e.g. United States of America, USA, U.S.A). The target database has a table which stores the equivalence mapping for all these different possibilities (i.e. United States of America, USA, U.S.A are mapped to "USA")
    We plan to have a design like this
    Step 1. Load the country column to the staging area
    Step 2. In the staging area, lookup the equivalences table, identify the country name and populate it on the staging area
    Step 3. Transfer the data into target table.
    The point where we have discussion is the Step-2. What would be an efficient way of resolving the equivalences and how we proceed in this step.
    Any thoughts/suggestions on what would be a good or bad design here ?

    Hi,
    Let me try to help...
    If I understood right you can achieve that in just one interface by check the join between the column "country" and the table where the all possible match are at staging area, it means:
    1) create an interface
    2) drag and drop all souce tables plus the table where are the countries are, from target.
    3) drag and drop the "final" target table at target position
    4) create a join between the "target countries tables" and "person table" by "country" column and check it to be executed at Staging Area.
    Does it make any sense to you?
    Cezar

  • What setting changes are to be made??

    I am adding some .c files to my MAC application(cocoa), I am getting a lot of errors while compiling those files.
    What setting changes are to be made before adding C files to MAC OS project???
    If so can anyone point out that...??
    1.     I am getting errors with the #include statements in my files...
    2.     expected '=', ',', ';', 'asm' or '__attribute__' before 'asn_DEF_Payload'
    How can I get around these list of errors??
    Thanks in advance.

    Sun Java Enterprise System Support Forum and the Directory Server's "Release Notes" [See docs.sun.com] is a good place to find this information. Also upgrade to the latest DS5.2 Patch 4.
    One probable cause could be that either the BindDN or the SearchBase used by your application no longer exists in the upgraded server's setup. Please check the access log on the Directory server to pinpoint the culprit. The corresponding entry will have "err=32".
    Examples:
    SRCH base="dc=abc,dc=example,dc=com" ....
    RESULT err=32 tag=101 nentries=0 etime=0
    [Note: Tag 101 means the search base does not exist]
    BIND dn="cn=user,dc=abc,dc=example,dc=com" ....
    RESULT err=32 tag=97 nentries=0 etime=0
    [Note: Tag 97 means BindDN does not exist]
    Based on your requirements, you will either have to add the missing entry or upgrade your applications' configuration to use an alternative entry.
    For more on Access Log contents see
    http://docs.sun.com/source/817-7616/fileref.html#wp20452

  • How to print staging areas and doors on the pick doc. ?

    Dear experts!
    Thank you for your attention!
    In our system, we use Lean WM.
    We know staging areas and doors can aslo be printed on the pick doc.  How to do that?
    Best regard!
    Tangdark

    I'm not a WM expert, but am pretty sure nothing special is required for that. If the fields, where this information is stored, are used by the output processing program and the data is passed to the form and then printed by the form, there should be no problem. If data is there, but it's not printed, then you might need to adjust the output program and/or form.
    You might want at least to try it first and use Search whenever possible, then come back with more specific questions, if necessary.

  • Staging area creation problem

    Hi,
    We have got media DVDs for R12.1.1 for Linux X86 from Oracle. We copied in the server one by one using cp command.
    Ans now when we are starting staging creation using these copied DVD's from server, it's giving
    Invalid Disk is inserted.
    Please insert DVD labeled Oracle Applications Rapid Install - of Rdbms Disk 1
    We removed STARTCD part initially which was staged properly using OS rm command.but when it was asking for second DVD it failed due to unavailability of 2nd DVD path
    We copied all DVD's into /do1/R1211dump folder
    Please advice on how to create staging area
    Regards,

    Hi,
    Yes.
    Also this is being executed by root user .
    And when using oracle user, even though DVD dump folder is owned by oracle user
    we are getting following error:
    cannot unlink file for /tmp/staging/adautostg.pl: Permission denied at adautostg.pl line 365
    cannot restore permissions to 0100777 for /tmp/staging/adautostg.pl: Permission denied at adautostg.pl line 365
    cannot unlink file for /tmp/staging/RapidWiz.ini: Permission denied at adautostg.pl line 365
    cannot restore permissions to 0100744 for /tmp/staging/RapidWiz.ini: Permission denied at adautostg.pl line 365
    cannot unlink file for /tmp/staging/File/NCopy.pm: Permission denied at adautostg.pl line 365
    cannot restore permissions to 0100744 for /tmp/staging/File/NCopy.pm: Permission denied at adautostg.pl line 365
    cannot remove directory for /tmp/staging/File: Permission denied at adautostg.pl line 365
    cannot remove directory for /tmp/staging: Operation not permitted at adautostg.pl line 365
    Failed to copy RapidWiz.ini to /tmp/staging
    The log file is located at /tmp/10311250/adautostaging.log
    and
    $ cd /tmp/staging/
    $ ls -l
    total 100
    -rwxrwxrwx 1 root root 71841 Oct 31 12:50 adautostg.pl
    drwxr-xr-x 2 root root 4096 Oct 31 12:26 File
    -rwxr--r-- 1 root root 24329 Oct 31 12:26 RapidWiz.ini
    $
    Not sure how to proceed now..

  • Staging Area - Sans Transformations?

    I am struggling to come up with a proper term for a database that will contain untransformed application data.  This would be an EL process what will pull application data from the source, and insert it into the "staging" area.  A
    subsequent job will perform the ETL process into the data warehouse.  The goal for this area is to have unaltered application data to use as the source for our ETL processes, where we will not have to deal with the retention policies associated with the
    actual application data.   

    Often Staging in a data warehouse is permanent and long-term.  If you purge the Staging area you have to make sure that all needed information is making it into the Data Warehouse.  If you leave the data in Staging it's available for validation
    and to support design changes in the Data Warehouse.
    Also I'm seeing more direct access to this raw area of the DW, as "Big Data" workflows are gaining popularity and complementing more traditional approaches to analytics.  Broadly, in "Big Data" the analyst/end-users get access
    to raw source data quickly, and then do the transforms and reporting together as part of an ad-hoc analysis.
    David
    David http://blogs.msdn.com/b/dbrowne/

  • Staging area for Management Agent files...?

    Sorry for another question so quickly - I am reading the documentation first!
    Management agents upload files to the OMS server, and these are parsed and loaded as data into the MR database, right?
    Where is the staging area for these files (upload from all the management agents)? Is it possible to change it? From what I can gather it's
    https://oms_server:1159/em/upload - but where is this in the real world? I've searched the OMS $ORACLE_HOME, but can't find any uploaded files
    The reason for these questions is because we have a requirement to load these files to a shared area so that both our OMSes can access them - has anyone come across a configuration like this before? Does it work?
    Many thanks (again!)
    D

    The upload area on the OMS would normally be <OMS_HOME>/sysman/recv.
    You still might find no data files over here, as they may be uploaded to the OMS on that moment.
    Yes, making this directory a shared location ,will work when running multiple OMS.
    Regards
    Rob

Maybe you are looking for

  • Profit Center in Customer Line Item

    Hi SDN, We have created a validation during posting of Sp Gl transactions for both Vendor or Customer. This validation mandates the profit center in the Vendor/Customer line item to ensure that a profit center will be derived even for documents with

  • How can I add a contact to a group on my iPad Air or IPhone 6?

    I'm away from my computer for a while and was trying to add a contact to a group on my iPad/iPhone. I don't want to download another app to handle this simple task. All my mobile devices are up-to-date and have plenty of memory. I tried logging into

  • How to search a special string in txt file and return it's position in txt file?

    How to search a special string in txt file and return it's position in txt file?

  • Printing content fields

    I created a simple, interactive form from an EPS file and manually placed all text fields. When the form is opened and filled out in Acrobat Reader, it will only print the original form, leaving all text fields completed by the user blank. I am using

  • IOS 5 and itunes errors

    "The Software for the iPhone was corrupted during download. Disconnect and reconnect, then try again. Make sure your network settings are correct and your connection is active, or try again later."