QS social security number field.

Working more generally on the end of the design/layout of Adobe products, mainly with Photoshop and InDesign... But my boss decided I have to redo all our old forms of their redesign in Adobe LiveCycle 7.1.  I have a field where the end user will be required to enter a social security number.  Our users are... not tech savvy, to say the least, and because the old forms already have dashes that go between the numbers (999-99-9999) until the user clicks in the field, they stay like that on new forms that I've created.

In the 'Value' tab, in the 'Object' palette, I am able to enter a value by default, but when I preview the form and the attempt to enter data, the default text (spaces and dashes) don't go away.  Is there a way to make this work without scripting?  I don't know anything about scripts, so I don't know the first place to start trying to write a.  If the script is the only way, someone at - it a script, you can post for me, or a URL I can go to, to read on HOW to do it?

Any help is greatly appreciated.  Thanks in advance!

~ Nicholaii

not enough-, but it works.  Text overlays dashes during automatic formatting

added the reset

Tags: Adobe LiveCycle

Similar Questions

  • AppStore will be asked for credit card and social security number

    Woman received email asking for verification of the purchase. We did not make a new purchase. Connected to answer and were invited to CR. card number AND social security number. I stepped back at that time. Apple do that?

    This is a phishing attempt. Do not respond. Shall not disclose any personal or financial information. You can use the address below to send the suspicious message to Apple. [email protected]

    The link below has information to identify fraudulent emails.

    http://support.Apple.com/kb/HT4933

  • Why Firefox remember social security numbers?

    I don't think it's normal, so I'm not sure if it's the fault of Firefox or failure of the Web site. I was just something on Paypal.com and when it came time to fill out my social security number, he had 'suggestions' pop-up in the fields with my SSN it call back before. Things like SS # and credit card, numbers not remember like that because it's a security important question for if someone else uses my computer.

    I don't want to disable fields remember entirely because this feature is useful for me. Names, addresses, phone numbers, emails, are going well to be auto-rempli, but not something extremely sensitive as SS #.

    Again, sorry if it's lack of Paypal. I will contact them instead if it is.

    Thank you for any information you can provide.

    Firefox has a built-in algorithm to check for credit card numbers (Luhn), but not for other privacy sensitive numbers.

  • Need help with date + put social security in shape in PDF format...

    HI -.

    I m working on a form that must be filled from the internet...

    The design I made I have InDesign - and the formfields I did I have Acrobat Pro.
    and finally I m setting everything in LiveCycle...

    I met two problems...

    I need the date field to correct himself--if the choice of the user to use the wrong format...

    for example -.

    We want to have AAAA-MM-JJ
    and if the user writes JJ MM AA-
    It must be accepted and corrected...

    Also - in Sweden in any case always write us the number of social security in this way
    YYMMDD-NNNN (N = number between 0 and 9)

    How can I get the requgnize field and 'demand' this format...

    I´ll hope my Swinglish can be understandable?

    Idespiran

    Perhaps the LC can detect the AcroForm fields and convert them into fields of LC, but you may lose some things like formatting, validation, calculation, etc.

    Is that the two are not compatible. I find easier to handle, Acrobat forms personally, but you might disagree.

    If you decide to use the LC forms, then you should post your question in the forum Live Cycle Designer.

  • Calculate social security contributions

    Hello

    This question is only out of curiosity.
    I have a sum of money to be paid to a customer for a certain period.
    Of this amount, I have to subtract the social security contributions. The percentage may change during the period of one month.
    CREATE TABLE annuity(
     customer_id NUMBER
    ,amount NUMBER
    ,due_date DATE
    ,method_of_payment INTEGER
    );
    -- method_of_payment means the payment interval, e.g. 3 is quaterly
    CREATE TABLE ssc(
     date_from DATE
    ,date_to DATE
    ,percentage NUMBER
    );
    
    INSERT INTO annuity (customer_id ,amount ,due_date ,method_of_payment)
        VALUES(1,1000,DATE '2012-01-01',3);
    INSERT INTO annuity (customer_id ,amount ,due_date ,method_of_payment)
        VALUES(2,2000,DATE '2012-01-01',1);
    INSERT INTO annuity (customer_id ,amount ,due_date ,method_of_payment)
        VALUES(3,3000,DATE '2012-01-01',6);
    
    INSERT INTO ssc (date_from ,date_to ,percentage)
        VALUES (DATE '2011-12-01',DATE '2012-01-31',10);
    INSERT INTO ssc (date_from ,date_to ,percentage)
        VALUES (DATE '2012-02-01',DATE '2012-05-31',20);
    INSERT INTO ssc (date_from ,date_to ,percentage)
        VALUES (DATE '2012-06-01',NULL,30);
    
    SELECT * FROM annuity;
    SELECT * FROM ssc;
    
    CUSTOMER_ID AMOUNT DUE_DATE   METHOD_OF_PAYMENT
    ----------- ------ ---------- -----------------
    1           1000   01.01.2012 3
    2           2000   01.01.2012 1
    3           3000   01.01.2012 6
    
    DATE_FROM  DATE_TO    PERCENTAGE
    ---------- ---------- ----------
    01.12.2011 31.01.2012 10
    01.02.2012 31.05.2012 20
    01.06.2012            30
    So far, I do the following:
    I generate each month interval end_date and payment
    I can not use CONNECT BY LEVEL < = method_of_payment, because I want to calculate for more then a single customer.
    The method with CAST (MULTISET... part of my box, which is filled with snippets of the Web ;-)

    Eventually I reach the ssc of table for each month and summarize again.
    WITH annuity_each_month AS (
        SELECT  customer_id
               ,due_date
               ,amount / method_of_payment amount_per_month
               ,ADD_MONTHS(
                     due_date
                    ,(ROW_NUMBER() OVER (PARTITION BY customer_id,due_date ORDER BY NULL)-1)
                    ) AS generated_date
        FROM    annuity
               ,TABLE(
                    CAST(
                        MULTISET(SELECT NULL FROM dual CONNECT BY ROWNUM <= method_of_payment)
                        AS sys.dbms_debug_vc2coll
                        )
                    ) t
         )
    SELECT  ROUND(SUM(aem.amount_per_month * ssc.percentage / 100),2) ssc_payment
           ,aem.customer_id
           ,aem.due_date
    FROM    annuity_each_month aem
            JOIN ssc
              ON (   ssc.date_from <= aem.generated_date
                 AND (  ssc.date_to > aem.generated_date
                     OR ssc.date_to IS NULL
                     )
                 )
    GROUP BY aem.customer_id
            ,aem.due_date;
    
    SSC_PAYMENT CUSTOMER_ID DUE_DATE                  
    ----------- ----------- ----------
    200         2           01.01.2012                
    600         3           01.01.2012                
    166.67      1           01.01.2012  
    Does anyone know the other simple, elegant and efficient for calculating social security contributions?

    Concerning
    Marcus

    Hello

    Here's one way:

    SELECT       a.customer_id
    ,       SUM ( a.amount
               * ssc.percentage
               * .01
               * MONTHS_BETWEEN ( LEAST    ( ADD_MONTHS ( a.due_date, a.method_of_payment)
                                             , NVL (ssc.date_to, DATE '9998-12-31') + 1
                               )
                                , GREATEST ( a.due_date
                                       , ssc.date_from
                               )
                          )
               / a.method_of_payment
               )          AS ssc_payment
    FROM       annuity  a
    JOIN       ssc          ON   a.due_date          <= NVL (ssc.date_to, DATE '9999-12-31')
                     and  ADD_MONTHS ( a.due_date
                                  , a.method_of_payment
                             ) - 1     > ssc.date_from
    GROUP BY  a.customer_id
    ORDER BY  a.customer_id
    ;
    

    Basically, this approach:
    (a) between each line of annuity with each row overlapping of ssc
    (b) estimated the number of months for this combination
    (c) number of (b) is used in the calculation of the ssc_payment for this period
    (d) all periods for the same customer totals.

    This requires that everything works in units of 1 month; for example, a.due_date and ssc.date_from are still the first few months, and ssc.date_to is always at the end of a few months (or NULL). This approach can be adapted to work with everyday, or even fractions of a day.

    Published by: Frank Kulash, may 2, 2012 08:20

    Marwim wrote:
    ... I can not use CONNECT BY LEVEL<= method_of_payment,="" because="" i="" want="" to="" calculate="" it="" for="" more="" then="" one="">

    You can use CONNECT BY if you want. When you use 'LEVEL '.<= x"="" as="" the="" only="" connect="" by="" condition,="" you="" usually="" want="" to="" use="" a="" table="" with="" only="" 1="" row.="" you="" could="" then="" join="" the="" results="" to="" the="" annuity="" table,="" with="" "lvl=""><= method_of_payment"="" as="" the="" join="">

  • Security number of Linksys WRT300N?

    Due to problems with my wifi, I had to reset my router and the modem. I need to reinstall my settings now, and that's why I need to write a security number. That should be written on the back of my router (model WRT300N), a bar code with 8 numbers. I can't find this code. Where I can find it or is there another way to reinstall my connection and put a password on it? It is now open access. Thanks in advance for your support. (I don't have the manual or box more, so this is not an option).

    No need to use the on the router 8 digit PIN because not all devices do not ask for it. What you can do, is the security of the network by going to its page configuration and installation of security from there. For detailed instructions, you can visit this link: set-up of WEP, WPA or WPA2 Personal security on a Linksys wireless router wireless. For security strengthened, I suggest that use you WPA2 Personal.

  • NG Date and number fields internationalization

    We develop forms PDF for a format of number of spectators in Switzerland (Swiss) German is 99 999,99 ' and JJ.mm.aaaa.

    How do we set the format required for number fields and date?

    That's why there is the option 'Custom' for the 'number' and 'Date' format of the options. You may need to convert the field values for the numbers to use the "." decimal point.

  • How to force the numeric keypad on a number field element?

    Hi, I received a form on the Apex, and I have a 'number field' field type, but when I n my mobile (android) I click the field to enter data, I get a normal keyboard, not the numeric keypad.

    I use a mobile model of jquery on apex 4.2

    Thanks in advance.

    Declarative options 4.2 not quite there yet

    -Plugin - point HTML5 entry point

  • I bought 13 items at Amazon. Where can I find the security number?

    Security number of the installation. ?

    The serial number would be normally located on the disc case (toquickly find your serial number), but you might be dealing with a scenario of redemption code.  Redemption code help

  • try to fill in a number field with the help of a drop-down list box control and a text box

    That's what I work with so far.  The lines of code are quite simple, but (as I expand this to its full size of accounting for all combinations of variables) the result field seems suffocating and will not auto-update to change the variables in the form. Var v comes from a drop down menu, var n is a numeric field.

    var v = this.getField("TextOptions").value;

    var n = this.getField("Number").value;

    If (v == "TextOptionA") if (n == '1') event.value = "2";

    else if (v == "TextOptionA") if (n == '2') event.value = "3";

    else if (v == "TextOptionA") if (n == '3') event.value = "3";

    else if (v == "TextOptionA") if (n == '4') event.value = "4";

    else if (v == "TextOptionA") if (n == '5') event.value = "4";

    else if (v == "TextOptionB") if (n == '1') event.value = "0";

    else if (v == "TextOptionB") if (n == '2') event.value = "0";

    else if (v == "TextOptionB") if (n == '3') event.value = "1";

    else if (v == "TextOptionB") if (n == '4') event.value = "1";

    else if (v == "TextOptionB") if (n == '5') event.value = "1";

    else if (v == "TextOptionC") if (n == '1') event.value = "2";

    else if (v == "TextOptionC") if (n == '2') event.value = "3";

    else if (v == "TextOptionC") if (n == '3') event.value = "3";

    else if (v == "TextOptionC") if (n == '4') event.value = "4";

    else if (v == "TextOptionC") if (n == '5') event.value = "4";

    else event.value = "";

    In addition, TextOptionA, C, E, G and I will produce the event.value even, given the same variable n.  The same is true with TextOptionB, D, F and H.  Is it possible to compress the "TextOptionX" s that will produce the same event.value gave a value of n in one line?  Something along these lines (I know its bad, but it's the idea):

    var v = this.getField("TextOptions").value;

    var n = this.getField("Number").value;

    If (v == 'TextOptionA' or 'TextOptionC') if (n == '1') event.value = "2";

    else if (v == 'TextOptionA' or 'TextOptionC' or 'TextOptionE') if (n == '2') event.value = "3";

    else if (v == 'TextOptionA' or 'TextOptionC' or 'TextOptionE') if (n == '3') event.value = "3";

    else if (v == 'TextOptionA' or 'TextOptionC' or 'TextOptionE') if (n == '4') event.value = "4";

    else if (v == 'TextOptionA' or 'TextOptionC' or 'TextOptionE') if (n == '5') event.value = "4";

    else if (v == 'TextOptionB' or 'TextOptionD' or 'TextOptionF') if (n == '1') event.value = "0";

    else if (v == 'TextOptionB' or 'TextOptionD' or 'TextOptionF') if (n == '2') event.value = "0";

    else if (v == 'TextOptionB' or 'TextOptionD' or 'TextOptionF') if (n == '3') event.value = "1";

    else if (v == 'TextOptionB' or 'TextOptionD' or 'TextOptionF') if (n == '4') event.value = "1";

    else if (v == 'TextOptionB' or 'TextOptionD' or 'TextOptionF') if (n == '5') event.value = "1";

    else event.value = "";

    Something like that could be reduced to about 40 220 + lines of code.  Please help us on a mannequin of javascript.

    For the first part of the code, the problem might be that the value of the 'Number' field is a number, not a string (that you assume in your code).

    To solve that you can access the field valueAsString instead of the value property property.

    For the second part of the operator OR in JS code is ' | ', would therefore be the first if condition:

    If (v == "TextOptionA" | v == "TextOptionC")

    Note that the comparison of v must appear in both parts of the if statement, in its entirety.

  • ADF 11 g - how to make the number field to right align InputText

    Hello

    I work with ADF 11 g with Trinidad. I have a (jspx) page with editable table (Table of Trinidad) with text and the number of columns.
    Currently, all values are aligned to the left, but I want to number fields to align to the right.
    For example, employee name inputText should align to the left, and the salary should align to the right.

    The application has a skin with CSS.

    . CSS
    / * This will make all the inputText align right * /.

    AF | inputText::content {rule - tr - ref: selector(".)} AFFieldNumber")}

    / * This will make all the inputText align left * /.
    AF | inputText::content {rule - tr - ref: selector(".)} AFFieldText")}


    . JSPX
    < tr:inputText value = "#{rank." Salary}.
    styleClass = "AFFieldNumberMarker."
    inlineStyle = "text-align: right" >

    How can I make the number field align right? (Yet to keep the column text align left)

    Thank you
    Jim

    Published by: user476620 on December 8, 2011 14:47

    Jim, what is tr:inputText has a contentStyle property?
    If so, you can try toput

    text-align: left;

    in the property ContentStyle of the inputText component.

    Timo

  • Phone number fields

    Hello

    I have my phone set up number fields so that when the user enters a 10-digit phone number, they tab above and it appears as such: (999) 999-9999. I was wondering if there is a script that can be used to allow only the codes 204 and 431.

    Thank you in advance for any help you can give me.

    NikDk

    Form1.Page1.Subform1.telephone::exit - (JavaScript, client)

    validat formats include 1234567890, (123)456-7890 and (123) 456-7890

    var regex = / ^-(?) () \d{3})\) ? [- ]? ({\d{3}) [- ]? (\d{4})$/;

    var str = this.rawValue;

    If (regex.test (str)) {}

    var areaCode = "";

    Regex = / ^ \d{10}$/;

    If (regex.test (str)) {}

    the format is 1234567890

    codeZone = str.substring (0.3);

    If (ZipCode == '204' | codeZone == "431") {}

    "Str =" ("+ str.substring (0.3) +" "") "" + str.substring (3.6) + '-' + str.substring (6.10);

    this.rawValue = str;

    }

    else {}

    xfa.host.messageBox ("the area code must be either 204 or 431.");

    }

    }

    else {}

    the format is (123)456-7890 or (123) 456-7890

    codeZone = str.substring (1.4);

    If (ZipCode == '204' | codeZone == "431") {}

    this.rawValue = str;

    }

    else {}

    xfa.host.messageBox ("the area code must be either 204 or 431.");

    }

    }

    }

    else {}

    xfa.host.messageBox ("Please enter the 1234567890 format phone number, (123)456-7890 or (123) 456-7890" ");

    }

    Steve
  • Format for number fields mask of

    Hello
    What is the format mask to use for the data number fields to display in the format 999,999.00

    Thank you
    Suresh

    Suresh,

    In the format mask * 9 * if there is no number means he will leave empty, and * 0 * means it will show the number * 0 * if there is no number entered.

    Therefore, set the format mask FM999, 990.00. This will display the * 0 * as * 0.00*

    Kind regards

    Manu.

    If my response or response from another person was helpful, please mark accordingly

  • Window mail / Security number

    I use Windows Mail to my mail house for years without any problem (via Cox).  Without change of setting and unexpectedly, I get security windows pop-up asking username and password (needed never prior) followed by this error message: account: 'House mail', server: 'pop.east.cox.net', Protocol: POP3, server response: '-ERR an authentication mechanism MUST be entered ', Port: 995, secure (SSL): Yes, Server error: 0x800CCC90, error number: 0x800CCC18.   Cannot receive email!  Help!

    Hello

    1. you remember changes to the computer, before the show?

    2. what anti-virus software is installed on your computer?

    Method 1:

    Disable e-mail in your antivirus scanning application.

    Method 2:

    Check out the following link.

    Solve problems with Windows Mail

    http://Windows.Microsoft.com/en-us/Windows-Vista/troubleshoot-problems-with-Windows-Mail

     

    Method 3:

    Check the settings of your email against those entered in Windows Mail.

    Windows Mail: Setting up an account of end-to-end

    http://Windows.Microsoft.com/en-us/Windows-Vista/Windows-mail-setting-up-an-account-from-start-to-finish

    I hope this helps.

  • Contact maximum number fields?

    Hello

    What is the maximum number of Contact fields in the Contacts folder?

    Thank you

    POOJA

    Hi Pooja,

    Maximum number of fields for Contact in Contact documents is 250.

    Try it.

    Hope this has helped.

Maybe you are looking for