Handling Check box in  BDC program

Hi Folks,
          I am developng a BDC for a transaction. The BDC has to pass four tabs in that transaction. Everything is working, but in the fourth tab, there is check box which need to be checked. But when the BDC program enters that tab..it throwing a error message saying 'No field with that name in this screen'. there are still some more check boxes in that tab. Is there any specific way to handle the check boxes...is there anything to add as extension for that check box field..pls suggest me...
         Thanks,
          Shyam.

hi,
check the screen field name.. like 'GLACCOUNT_SCREEN_CCODE-WAERS'
which field it is throwing error?? which transaction??
thanks,
vijay.R

Similar Messages

  • How to handle check box click in ALV grid

    Hi Experts,
    I use ALV grid using FM.
    I have list of delivery note items with one custom field as check-box. When I check the checkbox, all other lines related to the same delivery note should be automaticaly checked.
    Is there any event or function code, where I can handle single click to checkbox?
    Thanks&regards, 
    Jirka

    HI
    you can use following code in user command function .
    DATA :BEGIN OF IT_MAINDATA OCCURS 0,
          MAINDATA(1),
          IT_RD1(1),
    END OF IT_MAINDATA.
    data: V_INDEX TYPE I.
    DESCRIBE TABLE itab LINES LINE.
      DO. " line times.
        READ LINE SY-INDEX FIELD VALUE Iitab-RD1.
        IF SY-SUBRC NE 0. EXIT. ENDIF.
        CHECK V_INDEX > 0.
        CHECK itab-RD1 = 'X'.
        MODIFY itab INDEX V_INDEX.
        IT_MAINDATA-IT_RD1 = Iitab-RD1.
      ENDDO.
    i think is work.
    regards,
    Abhi

  • How to handle check box events in alv tree.

    hi,
    i am working in CL_GUI_COLUMN_TREE class.Also using Check box. Now i want to handle events for check box . I am new to ABAP Objects.
    Pls expaline in detail or send code
    thanks in advance,
    senthil kumar.r

    Hello Senthil
    Have a look at the sample report
    SAPCOLUMN_TREE_CONTROL_DEMO
    . The crucial points are:
    <b>(1) Register the required events at the control</b>
    * define the events which will be passed to the backend
      " checkbox change
      event-eventid = CL_GUI_COLUMN_TREE=>EVENTID_checkbox_change.
      event-appl_event = 'X'.
      append event to events.
      CALL METHOD G_TREE->SET_REGISTERED_EVENTS
        EXPORTING
          EVENTS = EVENTS
        EXCEPTIONS
          CNTL_ERROR                = 1
          CNTL_SYSTEM_ERROR         = 2
          ILLEGAL_EVENT_COMBINATION = 3.
      IF SY-SUBRC <> 0.
        MESSAGE A000.
      ENDIF.
    <b>(2) Set the event handler</b>
    assign event handlers in the application class to each desired event
      SET HANDLER G_APPLICATION->HANDLE_CHECKBOX_CHANGE FOR g_tree.
    <b>(3) Define and implement event handler method</b>
      METHOD  HANDLE_CHECKBOX_CHANGE.
        " this method handles the checkbox_change event of the tree
        " control instance
        " show the key of the node and the name of the item
        " of the clicked checkbox in a dynpro field
        G_EVENT = 'CHECKBOX_CHANGE'.
        G_NODE_KEY = NODE_KEY.
        G_ITEM_NAME = ITEM_NAME.
        CLEAR  G_HEADER_NAME.
      ENDMETHOD.
    Regards
      Uwe

  • How to handle check box in crm web ui 7.0

    Hi,
    As per the requirement, we need to disable the fields when we selected the check box in the same component and view,
    Please provide the step by step process or any link which will describe the check box functionality and disabling the fields
    Thanks.
    Veer

    Hi,
    If you need to disable a selected number of fields on teh selection of a checkbox, follow  the below steps.
    1. In the get_p method of the attribute which is a checkbox, add the code to call the server event everytime the user selects or deselcts the checkbox.
    2. Redefine the get_i method of all the attributes which should be disabled on the selection of the checkbox.
    3. Retrieve the value of the checkbox attribute. if the value is abap_true(i.e. it is enabled), set the return parameter rv_disabled of the method to abap_true. This needs to be done in the method get_i_<attribute_name> for all the attributes.
    Regards,
    Radhika

  • 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.

  • Question Related to Check-box in Dialog Program

    Hi All-
    I desgined check box in Table Control... In my Internal table I have 41 records, When user click on Select all button it selects only first 14 records from the table control...When the user uses page-down, then click on Select all, selects remaining 14 records and so on...
    But how to select all the records at a time instead of using page-down...
    Please advice me how to solve my problem!!!!
    Thanks,
    Sony

    I would not suggest doing it like that.  Instead move the MODULE USER_COMMAND outside of that loop.
    *  Screen Flow Logic 
    PROCESS AFTER INPUT.
    LOOP AT i_x002 .
    ENDLOOP.
    MODULE user_command_0600 .
    *  Module coding
    MODULE user_command_0600 input..
    CASE sy-ucomm.
    WHEN 'SELA'.
    loop at i_x002.
    i_x002-flag = 'X'.
    MODIFY i_x002.
    endloop.
    WHEN 'DELA'.
    loop at i_x002.
    i_x002-flag = space.
    MODIFY i_x002.
    endloop.
    ENDCASE.
    endmodule.
    Regards,
    Rich Heilman

  • Handling screen resolution fields in me21 for bdc programming

    I need to use BDC program for ME21 for that how to handle the screen resolution,
    i know CTU_PARAMS structure is there ,but how to use them, please send the model code. for handling check boxes fields.

    answered

  • Reading check boxi n a multiline classical report...

    hi,
    in my report, i have multiline data displayed...like for e.g.
    first line displays shipment data, second line is a continuation of shipment data. third line is a header line to show deliveries under that shipment, fourth line shows the deliveries , one per line and then next shipment and so on.
    now the first line of every shipment has a checkbox displayed.
    when the user finally chooses to print this report, i need to read only those shipments that are selecte by user and process only them.
    this is a simple classical report. please tell me how to write the code to capture the checkbox selection.
    thks

    Please don't duplicate the Post: handling check box in a report...
    Logic for Reading Checkbox values will remain same as per my reply in your previous post.
    The only thing you have to make sure is, don't write anything under the Checkbox field... Generally, in this type of requirement you should write your Checkbox in 1st or 2nd place and than start all your data from 5th place onwards.
    Regards,
    Naimesh Patel

  • Dialog Box  Problem in BDC Program...

    Hi friends,
    I am facing a problem while  creating service entry sheet no  throgh bdc ( Tcode ML81N) . I use 'no disply' mode in call transaction method.
    whenever i regarding in our development client there is no dialog box with the following screen.  But in QAS server it displays the same. I have already include the following code in my bdc program. But the dialog box  been displayed finally. Our user doesn't require this interaction. Kindly give solutions.
    perform bdc_dynpro      using 'SAPLMLSR' '0110'.
    perform bdc_field       using 'BDC_CURSOR'
                                  'IMKPF-BLDAT'.
    perform bdc_field       using 'BDC_OKCODE'
                                  '=OK'.
    perform bdc_transaction using 'ML81N'.
    Thanks & Regards,
    SP.Manavalan.

    Hi,
    Thanks for reply.
    I have checked log using SM37, it is not showing any error.
    Log details are as follows...
    Date       Time     Message text                                                                             Message class Message no. Messag
    08.05.2010 11:47:10 Job started                                                                                00           516          S
    08.05.2010 11:47:10 Step 001 started (program ZSDB_J1I5_REG_UPDATE_BDC, variant 1101_1_RMA, user ID STK)      00           550          S
    08.05.2010 11:47:20 Job finished                                                                                00           517          S

  • Pop up box is not handel in BDC program

    hi to all experts,
    in tcode ' IP10 '  one pop up box is came in simple processing and recording also. but when i used the system source code in program , this pop up box is not encounter on this conditions. how can i solve this issue.
    Help is appriciated.
    Regards:
    Mahesh

    hi,
    if the warning message coming in a pop-up window then it can be supressed in the following way.
    1. comment the lines of the code of bdc recording of that pop-up screen along with the perform of bdc ok code '=ENTE".
    2. use the structure ctu_params and fill the correspondings fiels, particularly the field nobinpt = 'X' and then use this structure in the call transcation statement as
    call transcation 'ME11'
    using bdcdata
    options from opt ( structure of ctu_params )
    3. At the time of recording use the option of check box " no batch input session ".
    regards,
    Alok

  • Issue with BDC program used for FBZ5 (Check Print)

    Hi all,
    I am having one requirement in Check printing. as per that i have made one Z program which will accept multiple Payment documents. I am passing selected accounting documents to BDC routine for Transaction FBZ5. (As in FBZ5 we can take a print for one Payment document not for multiple)
    We can have 3 scenarios in FBZ5
    1. Fresh Check printing (First time check printing)
    2. Old Check (printing for same Check no)
    3. New Check (After voiding older check)
    Category 1 and 2 are working fine but i am facing problem in category 3.
    For Category 3 : BDC Screen flow is like this
    A. Tcode FBZ5 Start program: SAPMFCHK Screen: 750 --> Click on 'Print'
    B. Program: SAPLSPO2 Screen: 0100  --> Here specify option 'New Check'
    C. Program: SAPMFCHK Screen: 0700
        - This program belongs to new Tcode FCH7
        - Here we have to give Void Reason code
    Now issue with Category 3:
    While executing BDC in online and background mode my control is terminating at step C mentioned above
    Troubleshooting:
    I have debugged standard program of FBZ5
    1. in Include MFCHKFD0 we can see call to Tcode FCH7  (PERFORM AUFRUF_FCH7.)
    2. in form AUFRUF_FCH7 i found code related to BDC
       also there one statement is getting triggered -->   CALL TRANSACTION 'FCH7' USING BDC MODE 'A'.
    So there is a BDC call inside my Z BDC program, so is this a reason why my program is not working for above scenario ?
    Or can't we handle above scenario in a way mentioned above?

    Hi Sandra,
    I was trying to upload customer master in fd01 using bdc. The screens were different while recording. So could not perform the upload. Thenone screen was skipped so that the bdc was working fine and the data was uploaded.
    This is the flow of the recording.
    'SAPMF02D' '0105'.
    SAPMF02D' '7105'
    SAPMF02D' '0111
    SAPMF02D' '0120
    SAPMF02D' '0130
    SAPMF02D' '0210
    SAPMF02D' '0215
    SAPMF02D' '0220'
    SAPMF02D' '0230'
    SAPMF02D' '0610
    After the second screen was deleted the bdc worked fine.

  • Include programs are not having Unicode checks active check box ?

    Hi all,
    Why the Include programs are not having Unicode checks active check box ?
    Thanks in advance
    KR

    >
    KR wrote:
    > Hi all,
    >
    > Why the Include programs are not having Unicode checks active check box ?
    >
    > Thanks in advance
    > KR
    Hi KR,
    First of all, Because of include programs not executable by any where, its mandatory to attach all the includes to one main program which is to be usefull for business or enduser purpose. Here only unicode concept will occurs whether the server is being used in only one country or many. if its used in only one country no need to go for unicode active checks, iff the server is used in more than one country, its mandatory to go for unicode checks active.
    Regards
    Arani Bhaskar

  • Handling Information Pop-up box in BDC Call transaction

    Hi All,
    How to handle Information Pop-up box in BDC Call transaction method.
    If we can't handle this ,then what is the alternate for this ???
    Please I need it urgently ....
    Thanks in advance

    Hi,
    Don't worry about information popup box.
    Go to SHDB transaction and record the transaction for which u want write BDC using bdc recording. That will handle all the screens accordingly.
    Regards,
    Sankar

  • How to handle the check box in the alv tree display

    Hello,
    in my ALV Tree Report i have a check box in the output.
    I have one check box in the selection screen as select all .
    if this is selected then all the check boxes in the output must be selected that is (X).
    am using CL_GUI_ALV_TREE  for this.
    Please give me some input how to make that check boxes 'X' in the above mentioned case.
    With Regards,
    Sumodh.P

    Sumodh,
    check this
    Re: Select all checkbox in ALV tree
    please search before posting
    Thanks
    Bala Duvvuri

  • Getting control into my program on just clicking the check box

    Hi,
    I have created 4 check boxes in the ALV grid output. If I click on any one of the check boxes, it should disable certain check boxes. How to do this.
    Please answer this. Remember it should work the moment I click on the check box.
    Thanks,
    Prem

    Hi Prem
    Define your check boxes with the user command options. And then whatever logic about the disabling the other check boxes based on one can be done in AT SELECTION-SCREEN OUTPUT event.
    Reward points for useful answers !!
    ~Ranganath

Maybe you are looking for

  • How do I remove/disable the Windows 8 Mail App

    How can I remove the Windows 8 Mail App from my computer? I am unable to select another mail provider and I absolutely do not want to get my Passport aka Windows Live ID involved with my mail under any conditions whatsoever. I have a vbs script that

  • Vendor Evaluation- Confirmation date Adherence

    Hi Team In vendor evolution I am using Delivery as my main criteria and Confirmation date Adherence as sub criteria and assigned weighting 1 .  I have also entered the % and scoring both positive and negative.  But when I am using T code ME61 system

  • Item added to master not showing up cs4

    Hello all,  so here's my dilemma, I started a document that had left and right master pages. This document was used for various publications so items kept changing while the structure of the master remained. If I needed to edit, I overrode the master

  • No way to add images for story-boards to the project?

    Apparently, in all the Great Ideas on building this program (sarcasm included free) no one thought about perhaps "sharing" things other than "documents". So ... got an image on your local computer you want to add as a story-board image? Fuhgedaboutit

  • How to print the grade of sal?.

    how to print grade based on sal. think my table is having ename,sal columns. how to print the grade?. where i have to write the code?. pls give some tips i want to print like grade      ename sal 1 abc0     5000 2     abc1     4000 2     abc2     400