Same Supplier supplying to different regions

HI All,
While running ASCP plan(We are using Enforce Demand Due Date Plan), what would be lead time if I am procuring from same supplier site for different organizations,
say I have org A in USA & Org B in UK, both getting supplies from same supplier site XYZ,
Supplier Site XYZ, Inventory Org A, Lead Time 30
Supplier Site XYZ, Inventory Org B, Lead Time 10
So now what will ASCP suggest if there is demand to procure for Org A from supplier site XYZ, will ASCP give lead time as 30 Days or will it give 10 Days considering its EDD Plan & will try to crush the lead time as small as possible? We use same data collection for both the orgs
Regards,
Vivek K

Yes Vivek, there is a solution for this also and below are the steps.
ASCP Planning will only support a single Global ASL for each Supplier / Supplier Site
You can create a separate supplier site for each requirement as per the following example:
SupplierA / SupplierSite_XYZ will supply 2 different organization and requires different planning attributes for each org it supplies.
This could include - In ASL Planning tab - Processing Lead Time, Supplier Capacity Calendar, Supplier Capacity values
You have organizations A, B
You can create new supplier sites to map each org - using the Org code makes it easier to keep track of different requirements
SupplierSite_XYZ_A
SupplierSite_XYZ_B
Then create Single Global ASL for each SupplierA / SupplierSite_XYZ_A and SupplierA / SupplierSite_XYZ_B combination listed above.
Thanks,
Abhishek Sharma
Please mark the post correct or helpful, if answered

Similar Messages

  • How to update data in database from different region of the same page

    Hi,
    I have pepared two regions of tabular form based on the same table,each region is selecting different columns of the same table.
    I want to update the values from different regions in the database using single submit button.
    Regards
    Shashi

    I presume that the two regions are working fine with their individual buttons and your issue is how to make them both save with one button.
    Here is how
    a. You will have 2 ApplyMRU and 1 ApplyMRD processes for each of the regions. Right? Lets say you have 2 "Save" (i.e. label=Save) buttons, one has name SUBMIT and the other SAVE ( SUBMIT and SAVE being the requests that will be sent when they are clicked , respectively)
    b. Make the Display condition on one of the buttons 'Never'. Now it won't show when you run the page. Lets say you made SAVE's conditional Display 'Never'
    c. Go and change the condition on all ApplyMRU and ApplyMRD processes from "When Button Pressed" to "Request is contains in Expression1". In Expression1 enter SUBMIT,SAVERegards

  • How to do the same form element alignments on two different regions

    Hi,
    I have two different regions on the same page as the second one is underneath of the first one. Both the regions have some form elements like text field, select list etc. However the alignment of the elements on these two regions are not the same. In the individual regions, it just aligns the input fields based on the maximum length of the label within the region only, so it creates two different vertical alignments per region. How to have the same alignment for the input elements across the regions?
    (I wish to upload the screenshot of the page but there is no provision in this forum to do so).
    Thanks in advance.
    Natarajan

    The basic approach is to set the width of the item labels using a CSS embedded style sheet in the page HTML Header:
    <style type="text/css">
    label {
      display: block;
      width: 15em;
    </style>If you want to limit this to items in specific regions, then give these region(s) static region IDs (such as <tt>region-1</tt>) for use as CSS selectors:
    <style type="text/css">
    #region-1 label,
    #region-2 label {
      display: block;
      width: 15em;
    </style>

  • Same material and customer but different prices for different regions

    Hi all,
    I have a scenario, wherein material and customer are same but different ship-to-parties.  Prices vary for the material for different regions.
    Kindly suggest how to maintain condition records in this scenario. I have tested for a material for different regions but with the same prices which is working fine, but now I have to do this with different prices.
    Your suggestion will be very helpful as this is very important in this business.
    Thanks and Regards
    Adithya

    Swapneal
    I have right now only four key combinations for PR00;
    1. Customer/Material with release status.
    2. Pricelist Category/currency/Material with release status.
    3. Material with release status.
    4. Price group/Material.
    Can this be done with the 2nd Key Combination?
    Item data; Sales B tab shows Price List as Retail and Wholesale; here we have only Wholesale Business. Kindly suggest.
    Thanks and Regards
    Adithya
    Edited by: Adi1976 on Jan 18, 2012 9:04 AM

  • Getting same index size despite different table size

    Hello,
    this question arose from a different thread, but touches a different problem, which is why I have decided to post it as a separate thread.
    I have several tables of 3D points.
    The points roughly describe the same area but in different densities, which means the tables are of different sizes. The smallest contains around 3million entries and the largest around 37 million entries.
    I applied an index with
    CREATE INDEX <index name>
    ON <table name>(<column name>)
    INDEXTYPE is MDSYS.SPATIAL_INDEX
    PARAMETERS('sdo_indx_dims=3');
    My problem is that I am trying to see how much space the index occupies for each table.
    I used the following syntax to get the answer to this:
    SELECT usim.sdo_index_name segment_name, bytes/1024/1024 segment_size_mb
    FROM user_segments us, user_sdo_index_metadata usim
    WHERE usim.SDO_INDEX_NAME = <spatial index name>
    AND us.segment_name = usim.SDO_INDEX_TABLE;
    (thanks Reggie for supplying the sql)
    Now, the curious thing is that in all cases, I get the answer
    SEGMENT_NAME SEGMENT_SIZE_MB
    LIDAR_POINTS109_IDX .0625
    (obviously with a different sement name in each case).
    I tried to see what an estimated index size would be with
    SDO_TUNE.ESTIMATE_RTREE_INDEX_SIZE
    And I get estimates ranging from 230MB in the case of 3million records up to 2.9 for the case of 37million records.
    Does anyone have an idea why I am not getting a different actual index size for the different tables?
    Any help is greatly appreciated!!!
    Cheers,
    F.

    It looks like your indexes didn't actually create properly. Spatial indexes are a bit different to 'normal' indexes in this regard. A BTree index will either create or not. However, when creating a spatial index, something may fail, but the index structure will remain and it will appear to be valid according to the data dictionary.
    Consider the following example in which the SRID has a problem:
    SQL> CREATE TABLE INDEX_TEST (
      2  ID NUMBER PRIMARY KEY,
      3  GEOMETRY SDO_GEOMETRY);
    Table created.
    SQL>
    SQL> INSERT INTO INDEX_TEST (ID, GEOMETRY) VALUES (1,
      2  SDO_GEOMETRY(2001, 99999, SDO_POINT_TYPE(569278.141, 836920.735, NULL), NULL, NULL)
      3
    SQL> INSERT INTO user_sdo_geom_metadata VALUES ('INDEX_TEST','GEOMETRY',
      2     MDSYS.SDO_DIM_ARRAY(
      3     MDSYS.SDO_DIM_ELEMENT('X',0, 1000, 0.0005),
      4     MDSYS.SDO_DIM_ELEMENT('Y',0, 1000, 0.0005)
      5  ), 88888);
    1 row created.
    SQL>
    SQL> CREATE INDEX INDEX_TEST_SPIND ON INDEX_TEST(GEOMETRY) INDEXTYPE IS MDSYS.SPATIAL_INDEX;
    CREATE INDEX INDEX_TEST_SPIND ON INDEX_TEST(GEOMETRY) INDEXTYPE IS MDSYS.SPATIAL_INDEX
    ERROR at line 1:
    ORA-29855: error occurred in the execution of ODCIINDEXCREATE routine
    ORA-13249: SRID 88888 does not exist in MDSYS.CS_SRS table
    ORA-29400: data cartridge error
    Error - OCI_NODATA
    ORA-06512: at "MDSYS.SDO_INDEX_METHOD_10I", line 10
    SQL> SELECT usim.sdo_index_name segment_name, bytes/1024/1024 segment_size_mb,
      2  usim.sdo_index_status
      2  FROM user_segments us, user_sdo_index_metadata usim
      3  WHERE usim.SDO_INDEX_NAME = 'INDEX_TEST_SPIND'
      4  AND us.segment_name = usim.SDO_INDEX_TABLE;
    SEGMENT_NAME                     SEGMENT_SIZE_MB SDO_INDEX_STATUS
    INDEX_TEST_SPIND                           .0625 VALID
    1 row selected.
    SQL>When you ran the CREATE INDEX statement did it say "Index created." afterwards or did you get an error?
    Did you run the CREATE INDEX statement in SQL*Plus yourself or was it run by some software?
    I suggest you drop the indexes and try creating them again. Watch out for any errors. Chances are its an SRID issue.

  • Exchange 2010 disconnect AD user from mailbox and reconnect the mailbox to a new copy of the same user with a different username

    How can i get the following done:
    Exchange 2010 disconnect AD user from mailbox and reconnect the mailbox to a new copy of the same user with a different username?
    i nmust do this for 16 users TODAY, SO PLEASE HELP ME OUT HERE.
    Thanks in advance!!
    kind regards,
    Rene Veldman
    System Administrator Teidem bv, The Netherlands.

    Rene,
    Why are you not changing the username of the existing account, instead of deleting the existing one and creating a new one?
    If you truly need to delete and create new, you can save the GUID for the mailbox (Get-MailboxStatistics <mailbox alias> | Fl MailboxGuid), mail disable the existing account (Disable-Mailbox <mailbox alias>
    will work), clean the mailbox database it was hosted on (Clean-MailboxDatabase
    <database name>), then create your new account and recover the existing mailbox to that new account (Connect-Mailbox -Identity <Guid from before> -Database <Database name> -User <SAM account name of new account> -Alias
    <what you wish to set the alias to>).  In PowerShell, for all steps, you would do the following:
    $MbxAlias = <mailbox alias>
    $NewMbxAcct = <SAM Account Name for new account>
    $NewMbxAlias = <new alias for mailbox>
    $DomCtrl = (dir env:\LOGONSERVER).Value.Substring(2)
    $MbxGuid = (Get-MailboxStatistics $MbxAlias -DomainController $DomCtrl).MailboxGuid
    $MbxDb = (Get-Mailbox $MbxAlias -DomainController $DomCtrl).Database
    Disable-Mailbox $MbxAlias
    Clean-MailboxDatabase $MbxDb
    Connect-Mailbox -Identity $MbxGuid -Database $MbxDb -User $NewMbxAcct -Alias $NewMbxAlias -DomainController $DomCtrl
    You will need to supply the information in bold in the above commands, and you will need to create the new account before you run the above commands.  I include direct use of a specific domain controller so you won't need to worry about replication. 
    If you are changing the account from one domain to another, this will not help, and you will need to wait for replication throughout the process, running the commands individually.

  • How can I vertically align items that are in different regions

    Hello,
    I am a novice developer in APEX. I am creating a page which has 4 regions on it. Right now it looks like the following:
    ----region 1----------------------
    label: field label4: field
    -----region 2--- region 3--
    label: field label45: field
    -----region 4---------------------
    label:field [one-item-worth-of-space. next item aligned to right of item below]long_label: field
    label: field label: field
    I am trying to vertically align the items in these regions, in such a way that all the colons are vertically aligned.
    I am having a particular alignment problem in region 4, column 2 (item are bold). Both label:field, and long_label:field in region 4 have the same vertical/horizontal alignment option as the rest of the region (right for label, left for field). For some reason, there is one item space between these two items. This space is removed if I switch the two fields.
    I would really appreciate any help trying to understand
    - how to remove the one-item-equivalent space between two items in region 4
    - how to vertically align all these fields in different regions on one page.
    I tried to create the original scenario in bold, but the post would not allow space formatting. I apologise if it is difficult to understand
    Thank you in advance for your time.
    RHaq

    This is not the APEX forum. Post your question in this forum:
    Oracle Application Express (APEX)

  • HT204053 Can I use one Apple ID for different itune stores in different regions?

    I have itune store account in the UK. I can I  use the same account to download an app. from a different store in a different region?

    You cannot use other countries itunes stores.
    Sorry

  • Different app/itunes stores for different regions

    Why does there have to be different stores for different regions with some apps region locked? Can't they just make one universal app/itunes store?
    I just find it annoying to have to constantly change regions in order to get the apps I want that are locked to their country's region.
    Same with the itunes store; it's annoying that some international music doesn't show up on the US iTunes store, but shows up in a different country's iTunes store, as it is locked to that one region, so I have to change the country in order to download it.

    All content is licensed by the content providers (app developers, record companies etc) on a country-by-country basis as they want control over where their content is available - each country therefore has to have its own store, and you need to be in a country (and have a billing address in that country on your account) to use its store. If there is a particular item that you would like that is not currently in your country's store then you can try requesting that it be added, but unless the rights-holder agrees to it the Apple can't sell it there : http://www.apple.com/feedback/itunes.html

  • Preferred Supplier/Supplier in Shopping Cart

    Hi,
    I am working on SRM 7.0 Classic scenario. I have a question about te difference between Preferred Supplier/Supplier in Shopping Cart. We are not maintaining any Vendore Lists. Both options lead to select a supplier but only in Supplier option there is also a button named Assign Supplier. Even when I assign supplier it is still not considered as a fixed supplier (PO is not created in ECC). In this case what is the difference with choosing a preferred supplier or just supplier and assigning it?
    Thank you in advance,
    Asli

    Hi,
    When you use a Preferred Vendor/Supplier and the product category is set for sourcing then this SC will still go to the sourcing cockpit. The preferred vendor is looked at like a suggestion to the Purchaser. Then when the Purchaser sources this SC in the sourcing cockpit they can fully assign this vendor or choose a different one.
    When you choose the source of supply in the shopping cart as a vendor with a contract, eg a Full vendor then this SC will not go to sourcing. A PO will be created for this SC as the follow-on document.
    I hope this help,
    Kind Regards,
    Lisa

  • I need to author DVD for both ntsc, pal,& different regions.Need some help

    Hey guys
    I have a school project in relation with a company. We have to create many DVDs for there training courses. They train dogs and they need us to edit the video footage and author the dvds READY FOR SALE.
    First off. I don't know at this moment but I believe that these dvds might need to be in both pal and ntsc format, maybe also in different regions. Therefore my first question is
    1. What format should I convert the video footage to, before I start my video editing, if I want to author my final edit to dvd?
    --> Would it be mpeg2 min 6 mbps max 8 mbps because as I know that is the format for dvd. Or do you leave it as the native camera format eg DV.
    2. What frame size should I convert that original video footage to aswell?
    3. What things do I need to know regarding pal and ntsc formats. How do I prepare a dvd ready for both formats? What format do I edit in
    4. What do I need to know regarding doifferent regions, and how do I set up my dvd for different regions?
    5. Is there anything else I need to know before I start editing so I do get into any trouble later on?

    dang itpowda, you killing me.. haha jk!
    anyway, ok i see where you can be confused. hopefully this can answer yoru questions.
    ok in the NTSC world, if you are creating a graphic file for exampe for TV, then you would create the file with a square pixel (PAR = 1.0 in this case) and your frame size will be 720x540 only because if you create it using the rectagular NTSC pixel, your image will look sueezed and you would have to resize the graphic anyway for TV because remember, you would be creating it on a computer monitor that has a PAR of 1.0 natively, although your DAR is the same, the PAR is not. now, when you have video in D1 NTSC, you would have a rectangular pixel (PAR = 0.9 in this case) and a frame size of 720x486.
    ok, now PAL. once again, if we are creating a CG file for video on a computer, we can creat it using a square pixel and then resize it for PAL TV and the PAR in this case would be 720x768. the reason for this is because in PAL, the PAR is 1.0667, NOT .09 as in NTSC. both standards share the same rectangular pixel.
    now for the DAR. lets assume we are talking about a full frame TV set for a minute. we know that both PAL and NTSC standards, although with different PAR (0.9 vs. 1.0667) have the same DAR (in this case 1.33:1 in decimal form which you obtain from dividing the ratio (whole number) first number by the second). you have to remember we get the DAR of 4:3 assuming that it is a FF picture because the image on the screen takes up 4 units wide to 3 units high. in PAL or NTSC this is true, regardless of PAR. the differences in PAL and NTSC come from the refresh rate, PAR, frame rate and color space to name some and keep it simplistic.
    i hope that is somewhat clear. now, to answer your questions:
    First thing. If PAL and NTSC both had a PAR of 1:1, they would both have a DAR of 720*540, true?
    nope, if you have or want a PAR of 1:1 (to create CG files), then NTSC would be 720x540 and PAL would be 720x768.
    the rest of your questions are pretty much false :P
    now, you might be wondering, HOW N THE HECK DID HE GET THOSE NUMBERS!
    ok, lets say you need to create a CG file on a computer, but want to keep the PAR right (remember, if you create said file with a frame size of 720x576 and a DAR of 1:1, your image will be squeezed a bit) you have to take into account a specific formula in video needed to do such and many more conversions!
    let me show you how i obtained 720x768 for a PAR of 1:1...
    we know we want to keep the width the same, since we are creating a image file for the PAL video.
    lets get some numbers straight first:
    width = 576
    DAR = 4:3 (or 1.333 in decimal form)
    so it would be 576 * 1.333 = 767.808 OR as a whole number 768.
    how did i get the above formula:
    i know the DAR of my input (from 4:3 video), i know the PAR of my ouput (from a 1:1 CG file) and i have my height from video (576). so the unknown variable in this case is the width.
    so it would look something like this:
    width = 576 * (4/3) / (1/1)
    ok, we know that we want to convert the ratio of 4:3 and 1:1 into decimals (makes it easier to work with mathmatically).
    when we do this, we get:
    w = 576 * 1.333 / 1
    we know that when you divide a number by one, you get the same value back, so for simplicity sake, lets take the sole 1 out, since it doesnt matter because 1.333 wont change in value:
    w = 576 * 1.333 = 676.808 or when you round up to the nearest whole number, you get w = 678!
    as long as you have the 3 of the 4 possible variables for the above formual, you can mathmatically get the variable you need.
    i am exhausted, i need a beer!
    Mikey M.

  • Optional/fixed holidays for different regions

    Hi SAP gurus,
    We have two offices located in different regions (karnataka and pune).
    There are some leaves which are applicable only for karnataka and some for pune.
    For all the employees irrespective of the region, we allocated 10 optional/fixed holidays in a year.
    Now i want the restriction to be made in sap in such a way that pune employees should be able to apply only those holidays that are identified for them. If they try to apply any other day as option/fixed holiday, the system should not allow them and give a message saying it is not a optional/fixed holiday.
    The same should be done for bangalore employees.
    Pls suggest how to achieve this scenario.
    thx in  advance
    ayyaps

    Hi
    You have to create the Two holiday calender according to the client requirement. in Pune and Karnataka
    IMG >Define Public Holiday Classes>Personnel Subarea Groupings->Group Personnel Subareas for the Work Schedule-->Group Personnel Subareas for the Daily Work Schedule>Daily Work Schedules->Define Break Schedules-->Define Rules for Variants>Define Daily Work Schedules->Period Work Schedules>Define Period Work Schedules>Day Types>Define Day Types>Define Selection Rules>Define Special Days-->Work Schedule Rules and Work Schedules
    With Regards
    Vikram

  • Can i use 2 ipad's on the same itunes account with different apple accounts?

    Both me and partner have an ipad 4. Though we only have one computer, can we use the same itunes but with different apple acount without any issues? We use some of the same apps, but my partner plays fx Baldus Gate and is worries that save files will be corrupted.

    Each iPad should be linked to its owner's personal, private and nonshared AppleID. In the Mac, each one should have a different login account so each has their own iTunes Library containing your iPad's details. When you use iTunes on the Mac, since each logs in with a different login and corresponding Home directory, iTunes picks up the correct AppleID.

  • Best practice for a same query against 2 different tables

    Hello all,
    I want to extract info about tablespaces storage, both permanent and temporary. For that I use 2 different cursors that do exactly the same query but against a different table (dba_data_files and dba_temp_files).
    CURSOR permanentTBSStorageInfo (tablespaceName VARCHAR2) IS
    SELECT file_name, bytes, autoextensible, maxbytes, increment_by
    FROM dba_data_files
    WHERE tablespace_name = tablespaceName;
    CURSOR temporaryTBSStorageInfo (tablespaceName VARCHAR2) IS
    SELECT file_name, bytes, autoextensible, maxbytes, increment_by
    FROM dba_temp_files
    WHERE tablespace_name = tablespaceName;
    First I'm bothered that I have to use 2 cursors to execute the same query against 2 different tables. Is there no another way around?
    Then I fetch the results of this cursors in 2 different loops because I didn't find a way to dynamically call the cursors. I am looking for best practice here, knowing that I will do the same parsing against the results of the 2 cursors.
    Thank you,

    Hi
    Check whether the below query is helpful or not
    select      fs.tablespace_name "Tablespace",
         fs.tempspace "Temp MB",
         df.totalspace "Total MB"
         from
         (select
         tablespace_name,
         round(sum(bytes) / 1048576) TotalSpace
         from
         dba_data_files
         group by
         tablespace_name
         ) df,
         (select
         tablespace_name,
         round(sum(bytes) / 1048576) tempSpace
         from
         dba_temp_files
         group by
         tablespace_name
         ) fs
         where
         df.tablespace_name = fs.tablespace_name;
    Thanks

  • How to insert values from different region into one table

    Hi everyone
    I have created a page which contains 4 html regions like region1,region 2 ...region 4
    in region 1 i created 2 text items like (emp_name,emp_id).
    in region 2 i created 2 date fields (start_date,end_date).
    In region3 i created a tabular form which contains(job , hire_date).
    in region 4 i created a textfield (%of Hike)
    So i want to create a button(submit) .when i press the button it will insert all the informations provided by the user in different regions will be inserted to a table called employee_information.
    Can i do this?
    If it is possible please tell me how to do this
    if not then tell me any alternative solution.
    Thanks,
    Regards,
    Sabyasachi

    Sabyasachi wrote:
    Hi fac586
    Can you please tell me step by step how to do it or can you please make an example in apex.oracle.com and give me the credentials so that i can know clarify my doubts.1. Create a Form using a Wizard. This will create the items and processes necessary to retrieve data from, and perform DML on, the table. The items will be contained in a single default region.
    2. Create custom HTML regions on page.
    3. Move items and buttons from the default region created by the Form Wizard by changing the Region value in the "Displayed" section of the item attributes page, or Page Items page; or reassign items to regions using the Reassign Region Items page.

Maybe you are looking for