Visual Properties of the form act weird

I see the text on the buttons, text box colour are missing when i open a form in 10G-As and it works fine on 9iAS-Release2.
Any ideas??
Thanks for your time

Hi,
to transmit information between iview you need to use nested iview :
http://help.sap.com/saphelp_nw70/helpdata/EN/9c/ffdb4269b2f340e10000000a1550b0/frameset.htm
or :
http://help.sap.com/saphelp_nw70/helpdata/EN/11/00db4269b2f340e10000000a1550b0/frameset.htm
Fabien.

Similar Messages

  • I have an IPhone 4, and I wanted to reset it, but couldn't do it via computer because the "find my IPhone" was turned on. So I went to ICloud Find My IPhone and just erased my phone from there. The was acting weird but I finally got to a black scre

    I have an IPhone 4, and I wanted to reset it, but couldn't do it via computer because the "find my IPhone" was turned on. So I went to ICloud > Find My IPhone and just erased my phone from there. The was acting weird but I finally got to a black screen with the spinning circle. And it won't advance. I can't just hold the sleep button and home button down because my sleep button is broken! Any help? I have reset my phone before.

    Hello cwypyski,
    The link below provides information on and can also assist with setting up service for your iPhone to have your Sleep/Wake button repaired.
    Service Answer Center - iPhone
    http://support.apple.com/kb/index?page=servicefaq&product=iphone
    All my best,
    Allen

  • The form claims to update the record, but isn't.

    Maybe I just need a sanity check, but this has been driving me bonkers.
    This is in a "when-button-pressed" trigger. Everything seems to be fine in the properties of the form fields, and I even get a "FRM-40400" message saying that two records have been updated in the database (since there are two tables attached to this form), but when I go back to the database table, the records have not been populated. There's actually more to this trigger, but since the records aren't being updated, the rest of the trigger can't do its job.
    I'm posting the beginning of the trigger just so someone can sanity check me. The fact that I'm even getting the FRM-400 message that says it's updated is confusing me. Everything looks fine from the debugger standpoint. Is there something in here that looks like it would prevent me from being able to update the database? I've left in everything, not just what I deem to be the "relevant" portions, just because I'm not sure what might throw it off.
    (anything saying 'soft_messages' can be ignored, it is our own internal way of recording alerts and what kind).
    ---------begin code snippet------------------------------
    DECLARE
         subj VARCHAR2(500);
         v_body VARCHAR2(5000);
         Reqtype varchar2(25) := :INVENTORY.Request_type;
         uft UTL_FILE.FILE_TYPE;
         fpath VARCHAR2(100);
         fname VARCHAR2(100);
         i NUMBER;
         ret NUMBER;
         v_db_name varchar2(50);
         v_support_officer varchar2(35);
         v_owner varchar2(35);
         v_wastemp      NUMBER;
         cust_name VARCHAR2(50);
         cust_phone VARCHAR2(50);
         cust_email VARCHAR2(50);
         cust_test VARCHAR2(50);
         al_button Number;
         msg_txt VARCHAR2(1500);
         V_SMTP_Mailer Boolean default False;
         to_whom VARCHAR2(1000);
         Missing_info exception;
         Proc_failed exception;
         v_node number;
         v_id number;
    BEGIN
         -- Changes the email address so that in production, it goes to the contact, in test it doesn't.
         If v_db_name ='PRODUCTION' then     
              if     :INVENTORY.contact_email is not null then
                   to_Whom := to_Whom||';'||:INVENTORY.contact_email||';';
              else
                   to_Whom:= to_Whom||';';
              end if;
         END IF;
         Message('Working........Please wait');
         SET_APPLICATION_PROPERTY(CURSOR_STYLE,'BUSY');
         select op_sys.current_db_name into v_db_name from dual;
         --Check request type before completing the process
         IF :INVENTORY.VENDOR_NO = 632 THEN
              If :INVENTORY.Request_type ='DISCONNECT' then
                   If :INVENTORY.bill_hierarchy is null THEN
                        SET_APPLICATION_PROPERTY(CURSOR_STYLE,'DEFAULT');     
                        soft_messages('E',true,'Please enter Billing Hierarchy before completing the process');
                   Elsif
                   :INVENTORY.auth_code is null THEN
                        SET_APPLICATION_PROPERTY(CURSOR_STYLE,'DEFAULT');     
                        soft_messages('E',true,'Please enter Authorization/Host Code before completing the process');
                   End if;
              ELSIF
              :INVENTORY.Request_type ='START' THEN
                   If :INVENTORY.bill_hierarchy is null THEN
                        SET_APPLICATION_PROPERTY(CURSOR_STYLE,'DEFAULT');     
                        soft_messages('E',true,'Please enter Billing Hierarchy before completing the process');
                   Elsif
                   :CARD.node is null THEN
                        SET_APPLICATION_PROPERTY(CURSOR_STYLE,'DEFAULT');     
                        soft_messages('E',true,'Please enter Node/Card Number before completing the process');
                   Elsif
                   :INVENTORY.auth_code is null THEN
                        SET_APPLICATION_PROPERTY(CURSOR_STYLE,'DEFAULT');     
                        soft_messages('E',true,'Please enter Authorization/Host Code before completing the process');
                   End if;     
              End if;
         ELSIF
         :INVENTORY.VENDOR_NO = 1268 THEN
              If :INVENTORY.Request_type ='DISCONNECT' then
    If :INVENTORY.bill_hierarchy is null THEN
                        SET_APPLICATION_PROPERTY(CURSOR_STYLE,'DEFAULT');     
                        soft_messages('E',true,'Please enter Billing Hierarchy before completing the process');
                   Elsif
                   :CARD.node is null THEN
                        SET_APPLICATION_PROPERTY(CURSOR_STYLE,'DEFAULT');     
                        soft_messages('E',true,'Please enter Card No before completing the process');
                   Elsif
                   :INVENTORY.auth_code is null THEN
                        SET_APPLICATION_PROPERTY(CURSOR_STYLE,'DEFAULT');     
                        soft_messages('E',true,'Please enter Authorization Code before completing the process');
                   End if;     
              ELSIF
              :INVENTORY.Request_type ='START' THEN
                   If :INVENTORY.bill_hierarchy is null THEN
                        SET_APPLICATION_PROPERTY(CURSOR_STYLE,'DEFAULT');     
                        soft_messages('E',true,'Please enter Billing Hierarchy before completing the process');
              Elsif
                   :CARD.node is null THEN
                   SET_APPLICATION_PROPERTY(CURSOR_STYLE,'DEFAULT');     
                             soft_messages('E',true,'Please enter card number before completing the process');
                   elsif
                   :CARD.folder_id is null AND :inventory.vendor_no = 1268 THEN
                        SET_APPLICATION_PROPERTY(CURSOR_STYLE,'DEFAULT');     
                        soft_messages('E',true,'Please enter folder ID before completing the process');
                   elsif
                   :INVENTORY.PAC is null AND :inventory.vendor_no = 1268 THEN
                        SET_APPLICATION_PROPERTY(CURSOR_STYLE,'DEFAULT');     
                        soft_messages('E',true,'Please enter participant access code before completing the process');
                   Elsif
                   :INVENTORY.auth_code is null THEN
                        SET_APPLICATION_PROPERTY(CURSOR_STYLE,'DEFAULT');     
                        soft_messages('E',true,'Please enter Authorization Code before completing the process');
                   End if;     
              End if;
         END IF;
         If :INVENTORY.tsr_no is null THEN
              soft_messages('E',true,'Please enter the TSR number.');
         elsif
         :INVENTORY.csa is null then
              soft_messages('E',true,'Please enter the CSA number.');
         elsif
         :INVENTORY.tsr_no is null and :INVENTORY.csa is null then
              soft_messages('E',true,'Please enter the TSR number and CSA number.');
         end if;
         if :inventory.vendor_no = 632 then
              v_node := :card.cnt_card;
              v_id := :card.cnt_id;          
              if v_node > 1 then
                   soft_messages('E',true, 'Only one node/account # is required for request, Please correct to continue');
              end if;
         end if;
         if :inventory.vendor_no = 1268 then
              if :card.folder_id is not null and :card.node is null then
                   soft_messages('E',true,'Please enter card number to continue');
              elsif
                   :card.node is not null and :card.folder_id is null then
                   soft_messages('E',true,'Please enter folder ID to continue');
              end if;
         end if;
         if :inventory.vendor_no = 1268 then
         v_node := :card.cnt_card;
         v_id := :card.cnt_id;     
         if v_node <> :inventory.num_requested and v_id <> :inventory.num_requested then
              soft_messages('E',true, 'The node and folder ID entered must equal the number requested , Please correct to continue');
              end if;
         end if;
         If (:inventory.tsr_no is not null AND :inventory.csa is not null
         AND :inventory.bill_hierarchy is not null AND :card.node is not null
         AND :inventory.auth_code is not null) then
              msg_txt := 'Are you sure you want to complete this request: '||:inventory.REQUEST_NO||' ?' ;          
              al_button :=     DISPLAY_ALERT('CG$ASK_COMMIT',msg_txt);
              --If status change is requested          
              If al_button = 88 then     
                   SET_APPLICATION_PROPERTY(CURSOR_STYLE,'BUSY');     
                   If Reqtype = 'START' and :INVENTORY.status = 'PENDING START' then
                        :INVENTORY.status :='ACTIVE';     
                        :INVENTORY.COMPL_DATE := SYSDATE;
                   :INVENTORY.COMPLETED_BY := USER;          
                   Elsif Reqtype = 'START' and :INVENTORY.status = 'ACTIVE' then
                        :INVENTORY.status :='ACTIVE';
                        :INVENTORY.CREATE_DATE := SYSDATE;
                        :INVENTORY.CREATE_USER := USER;
                        :INVENTORY.COMPL_DATE := SYSDATE;
                        :INVENTORY.COMPLETED_BY := USER;          
                   Elsif Reqtype = 'DISCONNECT' and :inventory.status = 'PENDING DISCONNECT' then
                        :INVENTORY.status :='DISCONNECTED';
         :INVENTORY.COMPL_DATE := SYSDATE;
         :INVENTORY.COMPLETED_BY := USER;
                   End if;     
              end if;     
    /* something is not letting the commit for the card block happen*/
              :SYSTEM.MESSAGE_LEVEL := 5;
              COMMIT_FORM;
              :SYSTEM.MESSAGE_LEVEL := 0;
              SET_APPLICATION_PROPERTY(CURSOR_STYLE,'DEFAULT');     
              if al_button = 88 then
                   soft_messages('I',false,'Request has been successfully processed.');
         else
                   soft_messages('I',false,'This Request has not been saved.');
              end if;
    ------------end code snippet-----------------
    Everything after this point hinges on the data having been committed.
    This is unfortunately code I've inherited, so I'm not sure why the former owner decided that just because you pressed "yes" the request should be declared successfully processed. I've cleaned up what's listed above, but for debugging purposes I've planted little messages throughout this code to let me know what the state of some of the variables are, and everything looks to be correct.
    Why would I get a FRM-40400 if it's not actually successfully updating the database?
    Cyd

    "The fact that it's doing a commit no matter what..."
    It won't do a commit if the form_status is QUERY. Did you check the form_status before coming to the actual commit statement? If it's QUERY, it won't commit. You need to do check this!
    If the form_status is not QUERY, then it will do a commit unless the form is doing something in a pre-commit trigger, or deleting the records in a post commit trigger. The fact you were getting a "are no changes to be saved" message, leads me to believe you may have something going on in a trigger that fires when it encounters your commit statement. You may have to use the debugger to execute your code one line at a time to find out what's going one here. Have you tried doing that?
    Other possibilities are:
    a. The database or schema you are looking at is not the database or schema Forms is using to save the records.
    b. The records being commited are not the records you were expecting.
    "FRM-40400 blinking up on the screen"
    not sure why it would be blinking... maybe due to the version of Forms Builder you are using.

  • Visual Properties enhancement request

    Hi,
    I'm using JDeveloper 9.0.3 preview to do some modelling. To keep my diagrams neat and clean, I always deselect 'show inner classes' from the visual properties context menu for java classes, as well as some other visual changes.
    The problem is, I have to do this for any new class I put on the diagram. If it was one property, it would not be such a problem, but if it's 4 properties that I have to change, it's quite a hassle. Therefor, 2 feature requests:
    1) It would be nice if there was a checkbox in the visual properties screen like 'Remember these values for new items', so all my new entities will use the same visual properties as the ones allready ni the diagram.
    2) In some other modelling tools, I use copy+paste to create a class with the same properties as the original one, and then change it's name. This won't work in jdeveloper, because copy+paste does only work between diagrams, after which it doesn't really make a copy, but puts the same object on the other diagram. It would be nice, if there was a 'Paste as new' option next to the 'Paste' option, to create a new class/entity based on the one being copied (and then naming it for example 'MyClassCopy' or 'MyClass2' if the original was named 'MyClass'. (or present a dialog to give it a new name).
    Greetings,
    Ivo

    Ivo,
    In response to point 1, this feature is already available by setting the properties in the Preferences dialog available from Tools | Preferences.
    1) Invoke Tools | Preferences
    2) Navigate and expand the 'UML Diagrams' node
    3) Expand the 'Class Diagram' node
    From here you can change any Visual Properties including fonts and colours for any new elements that you then create.
    Hope that helps,
    Lisa

  • My MacBook was acting weird so I restarted it and when I login a white screen flashes and goes back to the login page. Help?

    My MacBook was acting weird like sometimes I would log on and I wouldn't be able to type my password for a couple seconds,but it usually logged in after that. Then I left my computer open after installing the recent update after that all my applications were not responding. So I shut it down, when I turned it back on about an hour later it went to this loading screen and then to the login like usual. After I tried logging in a white screen flashed and it went back to the login/ password screen like nothing happened. Any ideas on what happened and what I can do to fix it?

    Reinstall OS X;
    Reinstalling Lion/Mountain Lion Without Erasing the Drive
    Boot to the Recovery HD: Restart the computer and after the chime press and hold down the COMMAND and R keys until the menu screen appears. Alternatively, restart the computer and after the chime press and hold down the OPTION key until the boot manager screen appears. Select the Recovery HD and click on the downward pointing arrow button.
    Repair the Hard Drive and Permissions: Upon startup select Disk Utility from the main menu. Repair the Hard Drive and Permissions as follows.
    When the recovery menu appears select Disk Utility. After DU loads select your hard drive entry (mfgr.'s ID and drive size) from the the left side list.  In the DU status area you will see an entry for the S.M.A.R.T. status of the hard drive.  If it does not say "Verified" then the hard drive is failing or failed. (SMART status is not reported on external Firewire or USB drives.) If the drive is "Verified" then select your OS X volume from the list on the left (sub-entry below the drive entry,) click on the First Aid tab, then click on the Repair Disk button. If DU reports any errors that have been fixed, then re-run Repair Disk until no errors are reported. If no errors are reported click on the Repair Permissions button. Wait until the operation completes, then quit DU and return to the main menu.
    Reinstall Lion/Mountain Lion: Select Reinstall Lion/Mountain Lion and click on the Continue button.
    Note: You will need an active Internet connection. I suggest using Ethernet if possible because it is three times faster than wireless.

  • My keyboard on macbook pro (laptop) is acting weird. One key is not responding at all. Have verified using Keyboard viewer and some other keys are printing the unresponsive character at random.

    my keyboard on macbook pro (laptop) is acting weird. One key is not responding at all. Have verified using Keyboard viewer and some other keys are printing the unresponsive character at random. "z" is the unresponsive character.
    Is it a damaged keyboard ?
    The laptop is just 2 months old, will Apple replace it with a new one if its indeed a damaged keyboard or just repair, I use it for official purposes so being without a laptop is not much of an option.

    No one here works for Apple, so we don't know what Apple might or might not do.  If it's a genuine defect, they will of course repair it under warranty.  It is not their responsibility if it effects your ability to work or not, so that's on you.
    If, however, they determine that the key is problematic as a result of your misuse of the laptop, then everything is on you.  And trust me, if they find a glob of dried up beer or coffee there, they will charge you.
    Your only choice is to take it in for repair.

  • My computer has been acting weird lately.  Shuts itself off, the mouse goes off in all angles, does not go into sleep mode sometimes and instead shows on a gray screen definitions of words in 3" letters!  Do I have a virus?

    My computer has been acting weird lately. Shuts itself off, the mouse goes off in all directions, does not go into sleep mode sometimes, instead shows a gray screen with word definitions in large 3" letters that continuosly flows across the screen.  Do I have a virus?

    Doesn't really sound like a virus.
    See if the Disk is issuing any S.M.A.R.T errors in Disk Utility...
    http://support.apple.com/kb/PH7029
    How many of these you can answer...
    Open Activity Monitor in Applications>Utilities, select All Processes & sort on CPU%, any indications there?
    How much RAM & free space do you have also, click on the Memory & Disk Usage Tabs.
    Open Console in Utilities & see if there are any clues or repeating messages when this happens.
    In the Memory tab, are there a lot of Pageouts?

  • The iphone has been acting weird. my iphone doesnt charge whenever it is switched On. When I switch OFF the phone, it charges for 2 mins then comes back On and stops charging. I dont know what the problem is. trust me, the problem isnt from d charger

    the iphone has been acting weird. my iphone doesnt charge whenever it is switched On. When I switch OFF the phone, it charges for 2 mins then comes back On and stops charging. I dont know what the problem is. trust me, the problem isnt from d charger. PLS anyone with any solution

    @wetdro
    If your device has been jailbroken during the warranty, Apple will not service it.
    Maybe you missed that in this article:
    Inability to apply future software updates: Some unauthorized modifications have caused damage to iOS that is not repairable. This can result in the hacked iPhone, iPad, or iPod touch becoming permanently inoperable when a future Apple-supplied iOS update is installed.
    Apple strongly cautions against installing any software that hacks iOS. It is also important to note that unauthorized modification of iOS is a violation of the iOS end-user software license agreement and because of this, Apple may deny service for an iPhone, iPad, or iPod touch that has installed any unauthorized software.
    copied from Unauthorized modification of iOS can cause security vulnerabilities, instability, shortened battery life, and other issu…

  • Is there some new type of crash at the moment? My BB Pearl emails are acting weird a

    My BB Pearl emails are acting weird again, very similar like in the previous outage!

    Hey bravopaololondon,
    Are you still having issues with your email on your BlackBerry smartphone? If you are you can try clear the service book database. 
    How to clear the user content databases from the BlackBerry smartphone
    How to send service books to the BlackBerry smartphone for BlackBerry Internet Service
    -SR
    Come follow your BlackBerry Technical Team on twitter! @BlackBerryHelp
    Be sure to click Kudos! for those who have helped you.Click Solution? for posts that have solved your issue(s)!

  • Imovie HD acting weird; won't show finished movie in the big screen

    My Imovie HD has started acting totally weird. First off, it wouldn't show finished movie projects in the large viewing screen. Then there were clips that no longer showed up. Sometimes I can hear the sound of a clip, but not see it. I tried compressing a project in quicktime to publish it on the Web and I got an error. Then the imovie started acting weird. Now when I open it, it just closes on its own.
    I've run disk utility and no problems were found. I also tried Tech Tool. And I couldn't find the plist file for imovie at all to delete it. I've also emptied the cache files. HELP!

    There is probably an app. malfunction. You should have a certified Apple salesman look at it. Other than that, i am not sure what to do.

  • Failure sending mail: the specified string is not in the form required for an e-mail address.mail will not be resent. Email Notification Component Properties works fine.

    I know there are a few other questions like this but I can't seem to find how it's relating to my issue.  I am getting the familar failure sending mail: the specified string is not in the form required for an e-mail address.mail will not be resent.
    in the reports feature of sccm. 
    I just picked a sample report Compliance 4.  I right clicked hit create subscription and input my email into the TO: field.  When it runs i get the above error.  I checked the email notifcation under configure site components and was able
    to successfully send a test message from there but I dont get why it doesnt work on the subscription.  
    Any Ideas?

    The log is pretty big so im not sure where I can upload it.  I think it would be too big to paste here but I have copied what I think you are looking for in the log and will paste it here.  Let me know some place I can send you the full log file
    or if you want a different log.
    schedule!WindowsService_37!a04!12/07/2014-00:02:03:: i INFO: Handling Event TimedSubscription with data 2946db38-5a07-4fb1-ad06-d7714e25b1ba.
    library!WindowsService_37!a04!12/07/2014-00:02:03:: i INFO: Schedule 534ad96b-a680-4630-a865-9f99e1087e3f executed at 12/07/2014 00:02:03.
    schedule!WindowsService_37!a04!12/07/2014-00:02:03:: i INFO: Creating Time based subscription notification for subscription: 2946db38-5a07-4fb1-ad06-d7714e25b1ba
    library!WindowsService_37!a04!12/07/2014-00:02:03:: i INFO: Schedule 534ad96b-a680-4630-a865-9f99e1087e3f execution completed at 12/07/2014 00:02:03.
    library!WindowsService_37!a04!12/07/2014-00:02:06:: i INFO: Initializing EnableExecutionLogging to 'True'  as specified in Server system properties.
    notification!WindowsService_37!a04!12/07/2014-00:02:06:: i INFO: Handling subscription 2946db38-5a07-4fb1-ad06-d7714e25b1ba to report Compliance 4 - Updates by vendor month year, owner: LEGISLATURE\mrykhoe, delivery extension: Report Server Email.
    emailextension!WindowsService_37!a04!12/07/2014-00:02:06:: e ERROR: Error sending email. Exception: System.FormatException: The specified string is not in the form required for an e-mail address.
       at System.Net.Mime.MailBnfHelper.ReadMailAddress(String data, Int32& offset, String& displayName)
       at System.Net.Mail.MailAddress.ParseValue(String address)
       at System.Net.Mail.MailAddress..ctor(String address, String displayName, Encoding displayNameEncoding)
       at Microsoft.ReportingServices.EmailDeliveryProvider.EmailProvider.CreateMessage(Notification notification)
       at Microsoft.ReportingServices.EmailDeliveryProvider.EmailProvider.Deliver(Notification notification)
    notification!WindowsService_37!a04!12/07/2014-00:02:06:: i INFO: Notification f06f40a4-32f3-4fa6-8077-89083cc7a2a2 completed.  Success: True, Status: Failure sending mail: The specified string is not in the form required for an e-mail address.Mail will
    not be resent., DeliveryExtension: Report Server Email, Report: Compliance 4 - Updates by vendor month year, Attempt 0

  • HT1338 The G note is acting weird

    I'm using a controller with Logic Pro and one of the G notes (I think it's the one above middle C) is acting weird. The first couple times I press it, I get nothing and then if I keep pressing it, eventually the note will play but it will be sustained. The problem isn't the the controller because when I change octaves with the button on the controller, that same key will work but that G still won't work. I tried playing that note with the controller in garageband and it works fine. This just started happening a few weeks ago. Any suggestions?

    HI,
    Instead of using the "Show the Previous Page" button (not a Return button) on your Safari browser, just click where you see Inbox Incoming mail.
    You are using the *Safari browser tools instead of the Mail tools.*
    Before you delete mail you have read this button is available to return to your Inbox also.
    Are you really running 10.3 on a G5? If not, please click My Settings on the right side of this page and tell us which Mac OS X you are running. It will help in the future and... thanks!
    Carolyn

  • I am using Iphone 5. Since the last 3 weeks the phones has been acting weird. on dialling a call it get hung on disconnecting it stays on the call ending screen only. this happens for atleast 5 to 7 minutes and then it gets to normal

    I am using Iphone 5. SInce the last 3 weeks the phones has been acting weird. on dialling a call it get hung on disconnecting it stays on the call ending screen only. this happens for atleast 5 to 7 minutes and then it gets to normal or the other way is to turn the device off and then turn it on. the phones also running slow and therefore at times becomes very cumbersome. a few of my friends have also been having the same problems.
    I have taken the phone to the service outles but the best they did was to reboot the phone it works fine for a day or two but again the same issue.
    Can anyone share any info on it?

    I'm glad to hear that they replaced your phone. Any experience I have had with Apple customer service and/or Genius bar has been extremely positive. While I have had positive outcomes from trouble with other phones in the past, they are not as quick and  friendly. I had a Motorola phone and a Samsung phone go bad several years ago and warranty work through AT&T required that I wait for a replacement unit and then mail back the original unit to keep from being charged for the device. This usually meant almost a week without a phone. Nice to walk into Apple and walk out with a replacement device. Enjoy your phone.

  • I am trying to create a Form that will act as a list.  I want to import data into the form from exce

    My table has a list of names with product information in corresponding columns.  I want to create a form that I can import this into where every row makes a new part of the form list I create.  Is this possible?
    Example of what I have in excel:
    Name
    Product 1
    Product 2
    Product 3
    Total
    a
    1
    2
    3
    6
    b
    0
    3
    4
    7
    c
    1
    3
    4
    8
    d
    1
    3
    5
    9
    Example of what I want in Form:
    Customer a    1     2     3     6
    Customer b    0     3     4     7
    etc.
    I want to put this info into a form to make it more presentable.  Can anyone help me with this?

    Look at the Import/Export form data functionalities already built-in into Acrobat.

  • Changing Properties of Existing Form Fields at the Same Time

    Hi,
    I am trying to turn a paper application that has been scanned into a PDF format into a digital document that applicants can fill out on their computer. The application is 71 pages long and I have completed 3/4 of it. I probably have over 1000 text boxes that I need to change the properties on. I am trying to change the text size to auto on all of them, but I would hate to have to go through and do this one at a time. Is there a way to change the properties on all existing text boxes at once?
    I have already changed the default properties for the text boxes so that any new textboxes I create will have the proper settings.
    Thanks,
    Ravyn

    Oh, it worked! Thank you so much! You have probably saved me at least 5 hours of work!
    As innapropriate as this may be, if you were here in person I would hug you lol.
    I have 3 other co-workers who are working on this same type of project, I am going to spread the word. : D

Maybe you are looking for