Intransit Shipment from WMS Enabled to Non-WMS Enabled Org

Hi All,
When performing Intransit Shipment (IOT) from WMS Enabled to Non-WMS Enabled Org, we are not able to Ship goods which are lying in LPNs.
As a work around, we are unpacking them and shipping. But this will not work in the long run for the client as it consumes more time.
Any inputs on this will be highly appreciated.
Regards,
LS

Hi all,
in my project requirement its exactly opposite.
we need to pack multiple sales orderlines into one LPN and need to receive the LPN into destination warehouse
NOTE: source ware house is non WMS enabled
Destination warehouse is WMS enabled
Can you please let me is this support by oracle
Thanks &Regards
R

Similar Messages

  • Intransit Shipment (IOT) from WMS Enabled to Non-WMS Enabled Org

    Hi All,
    When performing Intransit Shipment (IOT) from WMS Enabled to Non-WMS Enabled Org, we are not able to Ship goods which are lying in LPNs.
    As a work around, we are unpacking them and shipping. But this will not work in the long run for the client as it consumes more time.
    Any inputs on this will be highly appreciated.
    Regards,
    LS
    P.S: Posted the same in SCM - GD as well.

    Duplicate Posts should be avoided as much as possible

  • Allocation of Material in R12 NON WMS Orgs

    Hi All,
    I know this is possible in WMS enabled orgs, but I am wondering if there is any ways to achive this is a NON WMS Enabled orgs in R12.
    Item is stocked in multiple locators where it can be picked from. However we would like to consume the material in locator which has least amount of quantity first.
    Thanks
    Amit

    Hi Amit,
    I don´t think you can accomplish what you are looking for without WMS. To check the options avaiable go to Inventory>Setup>Rules>Picking. Here you will see that you an option to control whether single lot or partial lot allocations are allowed. In addition the entities Lot, Revision, Sub-Inventory, Locators allows allocation based on different variations on Receipt or Effective Dates, Names and Numbers or sequence. But not least qty first is not an option.
    /Niels LM

  • Ideas in calling a non RFC enabled FM from another system

    Hi guys,
    I have a request to check the status of the background jobs in miscellaneous systems in the landscape. I'll probably use FM BP_FIND_JOBS_WITH_PROGRAM. The thing is this function is not Remote-Enabled and I need one which is. My idea was to create one RFC-enabled with more or less the same parameters, inside just calling the standard one. I'm not really convinced this is the best approach so that's why I'm asking: is there a better way to do this, any ideas?
    Best regards,
    George

    Function module BP_FIND_JOBS_WITH_PROGRAM either does not exist or is not RFC-enabled.
    No proxies for non RFC-enabled functions.
    Even if it was allowed, then I would have to find out how to consume web services from my ABAP report and everything... sounds interesting but as with all programs this needs to be delivered on time.

  • Data transfer from version enabled schema to non-version enabled schema

    Hi,
    This is Kumar and I have two identical schemas on different databases. One which is version enabled and having data in it *(mainschema)* and other one is brand new schema which is not version enabled and empty *(newschema)*. I need to transfer data from mainschema to new schema and Im looking for best way to do this task.
    Can anyone suggest me how to transfer data from version enabled schema on one database to non-version enabled schema on other database. Please let me know if further information is required.
    Regards,
    Kumar

    Kumar , The FROMUSER and TOUSER capabilities of the Oracle Database import utility are also not supported with version-enabled databases.
    Hope the following helps resolve your issue (3rd post).
    Moving version enabled table between instances
    Thanks

  • 11.5.10 ROI를 통해 INTRANSIT SHIPMENT(INTER-ORG TRANSFER)를 처리하는 방법

    제품: Applications
    작성날짜 : 2006-05-30
    11.5.10 ROI를 통해 INTRANSIT SHIPMENT(INTER-ORG TRANSFER)를 처리하는 방법
    ===============================================================
    PURPOSE
    11.5.10 Receiving Open Interface를 통해 Lot / Serial Controlled Items을 Intransit Shipment (Inter-org transfer) 처리하는 방법을 기술함.
    Explanation
    11.5.10에서는 ROI를 통해 Inter-Org Transfers를 지원합니다.
    . RECEIVE transaction
    . DELIVER to Inventory Transaction
    Solution
    ========
    - Receiving Open Interface (ROI)를 통해서 2 inventory organizations
    사이의 Inter-Organization Transfer를 수행한다.
    - Direct Receipt Routing으로 RECEIVE 와 DELIVER transaction을 동시에
    수행한다.
    <1> the sample script has been tested for a Lot and Serial
    Controlled Item.
    The script will load records into the tables
    RCV_HEADERS_INTERFACE,
    RCV_TRANSACTIONS_INTERFACE,
    MTL_TRANSACTIONS_LOTS_INTERFACE
    MTL_SERIAL_NUMBERS_INTERFACE
    * If the item is only a standard item, only the records into
    RCV_HEADERS_INTERFACE and RCV_TRANSACTIONS_INTERFACE tables
    have to be created.
    <2> Setup
    1) Inventory Setup/Organizations/Shipping Networks
    - From Sending Organization M1 to Destination Organization D2
    - Transfer Type=Intransit
    - Receipt Routing=Direct
    2) Item 'Lot-Serial-Controlled-1' is a lot and serial controlled
    Item in sending and Destination Organization
    <3> Create manual "Intransit Shipment"
    Inventory / Transactions/ Inter Organization transfer
    - From Org= M1, To Org= D2
    - Shipment: 'ROI-Lot-Serial-1'
    - Item= Lot-Serial-Controlled-1
    - Lot=S00226
    - From Subinventory=Stores
    - To Subinventory=Staging1
    - Quantity=10
    - Start Serial Number=SM1_00001
    - End Serial Number=SM1_00010
    <4> data collection for RCV_TRANSACTIONS_INTERFACE table
    - Select * from RCV_SHIPMENT_HEADERS
    where SHIPMENT_NUM like '&Shipment_Num';
    - Select * from RCV_SHIPMENT_LINES
    where SHIPMENT_HEADER_ID=&Shipment_Header_id;
    - Select * from RCV_LOTS_SUPPLY
    where SHIPMENT_LINE_ID=&Shipment_Line_id;
    - Select * from RCV_SERIAL_SUPPLY
    where SHIPMENT_LINE_ID=&Shipment_Line_id;
    <5> RECEIVE/ DELIVER to INVENTORY Transaction for INTER-ORG
    TRANSFER SHIPMENT
    - Direct DELIVER Receipt
    - LOT_NUM=S00226 and serial numbers SM1_00001 to SM1_00002
    Insert
    - RCV_HEADERS_INTERFACE with SHIPMENT_NUM='ROI-Lot-Serial-1',
    VALIDATION_FLAG='Y'
    - RCV_TRANSACTIONS_INTERFACE with TRANSACTION_TYPE='RECEIVE',
    AUTO_TRANSACT_CODE='DELIVER' , DESTINATION_TYPE_CODE='INVENTORY'
    RECEIPT_SOURCE_CODE='INVENTORY', SOURCE_DOCUMENT_CODE='INVENTORY'
    VALIDATION_FLAG='Y'
    - MTL_TRANSACTIONS_LOTS_INTERFACE with quantity=2, lot number S00226
    - MTL_TRANSACTIONS_SERIAL_INTERFACE with FM_SERIAL_NUMBER='SM1_00001'
    and TO_SERIAL_NUMBER='SM1_00002'
    INSERT INTO RCV_HEADERS_INTERFACE
    (HEADER_INTERFACE_ID,
    GROUP_ID,
    PROCESSING_STATUS_CODE,
    RECEIPT_SOURCE_CODE,
    TRANSACTION_TYPE,
    AUTO_TRANSACT_CODE,
    LAST_UPDATE_DATE,
    LAST_UPDATED_BY,
    LAST_UPDATE_LOGIN,
    CREATION_DATE,
    CREATED_BY,
    SHIPMENT_NUM,
    SHIP_TO_ORGANIZATION_ID,
    EXPECTED_RECEIPT_DATE,
    VALIDATION_FLAG
    VALUES
    (rcv_headers_interface_s.nextval , --Header_Interface_Id
    rcv_interface_groups_s.nextval, --Group_Id
    'PENDING', --Processing_Status_Code
    'INVENTORY', --Receipt_Source_Code
    'NEW', --Transaction_Type
    'DELIVER', --Auto_Transact_Code
    SYSDATE, --Last_Update_Date
    0, --Last_Updated_By
    0, --Last_Update_Login
    SYSDATE, --Creation_Date
    0, --Created_By
    'ROI-Lot-Serial-1', --Shipment_Num
    210, --Ship_To_Organization_Id,
    SYSDATE, --Expected_Receipt_Date
    'Y' --Validation_Flag
    INSERT INTO RCV_TRANSACTIONS_INTERFACE
    (INTERFACE_TRANSACTION_ID,
    GROUP_ID,
    LAST_UPDATE_DATE,
    LAST_UPDATED_BY,
    CREATION_DATE,
    CREATED_BY,
    LAST_UPDATE_LOGIN,
    TRANSACTION_TYPE,
    TRANSACTION_DATE,
    PROCESSING_STATUS_CODE,
    PROCESSING_MODE_CODE,
    TRANSACTION_STATUS_CODE,
    QUANTITY,
    UNIT_OF_MEASURE,
    INTERFACE_SOURCE_CODE,
    ITEM_ID,
    EMPLOYEE_ID,
    AUTO_TRANSACT_CODE,
    SHIPMENT_HEADER_ID,
    SHIPMENT_LINE_ID,
    RECEIPT_SOURCE_CODE,
    TO_ORGANIZATION_ID,
    SOURCE_DOCUMENT_CODE,
    DESTINATION_TYPE_CODE,
    SUBINVENTORY,
    SHIPMENT_NUM,
    EXPECTED_RECEIPT_DATE,
    HEADER_INTERFACE_ID,
    VALIDATION_FLAG
    VALUES
    ( rcv_transactions_interface_s.nextval, --
    INTERFACE_TRANSACTION_ID
    rcv_interface_groups_s.currval, --GROUP_ID
    SYSDATE, --LAST_UPDATE_DATE
    0, --LAST_UPDATED_BY
    SYSDATE, --CREATION_DATE
    0, --CREATED_BY
    0, --LAST_UPDATE_LOGIN
    'RECEIVE', --TRANSACTION_TYPE
    SYSDATE, --TRANSACTION_DATE
    'PENDING', --PROCESSING_STATUS_CODE
    'BATCH', --PROCESSING_MODE_CODE
    'PENDING', --TRANSACTION_STATUS_CODE
    2, --QUANTITY
    'Each', --UNIT_OF_MEASURE
    'RCV', --INTERFACE_SOURCE_CODE
    169845, --ITEM_ID
    13706, --EMPLOYEE_ID
    'DELIVER', --AUTO_TRANSACT_CODE
    233534, --SHIPMENT_HEADER_ID
    246486, --SHIPMENT_LINE_ID
    'INVENTORY', --RECEIPT_SOURCE_CODE
    210, --TO_ORGANIZATION_ID
    'INVENTORY', --SOURCE_DOCUMENT_CODE
    'INVENTORY', --DESTINATION_TYPE_CODE
    'Staging1', --SUBINVENTORY
    'ROI-Lot-Serial-1', --SHIPMENT_NUM
    SYSDATE, --EXPECTED_RECEIPT_DATE,
    rcv_headers_interface_s.currval, --HEADER_INTERFACE_ID
    'Y' --VALIDATION_FLAG
    INSERT INTO MTL_TRANSACTION_LOTS_INTERFACE
    ( TRANSACTION_INTERFACE_ID,
    LAST_UPDATE_DATE,
    LAST_UPDATED_BY,
    CREATION_DATE,
    CREATED_BY,
    LAST_UPDATE_LOGIN,
    LOT_NUMBER,
    TRANSACTION_QUANTITY,
    PRIMARY_QUANTITY,
    SERIAL_TRANSACTION_TEMP_ID,
    PRODUCT_CODE,
    PRODUCT_TRANSACTION_ID
    VALUES
    ( MTL_MATERIAL_TRANSACTIONS_S.NEXTVAL,--
    TRANSACTION_INTERFACE_ID
    SYSDATE, --LAST_UPDATE_DATE
    0, --LAST_UPDATED_BY
    SYSDATE, --CREATION_DATE
    0, --CREATED_BY
    0, --LAST_UPDATE_LOGIN
    'S00226', --LOT_NUMBER
    2, --TRANSACTION_QUANTITY
    2, --PRIMARY_QUANTITY
    MTL_MATERIAL_TRANSACTIONS_S.NEXTVAL, --
    SERIAL_TRANSACTION_TEMP_ID
    'RCV', --PRODUCT_CODE
    RCV_TRANSACTIONS_INTERFACE_S.CURRVAL --
    PRODUCT_TRANSACTION_ID
    INSERT INTO MTL_SERIAL_NUMBERS_INTERFACE
    ( TRANSACTION_INTERFACE_ID,
    LAST_UPDATE_DATE,
    LAST_UPDATED_BY,
    CREATION_DATE,
    CREATED_BY,
    LAST_UPDATE_LOGIN,
    FM_SERIAL_NUMBER,
    TO_SERIAL_NUMBER,
    PRODUCT_CODE,
    PRODUCT_TRANSACTION_ID)
    VALUES
    (MTL_MATERIAL_TRANSACTIONS_S.CURRVAL,--
    TRANSACTION_INTERFACE_ID
    SYSDATE, --LAST_UPDATE_DATE
    0, --LAST_UPDATED_BY
    SYSDATE, --CREATION_DATE
    0, --CREATED_BY
    0, --LAST_UPDATE_LOGIN
    'SM1_00001', --FM_SERIAL_NUMBER
    'SM1_00002', --TO_SERIAL_NUMBER
    'RCV', --PRODUCT_CODE
    RCV_TRANSACTIONS_INTERFACE_S.CURRVAL --
    PRODUCT_TRANSACTION_ID
    Commit;
    <6> In Purchasing Responsibility, Change to receiving organization
    - run the Receiving Transaction Processor for the given group_id
    used in RHI and RTI (GROUP_ID=25168)
    <7> check a data
    Navigate to Receiving / Receiving Transactions Summary form
    - For Shipment Number ROI-Lot-Serial-1, Receipt Number 5012
    has Receive and Deliver transactions.
    Reference Documents
    Note#336924.1
    글 수정:
    heeyeol2

    I Think Rajesh is Good inspite of Merlin.
    Can u send me your mail i'd.
    Actually I'm Facing Some Proble In Receipt Header.
    As the period in GL and Inventory is open till march-07 and i'm doing transaction today.
    After this also application is throughing a error.
    APP-PO-14230
    I Can't Send u the Screen Short hear.
    Please Help Me.
    Bachan

  • ECC WMS vs  Decentralized-WMS vs  SCM - Extended-WMS.  Confusing SAP Strat

    Have a Question ... pertaining to SCM-EWM = Extended Warehouse Management Functionality in SCM.
    I am raising this under SCM out of not sure which Forum this belongs to.
    I knew  WMS  Functionality that is part of erstwhile  R3 4.6, 4.7 and now  ECC 6  Releases.
    Back in 2003-2004 also came  "Decentralized WMS" which was the same thing, but WMS implemented
    on a Separate Server integrated to R3 via IDOCs/BDOCs.   It had additional functionality of  TRM (Task & Resource Mngt)
    which I know as my team has implemented in my earlier job as SCM Manager.   At that time there was no WMS inside of  SCM  (primarily APO).
    I am now quite confused with the  "Extended WM" functionality that has come as part of  SCM  along with APO.
    -  What is the reason for coining EWM ?  Architecture seems similar to D-WMS.   Is this meant to be a 'Replacement' for D-WMS  ?  
    -  I am reading this EWM having functionality similar to  D-WMS  (eg : TRM, Cross Docking, RFID) ... so it
       appears to be the same ... except now I am reading it has functionality called  'Slotting', 'Rearrangement', 
    'Transportation Cross Docking",  "EH&S Integration" ... all honestly very confusing to me.
    -  Is it that SAP will now do all the Latest Developments around WM only in the  "EWM" module & slowly phase out WMS in ECC ?
    Thought someone might know.  This confuses me a lot & I as Head SCM am unable to give the Right Opinion to our Customers on where to head for Warehouse Management.
    Regards,
    Ambrish Mathur

    Thanks for responding. But please bear with me for the confusion that still exists.
    If I am looking to recommend to a Large Customer who is in Manufacturing or Consumer Products or Automotive/Service Parts or Pharmaceutical Domain who typically Manufacture Finished Goods Inhouse and then Distribute it from Mfg. Plants to Regional Warehouses to Local Warehouses in a Country or across countries to sell to some Distributor or Retail Store for selling it to the Consumers. In such an Environment most of the Warehouses need to be WMS Managed - particularly big ones where RF Automation is also needed. Some even track Handling Units and need to Track Plant Batches so usually Implement HUM / SUM and Batch Management along with WMS to allow Pallet Tracking.
    If I were to recommend to such customers which WMS to choose for their SAP Landscape, it is a Confusion of Giant Proportions esp. when deciding between Decentralized WMS Server (i.e : WMS not in ECC but in a separate R/3 which was primarily given by SAP to avoid Performance Issues in the Core Operations in ECC - Batch Management, HUM & WMS can be very Performance Intensive) or use the SCM-EWM Functionality. I want to give a Recommendation that is Futuristic. Why does SAP need to keep both - D-WMS as well as SCM-EWM ?
    Bear in mind that EWM is different in Terminologies from D-WMS or ECC-WMS in the sense that the "Transfer Orders" in ECC or D-WMS and they are called as "Warehouse Orders" in SCM-EWM so have different SAP Trainings . In both 'Deliveries' for Sales/POs/STOs get "Distributed" from the Executional ECC System to the EWM/D-WM system to manage Warehouse Picking, Putaway & eventually GI / GR. D-WMS exchanges information with Central ECC Orders via Middleware which is IDOC/BDOC based while I am not sure if EWM uses CIF of SCM or has a different Interface with ECC.
    D-WMS & SCM-EWM both run in a Decentralized Fashion to take care of Performance Issues with implementing WMS in the Integrated ECC Environment which I do not recommend for Companies wanting to implement a Lot of WMS.
    So the Confusion very much exists between what to recommend between D-WMS & SCM-EWM to a Customer like above with a Futuristic Outlook in mind. It does not make sense for SAP to keep both.
    What do you recommend for above-like Customers ?
    Where do SCM-EWM Trainings happen (seem to be still not common) ... can you refer me ? I cannot see them in the India/Asia SAP Training syllabus.
    I want expert help to make a recommendation.
    Regards,
    Ambrish Mathur

  • Steps of EDI is used to transfer IDOC from R3 system to non sap system

    Hi Experts,
    Can you provide me Steps to configure EDI is used to transfer IDOC from R3 system to non sap system?
    Full points will be assigned.
    Thanks in advance!
    Sapna

    Hello,
             The EDI Configuration required to be done for Transfering IDoc to non SAP System is.
    1. First of all, we need to identify the Transaction Data which is required to be Transfered to external System.(Ex: Sales Order Data or Shipment Data or Delivery Related Data).
    2. Secondly, Identify the IDoc Type & Message Type. IDoc Type can be found in Transaction WE30 & Message Type Can be explored in Transaction WE81.
    3. After that, assign the IDoc Type to Message Type in WE82.
    4. Identify the Selection Program (Outbound) which is generally a Function Module in the Form of IDOC_OUTPUT_<Message Type>. Example, if the Message Type is ORDERS, the FM will be IDOC_OUTPUT_ORDERS.
    5. Assign the Function Module to a Process Code in WE41 (Process Code for Outbound).
    6. Configure Port Definitions in WE21 for which the RFC destinations are to be maintained in Transaction SM59.
    7. Maintain Partner Profiles for the Outbound Message Processing in WE20.
    8. Last, but not the Least, we need to Focus Mainly on Message Control Configuration which is nothing but maintaining the Output Type for the Outbound IDoc to be Triggered for the Sales Order Application or Delivery Application.
       i. In Message Control Configuration, we'll maintain
          a. Condition Tables
          b. Access Sequences
          c. Output Types
       ii. To Create the above elements, we can go to SPRO Transaction and do the same depending on the Application Area such as Sales / Shipping / Logistics Execution etc.
       iii. For Output Types & Access Sequences, we can go to the Transaction NACE or VK01 in which we'll maintain the Output Types / Access Sequences & Condition Records.
       Please note that all the above steps may not be needed if we are using some of the Standard Elements provided by SAP such as Message Type, Process Code, IDoc Type & Selection Program as many of the Standard SAP Applications have their own Elements for different Application Areas.
       For example, if you want to send an Order Confirmation IDoc when the Sales Order is saved, you can use the Message Type ORDRSP, IDoc Type ORDERS05 & Selection Program as IDOC_OUTPUT_ORDRSP.
       However, Message Control Configuration is the Key Factor and is required for all the Applications as per the Customer's / Client's Requirements.
    Hope the above procedure was clear.
    Thanks and Regards,
    Venkat Phani Prasad Konduri

  • How to receive intransit shipments for inter-organization transfer with in-transit receipt routing via Receiving Open Interface

    Somebody have samples about how to fill the ROI tables only to have the receipt from inter-organization transfer with in-transit routing.
    Thanks in advance.

    Pl. visit following links.
    Oracle Apps: 11.5.10 / R12 ROI How to Receive Intransit Shipment (Inter-org transfer) for Lot / Serial Controlled Items …
    11.5.10 ROI를 통해 INTRANSIT SHIPMENT(INTER-ORG TRANSFER)를 처리하는 방법

  • RAC enabled database binaries vs non-RAC enabled binaries

    We have a 5 node cluster in which we will be installing Oracle database binaries onto and creating Oracle databases on, some of which will be standalone and most of which will be RAC enabled.
    Is there a difference in 10g RDBMS binaries that are "cluster enabled" versus a single node 10g binary install? Can non-RAC enabled databases use the same set of RAC enabled database binaries? I don't want to install two Oracle home's....
    Hopefully that question makes sense. Thanks in advance for your input.

    (build1):/u01/oracle/product/10.1.0.5/dbrac/rdbms/lib> sqlplus "/ as sysdba"
    SQL*Plus: Release 10.1.0.5.0 - Production on Mon Jun 22 11:28:56 2009
    Copyright (c) 1982, 2005, Oracle. All rights reserved.
    Connected to:
    Oracle Database 10g Enterprise Edition Release 10.1.0.5.0 - 64bit Production
    With the Partitioning, Real Application Clusters, OLAP and Data Mining options
    1* select * from v$option where PARAMETER like '%Real%'
    SQL> /
    PARAMETER VALUE
    Real Application Clusters TRUE
    (build1):/u01/oracle/product/10.1.0.5/dbrac/rdbms/lib> nm -r libknlopt.a | grep -c kcsm.o
    0
    (build1):/u01/oracle/product/10.1.0.5/dbrac/rdbms/lib>
    Well, this is a RAC database on AIX so not sure whether checking only libknlopt.a is enough on AIX.
    I did not good answer from Oracle support also regarding same question.
    I know, if I have RAC DB Binary installed and want to convert to Non RAC, you compile with rac_off option or even set cluster_database to false.
    While confusing part is whether Reverse is TRUE i.e. if you have NON RAC DB Binary and then you relink with rac_on option and now you have RAC enabled true. I am not clear on this statement.

  • Repeating events and calculations in a non-resource enabled calendar?

    I've got a non-resource enabled calendar containing a combination of repeating events and individual events.   There is a list of rooms that can be booked for an event.
    Is there any way to tell - for any particular time frame - if a room has already been booked?
    Let's say you have meeting rooms 200-205.
    There's a meeting this Friday in room 200 from 1-5.  a meeting in room 201 from 2-3 and a meeting in 202 from 2-7.  Is there any way to tell what rooms are free from 5-6?
    There are some complications using the resource calendar so we've got to stick with a regular calendar.

    Welcome to the discussions.
    Select the instance. Edit/Copy, then Edit/Paste. The copy is now an independant event, rather than an instance of a recurrence, and can be independently edit, moved etc. You can delete the instance from which you have copied - you will of course get the usual message about deleting all future events in the stream.
    AK

  • Are ReplicatedCache entries stored even on non-storage enabled members?

    I noticed some unexpected behavior in my program:
    * I have a ReplicatedCache defined in my application
    * I have 1 localstorage enabled JVM and 2 non-storage enabled JVMs
    * When the storage node crashes, the 2 other JVMs received a message to do some processing. Those 2 non-storage JVMs tried to invoke NamedCache.values() on the ReplicatedCache
    ** To my surprise the values() returned the correct data even though the storage node had crashed
    ** The Coherence doc describes ReplicatedCache as "A replicated cache is a clustered, fault tolerant cache where data is fully replicated to *every member* in the cluster"
    * Does "every member" include non-storage enabled members too? Or is this a ReplicatedCache bug?
    * Does a NearCache also support this "feature"?

    Hi Aswin,
    Yes a replicated cache stores the same data on all nodes regardless of whether they are storage enabled or not.
    Near caches will only hold values that have previously been accessed via a get or getAll etc. I am not 100% sure but I suspect you get an error if you try to get from a cache with near caching on a storage disabled client when the storage enabled server has gone even if the data is in the near-cache part.
    JK

  • 7600 / SUP720-3BXL - mixing fabric and non-fabric enabled line cards

    Dear All,
    I am having to mix fabric and non-fabric enabled line cards on a single chassis.
    These are my line cards:
    WS-X6704-10GE
    WS-X6408A-GBIC
    WS-X6148-GE-TX
    What's the maximum expected throughput in running with mix fabric line cards ?
    Also, what will be the optimal and the recommended switching mode to run (truncated vs. bus-mode) ?
    Any inputs will be greatly appreciated.
    egards,
    ZH

    hi!
    The maximum throughput will depend on the ingress and the egress card for the traffic. i.e. If the traffic is coming on the fabric enabled card and going out on the same, then the throughput is would be equal to the fabric card ( 20 gbps duplex). But if there is a non fabric card either in the ingress or egress path, then the throughput would be limited by the non-fabric card.
    As for the mode to run in, I dont think you would have to worry on that as a fabric card would default to truncated mode where-as the non-fabric cards would run in the bus mode. This works fine, as if the ingress to egress is a fabric card, only the header is sent to the superviser for processing using the tuncated mode and the packet is just sent on the fabric directly to the egress port.
    If there is a communication between fabric-non-fabric cards, then the fabric card still uses truncated mode to get the packet processed by the L2/L3 engines on Superviser and then if the egress is a non fabric card, then the packet is sent over the fabric to the superviser. From there the packet is sent to the egress over the bus.

  • If I download a song, album or playlist from iCloud to an iTunes Match enable device, can I delete the download at a later date if I need to free up memory on the device?

    If I download a song, album or playlist from iCloud to an iTunes Match enable device, can I delete the download at a later date if I need to free up memory on the device?

    Hi,
    Yes.
    JIm

  • Can I upload pics from iPod touch to non apple computer

    Can i upload pics from iPod touch to non apple computer - it is a dell computer

    Yes. You do no even need iTunes. See:
    iOS: Importing personal photos and videos from iOS devices to your computer

Maybe you are looking for