Checking of Radiobutton Group selection

Hi,
I have a screen wherein i have 3 Radiobuttons wrapped in radiobutton group and  2 input fileds. Whenever i select  1st radiobutton on the screen then 1st imput field should be enabled and the other field should be disabled.
if i click second radiobutton then 2nd field should be enabled and first one should be disabled. if i click 3rd radiobutton then two of the fields should be enabled.
I have tried using onClick event for radiobuttongroup but ended up in Portal Runtime Exception. May be, i'm not using the event in a correct way ?. Should we use onClick event of RadiobuttonGroup or is there any other way to achieve the same ? . Would be happy if you can send code snippet for reference
Any ideas/help would be rewarded..
Jojo

HI,
Try this
<%@ taglib uri="tagLib" prefix="hbj" %>
<%@ page import = "com.sapportals.htmlb.enum.EventTrigger" %>
<%@ page import = "com.sapportals.htmlb.event.Event;"%>
<hbj:content id="myContext" >
  <hbj:page title="PageTitle">
<hbj:form id="myFormId" >
<script>
function process()
var funcName = htmlb_formid+"_getHtmlbElementId";
func = window[funcName];
var inputfield1 = eval(func("txtMaterialNumberFrom"));
if (!inputfield1.isEnabled) {
      inputfield1.setEnabled(true);
function process1()
var funcName = htmlb_formid+"_getHtmlbElementId";
func = window[funcName];
var inputfield1 = eval(func("txtMaterialNumberFrom"));
if (inputfield1.isEnabled) {
inputfield1.setDisabled(true);
</script> 
<hbj:inputField
id="txtMaterialNumberFrom"
type="string"
maxlength="100"
jsObjectNeeded="TRUE"/>
<hbj:radioButtonGroup
id="radioGroup"
columnCount="1"
selection="BOL">
<hbj:radioButton
id="BOLProducts"
text="BOL Products"
key="BOL"
tooltip="Search BOL products"
jsObjectNeeded="TRUE">
<% radioGroup.getRadioButtonForKey("BOL").setClientEvent(EventTrigger.ON_CLICK, "process()"); %>
</hbj:radioButton>
<hbj:radioButton
id="MOLProducts"
text="MOL Products"
key="MOL"
tooltip="Search MOL products"
jsObjectNeeded="TRUE">
<% radioGroup.getRadioButtonForKey("MOL").setClientEvent(EventTrigger.ON_CLICK, "process1()"); %>
</hbj:radioButton>
</hbj:radioButtonGroup>
   </hbj:form>
  </hbj:page>
</hbj:content>
if you click on MOL the inputfield will be disabled.
if you click on BOL the inputfield will be enabled.
Message was edited by: Kirupanand Venkatapathi

Similar Messages

  • How to handle multiple radiobutton groups in a selection screen?

    Hi All,
    I have tabbed selection screen.
    * SELECTION SCREEN                                    *
    SELECTION-SCREEN BEGIN OF TABBED BLOCK TABB1 FOR 20 LINES.
    SELECTION-SCREEN TAB (20) TAB1 USER-COMMAND TAB1
                         DEFAULT SCREEN 1010.
    SELECTION-SCREEN TAB (20) TAB2 USER-COMMAND TAB2
                         DEFAULT SCREEN 1020.
    SELECTION-SCREEN END OF BLOCK TABB1.
    I have a radiobutton group in each of my tabs in the selection screen.
    SELECTION-SCREEN BEGIN OF SCREEN 1010 AS SUBSCREEN.
    SELECTION-SCREEN BEGIN OF BLOCK GUI WITH FRAME." TITLE TEXT-GUI.
    PARAMETERS: P_GUI1 RADIOBUTTON GROUP GUI,
                P_GUI2 RADIOBUTTON GROUP GUI,
                P_GUI3 RADIOBUTTON GROUP GUI,
                P_GUI4 RADIOBUTTON GROUP GUI,
                P_GUI5 RADIOBUTTON GROUP GUI,
    SELECTION-SCREEN END OF BLOCK GUI.
    SELECTION-SCREEN END OF SCREEN 1010.
    SELECTION-SCREEN BEGIN OF SCREEN 1020 AS SUBSCREEN.
    SELECTION-SCREEN BEGIN OF BLOCK REP WITH FRAME." TITLE TEXT-REP.
    PARAMETERS: P_REP1 RADIOBUTTON GROUP REP,
                P_REP2 RADIOBUTTON GROUP REP,
                P_REP3 RADIOBUTTON GROUP REP.
    SELECTION-SCREEN END OF BLOCK REP.
    SELECTION-SCREEN END OF SCREEN 1020.
    The issue is I want to be able to process only one of the tabs based on the checked radiobutton, but by default both the groups will have one of the radiobuttons checked. My piece of code is something like this.
    data : c_selected(1) value 'X'.
    case c_selected.
    when P_GUI1.
    * Process GUI 1
    when P_GUI2.
    * Process GUI 2
    when P_GUI3.
    * Process GUI 3
    when P_GUI4.
    * Process GUI 4
    when P_GUI5.
    * Process GUI 5
    when P_REP1.
    * Process Report 1
    when P_REP2.
    * Process Report 2
    when P_REP3.
    * Process Report 3
    endcase.
    How do I acheive this?
    Karthik
    Edited by: Karthik Boyapalli on Jun 16, 2008 9:10 PM

    The issue is I want to be able to process only one of the tabs based on the checked radiobutton, but by default both the groups will have one of the radiobuttons checked. My piece of code is something like this.
    You will be able to process the Radiobutton based on the tab. Use the sy-ucomm to determine the TAB that is selected on the selection screen. Then you can do further processing based on the radio button selected.
    Only one TAB will be available for User Interaction so there will be no issue with processing based on the radio button

  • At selection-screen on radiobutton group is triggering again on execute??

    Hi Friends,
    I want to show a Information pop up on selection of a radio button for that i have done
    AT SELECTION-SCREEN ON RADIOBUTTON GROUP RG.
      IF P_UPL = 'X'.
        CALL FUNCTION 'POPUP_TO_INFORM'
          EXPORTING
            TITEL = TEXT-017
            TXT1  = TEXT-015
            TXT2  = TEXT-016.
      ENDIF.
    I have two radio buttons and second radio button is P_UPL. Its working fine.
    But same event is getting triggered when execute button is pressed( i mean when report is executed ), which i don't want.
    How to restrict.
    Any help is greately appreciated.
    Thanks,
    Simha

    when the event is clicked for the first time .
    Initiate the before the popup is called .
    Now when again when you execute and p_upl = 'X'
    check the falg if value then don't call the pop-up .
    and clear the flag at that moment .
    So the Popup fun is ignored when you click execute event .
    SEE THE lines in bold .
    AT SELECTION-SCREEN ON RADIOBUTTON GROUP RG.
      IF P_UPL = 'X'.
    if v_flag is initial.
    v_flag = 'X'.
        CALL FUNCTION 'POPUP_TO_INFORM'
          EXPORTING
            TITEL = TEXT-017
            TXT1  = TEXT-015
            TXT2  = TEXT-016.
    ENDIF.
      ENDIF.

  • Selection screen block is invisable when radiobutton is selected

    Hi Experts,
    i am sending the my code...........my requerment is  : Radiobutton(rb_cdr1)   is checked donu2019t show the  Fourth & Sixth block and no output files will be generated in those respective blocks. Only Show option a & b in the Fifth block. If the Radio button in unchecked donu2019t show the options a & b in the Fifth block)
    if Radiobutton(rb_csr1) donu2019t show the  fifth Sixth block . iam try to using loop at scrren and
    IF screen-group1 = 's1'.
       screen-invisible = '0'.
    But it's not working..........plz help me on this........
    file download option for dazel system.
    SELECTION-SCREEN BEGIN OF BLOCK b4 WITH FRAME TITLE text-h04.
    PARAMETERS: rb_dzlcl RADIOBUTTON GROUP gr2 MODIF ID s1,
                rb_dzapp RADIOBUTTON GROUP gr2 MODIF ID s1,
                p_dzfl   TYPE rlgrap-filename.
    SELECTION-SCREEN END OF BLOCK b4.
    SELECTION-SCREEN BEGIN OF BLOCK b7 WITH FRAME TITLE text-h07.
    PARAMETERS: rb_cdr1   RADIOBUTTON GROUP gr5 ,
                rb_csr1  RADIOBUTTON GROUP gr5  .
    SELECTION-SCREEN END OF BLOCK b7.
    Contibution detail report & UNIX File option
    SELECTION-SCREEN BEGIN OF BLOCK b5 WITH FRAME TITLE text-h05.
    PARAMETERS: rb_cdr   RADIOBUTTON GROUP gr3 MODIF ID s1,
                rb_loca  RADIOBUTTON GROUP gr3 MODIF ID s1,
                rb_appl  RADIOBUTTON GROUP gr3 MODIF ID s1,
                p_flnam TYPE rlgrap-filename.
    SELECTION-SCREEN END OF BLOCK b5.
    Contibution Summary report & UNIX File option
    SELECTION-SCREEN BEGIN OF BLOCK b6 WITH FRAME TITLE text-h06.
    PARAMETERS:  rb_csr  RADIOBUTTON GROUP gr4 MODIF ID s2,
                 rb_loc  RADIOBUTTON GROUP gr4 MODIF ID s2,
                 rb_app  RADIOBUTTON GROUP gr4 MODIF ID s2,
                 p_fln TYPE rlgrap-filename.
    SELECTION-SCREEN END OF BLOCK b6.
    Thanks in advance........

    hi !
    try the following one and make some changes that you want
    SELECTION-SCREEN BEGIN OF BLOCK b4 WITH FRAME TITLE text-h04.
    PARAMETERS: rb_dzlcl RADIOBUTTON GROUP gr2 MODIF ID s1,
    rb_dzapp RADIOBUTTON GROUP gr2 MODIF ID s1,
    p_dzfl TYPE rlgrap-filename MODIF ID s1.
    SELECTION-SCREEN END OF BLOCK b4.
    SELECTION-SCREEN BEGIN OF BLOCK b7 WITH FRAME TITLE text-h07.
    PARAMETERS: rb_cdr1 RADIOBUTTON GROUP gr5 MODIF ID s3 ,
    rb_csr1 RADIOBUTTON GROUP gr5 DEFAULT 'X'.
    SELECTION-SCREEN END OF BLOCK b7.
    Contibution detail report & UNIX File option
    SELECTION-SCREEN BEGIN OF BLOCK b5 WITH FRAME TITLE text-h05.
    PARAMETERS: rb_cdr RADIOBUTTON GROUP gr3 MODIF ID s1,
    rb_loca RADIOBUTTON GROUP gr3," MODIF ID s1,
    rb_appl RADIOBUTTON GROUP gr3," MODIF ID s1,
    p_flnam TYPE rlgrap-filename MODIF ID s1.
    SELECTION-SCREEN END OF BLOCK b5.
    Contibution Summary report & UNIX File option
    SELECTION-SCREEN BEGIN OF BLOCK b6 WITH FRAME TITLE text-h06.
    PARAMETERS: rb_csr RADIOBUTTON GROUP gr4 MODIF ID s2,
    rb_loc RADIOBUTTON GROUP gr4 MODIF ID s2,
    rb_app RADIOBUTTON GROUP gr4 MODIF ID s2,
    p_fln TYPE rlgrap-filename MODIF ID s2.
    SELECTION-SCREEN END OF BLOCK b6.
    AT SELECTION-SCREEN OUTPUT.
    LOOP AT SCREEN.
    IF screen-group1 = 'S2' or
       screen-group1 = 'S1'.
      IF rb_csr1 = 'X'.
        screen-active = 0.
      ELSEIF rb_cdr1 = 'X' .
         screen-active = 1.
      ENDIF.
    ELSEIF screen-group1 = 'S3'.
      IF rb_cdr1 eq 'X'.
        screen-active = 1.
      ELSEIF rb_csr1 = 'X' .
         screen-active = 1.
      ENDIF.
    ENDIF.
    MODIFY SCREEN.
    ENDLOOP.

  • How to use a radiobutton  group on table control ?

    In the selection screen ,i could define a variable as radiobutton group xxx .It's just so easy ,button when I want to use it in the table control through the the wizard ,but in the 4.6c version there is simply no such as radionbutton component in the panel .how could i do ?

    Hi Jack,
    It's a bit tricky to get the Radio Button in the Table Control. Only a few things needs to be done.
    1. Create a structure with an Checkbox field of TYPE CHAR 1.
    2. Create the Table Control with Wizard and mark the Checkbox field as CHECKBOX in one of the popup.
    3. In the Screen, right-click on the Checkbox field. You will get a list of options and there you should check the radio button option. You will get the selection as Radio button available across all the rows.
    You can check out the demo codes at SE38 by searching DYNPRO.
    Also have a look at this following link.
    http://www.esnips.com/doc/48bd95e8-facc-4932-b923-465ba59bad24/Table-Control
    Hope this will help.
    Thanks,
    Samantak.

  • Disabling a field when a radiobutton is selected.

    Hi,
    I have two radio buttons R1  and R2  and three input fields date1,date2 and date3 of which date3 is mandatory. My requirement is when I click on R2 the field date1 needs to be disabled. I am coding the logic at selection-screen output. But since the field date3 is mandatory this logic is calling after the madatory field check only. I want it to call before the mandatory field check.
    Any solution?.
    Thanks & Regards,
    Soumya.

    look at this code it may help u
    SELECT OPTIONS
    SELECTION-SCREEN BEGIN OF BLOCK b2 WITH FRAME TITLE text-002.
    PARAMETERS: r1 RADIOBUTTON GROUP rad1 MODIF ID sc7 USER-COMMAND cli DEFAULT 'X',
                r2 RADIOBUTTON GROUP rad1 MODIF ID sc6.
    SELECTION-SCREEN END OF BLOCK b2.
    SELECTION-SCREEN BEGIN OF BLOCK b1 WITH FRAME TITLE text-001.
    SELECT-OPTIONS: s_ponum  FOR ekpo-ebeln MODIF ID sc1,   "PURCHASING DOCUMENT NUMBER
                    s_prodno FOR afko-aufnr MODIF ID sc2.   "ORDER NUMBER
    PARAMETERS
    PARAMETERS:     p_chno(8) TYPE c MODIF ID sc4.          "Challan no
    SELECT OPTIONS
    SELECT-OPTIONS: s_date FOR sy-datum MODIF ID sc5
                                  NO INTERVALS NO-EXTENSION.    "Date
    SELECTION-SCREEN END OF BLOCK b1.
    AT SELECTIONSCREEN OUTPUT
    At selection screen if user selects PO then the Prod order will
    become dispaly only and if user selects prod order then
    the PO field and the challan.no becomes display only.
    In both cases the date will be mandatory field.
    AT SELECTION-SCREEN OUTPUT.
      IF r2 = 'X'.
       IF NOT s_prodno IS INITIAL.
        LOOP AT SCREEN.
          IF screen-group1 = 'SC1' OR screen-group1 = 'SC4' ."OR screen-group1 = 'SC5'.
            screen-input = '0'.
            MODIFY SCREEN.
          ENDIF.
        ENDLOOP.
      ENDIF.
      IF r1 = 'X'.
       IF NOT s_ponum IS INITIAL.
        LOOP AT SCREEN.
          IF screen-group1 = 'SC2'.
            screen-input = '0'.
            MODIFY SCREEN.
          ELSEIF screen-group1 = 'SC4' OR screen-group1 = 'SC5'.
             screen-required = '1'.
            MODIFY SCREEN.
          ENDIF.
        ENDLOOP.
      ENDIF.
    reward if useful.
    Regards
    Dheeraj

  • Checking a radiobutton

    Hy !
    I have this :
    SELECTION-SCREEN BEGIN OF LINE.
    SELECTION-SCREEN POSITION 5.
    SELECTION-SCREEN COMMENT (13) text-p03 FOR FIELD sb_wks.
    PARAMETERS: sb_wks RADIOBUTTON GROUP myg.
    And same for another radiobutton from the same group, in another line.
    I want to perform something is the radiobutton is choosed .
    I tried:
    IF NOT sb_wks IS INITIAL.
    PERFORM ods_wks.
    ENDIF.
    Not working ,
    Suggestions? Solutions?
    Thank you.

    hi,
    check the sample pg: declare radio buttons like below in program and use
    if P_list = 'X'.
    perform validation.
    endif.
    REPORT  ZSUDHA_SCREEN.
    **--- Radiobuttons
    PARAMETERS: p_up   RADIOBUTTON GROUP a DEFAULT 'X' USER-COMMAND rb,
                p_list RADIOBUTTON GROUP a.
    PARAMETERS: p_pcfile LIKE rlgrap-filename OBLIGATORY DEFAULT 'C:\'
                MODIF ID ccc,
                p_pctype LIKE rlgrap-filetype OBLIGATORY DEFAULT 'ASC'
                MODIF ID ccc,
                p_unix   LIKE rlgrap-filename OBLIGATORY DEFAULT '.\'
                MODIF ID ccc.
    PARAMETERS: p_dir LIKE rlgrap-filename OBLIGATORY DEFAULT '.'
                MODIF ID ddd,
                p_fp  LIKE rlgrap-filename
                MODIF ID ddd.
    AT SELECTION-SCREEN OUTPUT.
      IF p_up = 'X' .
        LOOP AT SCREEN.
          CASE screen-group1.
            WHEN 'CCC'.
              screen-input = 1.  "Enable
              screen-invisible = 0. "Disable
              MODIFY SCREEN.
            WHEN 'DDD'.
              screen-input = 0.
              screen-invisible = 1.
              MODIFY SCREEN.
          ENDCASE.
        ENDLOOP.
      ENDIF.
      IF p_list = 'X'.
        LOOP AT SCREEN.
          CASE screen-group1.
            WHEN 'CCC'.
              screen-input = 0.
              screen-invisible = 1.
              MODIFY SCREEN.
            WHEN 'DDD'.
              screen-input = 1.
              screen-invisible = 0.
              MODIFY SCREEN.
          ENDCASE.
        ENDLOOP.
      ENDIF.

  • Radiobuttons in Selection-Screen

    Hello!
    I have a radiobutton group 'radi' with 7 Radiobuttons.
    Now I want to check, which one was marked in AT SELECTION-SCREEN.
    How can I do that?
    Regards Michael

    hi michael,
    just execute the code
    regards,
    vikky.
    REPORT zp6 .
    DATA m TYPE c.
    PARAMETERS: p1 RADIOBUTTON GROUP radi,
                p2 RADIOBUTTON GROUP radi,
                p3 RADIOBUTTON GROUP radi,
                p4 RADIOBUTTON GROUP radi,
                p5 RADIOBUTTON GROUP radi,
                p6 RADIOBUTTON GROUP radi,
                p7 RADIOBUTTON GROUP radi.
    AT SELECTION-SCREEN.
    START-OF-SELECTION.
      CASE 'X'.
        WHEN p1.
          m = 'X'.
          WRITE 'Radio button p1 is selected' .
        WHEN p2.
          m = 'X'.
          WRITE 'Radio button p2 is selected' .
        WHEN p3.
          m = 'X'.
          WRITE 'Radio button p3 is selected' .
        WHEN p4.
          m = 'X'.
          WRITE 'Radio button p4 is selected' .
        WHEN p5.
          m = 'X'.
          WRITE 'Radio button p5 is selected' .
        WHEN p6.
          m = 'X'.
          WRITE 'Radio button p6 is selected' .
        WHEN p7.
          m = 'X'.
          WRITE 'Radio button p7 is selected' .
      ENDCASE.

  • If radio button is checked then check box will be selected withoutexecuting

    hi,
    i have one doubt,
    is it possible if i select a radio button i want to check the check box at the same time and vice versa with out executing (f8) .
                       plz provide the solution,
                           thanks, in advance.

    REPORT  ZTEST_CHECK                             .
    parameters: r1 radiobutton group g1 default 'X' user-command ABC,
                r2 radiobutton group g1,
                p_check as checkbox.
    at selection-screen output.
    if r1 = 'X'.
    p_check = 'X'.
    endif.
    if r2 = 'X'.
    p_check = ' '.
    endif.
    Check this code,,
    Regards
    vijay

  • Handling Check Boxes in the selection screen

    Hi All,
    I have defined 3 Check Boxes in the selection screen and one box will be ticked as 'X" by default.
    I need to put restriction so that only any one should be selected as 'X' whenever user wish to select.
    Hence any time, when user selects a box, other two should be unchecked.
    How to put this kind of control?
    Regards
    Pavan

    I think you should go for 'Radiobutton'
    But if U want check box then
    AT SELECTION-SCREEN OUTPUT.
      LOOP AT SCREEN.
        IF cb_option1 = 'X'.
          CLEAR cb_option2.
          MODIFY SCREEN.
        ELSEIF cb_option2 = 'X'.
          CLEAR cb_option1.
          MODIFY SCREEN.
        ENDIF.
      ENDLOOP.

  • How can I check which JRadioButton is selected in whichTabbedPane?

    Hello,
    I have several TabbedPanes with a mass of JRadioButtons in one ButtonGroup. Now I search an easy way how I can find out which RadioButton is selected in which TabbedPane. With "getParent()" I can get a lot but not e.g. the name of the TabbedPane.
    Thanks for your help
    Arthur

    I'm not sure that it's what you want but you can do something like this:
    for the checked radio button to getParent and then
    to try
    int i = tabbedPane.indexOfComponent( checkedRadioButton );
    and if you know the indexing of your radionbuttons you can find, It's for sure not nice
    solution but it is the first what come to me ;-).
    Best regards.

  • Multi Purchasing Group Selection

    Hi,
    Please assist with the Purchasing Group select. We are in SRM 5.0 , classic scenario. I managed to get the Requestor/Purchaser to have all purchasing group on Extended Details tab. Once the PurchGrp is selected, and shopping cart created, the PurchGrp at the top of the list is selected. What to do in this instatnce.

    Hi Leboganag,
    In addition to Yann's suggestions please look at the following points :
    In reference to the info. provided by you it looks like there is an issue with the consistency of the user.This happens in case you drag and drop the user.
    You can check the same using BBP_BP_OM_INTEGRATE txn by inputting the business partner number of the user.There you should get all Green otherwise there is an issue with user consistency.
    Always assign the user using USERS_GEN txn.
    As informed by Yann, you can also make the user responsible for various P.Groups by assigning the user  (Position) in the Responsibility tab of the P.Group under the Organizational Responsibility column.
    Hope this makes you more clear and helps in resolving your issue. Clarifications are welcome.
    Award points for helpful answers.
    Rgds,
    Teja

  • How to group selections?

    Is it possible to group selections in Adobe Audition? If so how?
    I am trying to select a few loops in my song and would like to revert back to my selections. I am trying to select a bunch of different loops in 1 song and then copy and paste the loops wherever I please but in order to do that I would need to be able to somehow revert back to my selections. I'm not technical on exactly what is the correct term but my best guess is grouping selections
    I am more of a video editing guy so I provided a few snapshots of what I mean

    Hi,
    You can create HTML regions that do not need to contain anything at all (use the "No Template" region template to ensure that you don't see a region Title on the page).
    However, in order to get this region to be displayed until the Report button is clicked, you would need to have a hidden page item (called, say, P1_SHOW_REPORT) that has, as a default, 0 as a value. The branch that is triggered by the Report button would then set this item to 1 - so, 0 = hide and 1 = show
    On your page you should have a branch that is conditional on the Report button being clicked. On this branch, set the first "Set these items" to P1_SHOW_REPORT and "With these values" to *1*. You should also have a branch on the page that is unconditional - meaning that it can be triggered by anything that submits the page. Firstly, this branch should have a high Sequence Number (say, 99) and secondly, should should set the value of P1_SHOW_REPORT to *0*. So the Report button sets it to 1 and anything else (which will include the radio button selections) will reset it to 0.
    Now, on your regions you have to change the conditions slightly as we now have two conditions to check - which report has been selected and whether or not the Report button has been clicked.
    This can be done by using a SQL Exists condition of something like:
    SELECT 1 FROM DUAL WHERE :P1_SHOW_REPORT = 1 AND :P1_RADIO = 'ABC'(where ABC is the value for the radio button for the report
    The "blank" region would also have a condition - that would be a simple Item = Expression 1 condition of P1_SHOW_REPORT = 0
    Andy

  • Sharpoint designer 2013 crashes when Workflow People/Group Selection after adding AAM

    I have same issue as mention in this post. Sharpoint
    designer 2013 Stopping when Workflow People/Group Selection. SharePoint designer crashing after selecting peopicker in workflow. This is happening after adding AAM url.
    And also as answer mentioned My website has same thing. like http://<systemname> as
    Default and http:\\mycompany.com as
    intranet.
    And aslo I opened in website in designer is http://<systemname> .
    It used to work before I adding AAM url. Now it is not working.
    ItsMeSri SP 2013 Foundation

    Hi,
    Please check ULS log for more information about error to help narrow down the issue.
    If you find error message as "the service '/_vti_bin/spclaimproviderwebservice.svc' cannot be activated due to an exception during compilation, The exception message is: This collection already contains an address with scheme http, There can be
    at most one address per scheme in this collection.
    http://xblogs.kompas-xnet.si/post/SharePoint-Designer-2013-Crashing-when-using-select-peoplegroups-from-SharePoint-site.aspx
    Then the issue might be caused by more than one IIS Site Binding in single web application.
    Please firstly remove AAM settings following the steps below:
    In IIS manager, remove the added url binding from IIS site for SharePoint web application.
    In CA, remove url under AAM settings and execute IISReset. Now you can check if the issue is resolved.
    If you need to configure AAM for your web application, please extend web application and set AAM on the extended web application.
    Regards,
    Rebecca Tu
    TechNet Community Support

  • Hide radiobutton group

    Hi
    I maintained two radiobuttons one for uploading the data record and other generating a smartform in the standard selection screen.
    And I have another set of radiobuttons below smartorm radiobutton.when I click on the smart form radiobutton only those suboptions  should be displayed.How can i do this. Pls Reply soon.

    Hi,
    Go through this piece of code as an example...
    TABLES: MARA,
             EKKO,
             VBAK.
    PARAMETERS: P1 TYPE C RADIOBUTTON GROUP GRP1 USER-COMMAND USER_SEL DEFAULT 'X',
                 P2 TYPE C RADIOBUTTON GROUP GRP1,
                 P3 TYPE C RADIOBUTTON GROUP GRP1.
    SELECT-OPTIONS : S_MARA FOR MARA-MATNR MODIF ID MI1,
                      S_EKKO FOR EKKO-EBELN MODIF ID MI2,
                      S_VBAK FOR VBAK-VBELN MODIF ID MI3.
    AT SELECTION-SCREEN OUTPUT.
    LOOP AT SCREEN.
      IF SCREEN-GROUP1 = 'MI1'.
        IF P1 = 'X'.
          SCREEN-INVISIBLE = '0'.
          SCREEN-ACTIVE = '1'.
          ELSE.
            SCREEN-INVISIBLE = '1'.
            SCREEN-ACTIVE = '0'.
        ENDIF.
         MODIFY SCREEN.
      ENDIF.
      IF SCREEN-GROUP1 = 'MI2'.
        IF P2 = 'X'.
          SCREEN-INVISIBLE = '0'.
          SCREEN-ACTIVE = '1'.
          ELSE.
            SCREEN-INVISIBLE = '1'.
            SCREEN-ACTIVE = '0'.
        ENDIF.
          MODIFY SCREEN .
      ENDIF.
      IF SCREEN-GROUP1 = 'MI3'.
        IF P3 = 'X'.
          SCREEN-INVISIBLE = '0'.
          SCREEN-ACTIVE = '1'.
          ELSE.
            SCREEN-INVISIBLE = '1'.
            SCREEN-ACTIVE = '0'.
        ENDIF.
          MODIFY SCREEN.
      ENDIF.
    ENDLOOP.
    Regards.

Maybe you are looking for

  • Cannot transfer mailbox from Exchange 2007 to Exchange 2013

    Error message I get is below: Any one got the same issue? It was working fine a few days ago,suddenly cannot move mailboxes. -Tried to create another database in case it has a limit: same issue -tried to move from GUI and shell same issue. MigrationT

  • How do I use the PXI_clk10 backplane clock? It's not there!

    Hi, folks! This might seem a trivial question, but I'm completely at a loss here. I have made an RT-project in LV8 which (among other things) samples data continuously from two cards located in a PXI-system. All 32 (16+16) differential channels are u

  • Find my iphone saying offline but it is online

    hi my son has an ipod touch 5th gen it is connected to wifi. when i use FIND MY PHONE using my own iphone it usually shows me he is online and his location. his settings are correct and are locked as i have used Restrictions switched on on his ipod s

  • Itunes Movie to DVD

    I have downloaded a movie using i Tunes is it possible to burn it onto a DVD? and if so - can someone twll me how to pleASE? THANKS

  • Is possible date wise trial balance  in sap

    Hello, Is it possible date wise trial balance in sap, for example trail balance as on 20.06.2010. Please provide your inputs Thanks, Ratnam