Event.rc and Restriction of inputs from the User...

Im using Adobe Professional Live cycle designer 7.0 to design pdf form. Also, Im using an existing pdf (supplied by the customer), which is designed through teleform designer (with adobe 6.0) model for this design. In the existing one, the javascript methods are working fine for restricting keys, validation, etc. But these scripts are not working in designer as the designer is using XFA model.
Im trying to restrict the key inputs (like only numbers/characters should be entered). But I couldnt find the equivalent statements for some of the statements (which are used in the teleform pdf).
For eg.
event.rc = true. Allows keystroke to be added to entry. event.rc = false. Prevents keystroke being added to entry in the following function:
function TFTemplate_KeyStroke( mask )
if (event.willCommit) {
return;
var value = AFMergeChange( event );
if (!mask.test( value )) {
event.rc = false;
app.beep( 0 );
But I couldnt find the matching statements in Designer for event.willCommit, AFMergeChange(),event.rc, etc.
If I get, I can restrict the inputs.
Expecting any solutions from you...
Thanks in Advance...

Hi,
Based on your description, I understand that you want to use application or some functional tools and then
monitor the user printer job. When be greater than a certain number, it will need to acquire additional information. As I know, it seems that there is no such function can meet your requirement. Sorry for it.
In addition, I find that you use a third-party software for this functionality before. Please check and confirm
if you can get a new version (or some updates, service package) that may help it to be supported in Windows Server 2012.
Hope this helps.
Best regards,
Justin Gu

Similar Messages

  • How do i get input from the user?

    For example if i wanted to ask "Whats your favorite number" and then get the input from the user and assign it to a variable how would i go about doing that?

    hi,
    if you want to get input from your console your should work with io(input and output).The BufferedReader class, InputStreamReader class
    you should import "java.io.BufferedReader" and "java.io.InputStreamReader" package, and do something like this:
    BufferedReader input = new BufferedReader(new InputStreamReader(System.in));
    String favoriteNumber;
    System.out.println("Whats your favorite number ");
    favoriteNumber = input.readLine();
    System.out.println ("Your favorite Number Is " + favoriteNumber);
    if its a gui you should import "javax.swing.JOptionPane" and do the following
    String favoriteNumber = JOptionPane.showInputDialog(null, "Enter your favorite Number", "Favorite Number", JOptionPane.INFORMATION_MESSAGE);
    anjiie([email protected]).

  • How to execute BAPIs by getting the input from the user through the browser

    Hi,
    I have created a simple xMII transaction using BAPI. It is a simple BAPI with one input. Now i want the transaction to be executed by getting the input from the user through browser. Once the user enters the value and clicks on a button, I want the result of the BAPI to be displayed in the grid. How to link the BAPI/transaction with applet/Javascript coding.
    Thanks.

    The first thing I would recommend would be for you to collaborate with your colleague Vinodh, since his/her recent thread is very similar to yours:  Calling a BAPI from web page
    In your case, the iGrid applet will run the Xacue query template and automatically display the results from your output parameter.
    I would encourage you to take a look at the sticky thread at the top of the forum entitled "MII Manufacturing Templates Updated" since this MII project is full of samples for you and your colleague to learn from.

  • How can i set the "Keep the following number of major versions" to a limit suppose 20 and then disable it from the users so that they cannot change the value?

    I want to set the value of "Keep the following number of major versions" in the versiong settings of a documnet library to a limit say 20 and then disable the option from the users so that they cannot them. Is it possible thorugh some custom coding?

    Hi Moumita10,
    Just curious about that how the custom CSS code works in your environment if put it in the “LstSetng.aspx” page.
    In my environment, it hides the "Keep the following number of major versions" setting in the “LstSetng.aspx”
    page after applying the custom CSS style there.
    Thanks
    TechNet Community Support
    Please remember to mark the replies as answers if they help, and unmark the answers if they provide no help. If you have feedback for TechNet Support, contact
    [email protected]

  • Multiple inputs from a user using the same variable !

    Hi Folks,
    I am trying out the following code block,which should ask the users to enter 3 different names using '&' operator & assign it to a variable v_ename every time the loop executes.
    declare
    type ename_table_type is table of
    emp.ename%type
    index by binary_integer
    ename_table ename_table_type
    begin
    for i in 1..3 loop
    ename_table( i ):= '&v_ename';
    dbms_output.put_line(ename_table(i));
    end loop;
    end
    The above code accepts a single input from the user & assigns the same input 3 times to "ename_table".thus the output shows the same name 3 times.
    Is it possible that we can have the user input 3 different names & then print them using the concept of Index by binary_integer ?
    Please help
    Thanks
    Om

    Server side PL/SQL is NOT designed for this kind of user interaction.
    the "&" character is intrepreted by the SQL*Plus application and before the PL/SQL block is submitted to the DB by the SQL*Plus application, it replaces each appearance of the &variable with the value entered. Once the block gets to the database, all it sees is a constant value - no more a variable name.
    &variable_name is a SQL*Plus application thing, not the database.
    Where will this type of logic will be eventually used? What client application will interact with the server side PL/SQL? You need to code this input logic in that client application.

  • Accepting Imut from the user keyboard

    Is this the only way of accepting an input from the user via a keyboard or is there an easier way ?
    Thanks.
    import java.io.*;
    public class Greetings
    public static void main(String[] argv) throws IOException
    // Keyboard Input
    BufferedReader b = new BufferedReader(new InputStreamReader(System.in));
    // Declare Variables
         String UserName;
    // Accept User Name
         System.out.println("What is your Name?");
    UserName = b.readLine();
    }

    Personally I always use the gui counterpart JOptionPane.showInputDialog()

  • Can anyone explain to me why sometimes my ipad2 locks up and won't respond to any input from the keyboard.

    My iPad 2 locks up sometimes and won't respond to any input from the keyboard. Have to reboot in order to fix the problem.

    You have 3 choices:
    1. Do a reset (Hold Sleep/Wake and Home buttons about 10 secs or more till Apple logo appears, ignore the Slide to Power Off that appears)
    Note: You will not lose any data.
    2. Restore from backup using iTunes
    3. Restore as new without the backup

  • Add a actionlistener to JTextArea and print out string when  the user input

    Hello:
    I got a problem to add a actionlistener to JTextArea and print out string which from the user input a sentence and after the user press the "enter".
    Could anyone help me please?
    Thanks
    import java.awt.event.*;
    import java.awt.*;
    import javax.swing.*;
    import javax.swing.JScrollBar;
    public class PanelDemo extends JFrame {
       private static JTextArea tAreaUp, tAreaDown;
       private BorderLayout layout;
       private static String strings;
       public PanelDemo()
          super( " test " );
          Container container = getContentPane();
          layout = new BorderLayout();
          container.setLayout( layout );
          tAreaUp = new JTextArea(2,1);
          tAreaUp.setLineWrap(true);
          tAreaUp.setWrapStyleWord(true);
          tAreaUp.setEditable(false);
          tAreaUp.append("I am testing ");
          tAreaUp.append("I am testing");
           JScrollPane scrollPane = new JScrollPane(tAreaUp);
           scrollPane.setVerticalScrollBarPolicy(
                            JScrollPane.VERTICAL_SCROLLBAR_ALWAYS);
           scrollPane.setPreferredSize(new Dimension(250, 250));
          tAreaDown =new JTextArea(2,1);
          tAreaDown.setLineWrap(true);
          tAreaDown.setWrapStyleWord(true);
          tAreaDown.addActionListener(new TextAreaHandler());
          JScrollPane scrollPane2 = new JScrollPane(tAreaDown);
          scrollPane2.setVerticalScrollBarPolicy(
                            JScrollPane.VERTICAL_SCROLLBAR_ALWAYS);
          container.add( scrollPane, layout.CENTER );
          container.add( scrollPane2, layout.SOUTH );
          setSize( 300, 300 );
          setVisible( true );
         //private inner class for event handling
         private class TextAreaHandler implements ActionListener{
              //process textArea events
            public void actionPerformed(ActionEvent e){
               strings=e.getActionCommand();
                System.out.println(strings);
       public static void main( String args[] )
          PanelDemo application = new PanelDemo();
          application.setDefaultCloseOperation( JFrame.EXIT_ON_CLOSE );
    }

    Thanks for your help, but I still got a question for you.
    Do you think the way I register the even handler to the TextArea is correct?
    Because the compailer complains about that which like
    "D:\101\fig13_27\PanelDemo.java:43: cannot resolve symbol
    symbol  : method addActionListener (PanelDemo.TextAreaHandler)
    location: class javax.swing.JTextArea
          tAreaDown.addActionListener(new TextAreaHandler());

  • How to take Input from the callers telephone keypad into oracle database

    My client requires to automate a registration task for his customers by telephone. The requirement is the Oracle database should take numeric input from the callers telephone keypad eg 1 or 2 or 3 and the oracle must store this input inside its database and do some required processing with such input and generate a unique numeric id (sequence) and send back this unique numeric ID to the caller who is on hold. Please Note. Is there any electronic device to be installed at the client site to solve the above task eg. any telephone line to be connected to the CPU and etc?
    I completely have zero knowledge. Please can you outline/summarise the instructions how to construct and install to meet my client requirement.
    If this is not possible in Oracle I Can migrate to any database. Please suggest.
    please help me. if you cant help i appretiate if you give me some clues

    You need to start with your telephone system. Normally this situation would involve some sort of PBX or other internal switching equipment. Talk to your vendor. There's likely to be software, etc. available to perform the interaction with the end user.
    It should have programmable "hooks" to interface with various databases. To Oracle it just looks like another program.
    Ken

  • HOW CAN I DELETE AN EVENT WITHOUT  HAVING TO SELECTING IT FROM THE LIBRARY?

    I have a big problem.
    I want to delete an entire event from my library because everytime I select it imovie freezes and then close itself up. So I have to re-open imovie again. And when I want to select that particular event again the same problem occures. So I can not select that particular event. Therefore I can take NO action on this event.
    HOW CAN I DELETE AN EVENT WITHOUT HAVING TO SELECTING IT FROM THE LIBRARY?
    (Everytime I select it imovie closes itself up)
    All other events work fine. I believe The footage had a problem from capturing. but now it's in my computer and i can't open it.
    Please help me, I don't need this event, I can't open it therefore I can't use it and it takes place on my hardrive for nothing.
    Thank you

    One can delete it from one's computer. In the finder go to homeuser, movies, imovie events, delete the footage.
    Then reopen iMovie and see if that helps.
    Hugh

  • Inputting from the keyboard

    hi everyone, can anyone help me on how to read what the user inputs from the keyboard when running a program in command-line(ms-dos prompt)interface.Does it have something to do with System.in any help would be appreciated.
    (Example)
    System.out.println("Please enter your name ");
    String name = //capture the name in string
    System.out.println("Enter your choice");
    int choice = //capture what the choice is
    System.out.println("your choice is "+ choice);
    }

    Modified version of example code in working test file.
    import java.io.BufferedReader;
    import java.io.InputStreamReader;
    import java.io.IOException;
    //Class
    public class KeyBoardInput
      //data members declared static
      static BufferedReader buff = new BufferedReader(
      new InputStreamReader ( System.in) );
      static String buffin; 
      //main method
      public static void main ( String[] args )
        int test = readInt("enter a number");
        System.out.println("you have entered " + test );
      //reads strings and converts to integers
      public static int readInt( String prompt )
            try
         System.out.println(prompt);
            buffin = buff.readLine();
            buff.close();
         catch (IOException IoE) {}
            return Integer.parseInt ( buffin );
      //needs work
      public static String readString( String prompt )
         //?? need to work on this one
    }

  • Is it possible to have 5.1 S/PDIF input from the pins of Audigy 2 ZS SB0350?

    LIs it possible to have 5. S/PDIF input from the pins of Audigy 2 ZS SB0350? Hello,
    I took this sound card (Audigy 2 ZS SB0350) yesterday from a friend, just to test whether it can do what I intend to use it for. It is only the card itself without the front panel (the I/O Dri've Bay) and I want to connect a satellite receiver's S/PDIF output to the sound card input in order to experience a 5. sound, which my satellite receiver supports. Since it turned out that this sound card has no digital inputs but on the front panel (the I/O Dri've Bay), I started wondering whether I can connect the coaxial digital out of the satellite receiver directly to some of the pins of the Audigy 2 ZS, and in case I can do that, will I have the desired 5. sound on the analogue outputs of the sound card or just stereo?
    If this is impossible, can you confirm that if I buy Audigy 2 Platinum (with I/O Dri've front panel) I can have the desired effect (no matter if the output of the satellite receiver is coaxial or optical)?
    Thank you for your answer
    Best regards,
    Zdravko

    Install disks for specific systems do not boot a different system.  Sometimes if the two computers are from the same year and are the same type and the same build number, maybe.

  • How to create a program that accepts 5 digits from the user between 0 and 9

    how to create a program that accepts 5 digits from the user between 0 and 9 then put them in ascending order using link-list method..

    You can use a scanner to get user input from the command line.
    import java.util.*;
    public class Test {
        private List<Integer> list;
        private Scanner in;
        public static void main (String... args) {
            new Test ();
        public Test () {
            list = new LinkedList<Integer> ();
            in = new Scanner (System.in);
            for (int i = 0; i < 5; i ++) {
                System.out.format ("Please enter a number (%d more): ", (5 - i));
                list.add (in.nextInt ());
            Collections.sort(list, new Comparator<Integer> () {
                public int compare (Integer i1, Integer i2) {
                    return i2 - i1;
            System.out.println (list);
    }

  • Selecting Inputs From The Firebox In Logic

    Good morning all!
    I'm a new convert from Garageband to Logic Pro 8 as I can imagine many people here are too.
    My quick question involves the Prosonus Firebox. In Garageband when I started a new 'real instrument' track, I had the option (located in the bottom right of the screen) to choose what input from the Firebox I wanted to record from. Mono 1, Mono 2, Stereo 1/2, Stereo 3/4, etc.
    Where can I make that choice for input from the Firebox in Logic 8?
    Talk soon and thanks everyone!

    Channel strips for audio tracks have input and output boxes where you can choose where they take their input and where they send their output.
    The input and output settings are above the fader, and below the plugin insert slots on each channel strip.
    By default, the output is probably set to "Output 1&2" (your main stereo output) and above that is the input, which you can choose any single input from your audio interface (for mono channel strips) or pair of inputs (for stereo channel strips).
    Have a read through of the manual about channel strips if you're not sure of how to do this.
    Welcome to Logic!

  • I think the DVD player reader on my Mac is going bad. Is there a way to copy the files off of an Apple Install DVD onto an external drive and then do theinstall from the external drive?

    I think the DVD player reader on my Mac is going bad. Until I get it fixed Is there a way to copy the files off of an Apple Install DVD onto an external drive and then do theinstall from the external drive? It's ILife 11 if that makes a difference. Finder won't let me see the files to copy. I know - dumb question.
    Thanks.
    Bob

    Adding an SSD is not a simple endeavour like adding additional memory or adding another hard drive to a Mac Pro. That's probably why the option is only offered as an option at the time of purchase. Even if your Apple store was willing to install the necessary parts you will probably be paying for 1-2 hours of labor plus the cost of purchasing the necessary service parts (SSD, bracket, cables, etc) which I suspect will make the upgrade cost much higher than what it costs to add the SSD option when purchasing a new system.
    I use my system for business and need it to work reliably.  Even though I'm fairly handy with tools I would not be willing to risk damaging my system and voiding my warranty by opening my system and removing the logic board and several other parts in order to squeeze in an SSD option and attach the appropriate cables and brackets. I'm also not prepared to deal with the hassles of explaining why my system has unauthorized parts installed in the event I experience issues and need to make use of my Apple warranty. My time is valuable, so I would probably investigate external storage options, or if I needed the speed of an SSD, I would consider selling my existing system and then purchase a new system configured with an SSD.
    If you haven't already done so I suggest doing a search on 'iMac SSD installation' to see what's involved. It might help you understand why the SSD option is not offered post purchase.

Maybe you are looking for

  • EXCISE GROUP H1 NOT RELEVENT FOR PLANTS IN PURCHAGE ORDER

    Dear All, While creating vendor excise invoice by Tcode: J1IEX it is throwing error AS MENTIONED BELOW, EXCISE GROUP H1 NOT RELEVENT FOR PLANTS IN PURCHAGE ORDER Kindly help in this matter. Regards AJIT K SINGH

  • Nested AGO function in OBIEE

    Hi , I am not able to understand the reason behind using Nested AGO functions. In one of the logical columns (Sales LastYear LastWeek) the mapping was in the following fashion: Ago(Ago("Core"."Fact - Retail Inventory Receipts"."Receipts Retail" , "Co

  • Adobe Acrobat Pro X Forms Error

    I have created a form using Lifecyle Designer ES2. After I save the form as Reader Extended PDF enabling addition features, I open the form with Reader 9 or Acrobat Pro X and get a message "This operation is not permitted". After clicking "OK" server

  • Bizarre permissions issue: Can't write to owned folders

    Has anyone experienced this and possibly has a fix ? I used Carbon Copy Cloner to duplicate a drive, and everything seems to be OK with the new drive (all the files are there and read properly), except I cannot write to any of the drive's subdirector

  • Garnishment Deduction Frequency

    Hi all, Is there anyway to set up a garnishment deduction to only be taken the 2nd pay of every month?  I tried setting the wage type up with a deduction frequency of only the 2nd pay, but the garnishment processing in the schema doesn't look at this