<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic Re: Adding text to checkbox in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/adding-text-to-checkbox/m-p/3247008#M775080</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Divya,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Could you paste your main program here....?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Tue, 08 Jan 2008 09:06:40 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2008-01-08T09:06:40Z</dc:date>
    <item>
      <title>Adding text to checkbox</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/adding-text-to-checkbox/m-p/3246987#M775059</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;My code is similar to the following:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SELECTION-SCREEN BEGIN OF BLOCK out WITH FRAME TITLE text-s01.&lt;/P&gt;&lt;P&gt;  SELECTION-SCREEN BEGIN OF LINE.&lt;/P&gt;&lt;P&gt;    PARAMETERS: p_filchk AS CHECKBOX.&lt;/P&gt;&lt;P&gt;    SELECTION-SCREEN COMMENT 4(17) text-s02 FOR FIELD p_filchk.&lt;/P&gt;&lt;P&gt;    SELECTION-SCREEN POSITION POS_LOW.&lt;/P&gt;&lt;P&gt;    PARAMETERS: p_file LIKE rlgrap-filename.&lt;/P&gt;&lt;P&gt;  SELECTION-SCREEN END OF LINE.&lt;/P&gt;&lt;P&gt;SELECTION-SCREEN END OF BLOCK out.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Problem: I want to add text corresponding to the checkbox created(p_filchk). I tried with "Go To-&amp;gt;Text Elements -&amp;gt; Selection Text" and gave text for p_filchk, but it still does not display on the screen. Could anyone please tell me how to go about it?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 08 Jan 2008 03:43:53 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/adding-text-to-checkbox/m-p/3246987#M775059</guid>
      <dc:creator>divya_nayudu</dc:creator>
      <dc:date>2008-01-08T03:43:53Z</dc:date>
    </item>
    <item>
      <title>Re: Adding text to checkbox</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/adding-text-to-checkbox/m-p/3246988#M775060</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;go to menu Goto-&amp;gt;Text Elements-&amp;gt;selection texts-&amp;gt;&lt;/P&gt;&lt;P&gt;there your parameters variables will be there...&lt;/P&gt;&lt;P&gt;give your caption for your checkbox parameter...&lt;/P&gt;&lt;P&gt;save and activate.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;(or)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;double click on your "text-s02". &lt;/P&gt;&lt;P&gt;it will take you to the text element....fill it with your text and activate&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Edited by: Ramu on Jan 8, 2008 4:52 AM&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 08 Jan 2008 03:48:35 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/adding-text-to-checkbox/m-p/3246988#M775060</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-01-08T03:48:35Z</dc:date>
    </item>
    <item>
      <title>Re: Adding text to checkbox</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/adding-text-to-checkbox/m-p/3246989#M775061</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hai Divya.. check the below check box decelerations..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SELECTION-SCREEN BEGIN OF LINE.&lt;/P&gt;&lt;P&gt;PARAMETER: pa_cs1 AS CHECKBOX.&lt;/P&gt;&lt;P&gt;SELECTION-SCREEN COMMENT 3(10) text-001.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;PARAMETER: pa_cs2 AS CHECKBOX.&lt;/P&gt;&lt;P&gt;SELECTION-SCREEN : COMMENT 16(10) text-002.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;PARAMETER: pa_cs3 AS CHECKBOX.&lt;/P&gt;&lt;P&gt;SELECTION-SCREEN : COMMENT 29(10) text-003.&lt;/P&gt;&lt;P&gt;*&lt;/P&gt;&lt;P&gt;PARAMETER: pa_cs4 AS CHECKBOX.&lt;/P&gt;&lt;P&gt;SELECTION-SCREEN : COMMENT 42(10) text-004.&lt;/P&gt;&lt;P&gt;*&lt;/P&gt;&lt;P&gt;PARAMETER: pa_cs7 AS CHECKBOX.&lt;/P&gt;&lt;P&gt;SELECTION-SCREEN : COMMENT 55(10) text-005.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 08 Jan 2008 03:49:53 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/adding-text-to-checkbox/m-p/3246989#M775061</guid>
      <dc:creator>former_member156446</dc:creator>
      <dc:date>2008-01-08T03:49:53Z</dc:date>
    </item>
    <item>
      <title>Re: Adding text to checkbox</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/adding-text-to-checkbox/m-p/3246990#M775062</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Divya,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Once  you give the text for the variable did u save it activated it?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;check that once and &lt;STRONG&gt;save it and activate it&lt;/STRONG&gt;.... it should reflect in the selection screen&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Edited by: NAVEEN KUMAR GUDURI on Jan 7, 2008 10:52 PM&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 08 Jan 2008 03:52:02 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/adding-text-to-checkbox/m-p/3246990#M775062</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-01-08T03:52:02Z</dc:date>
    </item>
    <item>
      <title>Re: Adding text to checkbox</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/adding-text-to-checkbox/m-p/3246991#M775063</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I already tried "goto-&amp;gt;text elements-&amp;gt;selection screen" but it does not display text on screen during execution. I realised that comments are used to add text on screen, but i dont know how to go about it.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 08 Jan 2008 03:52:41 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/adding-text-to-checkbox/m-p/3246991#M775063</guid>
      <dc:creator>divya_nayudu</dc:creator>
      <dc:date>2008-01-08T03:52:41Z</dc:date>
    </item>
    <item>
      <title>Re: Adding text to checkbox</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/adding-text-to-checkbox/m-p/3246992#M775064</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Yes i did save and activate.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 08 Jan 2008 03:53:24 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/adding-text-to-checkbox/m-p/3246992#M775064</guid>
      <dc:creator>divya_nayudu</dc:creator>
      <dc:date>2008-01-08T03:53:24Z</dc:date>
    </item>
    <item>
      <title>Re: Adding text to checkbox</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/adding-text-to-checkbox/m-p/3246993#M775065</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;double click on your "text-s02". &lt;/P&gt;&lt;P&gt;it will take you to the text element....fill it with your text and activate&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 08 Jan 2008 03:54:30 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/adding-text-to-checkbox/m-p/3246993#M775065</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-01-08T03:54:30Z</dc:date>
    </item>
    <item>
      <title>Re: Adding text to checkbox</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/adding-text-to-checkbox/m-p/3246994#M775066</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks a lot... Got it!&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 08 Jan 2008 03:57:14 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/adding-text-to-checkbox/m-p/3246994#M775066</guid>
      <dc:creator>divya_nayudu</dc:creator>
      <dc:date>2008-01-08T03:57:14Z</dc:date>
    </item>
    <item>
      <title>Re: Adding text to checkbox</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/adding-text-to-checkbox/m-p/3246995#M775067</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I tried the method of setting Text element and it did work on a temporary program (Trial program), but the main one on which im working, its not showing the output still. Could there be a specific reason for the text not getting displayed, inspite of setting "text element" and "selection text"&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 08 Jan 2008 06:58:04 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/adding-text-to-checkbox/m-p/3246995#M775067</guid>
      <dc:creator>divya_nayudu</dc:creator>
      <dc:date>2008-01-08T06:58:04Z</dc:date>
    </item>
    <item>
      <title>Re: Adding text to checkbox</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/adding-text-to-checkbox/m-p/3246996#M775068</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Divya,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Try this.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SELECTION-SCREEN BEGIN OF LINE.&lt;/P&gt;&lt;P&gt;PARAMETER: pa_cs1 AS CHECKBOX.&lt;/P&gt;&lt;P&gt;SELECTION-SCREEN COMMENT 3(10) text-001.&lt;/P&gt;&lt;P&gt;SELECTION-SCREEN end OF LINE.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SELECTION-SCREEN BEGIN OF LINE.&lt;/P&gt;&lt;P&gt;PARAMETER: pa_cs2 AS CHECKBOX.&lt;/P&gt;&lt;P&gt;SELECTION-SCREEN : COMMENT 3(10) text-002.&lt;/P&gt;&lt;P&gt;SELECTION-SCREEN end OF LINE.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SELECTION-SCREEN BEGIN OF LINE.&lt;/P&gt;&lt;P&gt;PARAMETER: pa_cs3 AS CHECKBOX.&lt;/P&gt;&lt;P&gt;SELECTION-SCREEN : COMMENT 3(10) text-003.&lt;/P&gt;&lt;P&gt;SELECTION-SCREEN end OF LINE.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SELECTION-SCREEN BEGIN OF LINE.&lt;/P&gt;&lt;P&gt;PARAMETER: pa_cs4 AS CHECKBOX.&lt;/P&gt;&lt;P&gt;SELECTION-SCREEN : COMMENT 3(10) text-004.&lt;/P&gt;&lt;P&gt;SELECTION-SCREEN end OF LINE.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SELECTION-SCREEN BEGIN OF LINE.&lt;/P&gt;&lt;P&gt;PARAMETER: pa_cs7 AS CHECKBOX.&lt;/P&gt;&lt;P&gt;SELECTION-SCREEN : COMMENT 3(10) text-005.&lt;/P&gt;&lt;P&gt;SELECTION-SCREEN end OF LINE.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;double click on each text-001 to text-005, and it will take you to text symbols. give text . save and activate. it should definetely work 100%.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Arul.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 08 Jan 2008 07:11:27 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/adding-text-to-checkbox/m-p/3246996#M775068</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-01-08T07:11:27Z</dc:date>
    </item>
    <item>
      <title>Re: Adding text to checkbox</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/adding-text-to-checkbox/m-p/3246997#M775069</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Arul, like i said, i have already tried that and filled the new text in it to be displayed and even activated it. But for some reason, its not displaying. I am unable to figure that out.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 08 Jan 2008 07:13:48 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/adding-text-to-checkbox/m-p/3246997#M775069</guid>
      <dc:creator>divya_nayudu</dc:creator>
      <dc:date>2008-01-08T07:13:48Z</dc:date>
    </item>
    <item>
      <title>Re: Adding text to checkbox</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/adding-text-to-checkbox/m-p/3246998#M775070</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;My code is like this:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SELECTION-SCREEN BEGIN OF LINE.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;PARAMETERS par_lis1 AS CHECKBOX DEFAULT 'X'.&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;description&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;SELECTION-SCREEN: COMMENT (30) text-352&lt;/P&gt;&lt;P&gt;                  FOR FIELD par_lis1.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SELECTION-SCREEN END OF LINE.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I double clicked on text-352 and set the text and activated it. Am i missing out on something here?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 08 Jan 2008 07:15:57 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/adding-text-to-checkbox/m-p/3246998#M775070</guid>
      <dc:creator>divya_nayudu</dc:creator>
      <dc:date>2008-01-08T07:15:57Z</dc:date>
    </item>
    <item>
      <title>Re: Adding text to checkbox</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/adding-text-to-checkbox/m-p/3246999#M775071</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Divya,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;After copying your code from your trail program into main program, did you create that text element text-352 again for that main program. If not please do that for main program too....by double clicking that text-352.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I hope this will solve your problem...&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 08 Jan 2008 07:23:46 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/adding-text-to-checkbox/m-p/3246999#M775071</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-01-08T07:23:46Z</dc:date>
    </item>
    <item>
      <title>Re: Adding text to checkbox</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/adding-text-to-checkbox/m-p/3247000#M775072</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;text-352 is created...even in the main program.... The Display property for the checkbox is set to : "2D Display" and "Label on left"... Would that be causing problem?If i created selection screen, how do i see its layout? May be i need to work on the properties of the checkbox...&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 08 Jan 2008 07:29:43 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/adding-text-to-checkbox/m-p/3247000#M775072</guid>
      <dc:creator>divya_nayudu</dc:creator>
      <dc:date>2008-01-08T07:29:43Z</dc:date>
    </item>
    <item>
      <title>Re: Adding text to checkbox</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/adding-text-to-checkbox/m-p/3247001#M775073</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Divya, double click on the text element which u used to create a check box. Use the properties for your purpose&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 08 Jan 2008 08:08:14 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/adding-text-to-checkbox/m-p/3247001#M775073</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-01-08T08:08:14Z</dc:date>
    </item>
    <item>
      <title>Re: Adding text to checkbox</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/adding-text-to-checkbox/m-p/3247002#M775074</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I double clicked, when into selection screen layout...When i execute from there (in se80), it does not show me the text, but when i execute it from se38, it shows. How could this be?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 08 Jan 2008 08:27:57 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/adding-text-to-checkbox/m-p/3247002#M775074</guid>
      <dc:creator>divya_nayudu</dc:creator>
      <dc:date>2008-01-08T08:27:57Z</dc:date>
    </item>
    <item>
      <title>Re: Adding text to checkbox</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/adding-text-to-checkbox/m-p/3247003#M775075</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;Are you connected with 2 language diffrent ??&lt;/P&gt;&lt;P&gt;Mustapha&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 08 Jan 2008 08:43:51 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/adding-text-to-checkbox/m-p/3247003#M775075</guid>
      <dc:creator>MusAbaper</dc:creator>
      <dc:date>2008-01-08T08:43:51Z</dc:date>
    </item>
    <item>
      <title>Re: Adding text to checkbox</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/adding-text-to-checkbox/m-p/3247004#M775076</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;yes...languages do differ...but how would that matter?And when i try on my test program, after going through layout of selection screen, when i execute, it doesnt show text,and if i try from se38,it shows.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 08 Jan 2008 08:52:29 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/adding-text-to-checkbox/m-p/3247004#M775076</guid>
      <dc:creator>divya_nayudu</dc:creator>
      <dc:date>2008-01-08T08:52:29Z</dc:date>
    </item>
    <item>
      <title>Re: Adding text to checkbox</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/adding-text-to-checkbox/m-p/3247005#M775077</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;If u r connected in English : and create the element text ==&amp;gt; it wil be displayed just in English.&lt;/P&gt;&lt;P&gt;If u want to display ti in Frensh you will be translate it.&lt;/P&gt;&lt;P&gt;reward if it helpful. &lt;/P&gt;&lt;P&gt;Mustapha&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 08 Jan 2008 08:58:38 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/adding-text-to-checkbox/m-p/3247005#M775077</guid>
      <dc:creator>MusAbaper</dc:creator>
      <dc:date>2008-01-08T08:58:38Z</dc:date>
    </item>
    <item>
      <title>Re: Adding text to checkbox</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/adding-text-to-checkbox/m-p/3247006#M775078</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi try this,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SELECTION-SCREEN BEGIN OF BLOCK b1 WITH FRAME TITLE text-001.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SELECTION-SCREEN BEGIN OF LINE.&lt;/P&gt;&lt;P&gt;PARAMETERS:px_perso  TYPE c AS CHECKBOX DEFAULT 'X'.&lt;/P&gt;&lt;P&gt;SELECTION-SCREEN COMMENT 3(15) text-001.&lt;/P&gt;&lt;P&gt;SELECTION-SCREEN POSITION POS_LOW.&lt;/P&gt;&lt;P&gt;PARAMETERS:px_offic TYPE c AS CHECKBOX.&lt;/P&gt;&lt;P&gt;SELECTION-SCREEN COMMENT 35(30) text-002.&lt;/P&gt;&lt;P&gt;SELECTION-SCREEN END OF LINE.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;write ur required text in text elements&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 08 Jan 2008 09:00:30 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/adding-text-to-checkbox/m-p/3247006#M775078</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-01-08T09:00:30Z</dc:date>
    </item>
  </channel>
</rss>

