Color a field

Hello,
I am new to LiveCylce and I have a question.
I own a auto repair shop and have a vehicle inspection form that I use for vehicles that come into the shop. Each item on the form has three checkboxes labeled for the condition of the item.
I am trying to make a new inspection form and each item on the inspection form would have one rectangle next to it that I would be able to change color depending on the condition of the item "Red" for severe or safety issue "Yellow" for recommended & "Green" for acceptable.
I would like to have three buttons on the form that when pressed would change the color of the rectangle that I am on for each color labeled  Severe, Recommended & Acceptable. Or one button that could be pressed once for Red twice for yellow and three times for green. I just want to have one instance of this on the form so I don't have buttons all over the place.
I have attached a pdf of the old form so you can see what it consisted of.
Thanks in advance

Hi Naill,
"I got blisters on me fingers" (the Beatles "Helter Skelter")
Here is revision 17 https://acrobat.com/#d=BVUp*qVijsDkn09GXYFyFA
I think I've finally got it! One last thing (I hope it's the last)
I would like the tire (or "tyre") size and type to be filled out if any of the tires are  "R", "S", "SS" so the tire size and type get noted on the inspection. I believe it can be done just am stumped on how to exactly.
Boy i sure didn't think this was going to be this hard. Had some busy fingers today and then after I coded all the buttons and saved after each one I forgot to save all the time when I started filling in the dropDowns and got the dreaded lockup!!%#^#. Found the folder 8.2 and deleted it Livecycle does not seem to crash now but had to re-fill in a bunch of dropDowns I had already filled in... damn!
Cheers
John

Similar Messages

  • Can we view Color & SIZE1 field from MARA in MM43??

    Can we view Color & SIZE1 field from MARA in MM43??

    Hi Ashish,
    In MM43 on Basic data screen scroll down to see More Basic Data push button.
    Once you enter in More Basic Data screen you have field there for size/dimension.
    I'm not sure if this is what you are looking for.
    Thanks,
    Vikrant.

  • Adobe Reader 9.0 - Disable Forms Highlight color show border hover color for fields for all user a

    Hello.
    I am installing Adobe Reader 9.0 onto a new windows xp corporate build for my company. We would like to have the Forms Preference "Highlight Color" Show border Hover Color for Fields checkbox unchecked by default for any user that logs onto the workstation. (All new WinXP profiles, and if possible, any existing profiles) Is there a registry entry that can be changed to ensure that this option is unchecked by default on our WinXP build?
    Thank you.

    bumping thread...
    I have downloaded the Adobe Reader 9.0 Custom Wizard install creator tool, but it still appears that I will need to know what registry key to change/import into the installer for this preference to be disabled by default for all users of the workstation that Adobe Reader 9.x is installed onto.
    Any and all help is greatly appreciated.
    Thank you.

  • Coloring a field in the internal table

    Hi all,
    How can I color a field in the internal table knowing that I'm developing a classic report.
    Thanks in advance.

    hi,,,
    check this code.
    *-----TABLES DECLARATION
    tables : kna1,                     "Customer Master
           vbak,                     "Sales Document Header
             vbap,                     "Sales Document Item
             sscrfields.               "Screen Field Table
    &               D A T A   D E C L A R A T I O N                       &
    data : begin of it_kna1 occurs 0,
            kunnr type kna1-kunnr,      "Customer Number
            land1 type kna1-land1,      "Country Key
            name1 type kna1-name1,      "Name
            ort01 type kna1-ort01,      "City
           end of it_kna1.
    data : begin of it_kna2 occurs 0,
            kunnr type kna1-kunnr,      "Customer Number
            land1 type kna1-land1,      "Country Key
            name1 type kna1-name1,      "Name
            ort01 type kna1-ort01,      "City
           end of it_kna2.
    data:  begin of it_vbak occurs 0,
            vbeln type vbak-vbeln,      "Sales Document
            erdat type vbak-erdat,      "Date
            ernam type vbak-ernam,      "Name of Person
            auart type vbak-auart,      "Sales Document Type
           end of it_vbak.
    data:  begin of it_vbap occurs 0,
            vbeln type vbap-vbeln,      "Sales Document
            posnr type vbap-posnr,      "Sales Document Item
            matnr type vbap-matnr,      "Material Number
            matkl type vbap-matkl,      "Material group
           end of it_vbap.
    data: v_count type int4,           "Current Row Index
           v_line like sy-lisel,        "Contents of selected line
           v_kunnr like kna1-kunnr.
    &                S E L E C T I O N  S C R E E N                       &
    selection-screen begin of block b1 with frame title text-001.
    selection-screen begin of line.
    parameters : rb1 radiobutton group g1 default 'X'.
    selection-screen comment 5(20) text-002 for field rb1.
    selection-screen end of line.
    select-options : so_kunnr for kna1-kunnr obligatory.
    parameters : p_hits(3) type c.
    selection-screen begin of line.
    parameters : rb2 radiobutton group g1.
    selection-screen comment 5(20) text-003 for field rb2.
    selection-screen end of line.
    parameters : p_file like rlgrap-filename default 'c:\test'.
    selection-screen pushbutton /33(10) custl user-command push1.
    selection-screen pushbutton 58(10) custd user-command push2.
    selection-screen end of block b1.
    &                  I N I T I A L I Z A T I O N                        &
    initialization.
      move 'LOAD' to custl.
      move 'DISP' to custd.
    &                  A T  L I N E  S E L E C T I O N                    &
    at selection-screen.
      perform validate_kunnr.
    &  A T  S E L E C T I O N  S C R E E N  O N  V A L U E-R E Q U E S T  &
    at selection-screen on value-request for p_file.
      call function 'F4_FILENAME'
        exporting
          program_name  = syst-cprog
          dynpro_number = syst-dynnr
          field_name    = ' '
        importing
          file_name     = p_file.
    &              S T A R T  O F  S E L E C T I O N                      &
    start-of-selection.
      perform cust_details.
    &              S T A R T  O F  S E L E C T I O N                      &
    top-of-page.
      format color 3 intensified off.
      write :/02(25) sy-repid.
      write : 39(15) 'Page'(010), sy-pagno.
      format color off.
      format color 6 intensified off.
      format color col_heading.
      uline at :/1(60).
      write: /1 sy-vline,
              2 'Cust Number'(000),
              14 sy-vline,
              16 'Country'(007),
              25 sy-vline,
              26 'City'(008),
              42 sy-vline,
              43 'Region'(009),
              60 sy-vline.
      uline at :/1(60).
      format color col_heading off.
    &   T O P  O F  P A G E  D U R I N G  L I N E  S E L E C T I O N      &
    top-of-page during line-selection.
      if sy-lsind eq 1 or sy-ucomm eq 'VBAK'.
        format color col_heading.
        uline at :/1(60).
        write : /1 sy-vline,
                     2 'Docu No.'(011),
                     14 sy-vline,
                     16 'Date'(012),
                     26 sy-vline,
                     27 'Name'(013),
                     42 sy-vline,
                     43 'DType'(014),
                     60 sy-vline.
        uline at :/1(60).
      elseif sy-lsind eq 2 or sy-ucomm eq 'VBAK'.
        set pf-status space.
        uline at :/1(60).
        write : /1 sy-vline,
                     2 'Docu No.'(015),
                     14 sy-vline,
                     16 'Sales Item'(016),
                     25 sy-vline,
                     26 'Mat No'(017),
                     42 sy-vline,
                     43 vbap-matkl,
                     50 'Mat Grp'(018),
                     60 sy-vline.
        uline at :/1(60).
      endif.
    &  AT USER-COMMAND                                                    &
    at user-command.
      case sy-ucomm.
        when 'VBAK'.
          perform sales_item.
        when 'DELIVERY'.
          clear it_vbak-vbeln.
          get cursor value it_vbak-vbeln.
          set parameter id 'AUN' field it_vbak-vbeln.
          call transaction 'VA03' and skip first screen.
        when 'DISP'.
          perform display_basic.
      endcase.
    &      AT LINE SELECTION                                              &
    at line-selection.
      if sy-lsind = 1.
        set pf-status 'DDDD'.
        perform sales_header.
      elseif  sy-lsind = 2.
      case sy-ucomm.
        when 'PICK'.
        set pf-status space.
        perform sales_item.
        when 'DELIVERY'.
          clear it_vbak-vbeln.
          get cursor value it_vbak-vbeln.
          set parameter id 'AUN' field it_vbak-vbeln.
          call transaction 'VA03' and skip first screen.
        when 'DISP'.
          perform display_basic.
      endcase.
       PERFORM sales_item.
      endif.
    &  AT USER-COMMAND                                                    &
    at user-command.
      case sy-ucomm.
        when 'VBAK'.
          perform sales_item.
        when 'DELIVERY'.
          clear it_vbak-vbeln.
          get cursor value it_vbak-vbeln.
          set parameter id 'AUN' field it_vbak-vbeln.
          call transaction 'VA03' and skip first screen.
        when 'DISP'.
          perform display_basic.
      endcase.
    &      Form  CUST_DETAILS                                             &
    form cust_details .
      select kunnr
             land1
             name1
             ort01
             from kna1
             into table it_kna1
             where kunnr in so_kunnr.
      if sy-subrc <> 0.
        message 'SELECT VALID CUST NO' type 'I'.
      else.
        loop at it_kna1.
         v_count = v_count + 1.
          if sy-tabix < p_hits.
         IF v_count <= p_hits.
            move it_kna1 to it_kna2.
            append it_kna2.
          else.
            exit.
          endif.
        endloop.
      endif.
      if not it_kna2[] is initial.
        loop at it_kna2.
          write : /1 sy-vline,
                   2 it_kna2-kunnr,
                   14 sy-vline,
                   16 it_kna2-land1,
                   25 sy-vline,
                   26 it_kna2-name1,
                   42 sy-vline,
                   43 it_kna2-ort01,
                   60 sy-vline.
          uline at :/1(60).
        endloop.
      endif.
    endform.                    " CUST_DETAILS
    **&      Form  load_file
    *form load_file .
    *endform.                    " load_file
    **&      Form  disp_file
    *form disp_file .
    *endform.                    " disp_file
    *&      Form  VALIDATE_KUNNR
    form validate_kunnr .
      select single kunnr
                    from kna1
                    into kna1
                    where kunnr = so_kunnr.
    endform.                    " VALIDATE_KUNNR
    *&      Form  SALES_HEADER
    form sales_header .
    data : v_kna1(13).
    v_kna1 = 'IT_KNA2-KUNNR'.
    *get cursor line sy-lilli value v_line
    clear v_kunnr.
      get cursor  field v_kna1 value v_kunnr.
    v_kunnr = v_line+1(10).
      call function 'CONVERSION_EXIT_ALPHA_INPUT'
        exporting
          input  = v_kunnr
        importing
          output = v_kunnr.
      select vbeln
             erdat
             ernam
             auart
             from vbak
             into table it_vbak
             where  kunnr = v_kunnr.
      if sy-subrc = 0.
        loop at it_vbak.
          write : /1 sy-vline,
                   2 it_vbak-vbeln,
                   14 sy-vline,
                   16 it_vbak-erdat,
                   26 sy-vline,
                   27 it_vbak-ernam,
                   42 sy-vline,
                   43 it_vbak-auart,
                   60 sy-vline.
          uline at :/1(60).
        endloop.
      endif.
    endform.                    " SALES_HEADER
    *&      Form  SALES_ITEM
    form sales_item .
    data : v_vbeln(13).
    v_vbeln = 'IT_VBAK-VBELN'.
    clear it_vbak-vbeln.
    get cursor  field v_vbeln value it_vbak-vbeln.
      call function 'CONVERSION_EXIT_ALPHA_INPUT'
        exporting
          input  = it_vbak-vbeln
        importing
          output = it_vbak-vbeln.
      select vbeln
             posnr
             matnr
             matkl
      from vbap
      into table it_vbap
      where vbeln = it_vbak-vbeln.
      loop at it_vbap .
        write : /1 sy-vline,
                   2 it_vbap-vbeln,
                   14 sy-vline,
                   16 it_vbap-posnr,
                   25 sy-vline,
                   26 it_vbap-matnr,
                   42 sy-vline,
                   43 it_vbap-matkl,
                   60 sy-vline.
        uline at :/1(60).
      endloop.
    endform.                    " SALES_ITEM
    *&      Form  DISP_DOCU
    form display_basic .
      loop at it_kna1 into it_kna1.
        format hotspot on.
        write : /03 it_kna1-kunnr,
                 24  it_kna1-name1.
        hide it_kna1-kunnr.
      endloop.
    endform.                    " display_basic
    pls reward if useful
    regards,
    rekha

  • [AS][INDCC] How to set Color Conversion field to No Color Conversion when creating PDF Export preset

    How can i set Color Conversion field in Export to PDF dialog to No Color Conversion when creating PDF Export preset? i have done a bit of searching and have found where it has been recommended to set effective pdf destination profile to use no profile but it doesn't seem to be producting the expected results.

    Yes, it seems that i had to make the change after creation, not while creating the preset. thank you.
    tell application "Adobe InDesign CC"
         set newPreset to make new PDF export preset with properties ¬
              {name:"preset name", standards compliance:none, acrobat compatibility:acrobat 7}
         tell newPreset to set PDF color space to unchanged color space
    end tell

  • SRM- SC background color for fields

    Dear experts,
    Please advise if it is possible to create color background for a SC field on the web.
    For examle to emphasize a field as mandatory field.
    Regards,
    Moshe

    Dear Poster,
    As no response has been provided to the thread in some time I must assume the issue is resolved, if the question is still valid please create a new thread rephrasing the query and providing as much data as possible to promote response from the community.
    Best Regards,
    SDN SRM Moderation Team

  • NO COLOR in Field Monitor of Adobe OnLocation

    CONFIGURATION:
    OnLocation CS3 (Trial), with XP Home SP2, Dell Dimention 4400, and NVidia AGP GeForce 5200 128MB video card, and 21" Optiquest Q110 monitor.
    Video card supports 2 monitors analog (DB15) and DVI. In my configuration only analog output and single monitor is connected. There is also standard FireWire 1394 port where camera is connected. All works fine...
    THE PROBLEM:
    ... except BARS and live feed image from camera, are always displayed in BLACK and WHITE (no color) but BLUE BARD are displayed in BLUE shades cirrectly. Monitor was callibrated and adjusted properly with NVidia settings (contrast, brightness, gamma, etc.) and all other applications are displayed in COLOR properly.
    NOTES:
    I understand that Field Monitor use overlay to display images, it should work OK as other video applications using overlay display work properly (e.g. Windows Media Player).
    QUESTION:
    What are technical reguirements for video (cards/monitors) to work properly with OnLocation as I couldn't find ANY information on Adobe website or anywhere else. Or, if anybody had similar problem and would like to share solution I would appreciate.

    All turned out OK. It was just wrong setting for Field Monitor.
    Everything works properly and live feed is now in full COLOR.

  • Simple way to change color of field in an interactive report

    Is there a simple way with css to change the color of a field in an interactive report. I want certain fields to stand out.
    Can you provide an example and where the code is inserted in APEX? TY.

    jfr620 wrote:
    Is there a simple way with css to change the color of a field in an interactive report. I want certain fields to stand out.On what basis?
    The appearance of cells based on the report structure can be controlled using CSS: +{message:id=10373505}+
    Conditional formatting based on cell values is better handled using the built-in highlighting, or Dynamic Actions/JavaScript, which provide better separation of concerns than generating HTML in the query: +{message:id=10493230}+
    (For even better separation, use the Dynamic Action to apply <tt>class</tt>es rather than setting style properties directly, and use separate CSS rules to apply the formatting.)

  • Coloring a field in copy of ptrv_expense form.

    hi all.
    i am new to adobe forms.
    had a small doubt . I just created a copy of PTRV_EXPENSE_FORM and added a new column in that, the O/P is working fine.
    My doubt is when I am getting the correct O/P there is a yellow color on the sum part or the last row.
    the standard form / standard fields have this, but my newly added field doesnot supports this and is blank.
    Do I need to write some code for it , or something else is required.
    guide me step by step.

    The Key1 and Key2 table are already updated. This happens when using MessageFromExtr rule.
    Also, in the extract file I am having some value in the tag "<J:L>TextMessage". As this rule supports <J:L> it should print teh text message on the field, but it gives error unable to retrieve record and other.

  • Click to change color of field

    When a user clicks a field I want the color to change. Each click will result in a different color (of 5). I assume I need an array but am currently unable to get it to work.
    I have the following code on a mouseUp:
    function changeColor()
    var changeColor= new Array(5)
    changeColor[0]="10,100,50";
    changeColor[1]="100,120,70";
    changeColor[2]="80,10,30";
    changeColor[3]="20,120,65";
    changeColor[4]="15,150,50";
    var x=0;
    for (x=0; x<5; x++)
    TextField1.fillColor = changeColor[x];}

    Its running through all 5 colors in the array and the last one is being displayed. It is not setting it to the 0 color on the 1st click etc...

  • Highlight_mc/button color/search field color

    Need advice with 3 issues:
    1) How do I change highlight color of text nodes?
    2) How to change Search field color in Flash?
    3) Quick way to change color of e.g. Index button in Flash?

    thanks for the reply kglad.
    is there some script that essentially says "when you, nav button, are clicked, and once you've sent the slideshow to a certain frame, make sure you have a different fill color"?
    is there a way to get the mc to display the pointer finger cursor rather than the arrow cursor?
    R

  • Backgound colors of Fields

    Hello,
    I was wondering if it was possible to change the background colour of a field in SAP B1.
    Reason being i have this formatted search with must pop out to the user when there is an important note associated to example a Sales Order.
    I've managed to make the formatted search, now i just need to know if it possible to change the Background colour of the UDF?
    I did some research and no Luck.
    Thank you,
    Anthony

    Hi,
    What you can do is to change the field description to bold or italic letters:
    Press CTRL and double-click on the field name or column name (not the field with the formatted search itself) and choose format Bold or Italics or both, so that the field description will attract attention.
    Hope it helps.
    Regards,
    Nat

  • Color  for a Field in alv output

    Hi All,
    I use a field in the ALV grid output which needs to display color (red or green) depending on certain validations. Please tell me how to display color for this field. The program uses oops.
    Thanks.

    Hi
    1. add one more field to ur final internal table say COLOR(4)
    2. in layout wa_layout-style_fname = 'COLOR'. " if its grid
    wa_layout-style_fieldname = 'COLOR'. "if its list
    3. read table itab index 3.
    itab-color = 'C410'.
    modify itab index 3
    4. see program SHOWCOLO for all color codes
    1. Add a field of data type CHAR(3) to the internal output table.
    2. Enter the color code in the appropriate field of the row to be colored in the internal
    output table:
    Code: 'Cxy'
    C = Color (all codes begin with 'C')
    x = color number ('1' - '9')
    y = highlight ('0' = off, '1' = on)
    3. Assign the internal output table color code field name to the IS_LAYOUT importing
    structure IS_LAYOUT-INFO_FIELDNAME field and pass this structure in the ALV call
    interface.
    To enable row coloring, you should add an additional field to your list data table. It should be of character type and length at least 4. This field will contain the color code for the row. So, let’s modify declaration of our list data table “gt_list”.
    you should fill the color code to this field. Its format will be the same as explained before at section C.6.3. But how will ALV Grid know that you have loaded the color data for the row to this field. So, you make it know this by passing the name of the field containing color codes to the field “INFO_FNAME” of the layout structure.
    e.g.
    ps_layout-info_fname = <field_name_containing_color_codes>. “e.g. ‘ROWCOLOR’
    You can fill that field anytime during execution. But, of course, due to the flow logic of screens, it will be reflected to your list display as soon as an ALV refresh occurs.
    You can color an entire row as described in the next section. However, this method is less time consuming.
    Coloring Individual Cells
    This is the last point about coloring procedures for the ALV Grid. The procedure is similar to coloring an entire row. However, since an individual cell can be addressed with two parameters we will need something more. What is meant by “more” is a table type structure to be included into the structure of the list data table. It seems strange, because including it will make our list data structure deep. But anyhow ALV Grid control handles this.
    The structure that should be included must be of type “LVC_T_SCOL”. If you want to color the entire row, this inner table should contain only one row with field “fname” is set to space, some color value at field “col”, “0” or “1” at fields “int” (intensified) and “inv” (inverse).
    If you want to color individual cells, then for each cell column, append a line to this inner table which also contains the column name at field “fname”. It is obvious that you can color an entire column by filling this inner table with a row for that column for each row in the list data table.
    Reward points if useful
    Regards
    Anji

  • Form field background color printing - acrobat pro 8, Windows

    My committee is tasked with making about 150 PDF forms writable and savable each year for a national organization. Over 3,000 people use these forms for reporting purposes, and also people who are entering contests, such as students, submit these forms. This is the first year my committee has made the forms savable, as it is a new feature in v8.
    PROCESS: The PDF forms we receive are generated in Quark and sent to us. We cannot use Live Cycle to make the forms writable, as it generates files sizes that are too big for some of our users to download. We draw form fields and set up calculations, etc. on the forms we receive. Making them savable is the last step in the process.
    PROBLEM: Some users have reported having the form fields print in blue or green. Usually upgrading to Reader 8+ solves this problem. Unfortunately, some users are sending in forms that are almost unreadable because the form fields have a colored background--(they didn't contact us). It's hard to determine how widespread this problem really is.
    I spoke with Adobe technical support and learned that this isn't a "known" issue. He suggested that setting the background to "white" in Quark before the PDF is generated might help.
    Does anyone have a solution that will keep these forms from printing colors in field backgrounds in earlier versions of Reader? Or any way to set the background color when NOT using Live Cycle?
    Thanks for any help!

    Olaf, I tried to send you an email at the above address, and got the following message:
    Delivery to the following recipient failed permanently:
    PERM_FAILURE: SMTP Error (state 13): 553 5.3.0 <your email address>... Relaying denied
    I did substitute for AT and DOT, so I did the email correctly.
    Thanks, Patsy

  • Color fields in GUIBB LIST

    Dear colleagues,
    is there a possibility to color specific fields in GUIBB LIST to indicate a change of an amount for example?
    Kind regards,
    Christian

    Hi,
    You could create a node 'color' inside your context node 'table' (which is your table binding), note that the cardinality is 1..1 and Singleton.
    create a attribute cellDesign of type WDUI_TABLE_CELL_DESIGN.
    use this attribute 'cellDesign' to bind the table cell property cellDesign.
    fill this WDUI_TABLE_CELL_DESIGN conditionally as per your requirement.
    cl_wd_abstr_master_table_col=>e_cell_design-standard or cl_wd_abstr_master_table_col=>e_cell_design-positive
    regards
    Senthi

Maybe you are looking for

  • OATS 12.5.0.1.0 build 287 and EBS Forms

    Has anyone tested EBS forms from a WIndows 7 pc with Java 7 and OPenScript 12.5 installed? Has it been successful? If yes, then I would be interested to know which Java version & settings you have used, as I am having problems getting Forms to work a

  • Dimension image size.. (noob)

    hello guys, i am trying to make a large poster for the banner thats on top of a shop on photoshop cs6 i have the dimension in meters and centimeters and im just wondering if i put these in correctly, will this sure be the right size i need? because i

  • How work 800Mhz Ram on 975x Pue ?

    Anyonw know how  Ram work on 800MHz on my pc ?

  • Non-Catalog Items

    Hi Experts! For my B2B scenario (ERP backend) I need to be able to add non-catalog items to the basket and to order them. I read about the XCM configuration for adding items which do not belong to the web catalog by using the component "enable.nonCat

  • It's impossible to shuffle music?

    Hi, I have created my own Flash website using "Flash Slide Presentation". And when people go to site, it's playing a song. For example "Song1". It's any script, that can play several songs each time I am going to site? var Song1:Sound = new Sound();