Disable Print for specific situations

I Use Adobe Pro X.
Is there a way to make a form not print if certain information is entered?  For instance, some forms in our list are for specific clients only. If a user pulls up a form with the incorrect client, I want to add a script that disables the form from being printed or faxed. I already added script to display a warning message, but that won't prevent anyone from printing it - and then the recipient will receive the letter with the warning message - which is potentially worse than just receiving the wrong letter.
Any assistance is greatly appreciated.
Thanks!

Tto detect a specific client, each system the client has would need a spacial file installed on it and the Organization filled in for the Identity object.  This will be a real challenge.
Then once the print process is started there is no way to cancel it. You could unhide a hidden form filed and cover the content of the PDF. But then this could easily be defeated.
So in the end, it could be done, but you most likely will not be able to implement it outside of a given organization.

Similar Messages

  • Disable DSN for specific messages

    Hi,
    i have a problem, where i wish to disable DSN for specific internal users.
    Scenario :
    Interal User a sends a mail to special address c,
    if mail host of special address c is not available or anything else i wish that internal user a is never informed that c didnt recieve his mail.
    Can this be done ?
    i thought about doing this with sieve.. but i dont know if DSNs generated by the IMS Master itself are also checked by sieve mechanism....

    Please do notice that your bits do not support many of the features you want. And that later bits do. If you offer that to your company, perhaps you could update more often, or at least this time. We're not talking about a new package, here, but just an update to the one you have, that's not doing the job properly.
    Also, if you had asked for what you needed at the beginning, I could have helped you better.
    What you want is the sieve command, save-copy, or, perhaps monitor. Please see whitepaper, quoted below:
    Saving Messages for Document Retention
    If the reason you want to capture a copy of the message is for document retention, then you will want to take advantage of the new "capture" sieve action. You have to have iMS v5.2 or better to use this facility. The capture action can only be specified in a system or channel sieve; it is not available in user sieves. The general syntax is
    capture "monitoraddress"
    The monitor action is the same as the capture action. Users are encouraged to use the 'capture' instead of monitor as it best reflects the function being performed.
    This action sends a DSN containing the original message in its entirety to the specified capture address. Since this is a DSN it is effectively a completely separate message so there's little chance of it causing side effects that will alert anyone to the monitoring. In particular, no addresses from the original message appear in the DSN header so there's very little chance of the capture copy getting forwarded to the wrong person by mistake. And even though the original message is encapsulated, it is a MIME encapsulation which means the content is easily accessible in any MIME-compliant user agent.
    The capture action is nonstandard and undocumented. It was originally intended to be part of the habanero release, but the backporting of direct LDAP support to 5.2 means it is available in 5.2 as well. We certainly intend to support it in the future.
    Saving Messages for Replay
    There is an undocumented functionality in iMS for making a copy of messages for archival purposes. It's intended for saving sent messages in the event that they need to be replayed. We did this for folks who send mail via bad links to places where the mail may be received OK by an intermediate host but then subsequently lost on its way to the final destination.
    This is done with the MESSAGE-SAVE-COPY mapping table. Entries in that table have the form
    MESSAGE-SAVE-COPY
    out-channel|from-address|D|msg-filename result
    where
    out-channel -- name of the channel the message is flowing out
    from-address -- originator's address (envelope From: address)
    D -- the letter "D" (stands for "dequeue" )
    msg-filename -- name of the message file being dequeued.
    result -- where to rename the file
    Outbound Traffic
    To save only messages out to the Internet, do
    MESSAGE-SAVE-COPY
    tcp_local|*|D|/instance-root/queue/tcp_local/*/* (tab-or-space)$Y/msg_save/$1/$2
    Be aware that the archive isn't made until the message is actually dequeued from iMS (i.e., sent successfully or bounced). A rename operation is done (as opposed to a copy operation). As such, the message file has to remain on the same disk that the IMTA_QUEUE lives on.
    Inbound Traffic
    To capture inbound mail will want to have good control of what machines/pathways a message will take on its way into your systems. If your setup is such that mail always enters the site via an INBOUND relay and leaves the site via know outbound gateways, then inbound message flow is from INBOUND-MTA --> MsgStore machine.
    Since you can have multiple MsgStore machines behind any one INBOUND-MTA, you will want to make configuration on the INBOUND-MTA machine such that it will use a dedicated queue to talk to the MsgStore machines. For instance, on the INBOUND-MTA machine, you could setup a rewrite rule in your imta.cnf file for MsgStore-A, MsgStore-B, ... MsgStore-Z like:
    Node-A.store.domain.com.au $U%$D@tcp_to_store-daemon
    Node-Z.store.domain.com.au $U%$D@tcp_to_store-daemon
    and a corresponding 'tcp_to_store' channel which looks like:
    ! tcp_to_store
    tcp_to_store smtp mx single_sys subdirs 20 noreverse maxjobs 7 \
    pool SMTP_POOL maytlsserver allowswitchchannel \
    saslswitchchannel tcp_auth
    tcp_to_store-daemon
    This has the effect of routing all mail to any of your MsgStore machines through tcp_to_store channel. Transactions to other machines in your setup will take the tcp_intranet channel.
    With this in place you can then throw in a MSG-SAVE-COPY mapping table which reads:
    MESSAGE-SAVE-COPY
    *|*|D|/instance-root/imta/queue/tcp_to_store/*/* $Y/msg_save/tcp_to_store/$2/$3
    the net effect will be a number of queue files in the /msg_save/tcp_to_store directory which are ready for replay. Note the $2 in the sample represents the subdir that the message was already in. As such if you have 'subdirs 20' on your tcp_to_store channel, you will want to precreate the /msg_save/tcp_to_save/000 thru 019 subdirectories with the appropriate ownership and permissions.
    To initiate the replay, you want to simply move the /msg_save/tcp_to_store/### directories to the /instance-root/imta/queue/reprocess and issue the command 'imsimta cache -synch'. The MTA will start pushing out those messages to the store(s).
    If you want to have multiple replays happening you can kick off parallel runs of the reprocess channel by doing 'imsimta run reprocess &' a number of times.
    And, If you want to segregate the storage for each MsgStore machine, you can make new channel in addition to the one suggested 'tcp_to_store' channel. You would then have groups of rewrite rules directing traffic over those channels or you could have one rewrite rule per channel block that you setup. That way you can have distinct entries in your MSG-SAVE-COPY mapping table.
    Finally, since there is a rename operation taking place when you use the MSG-SAVE-COPY mapping table, you will want to make sure that at the first pass that /msg_save is on the same device that your queues live on.
    Short Term Arvchival
    You could setup a process in cron to move those files to a new device on a periodic basis. Better yet, schedule this via the job_controller. For instance, these lines at the top of your job_controller.cnf file:
    [PERIODIC_JOB=archive_mover]
    command=/usr/iplanet/sitescripts/arc_mover.sh
    time=/00:10
    will run the arc_mover.sh script for you every 10 minutes. Your arc_mover.sh could look something like:
    #!/bin/ksh
    # ***Script is untested - should generate some ideas though****
    DUMMY=`test -d /var/tmp/timestamp.dir || mkdir -p /var/tmp/timestamp.dir`
    cd /msg_save
    # First pass
    for dir in `find ./ -type d`
    do
    DUMMY=`test -d /real/storage/area/$dir || mkdir -p /real/storage/area/$dir`
    cd $dir
    for msgfile in `find ./ -type f -newer /var/tmp/timestamp.dir -name "*.00"`
    do
    mv $msgfile /real/storage/area/$dir/
    done
    cd /msg_save
    done
    touch /var/tmp/timestamp.dir
    # Second pass cause we do not know how long we took.
    for dir in `find ./ -type d`
    do
    DUMMY=`test -d /real/storage/area/$dir || mkdir -p /real/storage/area/$dir`
    cd $dir
    for msgfile in `find ./ -type f -newer /var/tmp/timestamp.dir -name "00"`
    do
    mv $msgfile /real/storage/area/$dir/
    done
    cd /msg_save
    done
    exit

  • Disable Statistics for specific Tables

    Is it possible to disable statistics for specific tables???

    If you want to stop gathering statistics for certain tables, you would simply not call DBMS_STATS.GATHER_TABLE_STATS on those particular tables (I'm assuming that is how you are gathering statistics at the moment). The old statistics will remain around for the CBO, but they won't be updated. Is that really what you want?
    If you are currently using GATHER_SCHEMA_STATS to gather statistics, you would have to convert to calling GATHER_TABLE_STATS on each table. You'll probably want to have a table set up that lists what tables to exclude and use that in the procedure that calls GATHER_TABLE_STATS.
    Justin
    Distributed Database Consulting, Inc.
    http://www.ddbcinc.com/askDDBC

  • Disable sound for specific users

    How do I disable sound for specific users?

    Theoretically if the user's not in the audio group, he shouldn't have access to sound devices.
    $ ll /dev/snd/
    total 0
    drwxr-xr-x 2 root root 80 Oct 2 19:30 by-path
    crw-rw----+ 1 root audio 116, 2 Oct 2 19:30 controlC0
    crw-rw----+ 1 root audio 116, 8 Oct 2 19:30 controlC1
    crw-rw----+ 1 root audio 116, 7 Oct 2 19:30 hwC0D0
    crw-rw----+ 1 root audio 116, 13 Oct 2 19:30 hwC1D0
    crw-rw----+ 1 root audio 116, 14 Oct 2 19:30 hwC1D1
    crw-rw----+ 1 root audio 116, 15 Oct 2 19:30 hwC1D2
    crw-rw----+ 1 root audio 116, 16 Oct 2 19:30 hwC1D3
    crw-rw----+ 1 root audio 116, 4 Oct 4 09:12 pcmC0D0c
    crw-rw----+ 1 root audio 116, 3 Oct 4 10:13 pcmC0D0p
    crw-rw----+ 1 root audio 116, 5 Oct 2 19:30 pcmC0D1p
    crw-rw----+ 1 root audio 116, 6 Oct 2 19:30 pcmC0D2c
    crw-rw----+ 1 root audio 116, 9 Oct 2 19:30 pcmC1D3p
    crw-rw----+ 1 root audio 116, 10 Oct 2 19:30 pcmC1D7p
    crw-rw----+ 1 root audio 116, 11 Oct 2 19:30 pcmC1D8p
    crw-rw----+ 1 root audio 116, 12 Oct 2 19:30 pcmC1D9p
    crw-rw----+ 1 root audio 116, 1 Oct 2 19:30 seq
    crw-rw----+ 1 root audio 116, 33 Oct 2 19:30 timer

  • Disable swapping for specific process?

    Hi!
    Is there some way to disable swapping for a specific process? I wanted to disable it for my web servers, so their responsivness would be better.
    Cheers!

    Theoretically if the user's not in the audio group, he shouldn't have access to sound devices.
    $ ll /dev/snd/
    total 0
    drwxr-xr-x 2 root root 80 Oct 2 19:30 by-path
    crw-rw----+ 1 root audio 116, 2 Oct 2 19:30 controlC0
    crw-rw----+ 1 root audio 116, 8 Oct 2 19:30 controlC1
    crw-rw----+ 1 root audio 116, 7 Oct 2 19:30 hwC0D0
    crw-rw----+ 1 root audio 116, 13 Oct 2 19:30 hwC1D0
    crw-rw----+ 1 root audio 116, 14 Oct 2 19:30 hwC1D1
    crw-rw----+ 1 root audio 116, 15 Oct 2 19:30 hwC1D2
    crw-rw----+ 1 root audio 116, 16 Oct 2 19:30 hwC1D3
    crw-rw----+ 1 root audio 116, 4 Oct 4 09:12 pcmC0D0c
    crw-rw----+ 1 root audio 116, 3 Oct 4 10:13 pcmC0D0p
    crw-rw----+ 1 root audio 116, 5 Oct 2 19:30 pcmC0D1p
    crw-rw----+ 1 root audio 116, 6 Oct 2 19:30 pcmC0D2c
    crw-rw----+ 1 root audio 116, 9 Oct 2 19:30 pcmC1D3p
    crw-rw----+ 1 root audio 116, 10 Oct 2 19:30 pcmC1D7p
    crw-rw----+ 1 root audio 116, 11 Oct 2 19:30 pcmC1D8p
    crw-rw----+ 1 root audio 116, 12 Oct 2 19:30 pcmC1D9p
    crw-rw----+ 1 root audio 116, 1 Oct 2 19:30 seq
    crw-rw----+ 1 root audio 116, 33 Oct 2 19:30 timer

  • IN OBIEE, how to disable drilldown for specific users

    How to disable drilldown action in a hierarchy as manager,lead,reporter.
    in this scenario i need to disable hierarchy for the specified reporter and the upper two peoples will have that functionality
    Awaiting ur reply
    Bala

    The RPD hierarchies themselves have no security attributes on them. So your left with a workaround or two. First one that springs to mind :
    Create the report in question save this as 'Manager' report.
    Create the report in question, disable drilling on the column in question, save this as 'Reporter' report.
    Deploy both reports to the dashboard in seperate sections and use the section permissions (against the Webgroups those users exist in) to determine which section is displayed to which user.
    Maybe more options will come up from other users, but this one is a start.
    Hope this helps,
    Alastair

  • Can I disable adblock for specific web pages?

    I would like to disable adblock for two websites, can this be done, or is the only option to have it enabled or disabled for all web pages? If I can disable it for two websites, how do I do it?

    Yes, you can tell disable adblock on sites you choose. Go to each
    web site one at a time. After the page has loaded, go to
    the adblock icon and right click on it. One of the options
    is to disable adblock on that site. Be very careful as there
    is also an option to disable on '''''ALL SITES'''''.

  • Customizing "Disabled" color for specific components only

    Hello,
    when uncommenting the "UIManager.put(...)" line in the following code all combos display their text ungreyed when disabled. But how to proceed, if you want to give this feature only to specific combos? Setting the foreground colour, even when done in an own renderer, doesn't work.
    There has been a discussion of the same problem in
    http://forum.java.sun.com/thread.jspa?forumID=57&threadID=276411
    but it always comes back to the overall solution with the UIManager.
    If the solution should be to write an own ComboUI, does anybody have an example, for my own attempt badly failed.
    import java.awt.*;
    import javax.swing.*;
    import javax.swing.plaf.*;
    public class TextColor extends javax.swing.JFrame {
      public TextColor() {
        setSize(350,300);
        setDefaultCloseOperation(WindowConstants.EXIT_ON_CLOSE);
        Container cp= getContentPane();
        cp.setLayout(null);
        JComboBox cmb1 = new JComboBox();
        cmb1.addItem("Normal");
        cmb1.setBounds(100,50,100,20);
        JComboBox cmb2 = new JComboBox();
        cmb2.addItem("Disabled");
        cmb2.setBounds(100,100,100,20);
        cmb2.setEnabled(false);
        cmb2.setForeground(Color.BLACK);
        JTextField tf = (JTextField)cmb2.getEditor().getEditorComponent();
        tf.setForeground(Color.BLACK);
        cp.add(cmb1);
        cp.add(cmb2);
        setVisible(true);
        cp.requestFocusInWindow();
      public static void main(String arg[]) {
        java.awt.EventQueue.invokeLater(new Runnable() {
          public void run() {
    //     UIManager.put("ComboBox.disabledForeground", new ColorUIResource(0,0,0));
         new TextColor();
    }

    Thanks from me too, camickr, it's always a good feeling to learn and understand something new.
    When I extended MetalComboBoxUI, the borders and the button were back to normal, but the JComboBox background remained dark. After some trial and error, this is the solution I've come up with:
    MyComboBoxUI.javapackage joerg22;
    import java.awt.Color;
    import java.awt.Component;
    import java.awt.Graphics;
    import java.awt.Rectangle;
    import javax.swing.JComboBox;
    import javax.swing.ListCellRenderer;
    import javax.swing.plaf.metal.MetalComboBoxUI;
    public class MyComboBoxUI extends MetalComboBoxUI {
        public void paintCurrentValue (Graphics g,
                Rectangle bounds,boolean hasFocus) {
            super.paintCurrentValue (g, bounds, hasFocus);
            ListCellRenderer renderer = comboBox.getRenderer ();
            Component c;
            c = renderer.getListCellRendererComponent ( listBox,
                    comboBox.getSelectedItem (),
                    -1,
                    true,
                    false );
            c.setForeground (Color.BLACK);
            // Uncomment the next line for dark b/g when disabled
            //if (comboBox.isEnabled ())
                c.setBackground (comboBox.getBackground ());
            currentValuePane.paintComponent (g, c,
                    comboBox, bounds.x, bounds.y,
                    bounds.width, bounds.height); //, shouldValidate);
        public void paintCurrentValueBackground (Graphics g,
                Rectangle bounds,boolean hasFocus) {
            super.paintCurrentValueBackground (g, bounds, hasFocus);
            Color t = g.getColor ();
            // Uncomment the next line for dark b/g when disabled
            //if ( comboBox.isEnabled () )
                g.setColor (comboBox.getBackground ());
                g.fillRect (bounds.x + 1, bounds.y + 1,
                        bounds.width - 2, bounds.height - 2);
            g.setColor (t);
    }TestUI.javapackage joerg22;
    import java.awt.Container;
    import java.awt.event.ActionEvent;
    import java.awt.event.ActionListener;
    import javax.swing.JButton;
    import javax.swing.JComboBox;
    import javax.swing.WindowConstants;
    public class TestUI extends javax.swing.JFrame {
        public TestUI () {
            setSize (200,150);
            setDefaultCloseOperation (WindowConstants.EXIT_ON_CLOSE);
            Container cp= getContentPane ();
            cp.setLayout (null);
            final JComboBox cmb1 = new JComboBox ();
            cmb1.addItem ("Normal");
            cmb1.setBounds (50,25,100,20);
            final JComboBox cmb2 = new JComboBox ();
            cmb2.addItem ("Custom");
            cmb2.setBounds (50,50,100,20);
            cmb2.setEnabled (false);
            cmb2.setUI (new MyComboBoxUI ());
            final JButton btn1 = new JButton ("Toggle");
            btn1.addActionListener (new ActionListener () {
                public void actionPerformed (ActionEvent e) {
                    cmb1.setEnabled (!cmb1.isEnabled ());
                    cmb2.setEnabled (!cmb1.isEnabled ());
            btn1.setBounds (50, 75, 100, 20);
            cp.add (cmb1);
            cp.add (cmb2);
            cp.add (btn1);
            setVisible (true);
            cp.requestFocusInWindow ();
        public static void main (String arg[]) {
            java.awt.EventQueue.invokeLater (new Runnable () {
                public void run () {
                    new TestUI ();
    }This can probably be improved further, but I'm outta here... shall check back later.
    Darryl
    Edited by: Darryl.Burke -- to remove some really stupid redundancies in the code I'd just posted.

  • Disable variants for specific queries or users

    Hi,
    We recently upgraded to NetWeaver 2004s and are now able to create and use multiple variants for variables for queries. Both analyzer and web support this feature. Is is possible to deactivate this option so that specific queries or users are no longer able to see or create these variants?
    With regards,
    Alex

    Is there anyone who can point me in the right direction? Do I have to change a web template or customizing or something else? Please help!

  • Disable upload for specific users only

    Hi,
    I'm wondering if anyone else has found a need or solution to my problem.
    I have a lot of users connecting to a FCS instance, many who should not be able to upload any content, just manipulate or otherwise interact with existing content. I've found that I can simply forbid access to all devices for a particular permission set, but that still allows users to "try" to upload, and is confusing. Further, it seems to hinder the duplicate functionality, which is desired in this use case.
    Any thoughts? I'm running clean out of ideas here!
    Thanks,
    - James Heliker
    [email protected]

    John explained through an email to use the "browser" group - which essentially sets a trait permission (upload = forbid) for a specific user/set of users. However, this does not seem to change anything, as far as being able to upload a file.
    I can't use the actual browser group as I have many other requirements also, but setting this trait permission on my existing groups does absolutely nothing as far as I can tell. Has anyone else dealt with this issue directly?
    Thanks!
    - James Heliker
    [email protected]

  • Disable automapping for specific users

    Hello All,
    I have a DL which contains the users list and i have to remove automapping feature for them.
    we have more than 3 sharedmailbox and 50+ users per sharedmailbox to disable this feature so i can't do it manually.
    Can someone please help me with the powershell script which gets input from text file which contains username? Thanks in Advance
    Regards,
    Mac

    Thanks Amit. Now i ran the whole script and getting the same error.
    User or group "Userlogonname
                   " wasn't found. Please make sure you've typed it
    correctly.
        + CategoryInfo          : InvalidData: (:) [Add-MailboxPermission],
    ManagementObjectNotFoundException
        + FullyQualifiedErrorId : FAC24C45,Microsoft.Exchange.Management.RecipientTasks.AddMailboxPermission
    I'm very sure my sharedmailbox name is correct and as well the logon name in text file because when i ran the below script manually it get successful.
     Add-MailboxPermission "India Mail" -User macman -AccessRights:FullAccess -AutoMapping $false

  • Is there ANY way to disable internet for specific wired MACs?

    I have been looking for a way to restrict specific MAC addresses from routing to the internet with my AEBS. The Access tab is labeled that it allows internet access for only the MACs in the list which is incorrect, it restricts connections to the AEBS entirely (not just to the internet).

    That is correct - Access Control cannot be used to limit wireless clients from accessing just the internet. Access Control also has no influence at all on restricting access by wired clients - it only influences connections by wireless clients.
    I assume the purpose of this is to find a way for a parent to limit internet access from one of their child's computers? If so, you should instead use software on the Mac itself, like the MacOS 10.4 "parental controls" feature.

  • How do i disable orientations for a specific view in my tab bar project without disabling for the other views?

    How do i disable orientations for a specific view in my tab bar project without disabling for the other views?
    Any suggestions?

    Note that you can also hide the tab bar completely with code in the userChrome.css file.
    Add code to the <b>userChrome.css</b> file below the default @namespace line.
    *http://kb.mozillazine.org/userChrome.css
    <pre><nowiki>@namespace url("http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul"); /* only needed once */
    #TabsToolbar { display: none !important; }
    </nowiki></pre>
    The customization files userChrome.css (user interface) and userContent.css (websites) are located in the <b>chrome</b> folder in the Firefox profile folder.
    *http://kb.mozillazine.org/Editing_configuration

  • Disable Websense scanning for specific src networks

    Hi all,
    I have an installation of Forefront TMG 2010 with Websense Web Filter Plug-In. The task I am supposed to do is to disable redirecting requests to Websense for specific source networks. It is impossible to do it from Websense Server, due to license limitations.
    I know there's a way to ignore some source users from isa_ignore.txt but I should filter this basing on source IP addresses. Please help me solving this issue.
    Kind Regards,

    Hi,
    You could try to create a network for these IP addresses and create a account for this network. Then add this account into isa_ignore.txt.( I haven't tested it)
    Best Regards,
    Joyce
    We
    are trying to better understand customer views on social support experience, so your participation in this
    interview project would be greatly appreciated if you have time.
    Thanks for helping make community forums a great place.

  • Disable disk sleep for specific drive?

    My Mac Pro is running 24/7 with sleep enabled.
    Hard disks are set to sleep, when possible. One of my SSDs is on an internal PCIe card. With disk sleep enabled, it does not come up quickly enough and the computer keeps thinking, it was ejected. The problem goes away, when disabling disk sleep.
    No sleep is no problem with SSDs, but there are some spinning 4TB disks on the system only used infrequently, so I would like to let them sleep.
    Is there a way to disable sleep for a specific disk only?
    -- Harald

    Hi BahaSs,
    It generally is safe to "Enable write caching on disk" unless you are dealing with broken applications which are not using
    FILE_FLAG_WRITE_THROUGH but need every write to be persistent. Disabling this would not hurt too much.  It's really not recommend "Enable advanced performance" or
    "Turn off Windows write-cache buffer flushing on the device" on a system where you value uptime or require data integrity.
    Best Regards,
    Elaine
    Please remember to mark the replies as answers if they help and unmark them if they provide no help. If you have feedback for TechNet Subscriber Support, contact [email protected]

Maybe you are looking for

  • Excel File

    Hi All, My source system is SAP, from SAP I have to retrieve data and send to XML file to the specified directory. Please let me know, how to send XML file to the specified directory. Regards Naveen

  • Reinstall premiere elements 10 on a new hard drive

    I had to replace my harddrive and want to reinstall premiere elements 10. It is registered and I have the serial number, but don't know what web page to get the download

  • Accessing folders/events that were in iPhoto After Upgrade to Photos for Mac

    I had 82 events/albums in iPhoto. What is the best process to access these folders on all my OS devices in Photos for Mac?

  • Unable to connect to Oracle8i

    Hi all, I am having some real difficulty in connecting a Win98 client running oci-jdbc driver to a Oracle 8i server. Here is my environment: Client machine config Win98 jdk 1.2.2 ocijdbc8.dll in c:\oracle\ora81\lib classes12.zip in c:\oracle\ora81\jd

  • What is Formula for 'BS' Method of Extended Safety Stock Planning ?

    Hello SNP Experts, I have a Important Question regarding Extended Safety Stock Planning Calculation in SNP Module. I have read the SCM Help, SDN Forums and SNP Training Course help, but am unable to find the Formula to Calculate Safety Stocks using t