Converting True or False to a Check box

I'm trying to use the following formula to create a checkbox in Crystal
Stringvar Formula;
If not(isnull({@denied reason})) Then
//'Display the checkbox of your choice here'
         Formula = Chr(254)
Else
         //'Display empty checkbox'
        Formula = Chr(168);
Chr(254) =True and Chr(168)=False then the formula is formatted to Wingdings to show checkboxes.
The problem I'm facing is, when I format the formula it gives me a bunch of other symbols along with the checkbox.
Could someone help with this issue.
Thanks!

Thank you both for your help....
one  more question.
The formula works fine where I want to get a check box but when I try to get vise versa(unchecked box)...the formula gives a quote symbol( ")
Formula name:  Uncheck box
if not(isnull({@Formatted Reason})) then
Chrw(168)
There are a bunch of options listed in a letter, but I only want the first option checked and the rest be blank....
Tested ...
Chrw(251)
Chrw(252)
Chrw(253)
Chrw(254)
none of the above give the right symbol....
What am I doing wrong??
Thanks!!

Similar Messages

  • Access 2010 - If Then Else Statement to display text within text box upon Check Box True/False condition

    I have a form called myForm. On this form is a check box called myCheckBox. I also have a text box labeled myTextBox. I have assigned a macro, myMacro, to run upon selection/click of myCheckBox. The macro is an If statement which determines if myCheckBox
    is checked or not checked and spits out a value, "Yes" or "No" for example, into the text box.
    I am not able to get text to display into the text box although I am not receiving any errors when I run the macro. This may be a fault in my logic and would like help resolving where the problem lies. I am fairly new to Access so this could be something
    simple.
    My code is as follows:
    If Forms!myForm =  True Then
      Forms!myForm!myTextBox.Value = "Yes!"
    ElseIf Forms!myForm = False Then
      Forms!myForm!myTextBox.Value = "No!"
    Else
      Forms!myForm!myTextBox.Value = " / ERROR / " 
    End if
    Thanks!

    Hi,
    This is the forum to discuss questions and feedback for Microsoft Office, the issue is more related to coding/programing, you'd better post your question to the MSDN forum for Access
    http://social.msdn.microsoft.com/Forums/en-US/home?forum=accessdev&filter=alltypes&sort=lastpostdesc
    The reason why we recommend posting appropriately is you will get the most qualified pool of respondents, and other partners who read the forums regularly can either share their knowledge or learn from your interaction with us. Thank you for your understanding.
    George Zhao
    TechNet Community Support

  • Coloum check box  true with non editable.

    i want  that a check box in coloum  is true  with non editable  ...    look at   *****  in como select event.
    is it possible ..
    '// Add a column for  check  Cut value or not
            oColumn = oColumns.Add("chose", SAPbouiCOM.BoFormItemTypes.it_CHECK_BOX)
            oColumn.TitleObject.Caption = "CHECK"
            oColumn.Width = 50
            oColumn.Editable = False
            ' oColumn.Visible = False
            oColumn.DataBind.SetBound(True, "@DOCHECK", "U_check")
    If (pVal.ItemUID = "Mat1") And (pVal.ColUID = "DOno") And (pVal.EventType = SAPbouiCOM.BoEventTypes.et_COMBO_SELECT) And (pVal.Before_Action = False) Then
                oForm = SBO_Application.Forms.Item(FormUID)
                Dim oEdit As SAPbouiCOM.EditText
                Dim oCombo1 As SAPbouiCOM.ComboBox
                Dim qstr As String
                Dim sval As String
                Try
                    oItem = oForm.Items.Item("Mat1") '''''' Matrix
                    oMatrix = oItem.Specific
                    oCheckBox = oMatrix.Columns.Item(5).Cells.Item(pVal.Row).Specific
                    oColumns = oMatrix.Columns
                    colDONO = oColumns.Item("DOno")   '''''' Delivery order no
                    oCombo1 = colDONO.Cells.Item(pVal.Row).Specific
                    sval = Trim(oCombo1.Selected.Value)
                    rs = oCompany.GetBusinessObject(SAPbobsCOM.BoObjectTypes.BoRecordset)
                    qstr = "select U_DoDate ,U_Oqty,U_Bqty from [@DOMAST] where  code = '" & sval & "'"
                    rs.DoQuery(qstr)
                    rs.MoveFirst()
                    '''''''''''''''''''''''''''''   value   come from  from test master
                    If Not (rs.EoF) Then
                        'Do While Not (rs.EoF) = False
                        oEdit = oColumns.Item("DOdt").Cells.Item(pVal.Row).Specific
                        oEdit.String = Format(rs.Fields.Item("U_DoDate").Value, "ddMMyy")  ''''''delivery date
                        oColumns.Item("Oqty").Cells.Item(pVal.Row).Specific.value = rs.Fields.Item("U_Oqty").Value  ''''' Orginal quantity
                        oColumns.Item("Rqtval").Cells.Item(pVal.Row).Specific.value = rs.Fields.Item("U_Bqty").Value ''''' Balance quantity 
                        oCheckBox.Checked = True   ........ i want        it will be true but  non editable ?????*****
             oMatrix.Columns.Item(5).editable=False           
    '''''''''''''  then it will be  non editable that means  edittable  false.  when i put
    oMatrix.Columns.Item(5).editable=False  then check box is not true
    rs.MoveNext()
                    End If
                    oColumns.Item(0).Cells.Item(pVal.Row).Click()
                    oMatrix.clearSelection()
                Catch ex As Exception
                End Try
            End If

    thanks for reply.
    when i am  select some value from combox in matrix there is a coloum  in check box .
    my check box is true. ok its working .
    when i set coloum. editable =false
    then check box is not true.
    If (pVal.ItemUID = "Mat1") And (pVal.ColUID = "DOno") And (pVal.EventType = SAPbouiCOM.BoEventTypes.et_COMBO_SELECT) And (pVal.Before_Action = False) Then
                oForm = SBO_Application.Forms.Item(FormUID)
                Dim oEdit As SAPbouiCOM.EditText
                Dim oCombo1 As SAPbouiCOM.ComboBox
                Dim qstr As String
                Dim sval As String
                Try
                    oItem = oForm.Items.Item("Mat1") '''''' Matrix
                    oMatrix = oItem.Specific
                    oCheckBox = oMatrix.Columns.Item(5).Cells.Item(pVal.Row).Specific
                    oColumns = oMatrix.Columns
                    colDONO = oColumns.Item("DOno")   '''''' Delivery order no
                    oCombo1 = colDONO.Cells.Item(pVal.Row).Specific
                    sval = Trim(oCombo1.Selected.Value)
                    rs = oCompany.GetBusinessObject(SAPbobsCOM.BoObjectTypes.BoRecordset)
                    qstr = "select U_DoDate ,U_Oqty,U_Bqty from [@DOMAST] where  code = '" & sval & "'"
                    rs.DoQuery(qstr)
                    rs.MoveFirst()
                    '''''''''''''''''''''''''''''   value   come from  from test master
                    If Not (rs.EoF) Then
                        'Do While Not (rs.EoF) = False
                        oEdit = oColumns.Item("DOdt").Cells.Item(pVal.Row).Specific
                        oEdit.String = Format(rs.Fields.Item("U_DoDate").Value, "ddMMyy")  ''''''delivery date
                        oColumns.Item("Oqty").Cells.Item(pVal.Row).Specific.value = rs.Fields.Item("U_Oqty").Value  ''''' Orginal quantity
                        oColumns.Item("Rqtval").Cells.Item(pVal.Row).Specific.value = rs.Fields.Item("U_Bqty").Value ''''' Balance quantity 
                                           oCheckBox.Checked = True
                        rs.MoveNext()
                    End If
                    oColumns.Item(0).Cells.Item(pVal.Row).Click()
                    oMatrix.clearSelection()
                Catch ex As Exception
                End Try
            End If

  • Word 2013 - check box changes to False

    Hello,
    Situation: A user clicks New to open a form from SharePoint 2013. User completes all appropriate boxes, closes, and saves the file with an appropriate file name. When the form advances to the next user for review, the
    Resubmit check box changes to False.
    The XML Mapping Pane was used to insert the check box. Meaning:
    Click Developer on the ribbon.
    Click XML Mapping Pane.
    In the XML Mapping pane, right-click Resubmit > Insert Content Control > Checkbox.
    I have used this approach in the past to avoid the issue I'm describing, and it has always worked. When the form is Rejected, the Initiator must then revise the form and resubmit for review by selecting the
    Resubmit check box.
    Any ideas how to remedy this issue and ensure the check box never changes to False?
    Appreciate any feedback.
    Thank you,
    Gary

    Hi Gary,
    Welcome to MSDN forum.
    This forum is discussing about the Windows forms and the controls in Winform in Visual Studio. Your issue seems more related with customizations in SharePoint, I would move this thread to the more related forum.
    Thanks for your understanding.
    Best Regards,
    Edward
    We are trying to better understand customer views on social support experience, so your participation in this interview project would be greatly appreciated if you have time. Thanks for helping make community forums a great place.
    Click HERE to participate the survey.

  • Check True or False Condition

    All,
    In my Form_Load module, I use For Loop to get data from Microsoft Access database to the texbox and that works fine.  The problem I have is that there is one column with True/False condition in the access database and I would like to know how to check
    if it is set to True or False.
    In the For Loop I use something like this for the textbox:
    Textbox1.text = row.cells("columnname").value.tostring()
    How do I check the column with the True/False condition
    VS 2008
    OS: XP
    Thanks,
    LA_Bob
    

    Hello,
    Thank you for your post.
    I am afraid that the issue is out of support range of VS General Question forum which mainly discusses the usage issue of Visual Studio IDE such as
    WPF & SL designer, Visual Studio Guidance Automation Toolkit, Developer Documentation and Help System
    and Visual Studio Editor.
    I am moving your question to the moderator forum ("Where is the forum for..?"). The owner of the forum will direct you to a right forum.
    If you are doing your code using visual basic, Visual Basic forum within Visual Studio Language Forums:
    http://social.msdn.microsoft.com/Forums/vstudio/en-US/home?category=vslanguages may help you.
    Best regards,
    We are trying to better understand customer views on social support experience, so your participation in this interview project would be greatly appreciated if you have time. Thanks for helping make community forums a great place.
    Click
    HERE to participate the survey.

  • How do I selectively  convert check boxes (Alt0168 Wingdings) but NOT Bookmarks into editable fields (from Word table)

    Acrobat X (Windows) is converting all fields from the Word table - making even the imported bookmarks editable. We just want the check boxes interactive. This has to be done on a large volume of documents, so it needs to be automated. I suspect some coding will be involved or perhaps a 3rd party app that allows one to selectively convert fields.
    Thanks!

    Ok, I found out that I need to apply the patch 5746875 to have that. But there only instruction to apply this patch on unix env. I need on Windows. Can any body help me?

  • Using the Convert button in Adobe XI results in a pdf with check boxes containing ? marks

    Using the Convert button in Adobe XI results in a pdf with check boxes containing ? marks@

    Hi Charles,
    Are you still facing this issue. Is this issue reproducible with every file you want to convert.
    Regards,
    Ajlan Huda.

  • Auto Convert Doesn't Do the Check Boxes

    I created a document in Word, created a PDF from it and am turning it into a form. The form only consists of lines and check boxes. The check boxes are square and begin blank. I want the user to put an x or a check (I don't care) in them as necessary.
    I used the automatic convert and it created fields where there were lines perfectly. But it ignored all the check boxes. Isn't there a way for it to automatically convert them too?

    Additional three thoughts: First, is there anything I can do while still in MS Word to enable Acrobat to see the check boxes easier? Different font? Same font, but different "character"? Etc. Second, if there is no way the check boxes can be recognized and converted, is there a way to do an after-the-fact search-and-replace, searching for the check boxes and replacing them with clickable boxes. By the way, I don't need to capture data; I just need for people to be able to fill out the form on their computer and print it. Third, if Acrobat can't do this, is there third-party form software that recognizes check boxes?

  • Table Control - Converting a Column to Check Box

    Hi,
    I need to have Check Boxs for 3 Columns in the Table Control of a Module Pool Programming Screen. Can you please suggest me how to do it?
    Appreciate Your Help.
    Thanks,
    Kannna

    In the Attributes of the Table Control u could enable the
    w/ selcolumn check box to get the first checkbox.
    For getting the 2nd and 3rd column as checkbox
    Declare 2 fields in the itab u r using for the TC
    Check like DD03D-KEYFLAG
    Add these fields in the TC ,
    Hope this will solve ur problem.,

  • The Bold, Italic, Underline functions have disappeared from the screen as have the check boxes at the beginning of the intro line

    The bold, italic, underline, color hi-lite and other boxes in that line suddenly disappeared from the screen and that section remains blank. However when writing a new message if I mouse over the area the boxes re-appear but without their previous alliterations. Also the system does not allow me to color hi-lite text and shows all the colors in a very fuzzy format when I mouse over where the hi-lite box used to be. Additionally the check box at the front of the email subject line has also disappeared but, again, if I mouse over & click it will perform a delete or other function. Need help!

    Hi ITBobbyP,
    According to your description, there are two text boxes at the bottom of the tablix and both of them are outside the tablix. When you export the report to excel, the upper text box could not be displayed.
    Microsoft Excel places limitations on exported reports due to the capabilities of Excel and its file formats. The following limitations apply to text boxes and text:
    Text box values that are expressions are not converted to Excel formulas.
    Text boxes are rendered within one Excel cell.
    The text effect "Overline" is not supported in Excel.
    Excel adds a default padding of approximately 3.75 points to the left and right sides of cells. If a text box’s padding settings are less than 3.75 points and is just barely wide enough to accommodate the text, the text may wrap in Excel.
    To troubleshoot the problem, please make sure that the text box meet the limitations. In addition, please validate that visibility of the text box is set to true, it’s better to set CanGrow property of text box to false.
    If the problem remain unresolved, i would appreciate it if you could give us detailed information about the report, I would be appreciated it if you could provide sample data and screenshot of the report. It will help us move more quickly toward a solution.
    Thanks,
    Wendy Fu

  • How to add unique id to check box in a table

    Hi Experts,
    I have a static table in which more than 500 records appears in the table, so vertical scroll is displaying in the table. In each row, check boxes and text boxes displays with the data. When the check box is selected, I will do the calculation based on the selected check box and displays the calculated value to text control of respected row. To achieve this, I am triggering the event iterating the loop over the context to find which check box is selected. When the page gets refreshed, cursor moves to first record.
    Since all the check boxes having the same id, I am not able to get from which check box this event has got triggered.
    Is there a way to assign unique id to each check box so that I can assign parameter to the control and get from which check box event got triggered. I have tried to generate the table dynamically, even there I couldn't assign id to each check box.
    Please through light on this request
    Thanks
    Murthy

    It is not specific to any platform but common in all whether is CE or 7.0 follow the given procedure
    1. Create a common onLeadSelect of table say it      selectedRow
    2. Assign the same event in onToggle     selectedRow  of checkbox.
    3. Now loop it in such a way that
         if (wdContext.nodeAppinvoiceData().getLeadSelection() >= 0)
                   wdContext.currentAppinvoiceDataElement().setIsPreviewSelected(true);
                   if (wdContext.currentAppinvoiceDataElement().getIsSelected())
                        wdContext.currentAppinvoiceDataElement().setIsSelected(false);
                        for (int i = 0; i < wdContext.nodeAppinvoiceData().size(); i++)
                             boolean flag = wdContext.nodeAppinvoiceData().getAppinvoiceDataElementAt(i).getIsSelected();
                             if (flag)
                                  break;
                             else
                   else
                        wdContext.currentAppinvoiceDataElement().setIsSelected(true);
              wdContext.currentAppinvoiceDataElement().setIsPreviewSelected(false);
              wdContext.nodeAppinvoiceData().clearSelection();
              wdContext.nodeAppinvoiceData().setLeadSelection(-1);
    BR
    Satish Kumar

  • Hiding text box based on check box checking

    Hello,
    I have a jsp in which based on whether the check box is checked or unchecked I want to hide or show a text box. I am including the text box in a div tag & calling a javascript function to set the style of the div to hidden or shown based on whether the check box is checked or not. although i am getting the correct values in the alerts the text box is not getting hidden.
       <td class="label"><label for="chk1"><gbms:message key="lblSearchforDeletedCustomer"/>:</label></td><td class="input">
                  <html-el:checkbox property="chk1" value="N" tabindex="3" onclick="javascript:checkboxClicked(document.forms['formCustomerOrVehicleMaintenance'])" onfocus="fnShowError(document.formCustomerOrVehicleMaintenance.chk1);"></html-el:checkbox> <gbms:message key="chek"/> 
                                 </td>
                                 <div id="delDateDiv" style:hidden>
                            <td class="label"><label for="txtDeleteDate"><gbms:message key="lblDeletedAsOf"/>:</label></td><td class="input">
                 <html-el:text property="txtDeleteDate" size="6" maxlength="40" tabindex="3" onchange="fnChanged()" onfocus="fnShowError(document.formCustomerVehicleMaintenanceDelete.txtDeleteDate);"></html-el:text> <a href="#" onclick="cal1xx.select(document.forms[0].txtDeleteDate,'anchor1xx','MMddyy'); return false;" name="anchor1xx"><img src="<%=request.getContextPath()%>/css/common/calendar.gif" border="0" style="cursor: hand"></a><gbms:help jsp="customerVehicleMaintenanceDelete" module="admin" languageCode="<%=request.getLocale().getLanguage()%>" field="DeletedAsOf"/>
                        </td></div>javascript function being called..
    function checkboxClicked(aThis)
                        var aform = document.forms['formCustomerOrVehicleMaintenance'];
                        var aDiv = document.getElementById('delDateDiv');
                        alert(aDiv.style.visibility);
                        alert(aDiv.innerHTML);
                        alert(aform.chk1.checked);
                        if(aThis.chk1.value == true)
                             aform.txtDeleteDate.value = '';
                             aform.txtDeleteDate.disabled = false;
                             aDiv.style.visibility = 'visible';
                        else
                             aform.txtDeleteDate.value = '';
                             aform.txtDeleteDate.disabled = true;
                             aDiv.style.visibility = 'hidden';
                   }

    in my javascript function the value returned is true when checkbox is checked & false when it is unchecked. visibility is also giving correct value in the alert. but still field is not hiding
              function checkboxClicked()
                        var aform = document.forms['formCustomerOrVehicleMaintenance'];
                        var aDiv = document.getElementById('delDateDiv');
                        alert(aDiv.style.visibility);
                        alert(aform.chk1.checked);
                        if(aform.chk1.checked)
                             aform.txtDeleteDate.value = '';
                             aform.txtDeleteDate.disabled = false;
                             aDiv.style.visibility = 'visible';
                             alert("inside if");
                             alert(aDiv.style.visibility);
                        else
                             aform.txtDeleteDate.value = '';
                             aform.txtDeleteDate.disabled = true;
                             aDiv.style.visibility = 'hidden';
                             alert("inside else");
                             alert(aDiv.style.visibility);
                   }

  • How to insert check box fields in a htmlb: tableview

    Hi,
    Can anybody tell me how to insert check box fields in a htmlb: tableview in a sequence of rows in a table view. How to generate the sequence no for the checkbox inorder to know the row that is checked.
    Thanks in advance,
    Aruna.

    Here is the code which has the custom "Checkbox" in the tableview & Triggers the event. <b>You can identify the checkbox based on cell ID (p_cell_id)</b> in the method "IF_HTMLB_TABLEVIEW_ITERATOR~RENDER_CELL_START" & Based on the event name + Cell ID. Look at the code & let me know if you any issue.
    <b>Layout:</b>
    <%@page language="abap" %>
    <%@extension name="htmlb" prefix="htmlb" %>
    <htmlb:content id               = "content"
                   design           = "design2002+design2003"
                   controlRendering = "SAP"
                   rtlAutoSwitch    = "true"
                   forceEncode      = "ENABLED" >
      <htmlb:page title="Test " >
        <htmlb:form>
          <%
      data TV_ITERATOR Type Ref To zcl_itr.
      data iterator type ref to IF_HTMLB_TABLEVIEW_ITERATOR.
      create object tv_iterator exporting appl_cons = application.
      iterator = tv_iterator.
          %>
          <htmlb:tableView id              = "fligts"
                           headerText      = "Flight"
                           width           = "100"
                           headerVisible   = "true"
                           design          = "alternating"
                           visibleRowCount = "10"
                           fillUpEmptyRows = "true"
                           showNoMatchText = "true"
                           filter          = "server"
                           sort            = "server"
                           onHeaderClick   = "MyEventHeaderClick"
                           table           = "<%= APPLICATION->itab %>"
                           iterator        = "<%= ITERATOR %>" />
        </htmlb:form>
      </htmlb:page>
    </htmlb:content>
    <b>Event Handling:</b>
    DATA: EVENT_ID1 TYPE REF TO IF_HTMLB_DATA.
    EVENT_ID1 = CL_HTMLB_MANAGER=>GET_EVENT_EX( REQUEST ).
    CASE EVENT_ID1->EVENT_SERVER_NAME.
    IF NOT event_id1 IS INITIAL.
       if event_id1->server_event+0(9) = 'chkevent'.
      SPLIT event_id1->server_event AT '-' INTO v_event v_dummy v_row v_col.
      endif.
    endif.
    method IF_HTMLB_TABLEVIEW_ITERATOR~GET_COLUMN_DEFINITIONS.
         CLEAR p_column_definitions.
        CLEAR p_overwrites.
        DATA: tv_column  TYPE TABLEVIEWCONTROL.
        tv_column-COLUMNNAME  = 'FLDATE'.
        tv_column-edit        = 'X'.
        tv_column-sort        = 'X'.
        tv_column-TITLE               = 'Flight Date'.
        tv_column-WIDTH  = '100'.
        APPEND tv_column TO p_column_definitions.
        CLEAR tv_column.
        tv_column-edit        = 'X'.
        tv_column-COLUMNNAME          = 'CONNID'.
        tv_column-TITLE               = 'Conn.ID'.
        tv_column-WIDTH  = '70'.
        tv_column-HORIZONTALALIGNMENT = 'center'.
        APPEND tv_column TO p_column_definitions.
        CLEAR tv_column.
        tv_column-edit        = 'X'.
        tv_column-COLUMNNAME          = 'CHECKBOX1'.
        tv_column-TITLE               = 'Check Box'.
        tv_column-WIDTH  = '30'.
        tv_column-HORIZONTALALIGNMENT = 'center'.
        APPEND tv_column TO p_column_definitions.
    endmethod.
    METHOD IF_HTMLB_TABLEVIEW_ITERATOR~RENDER_CELL_START.
           DATA: L_EVENT TYPE STRING.
      CASE P_TABLEVIEW_ID.
        WHEN 'fligts'.
          CASE P_COLUMN_KEY.
            WHEN 'CHECKBOX1'.
    *          CONCATENATE 'chk_event' '123' '2323' INTO L_EVENT SEPARATED BY '-' .
    CONCATENATE 'chkevent' p_cell_id INTO l_event SEPARATED BY '-'.
              P_REPLACEMENT_BEE = CL_HTMLB_CHECKBOX=>FACTORY( ID = P_CELL_ID
            ONCLICK = L_EVENT CHECKED = 'false' ).
          ENDCASE.
      ENDCASE.
    ENDMETHOD.
    Hope this will solve your problem.
    <b><i>* Reward each helpful answer.</i></b>
    Raja T
    Message was edited by:
            Raja T

  • How to use check box in a table

    i have a field in a internal table in which i have to put "X" if the user checks on a check box, for a particular row.
    please provideme with the required code .
    Thankyou.
    Upendra

    Hi upendra
    There are slight changes in the sivas code.Where is the data coming into the table.If its from a Model Node then iterate each element of the source node get that value compare and set the corresponding value in the element of the node binded to table.
    Create a boolean attribute "select" in the table node and bind it to checked property of the check box.
    for(int i=0;i<wdContext.node<tablenode>()..size();i++)
    if(wdContext.node<tablenode>().get<tablenode>ElementAt(i).select())
    wdContext.node<tablenode>().get<tablenode>ElementAt(i).set<yourattribute>(true);
    else
    wdContext.node<tablenode>().get<tablenode>ElementAt(i).set<yourattribute>(false);
    See the attribute is boolean so pass true or false as a values in setter methods.
    Regards
    Kalyan

  • How to put check box in a table format at the out put ?  Urgent issue...

    Hi,
    I am working an assignment to assign multiple roles for multiplr user.
    In selection screen we have to enter mutiple EMPNO from ..to
    1)  in second screen we will get the empno, First name, last name,  Position,
        From  date, To date, Sap user ID, Email id in the table formate with first
        column  with Check box.
    2) In second screen below the table I have to place the multiple roles just like in
       the step  loop format and below this one Execute button should be there.
    If we select the multiple employees or single employee and place the multiple roles or single roles and if I click the execute button then the multiple roles will be assigned to the multiple employees. The empno and roles will come from table and step loop to internal table and the same will pass to the BDC.
    For this requirement I prepered recording for Transaction PFCG. But I can't understand how to design the second screen that table format and the step loop format. Can anybody give any idea or any coding to design  the second screen.
    and how to meet the requirement. This is urgent issue. Good SDN points will be reworded.
    Witing for kind response.
    Thanks in advance.
    Bansidhar

    Hi upendra
    There are slight changes in the sivas code.Where is the data coming into the table.If its from a Model Node then iterate each element of the source node get that value compare and set the corresponding value in the element of the node binded to table.
    Create a boolean attribute "select" in the table node and bind it to checked property of the check box.
    for(int i=0;i<wdContext.node<tablenode>()..size();i++)
    if(wdContext.node<tablenode>().get<tablenode>ElementAt(i).select())
    wdContext.node<tablenode>().get<tablenode>ElementAt(i).set<yourattribute>(true);
    else
    wdContext.node<tablenode>().get<tablenode>ElementAt(i).set<yourattribute>(false);
    See the attribute is boolean so pass true or false as a values in setter methods.
    Regards
    Kalyan

Maybe you are looking for

  • Save Digital Data to a Text File

    I have digital data collected from two ports simultaneously as N number of samples in waveform that I do calculations on to get a result. I would like to save the raw data in a text file so that it can be easily viewed in an external program, like Ex

  • Black ink not printing

    My HP deskjet which is 2 months out of warranty, which i have recently bought new HP cartridges for, now won't print black (other colors are all fine). If have spent hours and hours trying to fix this, following all the advice on this forum - believe

  • Retreving the selected substring records from existing records.

    Hi all, SQL> select * from temp; C1 C2 1 abcdef 2 efbcda 3 axyz 4 abedcd I would like to retrieve only the records which have substring 'CD' from the available records.. Any help. Regards, ~ sri

  • I can't make or receive calls on my IPhone 4.

    I can't make or receive calls on my IPhone 4.  There's nothing but dead air on both ends and then it freezes.  If I can answer a call, it lasts for a few seconds then gets staticky and cuts out.  I took it to Verizon and they couldn't get it to work

  • Extracting operators and operands from the source code

    Hi there, I am looking for a way to extract operators and operands from a source code to do a complexity analysis of the code. The final outcome I am expecting is to get the number of operators and operands in the code, to perform a Halstead Complexi