Firm zone/tradeoff zone

Hi all,
Presently I am working in a SAPscript.I have copied the standard SAP script medruck.There is a data element ESTAT
for the field indicator: firm zone/tradeoff zone. Based on the value of this indicator I have to print some schedule line item in the script. This field is present in the table EKPB, but in the client server there is no data in this table. Can any one suggest me that except EKPB which table may I use to retrieve the value of indicator: firm zone/tradeoff zone??
Thanks in advance
Raj

Hi,
Rolling delivery schedules issued under scheduling agreements are divided into different time zones indicating the degree to which lines of the schedule are binding.
Firm zone (zone 1) (go-ahead for production).
The schedule lines within this zone count as firm and thus as fully binding. If you cancel a schedule line that falls within the firm zone, the vendor is entitled to charge you with both production costs and the costs of procuring input materials incurred by him as a result of the cancellation.
Trade-off zone (zone 2) (go-ahead for procurement of input materials)
This is the "semi-firm" zone, giving the vendor the go-ahead to procure necessary input materials for the manufacture of the item ordered. If you cancel a schedule line within this semi-firm zone, the vendor is only entitled to charge you the material costs. Schedule lines falling within this time zone are thus less binding that those falling within the firm zone.

Similar Messages

  • Scheduling Agreements / Delivery Schedule / Firm zone, Trade zone

    Dear all.
    I am in the process of setting up scheduling agreements (LPA type) with firm zone and trade zone in SAP 4.5b
    The following issues  I have:
    1.) with the release via ME84, it gives me an error 'no processing message ME 857, no message record found'.
    As far as I know the customizing is correct. Can some one give a tip about what I maybe have forgotten?
    2.) I am also using the firm and trade zone, but in the automatic generated delivery schedules line it is not turning up?
    If there is any one who can help me with this subject, any information is welcome.
    Thanks in advance.
    Regards,
    Wilfred

    You have to create a condition record for your message type LPH1 in order to be able to generate the message (mn10).
    At funcional level, try to update your schedule line manually through TCode me37 and then go to the ME84.
    At customizing level, here are some things that were missing when it occurred to me :
    Check in SPRO - Purchasing - Messages - Output Control - Message Types -
    Define message type for scheduling agreement schedule lin - Fine-Tuned Control: Forecast Delivery Schedule/Expediter that you have operation 9 for LPH1 and the checkbox activated.
    Check in SPRO - Purchasing - Messages - Output Control - Message Determination Schemas - DefineMessage Schema for Scheduling Agreement Release - Define Message Determ. Schema: Forecast Delivery Schedule/Ex in the control data : You must havefor LPH1 the requirement 109.
    Hope it helps
    Regards

  • Firm/Trade-off Zone Indicator - Data base field.

    I'm looking for the data base field that holds the Firm/Trade-off Zone Indicator as it displays on the Delivery Scheduling Agreement, Delivery Schedule for Items from ME33L.  The help for the field gives you the same information as for the Firm Zone And Trade-Off zone values in days (stored in EKPO), but this field displays differently for different schedule lines, and is a "1" - indicator for Firm Zone, or a "2" Indicator for Trade-Off Zone.  
    I'm beginning to wonder, is this field dynamic and just determined for display at the time the transaction is done ???
    As in fact the lines within the firm zone are displayed in a different way (with an * following the MRP element data) on MD04.
    But we were trying to determine where (IF) the field indicator is stored, and if so, what is setting it, as "some process" would have to be evaluating all orders as time passes to know they have now come within the firm zone.   If its not just a dynamic field.
    Ruth Jones

    Hi Ruth,
    This one is dynamic (I guess you are wrinting about screen field  RM06E-ETSTA visible e.g. in ME38/ME39 t-code).
    And I guess it is calculated here:
    Include: MM06EFET_ETT_ETSTA
    FORM ETT_ETSTA.
       CLEAR RM06E-ETSTA.
       IF EKPO-ETFZ1 NE 0.
         REFE1 = EKET-EINDT - SY-DATLO - EKPO-ETFZ1.
         IF REFE1 <= 0.
           RM06E-ETSTA = '1'.
           EXIT.
         ENDIF.
       ENDIF.
       IF EKPO-ETFZ2 NE 0.
         REFE1 = EKET-EINDT - SY-DATLO - EKPO-ETFZ2.
         IF REFE1 <= 0.
           RM06E-ETSTA = '2'.
         ENDIF.
       ENDIF.
    ENDFORM.
    I guess you can call this form in your report logic/query and you should get exactly what you need.
    Best Regards,
    Tomek

  • Forcing traffic through load balancer rather than zone to zone

    I have several T5140s with 2 LDOMs. Within each LDOM I have multiple zones which contain 2 environments. Each environment comprises the following, an apache instance behind a BigIP load balancer, a JBoss instance, and several misc. The jboss zone has three IP address assigned for multiple applications. Each server is configured identically as far as zone and LDOM layout. We use mod_cluster to cluster our apache and Jboss environment. What I'm trying to accomplish is forcing the apache zone's traffic through the BigIP rather than zone to zone.
    Referring to the information below, server2ldom1jboss is one jboss node which needs to connect to both server2ldom1japache and server1ldom1apache. server2ldom1jboss connects to server2ldom1apache via its DNS name which is a NAT address. So webserver2 resolves to 10.10.2.5 which NATs to 10.10.1.5 behind the BigIP. webserver2 responds directly to the jboss zone rather than through the BigIP. Not good. server1ldom1apache works correctly as it's not a local zone.
    Referring to this document, https://blogs.oracle.com/solarium/resource/solaris-container-guide-en-v3.1.pdf
    section 5.2.7.8
    "Connection of zones via external routers using the shared IP instance"
    I've created the following routes
    route add 10.10.2.5 10.10.1.5
    route add 10.10.0.34 10.10.1.5 -interface -reject
    route add 10.10.0.35 10.10.1.5 -interface -reject
    route add 10.10.0.87 10.10.1.5 -interface -reject
    route add 10.10.1.5 10.10.0.87 -interface -reject
    route add 10.10.1.5 10.10.0.34 -interface -reject
    route add 10.10.1.5 10.10.0.35 -interface -reject
    This does prevent the zone to zone traffic, but it also preventing any response. I've tried other options as well, but have not been successful yet. What concerns me is this "These interfaces must not be used elsewhere in the global zone." The 5140 has 4 ethernet ports, which are configured into two port channels. vnet0 and vnet1. The apache instances use vnet1. The remaining zones use vnet0, including the global zone (server2ldom1 10.10.0.21). I think this may be the issue, but do not see an easy resolution without breaking my port channels and losing redundancy and fail-over.
    If there is anything I'm missing or a better/different way to do this, I would greatly appreciate any input on this matter.
    Thank you.
    webserver2 10.10.2.5 NATs to 10.10.1.5
    jboss apps 10.10.0.34, 10.10.0.35, 10.10.0.87
    10.10.0.0/24 is the lan
    10.10.1.0/24 is the network behind the BigIP
    10.10.2.0/24 is the webserver network (in front of the BigIP)
    [1658]root@server2:~# ldm list-bindings
    NAME STATE FLAGS CONS VCPU MEMORY UTIL UPTIME
    primary active -n-cv- SP 4 2G 1.1% 138d 5h
    MAC
    00:14:4f:ec:20:ff
    HOSTID
    0x84ec20b8
    VCPU
    VID PID UTIL STRAND
    0 0 2.0% 100%
    1 1 1.4% 100%
    2 2 0.7% 100%
    3 3 2.1% 100%
    MAU
    ID CPUSET
    0 (0, 1, 2, 3, 4, 5, 6, 7)
    MEMORY
    RA PA SIZE
    0x8000000 0x8000000 2G
    VARIABLES
    boot-device=/pci@0/pci@0/pci@2/scsi@0/disk@0,0:a disk net
    keyboard-layout=US-English
    nvramrc=devalias rootdisk /pci@0/pci@0/pci@2/scsi@0/disk@0,0:a devalias rootmirror /pci@0/pci@0/pci@2/scsi@0/disk@1,0:a
    security-mode=none
    security-password=
    use-nvramrc?=true
    IO
    DEVICE PSEUDONYM OPTIONS
    pci@0 pci
    niu@80 niu
    VCC
    NAME PORT-RANGE
    primary-vcc0 5000-5010
    CLIENT PORT
    group1@primary-vcc0 5000
    group1@primary-vcc0 5000
    VSW
    NAME MAC NET-DEV DEVICE DEFAULT-VLAN-ID PVID VID MODE
    primary-vsw0 00:14:4f:f9:ff:ff aggr1 switch@0 1 1
    PEER MAC PVID VID
    vnet0@ldom2 00:14:4f:fb:7b:ff 1
    vnet0@ldom1 00:14:4f:fb:1a:ff 1
    NAME MAC NET-DEV DEVICE DEFAULT-VLAN-ID PVID VID MODE
    primary-vsw1 00:14:4f:fb:8e:ff aggr2 switch@1 1 1
    PEER MAC PVID VID
    vnet1@ldom1 00:14:4f:f8:17:ff 1
    vnet1@ldom2 00:14:4f:f8:c2:ff 1
    VDS
    NAME VOLUME OPTIONS MPGROUP DEVICE
    primary-vds0 ldom2_swap /ldoms/swap/server2ldom2
    ldom2_root /dev/dsk/c4t600601601CE1210018F9E37BD2AADD11d0s2
    ldom1_swap /ldoms/swap/server2ldom1
    ldom1_root /dev/dsk/c4t600601601CE121007E02166CD2AADD11d0s2
    CLIENT VOLUME
    ldom2_swap@ldom2 ldom2_swap
    ldom2_root@ldom2 ldom2_root
    ldom1_swap@ldom1 ldom1_swap
    ldom1_root@ldom1 ldom1_root
    VCONS
    NAME SERVICE PORT
    SP
    NAME STATE FLAGS CONS VCPU MEMORY UTIL UPTIME
    ldom1 active -n---- 5000 30 15G 3.7% 192d 6h
    MAC
    00:14:4f:f8:a5:ff
    HOSTID
    0x84f8a5f5
    VCPU
    VID PID UTIL STRAND
    0 4 0.4% 100%
    1 5 0.3% 100%
    2 6 0.1% 100%
    3 7 4.4% 100%
    4 8 0.2% 100%
    5 9 0.2% 100%
    6 10 14% 100%
    7 11 0.1% 100%
    8 12 8.1% 100%
    9 13 0.1% 100%
    10 14 0.1% 100%
    11 15 0.1% 100%
    12 16 0.3% 100%
    13 17 0.1% 100%
    14 18 0.1% 100%
    15 19 0.1% 100%
    16 20 0.3% 100%
    17 21 0.6% 100%
    18 22 0.3% 100%
    19 23 0.1% 100%
    20 54 1.0% 100%
    21 55 0.5% 100%
    22 56 1.2% 100%
    23 57 0.2% 100%
    24 58 4.5% 100%
    25 59 0.9% 100%
    26 60 0.0% 100%
    27 61 0.1% 100%
    28 62 0.1% 100%
    29 63 0.3% 100%
    MAU
    ID CPUSET
    1 (8, 9, 10, 11, 12, 13, 14, 15)
    2 (16, 17, 18, 19, 20, 21, 22, 23)
    6 (48, 49, 50, 51, 52, 53, 54, 55)
    7 (56, 57, 58, 59, 60, 61, 62, 63)
    MEMORY
    RA PA SIZE
    0x8000000 0x88000000 10G
    0x401800000 0x6b1800000 5G
    VARIABLES
    auto-boot?=true
    boot-device=ldom1_root:b
    NETWORK
    NAME SERVICE DEVICE MAC MODE PVID VID
    vnet0 primary-vsw0@primary network@0 00:14:4f:fb:1a:ff 1
    PEER MAC MODE PVID VID
    primary-vsw0@primary 00:14:4f:f9:ff:ff 1
    vnet0@ldom2 00:14:4f:fb:7b:ff 1
    NAME SERVICE DEVICE MAC MODE PVID VID
    vnet1 primary-vsw1@primary network@1 00:14:4f:f8:17:ff 1
    PEER MAC MODE PVID VID
    primary-vsw1@primary 00:14:4f:fb:8e:ff 1
    vnet1@ldom2 00:14:4f:f8:c2:ff 1
    DISK
    NAME VOLUME TOUT DEVICE SERVER MPGROUP
    ldom1_swap ldom1_swap@primary-vds0 disk@0 primary
    ldom1_root ldom1_root@primary-vds0 disk@1 primary
    VCONS
    NAME SERVICE PORT
    group1 primary-vcc0@primary 5000
    NAME STATE FLAGS CONS VCPU MEMORY UTIL UPTIME
    ldom2 active -n---- 5000 30 15000M 0.8% 192d 6h
    MAC
    00:14:4f:fa:e8:ff
    HOSTID
    0x84fae839
    VCPU
    VID PID UTIL STRAND
    0 24 1.0% 100%
    1 25 1.0% 100%
    2 26 0.0% 100%
    3 27 0.0% 100%
    4 28 0.1% 100%
    5 29 0.3% 100%
    6 30 0.0% 100%
    7 31 0.0% 100%
    8 32 0.0% 100%
    9 33 0.1% 100%
    10 34 1.3% 100%
    11 35 0.0% 100%
    12 36 0.1% 100%
    13 37 1.0% 100%
    14 38 1.9% 100%
    15 39 0.0% 100%
    16 40 0.0% 100%
    17 41 0.0% 100%
    18 42 0.1% 100%
    19 43 0.5% 100%
    20 44 0.2% 100%
    21 45 0.0% 100%
    22 46 0.2% 100%
    23 47 0.4% 100%
    24 48 0.2% 100%
    25 49 0.0% 100%
    26 50 0.0% 100%
    27 51 0.0% 100%
    28 52 0.0% 100%
    29 53 0.0% 100%
    MAU
    ID CPUSET
    3 (24, 25, 26, 27, 28, 29, 30, 31)
    4 (32, 33, 34, 35, 36, 37, 38, 39)
    5 (40, 41, 42, 43, 44, 45, 46, 47)
    MEMORY
    RA PA SIZE
    0x8000000 0x308000000 15000M
    VARIABLES
    auto-boot?=true
    boot-device=/virtual-devices@100/channel-devices@200/disk@1:b ldom2_root
    keyboard-layout=US-English
    NETWORK
    NAME SERVICE DEVICE MAC MODE PVID VID
    vnet0 primary-vsw0@primary network@0 00:14:4f:fb:7b:ff 1
    PEER MAC MODE PVID VID
    primary-vsw0@primary 00:14:4f:f9:ff:ff 1
    vnet0@ldom1 00:14:4f:fb:1a:ff 1
    NAME SERVICE DEVICE MAC MODE PVID VID
    vnet1 primary-vsw1@primary network@1 00:14:4f:f8:c2:ff 1
    PEER MAC MODE PVID VID
    primary-vsw1@primary 00:14:4f:fb:8e:ff 1
    vnet1@ldom1 00:14:4f:f8:17:ff 1
    DISK
    NAME VOLUME TOUT DEVICE SERVER MPGROUP
    ldom2_swap ldom2_swap@primary-vds0 disk@0 primary
    ldom2_root ldom2_root@primary-vds0 disk@1 primary
    VCONS
    NAME SERVICE PORT
    group1 primary-vcc0@primary 5000
    [1657]root@server2ldom1:~# ifconfig -a
    lo0: flags=2001000849<UP,LOOPBACK,RUNNING,MULTICAST,IPv4,VIRTUAL> mtu 8232 index 1
    inet 127.0.0.1 netmask ff000000
    lo0:1: flags=2001000849<UP,LOOPBACK,RUNNING,MULTICAST,IPv4,VIRTUAL> mtu 8232 index 1
    zone server2ldom1z3
    inet 127.0.0.1 netmask ff000000
    lo0:2: flags=2001000849<UP,LOOPBACK,RUNNING,MULTICAST,IPv4,VIRTUAL> mtu 8232 index 1
    zone server2ldom1z2
    inet 127.0.0.1 netmask ff000000
    lo0:3: flags=2001000849<UP,LOOPBACK,RUNNING,MULTICAST,IPv4,VIRTUAL> mtu 8232 index 1
    zone server2ldom1z6
    inet 127.0.0.1 netmask ff000000
    lo0:4: flags=2001000849<UP,LOOPBACK,RUNNING,MULTICAST,IPv4,VIRTUAL> mtu 8232 index 1
    zone server2ldom1jboss
    inet 127.0.0.1 netmask ff000000
    lo0:5: flags=2001000849<UP,LOOPBACK,RUNNING,MULTICAST,IPv4,VIRTUAL> mtu 8232 index 1
    zone server2ldom1apache
    inet 127.0.0.1 netmask ff000000
    lo0:6: flags=2001000849<UP,LOOPBACK,RUNNING,MULTICAST,IPv4,VIRTUAL> mtu 8232 index 1
    zone server2ldom1z1
    inet 127.0.0.1 netmask ff000000
    vnet0: flags=1000843<UP,BROADCAST,RUNNING,MULTICAST,IPv4> mtu 1500 index 2
    inet 10.10.0.21 netmask ffffff00 broadcast 10.10.0.255
    ether 0:14:4f:fb:1a:ff
    vnet0:1: flags=1000843<UP,BROADCAST,RUNNING,MULTICAST,IPv4> mtu 1500 index 2
    zone server2ldom1z2
    inet 10.10.0.33 netmask ffffff00 broadcast 10.10.0.255
    vnet0:2: flags=1000843<UP,BROADCAST,RUNNING,MULTICAST,IPv4> mtu 1500 index 2
    zone server2ldom1z6
    inet 10.10.0.36 netmask ffffff00 broadcast 10.10.0.255
    vnet0:3: flags=1000843<UP,BROADCAST,RUNNING,MULTICAST,IPv4> mtu 1500 index 2
    zone server2ldom1jboss
    inet 10.10.0.34 netmask ffffff00 broadcast 10.10.0.255
    vnet0:4: flags=1000843<UP,BROADCAST,RUNNING,MULTICAST,IPv4> mtu 1500 index 2
    zone server2ldom1jboss
    inet 10.10.0.35 netmask ffffff00 broadcast 10.10.0.255
    vnet0:5: flags=1000843<UP,BROADCAST,RUNNING,MULTICAST,IPv4> mtu 1500 index 2
    zone server2ldom1z1
    inet 10.10.0.32 netmask ffffff00 broadcast 10.10.0.255
    vnet0:6: flags=1000843<UP,BROADCAST,RUNNING,MULTICAST,IPv4> mtu 1500 index 2
    zone server2ldom1z1
    inet 10.10.0.74 netmask ffffff00 broadcast 10.10.0.255
    vnet0:7: flags=1000843<UP,BROADCAST,RUNNING,MULTICAST,IPv4> mtu 1500 index 2
    zone server2ldom1jboss
    inet 10.10.0.87 netmask ffffff00 broadcast 10.10.0.255
    vnet1: flags=1000842<BROADCAST,RUNNING,MULTICAST,IPv4> mtu 1500 index 3
    inet 0.0.0.0 netmask 0
    ether 0:14:4f:f8:17:ff
    vnet1:1: flags=1000843<UP,BROADCAST,RUNNING,MULTICAST,IPv4> mtu 1500 index 3
    zone server2ldom1z3
    inet 10.10.1.101 netmask fffffc00 broadcast 10.10.47.255
    vnet1:2: flags=1000843<UP,BROADCAST,RUNNING,MULTICAST,IPv4> mtu 1500 index 3
    zone server2ldom1apache
    inet 10.10.1.5 netmask fffffc00 broadcast 10.10.47.255
    [1701]root@server2ldom1:~# zonecfg -z server2ldom1jboss info
    zonename: server2ldom1jboss
    zonepath: /zones/server2ldom1jboss
    brand: native
    autoboot: true
    bootargs:
    pool:
    limitpriv:
    scheduling-class:
    ip-type: shared
    inherit-pkg-dir:
    dir: /lib
    inherit-pkg-dir:
    dir: /platform
    inherit-pkg-dir:
    dir: /sbin
    inherit-pkg-dir:
    dir: /usr
    inherit-pkg-dir:
    dir: /opt/sfw
    inherit-pkg-dir:
    dir: /opt/
    net:
    address: 10.10.0.34
    physical: vnet0
    defrouter: 10.10.0.1
    net:
    address: 10.10.0.35
    physical: vnet0
    defrouter: 10.10.0.1
    net:
    address: 10.10.0.87
    physical: vnet0
    defrouter: 10.10.0.1
    attr:
    name: comment
    type: string
    value: server2ldom1jboss
    [1702]root@server2ldom1:~# zonecfg -z server2ldom1apache info
    zonename: server2ldom1apache
    zonepath: /zones/server2ldom1apache
    brand: native
    autoboot: true
    bootargs:
    pool:
    limitpriv:
    scheduling-class:
    ip-type: shared
    inherit-pkg-dir:
    dir: /lib
    inherit-pkg-dir:
    dir: /platform
    inherit-pkg-dir:
    dir: /sbin
    inherit-pkg-dir:
    dir: /usr
    inherit-pkg-dir:
    dir: /opt/sfw
    inherit-pkg-dir:
    dir: /opt/
    net:
    address: 10.10.1.5/22
    physical: vnet1
    defrouter not specified
    attr:
    name: comment
    type: string
    value: server2ldom1apache
    Edited by: coreyva on Feb 18, 2012 11:36 AM

    After further research, I think the best course of action will be to create a VLAN for the zone behind the BigIP and then create the corresponding interface in the vlan and zone. Using this links as my references in case anyone is interested. I'll post what I come up with.
    https://blogs.oracle.com/stw/entry/using_ip_instances_with_vlans
    https://blogs.oracle.com/stw/entry/solaris_zones_and_networking_common
    http://docs.oracle.com/cd/E19253-01/816-4554/816-4554.pdf # AdministeringVirtualLocalAreaNetworks
    http://docs.oracle.com/cd/E19053-01/ldoms.mgr11/820-4913-10/820-4913-10.pdf # Assign VLANs to a Virtual Switch and Virtual
    Network Device

  • How do I format a DVD copy for multi-zone or Zone 1?

    How do I format a DVD copy for multi-zone or Zone 1?
    Final Cut Pro X version 10.1.3
    I have to send a DVD copy to a festival. They need it formatted for multi-zone or for Zone 1 (North America). How can I make sure it's formatted like that?

    I don't claim direct experience with that, but I *believe* (as in "I could be wrong, but")  that if you burn a DVD from inside FCP X, the program will take a clue from the frame rate of your project: a 25fps project will produce a PAL DVD, a 29.97 will do NTSC.

  • When moving material from Uml-zone, we -zone etc.

    When moving material from UML-zone, We-zone, etc. Can you get the system to generate individual SU#'s.
    I have 30 items of XYZ, I want to move all 30 at one time and generate 30 individual SU#'s......Is there a way?

    Yes, this is possible and standard
    If you post a material document to place the stock into the interum storage type try LT06 and use the document as a refrence, you will need to maintain the LE quantity in your material masters and the system will automaticaly propose the correct number of SU when you click "palletization".
    if you do not maintain the LE you can enter the qty as  (for example) 60 X 3000EA / 1 x 2500EA (or whatever unit of measure you use)
    This is very standard for WM and easy to do once the configuration is in place and you learn the transactions.
    LT06-LT12
    Edit: if this doesn't fit for your needs please provide more info about the transactions you currently use to put the stock into the WE-zone and how you are currently moving it out

  • Zones and Zone Sets

    I am trying to create a zone (hard zone - VPF) that is composed of 2 different blades. I would like the fibre attached into these 2 different blades to see each other and anythinf else plugged into the switch. I get an error message saying that I can't do this type of zone because it crosses 2 different blades. Is their a way around this? What am I doing wrong?
    Thanks

    Any zones not added to the zoneset are effectively unused, so depending on if the zones that are not yet in the zoneset are required, yes you will have to add them in.
    However, the WWPNs you have listed do not appear to be using the Cisco recommended format for WWPN Pools (20:00:00:25:B5:xx:yy:zz) so perhaps you are not using pools or these zones are not related to UCS? If they are indeed UCS related zones then yes add them to the zoneset, but consider using the Pools instead if this is so.
    My suggestion would be to use all WWPN zones and not mix with interface zones.
    On each MDS switch, create a zone that contains only the two WWPNs of the storage controllers, ideally using an easy to identify alias. This guarantees the SAN ports can always see each other. Then, create an additional zone for each UCS blade that contains the blade WWPN from the WWPN Pool as well as the storage zone mentioned above. This allows the vHBA to see the SAN ports.
    Here is a reference document you may find helpful.
    http://www.cisco.com/en/US/docs/storage/san_switches/mds9000/sw/san-os/quick/guide/qcg_zones.html

  • HT4437 Need apple tv input....i have a receiver with two zones. Zone 1 which is my surround which streams from my itunes fine but zone 2 to my deck, same input doesnt stream. Using digital opt in auxillary. Will i need apple express instead to play 2nd zo

    Need apple tv input....i have a receiver with two zones. Zone 1 which is my surround which streams from my itunes fine but zone 2 to my deck, same input doesnt stream. Using digital opt in auxillary. Will i need apple express instead to play 2nd zone?

    The vast majority of zone 2's on home theatre systems don't support digital audio.

  • Customer Zone vs Zone

    Hello world,
    Looking for explanation on the difference between "Customer Zone" and "Zone" Ship-to Consumption level in ASCP plan options Organization tab, and where are they set up?
    Cheers!

    Hi,
    You need to use the HZ_CUST_ACCOUNT_ROLES table. This table will have the party_id of the relationship between the contact and the customer party.
    Regards,
    Ravi

  • Selections using "Selection Zones" & "Protection Zones"

    Selection Zones allow you to make a selection and then refine your selection even further from what you've already selected.
    Protection Zones exclude areas that you do not want to be used in a selection. A Protection Zone is the area outside a Selection Zone and vice versa.
    Here are some examples of how you could use them:
    Problem: I'm using the magic wand and I want to make a selection of the sky which ranges from a very light blue to a much darker blue. However, there is color fringing in the trees that make the branches a darker blue, too. I begin by selecing the light blue in the sky, which includes all those litte "holes" between the leaves, branches, and those tricky dark blue branches. But, when I go to select the darker blue portion of the sky, the dark blue branches are also selected ruining the previous work. This cannot be done with 2 separate selections then merging them because you end up with the same problem.
    New Feature "Protection Zone": PROTECT the original selection by drawing a "Protection Zone" around the originally selected area so that the dark blue branches are  also protected against being selected. The "Protection Zone" could also be a previous selection (but not in this case).
    This feature can be used after you make an initial selection to protect it. Or, you can make a "Protected Selection" right off the bat to exclude a certain area from future selections.
    With this feature, you would solve our original problem by first making the selection of the light sky. Draw a rough Protection Zone around the area of the selection that includes the dark blue branches. Then, make 2nd selection using magic wand of the darker sky to add it.
    A very simply example would be if you had a handful of blue flowers in the prairie that you wanted to select, but there is a blue sky above of a similar tone. You would first draw a rough protection zone around the sky to exclude it from the selection and then move ahead with a selection the flowers with the magic wand.
    New Feature "Selection Zone": When you create a selection zone, anything within the zone is fair game. Anything outside of the zone is excluded or protected (the Protecion Zone).
    So, in the last example, we had only one type of blue flower. But, what if there were two species of blue flowers and you only wanted to select the blue in one of them? You could simply draw rough selections around the flowers of the species that you want to change (using Shift-Click to add several selections). Then, convert this rough selection into a Selection Zone. Then, you can use the Magic Wand tool to select only those tones within the Selection Zone.
    Now, let's say that you had a situation where you got really really close to the selection you wanted, but the selection you ended up with in the Selection Zone with the Magic Wand tool needs further refining. For instance, within the Selection Zone there are some unwanted blues in some wet leaves that reflect the blue sky that were selected. So, you would now redraw a new winding and turning Selection Zone around the current Magic Wand selection that would exclude those blue leaves. And, you'd end up with only the blues selected in the flowers that remain from the Magic Wand selection. In this case, you have a very fast way of deselecting certain things.
    HIERARCHICAL SELECTIONS:
    Essentially, you can make a selection, convert that selection into a Selection Zone, and then refine the selection even more within the Selection Zone. You can repeat as often as you wish.
    This makes for a very nice way for refining selections in a kind of hierarchical manner as if you wanted to refine the results of a search. You'd do a database search and, from those results, do another search.
    I've been wanting this feature for many years.
    Thanks,
          Mike

    Hi Chris,
    I know Add & Subtract and I use them frequently. But, are you quite sure that everything I described can be done with Add/Subtract/Intersect (ASI)?
    It really does not do the same thing as I'm suggesting. Plus ASI is a pain because you have to deal with masks and selections and it's kind of like jumping through hoops.
    My examples may not be perfect, but later on in my description, I talk about hierarchical selections where you make a selection and then you can select with that selection to better refine it. For instance, you'd make a selection (often using Magic Wand or Color Range). Then, you'd convert that selection into a SELECTION ZONE in order to INCLUDE ONLY THE AREA WITHIN THE SELECTION ZONE for future selections. Then, you can make other Magic Wand or Color Range (or any other selection tool) selections within that critical area and nowhere else.
    A way to think of it is that you are choosing an area within which you will apply a selection function. You are providing constraints which can be based on simply drawing an initial boundary. Or, you can make a selection and use that initial selection as the boundary. This is much, much different than ASI.
    I am working selections all the time. I work with very big files with the hardest kinds of selections that require high precision and natural looks due to the large print sizes. But, I also shoot nature and complex wildflower and prairie shots that also include skies with trees and branches at the boundary--not some smooth mountain and sky transition. That's easy.
    In the past, I found a bug with multi-layer TIF files that were losing all their adjustment layers. I sent you a DVD of the files and you fixed them and fixed Photoshop, too. So, I'm usually someone who takes things to the brink and go where few have ventured. Hence, I find bugs and also run into problems that are difficult to solve.
    Please let me know if you get where I'm coming from on this.
    Thanks,
          Mike

  • Solaris zone monitoring zones independantly

    Any utilities to monitor each zone on its own. Looking to monitor space on each zone for reporting..

    I know i can create a simple script to do it, but was looking for something more robust...
    Thanks
    -C

  • Delivery schedules in SA(LPA)

    Gurus,
    I have created a LPA scheduling agreement and generated JIT schedule lines with Firm and Tradeoff zones through MRP.
    Now, I want to release them manually.
    could anyone let me know how these have to be released and sent to vendor with all the information about the zones.
    I would really appreciate your help in this regard.
    Cheers
    Mittu G

    Hi
    You can create the SA release using transaction ME84.
    Use transaction ME35L for approving/releasing the scheduling agreement.
    For SA releases to be transmitted as messages to the vendor, the following settings must be made in Customizing for Purchasing:
    Releases (Message Determination) at Item Level
    In order for a separate message to be generated for each SA release (i.e. per scheduling agreement item and release type), you must set the Release message indicator in Customizing for Purchasing under
    Define Message Schemas for SA Release/Expediter - > Assign Schema: SA Release/Expediter.
    If you do not select the Release message indicator, the messages will be generated at header level. You can then view the messages under
    Header->  Messages.
    If you select the Release message indicator, the messages will be generated at item level. The messages generated are listed in the release documentation.
    If you have initially not selected the indicator, messages will be generated at header level. If you select the Release message indicator at a later point in time, you will find the newly generated messages in the release documentation. You will still find the already generated messages under Header ->Messages.
    Define "Main Message Type"
    You must designate just one message type as the "main message type" for each SA release type (FRC or JIT delivery schedule) in Customizing for Purchasing, and set the indicator A (update print-dependent data) for this message type.
    This means that when an SA release with the "main message type" is outputted, the print-dependent data is updated in the SA item, the SA releases, and the delivery schedule lines. Only if an SA release is outputted with the main message type is it taken into account in the current stock/requirements list, for example.
    You set this indicator using the fine-tuned control facility for the message type.
    In the case of scheduling agreements with release documentation (document type LPA), the message types LPH1 and LPJ1 are used for forecast delivery schedules and JIT delivery schedules respectively in the standard system.
    In the case of scheduling agreements without release documentation (document type LP), the message type LPET is used in the standard system. In this case, no release is created. Instead, the message is generated as soon as the scheduling agreement delivery schedule (specifying the scheduled quantity) is created or changed.
    Outputting Releases in the Main Message Type
    All releases must always be created with the main message type because the system will otherwise not update the print-dependent data. This is particularly important if you are working with different message types.
    You send SA releases to the vendor with the main message type LPH1. You provide the forwarder or carrier with a copy (message type LPH2) and create a printout for your own files (message type LPH3).
    If you send SA releases to the majority of your vendors as printouts (i.e. in hardcopy form) and have an EDI arrangement with just a few of them, you can create message records for the main message type:
    At document type level with the transmission medium "Print", and
    At vendor/purchasing organization/EDI level with the transmission medium "EDI" for the EDI vendors.
    Do not set the change indicator in the message overview. A set indicator has no effect in the case of scheduling agreement releases. As a general rule, the system outputs all releases that have not yet been transmitted.
    For full details you can follow the link
    http://help.sap.com/saphelp_47x200/helpdata/en/75/ee1fa755c811d189900000e8322d00/frameset.htm
    Thanks & regards
    Kishore

  • Firm or Trade-Off Zone Indicator not set

    Hi
    I have created the scheduling agreement and run the MRP by this the schedule lines are generated but the system has not set Firm or Trade-Off Zone Indicator how do I go head? IS there any customization/master data required to set the this indicator?
    Please suggest.
    Regards,
    Prashant.

    This depends a bit on how you communicate to your vendors.
    Assuming EDI, then the message to the vendor will contain a few date fields
    A. ABFDE End of production go-ahead
    Which is the 'end' of the FIRM ZONE
    B. ABMDE End of material go-ahead
    Which is the 'end' of the TRADEOFF ZONE.
    Upon receipt the vendors system will recognize these dates.
    Assuming printout, you need to work in SAP-Script/Smartform to detail the effect of these date on your print.
    Either by also mentioning these in the item header (remember each item has an unique FZ/ToZ setting). Or by using special markers on the date lines, based on these dates.
    Regards
    JP

  • Managing planning time fence ( P1 MRP type ) and firm zone in ME32L

    Hello,
    I want to know if there is or are some documents to know how to manage planning time fence in MM02 and firm zone in ME32L ?
    For me, in ME32L the firm zone is the firmed quantities sent to suppliers but not firmed for MRP so how to manage this easily ?
    Thanks.
    Romeo.

    Dear,
    Firm ZOne in SA, says that that much qty will be procured from that vendor with in that date specified, if not taken the production cost and cost related to that will be paid.
    Now the planing time fence, is the time with in which no change is allowed. Hence if there is any new requirement to that RM, then it will be pushed to outside the time fence.
    Hence if there is a schedule line which is already there and requirement is coved with in that, then your requirement is met, if not system will create a new schedule line in the trade off zone/planning zone.
    I hope you got the point.

  • Delivery Schedule within the Firm Zone of a SA not firming

    Hello,
    We have delivery schedules within firm zone (defined in the Additional Data in item detail) of a SA but they are not firmed by MRP run.
    Here is the material master setting and other relevant information:
    MRP Type = PD (firming type = blank)
    Planning Time Fence = 0 (in MRP1 view)
    Not check the flag in OMIN to firm only the transmitted schedule line
    Maintained Firm/Trade-off zone (as mentioned above) and Binding on MRP = '1' in an item of a SA
    The delivery schedule supposedly be firmed based on the firm zone but is keep pushed out instead after MRP run.
    I appreciate very much if you can tell what's causing the problem and how to remedy it.
    Kind Regards,
    Eddie

    Eddie,
    Your batch job is OK however until the delivery schedule with new schedule line proposals has been transmitted they can be changed by MRP as they are not yet firm.
    From my experience the OMIN settings affect the MRP type firming settings (P1, P2, ...) not the SA related firm settings. Here the binding on MRP key is determining what MRP can change or can not change.
    See here the extract out of the help function on the OMIN setting.
    Firm Only Schedule Lines Transmitted to Vendor by Purchasing
    If you set this indicator, the system only firms the schedule lines which have been transmitted to the vendor by the purchasing department.
    Use
    This function is used if you use a planning time fence in the planning run. If you use firming type 1 ("Automatic firming and order proposals are displaced"), the system automatically firms existing schedule lines when they move into the planning time fence.
    Use this indicator if you only want the system to firm schedule lines that have already been checked and passed on to the vendor per message transfer. If, for example, the quantity of a schedule line was changed but the changed quantity has not yet been passed on to the vendor, then the old quantity that has already been passed on to the vendor is firmed as soon as this schedule line moves into the planning time fence.

Maybe you are looking for