How to create the Check box and Text Area inside the Assignment block

Dear all,
        I am new to web UI development. my requirement is to create the Check box and Text box in the Assignment block. Can anyone help me to do this requirement.
Thanks & Regards,
Ashok.

Hi,
  Please place the below code in the GET_P methods of the fields.
  For Text Area 
CASE iv_property.
    WHEN if_bsp_wd_model_setter_getter=>fp_fieldtype.
      rv_value = cl_bsp_dlc_view_descriptor=>field_type_textarea.
  ENDCASE.
For Check Box 
CASE iv_property.
    WHEN if_bsp_wd_model_setter_getter=>fp_fieldtype.
      rv_value = cl_bsp_dlc_view_descriptor=>field_type_checkbox.
  ENDCASE.
Regards,
Lakshmi.Y

Similar Messages

  • How can I take check box in particular cell of the table in smartforms??

    Hi experts,
       pls tell me how can I take check box in particular cell of the table in smartforms??
    It is not interactive form.
    I hv taken small windows as check boxes.but i think it is not a proper solution....give me another solution...

    Hi,
    first create text for a particular cell.
    In that we have a  text editor  in that text editor we have symbols in include menu.
    whatever the symboll u want to put to ur cell . just assign it.
    please check it. if it helpful reward points.
    regards,
    satish.

  • How to create authority check object and assign to  ztcode which is of modu

    Dear ,
             how to create authority check object and assign to  ztcode which is of custom module pool program.its urgent kindly help points rewarded.

    Manoj,
    You can check with your Basis team to create authorisation object and assigining tcodes to the user profiles.
    K.Kiran.

  • Plz tell me how to create authority check objects and how to usein prg

    dear sir,
    plz tell me how to create authority check objects and how to usein prg

    http://help.sap.com/saphelp_46c/helpdata/en/5c/deaa74d3d411d3970a0000e82de14a/content.htm
    http://help.sap.com/saphelp_nw70/helpdata/en/52/6716a6439b11d1896f0000e8322d00/content.ht
    Create custom authorization – Customer specific object
    If you have requirements that cannot be met using the P_ORGIN and P_ORGXX authorization objects (for example, because you want to build your authorization checks on additional fields of the Organizational Assignment infotype (0001) that are customer-specific), you can include an authorization object in the authorization checks yourself.
    Create the authorization object using transaction SU21. Make sure you keep to the customer name range (Z/Y). To be able to use the new authorization object you have created in the master data authorization check, the object must contain the INFTY, SUBTY, and AUTHC fields. You can use any of the fields of the Organizational Assignment infotype (0001) for the other fields. You can also use customer-specific additional fields provided they are CHAR or NUMC type fields.
    After you have created the object, you must start the RPUACG00 report. This report overwrites the MPPAUTZZ standard include with the code that is needed to evaluate the authorization object you created. Note: Technically speaking, this involves a modification. However, SAP fully supports this procedure. And you should not have more maintenance work as a result of this modification.
              Note: that if you use customer-specific authorization objects, you must maintain these objects in transaction SU24 (Maintain Assignment of Authorization Objects to Transactions) in the same way as you maintain the authorization objects P_ORGIN, P_ORGXX, and P_PERNR
    AUTHORITY CHECK OBJECT Object_name
                ID fieldname1 FIELD fieldvalue1
                ID fieldname2 FIELD fieldvalue2
                ID fieldname3 FIELD fieldvalue3.
                 If sy-subrc eq 0.   "Authorization exists
                 Endif.
    http://articles.techrepublic.com.com/5100-6329_11-5110893.html
    Edited by: JackandJay on Jan 16, 2008 10:21 AM

  • Since updating to Firefox 3.6.15, I can no longer print coupons from SmartSource. The error message is that Java is not detected. The check box is longer showing in the Options/Content of this version of Firefox, so I can not enable it.

    # Question
    Since updating to Firefox 3.6.15, I can no longer print coupons from SmartSource. The error message is that Java is not detected. The check box is longer showing in the Options/Content of this version of Firefox, so I can not enable it.

    Same PC as I used to post the question. When I go to the "plug in check" page, it shows I am up to date and it is not disabled.
    Java(TM) Platform SE 6 U24
    Next Generation Java Plug-in 1.6.0_24 for Mozilla browsers 1.6.0.24

  • I'm running Lion on a Late 2008 MacBook Air.  With no other applications running, I can no longer Check for Software Updates.  It gets abut half way through the checking process and then freezes.  The MBA passes Disk Utility. Thoughts?

    I'm running Lion on a Late 2008 MacBook Air. 
    With no other applications running, I can no longer Check for Software Updates.  It gets about half way through the checking process and then freezes. 
    The MBA passes Disk Utility. Thoughts?
    Thanks
    Jim Taylor

    How long do you leave it?
    Mine can sometimes sit for quite a while (maybe 10 minutes??) before it finally finishes.
    You could look at the relevant logs via Console (Utilities folder) to see if Software Update is complaining about anything.
    charlie

  • How to create a check box that will result in text being hidden or visable?

    I am creating a PDF form and have a section where a reference needs to be entered.
    My problem is that the references are each several lines long therefore I cannot use a drop down for the user to select.
    To combat this I want to have 3 check boxes, each which relate to a specific reference.When the check box is ticked the reference will be displayed.
    If the box is un-ticked the reference will be hidden.
    Any help or other ideas to solve this issue would be Much appreciated.

    OK, so I have managed to make the check button make an option hidden, however I cannot make it reappear. I have also set a button at the top of the form to reset it but this does not work on these boxes.......

  • How to create a check box with an X

    Hi,
    How do you create a check box with an X as apposed to a tick?
    Thanks

    Go to the check box's properties and in the Options tab choose "Cross" as the check box style.

  • Captute the check box and display

    hi,
    In a report program se38, with the output I've displayed the check boxes before every line item, I need to keep a check box in the header row and if I check this one all the check boxes of the line items must be checked and I need to capture the particular line items if checked manually and randomly.
    i did not use grid display its a simple display with write statements.
    (in short if the first(header) check box is checked need to check remaining and need to process the check box itmes if checked as above and manually)
    thanks and regards with rewards later on

    Hi,
    Check this sample code...
    DATA: t_lineitem TYPE TABLE OF char1.
    DATA: s_lineitem LIKE LINE OF t_lineitem.
    DATA: v_header,
          v_index TYPE syindex.
    START-OF-SELECTION.
      WRITE: / 'Header check box',  v_header AS CHECKBOX.
      SKIP 2.
      DO 10 TIMES.
        s_lineitem = sy-index.
        WRITE: / 'Line item-', sy-index , s_lineitem AS CHECKBOX.
        APPEND sy-index TO t_lineitem.
      ENDDO.
    AT LINE-SELECTION.
      READ LINE 1 FIELD VALUE v_header.
      DO .
        v_index = sy-index + 2.
        READ LINE v_index FIELD VALUE s_lineitem.
        IF sy-subrc <> 0.
          EXIT.
        ENDIF.
        s_lineitem = v_header.
        MODIFY CURRENT LINE FIELD VALUE s_lineitem.
      ENDDO.
    Thanks
    Naren

  • Livecycle: Can you click a check box and have it copy the entire field to a new location?

    I have a check box and I want to check the box and have field 1a, field 1b, field 1c be copied to location on a third page.
    These are patient goals: and those goals need to be recognized later on while trying to fill out paperwork, but I don't want to have to look back at the front page. so I want to pick which goals I want to see at a later page and have the goal  (field) and the field content that was chosen on the first page show up.
    I will choose three to five goals and I want them lined up
    field 1a, field 1b, field 1c then underneath
    field 2a, field 2b, field 2 c etc.
    THanks for the help
    CHeers

    The attachment functionality in this forum keeps fluctuating ....if you do not see an add attachmnet button on your post then email it me instead at [email protected]
    Paul

  • How do I align check boxes with text in the form?

    I'm most of the way there but I am stuck fixing the formatting misalignments.
    1. What controls the little checkboxes? What's the best way to align them with the text?
    2. Part of the form is controlled by some form-specific css and  part is getting inherited from the body. What's the best approach to make sure they match?

    Thanks Liam. I haven't done a site for a while so I'm a little rusty but I did finally figure it out using Firebug. At first I couldn'tfind the applicable CSS but when I tuurned on the element selector in Firebug, well, Bob was my uncle.
    The site is based on a Twitter Bootstrap template modified for BC. Since the few changes to the css only apply to that one page, do you think there is any reason not to leave them embedded just on that page given that they will not apply anywhere else. I don't want to change the Bootstrap css but I could create a mystyles.css. Is there any reason to do so?

  • How to create a check box that can be unchecked

    How do I create check boxes that can be checked and the unchecked in Forms Central?
    For example, if you accidentally check a box - you want to uncheck it. Right now it doesn't allow you to do that.
    please help.
    Thanks
    Gen

    Are you sure you're not using radio buttons? Check boxes behave the way you'd expect for me with a form generated by FormsCentral.
    I'm going to move this to the FormsCentral form since the team there may want to take a look at the form.

  • How to create a check box in Acrobat 9?

    Hello all,
    I remember in Acrobat 8 this would be very easy. Just go to Tools --> Advanced Editing --> Forms --> Check Box Tool. Here it is. But in Acrobat 9, I can no longer see this option. Somebody helps. Many thanks.
    Supermansaga

    I am pretty sure the tool is still there. Adobe seems to enjoy moving the tools around, so try some of the other menus. If there is no forms menu there, try the advanced editing as the old location. It seems to have moved with every version.

  • How to Make Sure that the Apple Device and Printer are on the same Network

    Depending  on when one looks on this page, one can find members posting about issues with AirPrint or not being able to find the printer to use AirPrint. The first Item that people are told to check is the Apple Device’s settings. Sometimes the person giving instructions breaks down what to check and how to check and sometimes they do not.  Below is a video that walks one through how to print a network configuration page, what information they need to pull from that report and how to then access the Apple devices’ settings and put the device on the same network as the printer.  It then walks one through printing to the printer using the AirPrint feature. 
    I am a former employee of HP...
    How do I give Kudos?| How do I mark a post as Solved?
    This question was solved.
    View Solution.

    I hope that this is helpful. 
    I am a former employee of HP...
    How do I give Kudos?| How do I mark a post as Solved?

  • All the menus are coming up as capital A in a box and so are all the icons

    All the Menus and icons are coming up as capital A with a square around them.The main tool bar is also this way which includes all the drop down menus.
    Need to fix soon. Please help me out on fixing this annoying issue, Thanks, Eric

    Hi, and welcome to Apple Support Communities.
    Which version of Mac OS is installed?
    How big is the hard drive and how much space remains available on it?
    Have you tried repairing permissions?
    http://support.apple.com/kb/HT2963?viewlocale=en_US

Maybe you are looking for