Changes on Selection option in MPP is not transport to Test Sys

Hi,
   I created Selection Option with no interval Using Sub screen in Modlue pool Programming. I have need two textbox (Inputoutput) and labels in same Sub screen. It is working fine in Develop System but I transport this Sub screen into Test System. Test System has only sub screen in Selection option but not there in two textbox and labels.
Again I created request and send to Test System but that sub screen have only one textbox.
Please give the advice
Thanks,
K.Rani.

Try to put the labels out of the subscreen, trasnport and see if they appeared then, otherwise, see the transport log for the errors,
regards

Similar Messages

  • How can i used pai in screen 1000 to change the select-options field?

    hi,all.
    I want used pai to change the select-options field,but it can't works.
    the mainly code is:
    REPORT  ZTEST99.
    TABLES :MARA,MAKT,MARC.
    SELECTION-SCREEN BEGIN OF BLOCK B0 WITH FRAME TITLE TITLE0 .
    select-options:s_matnr for mara-matnr,
                   s_werks for marc-werks MODIF ID ID1.
    SELECTION-SCREEN END OF BLOCK B0.
    parameters:p_flag as checkbox.
    at selection-screen OUTPUT.
       LOOP AT SCREEN.
       IF P_FLAG = 'X' .
       IF screen-group1 = 'ID1'.
             screen-input = '0'.
        ELSE.
          screen-input = '1'.
        ENDIF.
        MODIFY SCREEN.
    ENDIF.
        ENDLOOP.
    START-OF-SELECTION.
    CALL SCREEN 1000.
    when i click p_flag,then i want to change s_werks from OBLIGATORY to no OBLIGATORY.
    how can i realized?
    Thanks for all.
    Sun

    Hi ,
    change your code like this.
    Change in your code:
    SELECTION-SCREEN BEGIN OF SCREEN 100.
    SELECT-OPTIONS : s_matnr for mara-matnr,
    s_werks for marc-werks MODIF ID ID1.
    SELECTION-SCREEN END OF SCREEN 100 .
    At selection-screen.
    if sy-dynnr = '100'.
    IF P_FLAG = 'X' .
    LOOP AT SCREEN.
    IF screen-group1 = 'ID1'.
    screen-required = '0'.
    ENDIF.
    MODIFY SCREEN.
    ENDIF.
    ENDLOOP.
    else.
    LOOP AT SCREEN.
    IF screen-group1 = 'ID1'.
    screen-required = 1.
    ENDIF.
    MODIFY SCREEN.
    ENDIF.
    ENDLOOP.
    my code :
    REPORT  Z50871_SELECTOPS_DYNAMIC.
    PARAMETERS : CH_EBELN AS CHECKBOX,
                 CH_VBELN AS CHECKBOX.
    DATA: V_EBELN TYPE EKKO-EBELN,
          V_VBELN TYPE VBAK-VBELN.
    SELECTION-SCREEN BEGIN OF SCREEN 100.
    SELECT-OPTIONS : EBELN FOR V_EBELN MODIF ID G1,
                     VBELN FOR V_VBELN MODIF ID G2.
    SELECTION-SCREEN END OF SCREEN 100 .
    AT SELECTION-SCREEN OUTPUT.
      IF SY-DYNNR = 100.
        IF CH_EBELN = 'X' AND
           CH_VBELN = ''.
          LOOP AT SCREEN.
            IF SCREEN-GROUP1 EQ 'G1'.
              SCREEN-ACTIVE = '1'.
            ELSE.
              SCREEN-ACTIVE = '0'.
            ENDIF.
            MODIFY SCREEN.
          ENDLOOP.
        ELSEIF CH_VBELN = 'X' AND
           CH_EBELN = '' .
          LOOP AT SCREEN.
            IF SCREEN-GROUP1 EQ 'G2'.
              SCREEN-ACTIVE = '1'.
            ELSE.
              SCREEN-ACTIVE = '0'.
            ENDIF.
            MODIFY SCREEN.
          ENDLOOP.
        ELSEIF CH_EBELN = 'X' AND CH_VBELN = 'X'.
          LOOP AT SCREEN.
            IF SCREEN-GROUP1 EQ 'G1'
               OR SCREEN-GROUP1 EQ 'G2' .
              SCREEN-ACTIVE = '1'.
            ENDIF.
            MODIFY SCREEN.
          ENDLOOP.
        ENDIF.
      ENDIF.
    AT SELECTION-SCREEN.
    IF SY-DYNNR = 1000.
      IF CH_EBELN = 'X' OR CH_VBELN = 'X'.
        CALL SELECTION-SCREEN 100.
      ELSE.
        MESSAGE I000(Z50871MSG) WITH 'Please select atleast one checkbox'.
      ENDIF.
    ENDIF.
    regards
    Sandeep Reddy

  • How to change the select-options fields length to long

    Dear friends:
       I had develop a program for sent email,and it have a field for fill mail address as below:
       data: lmail like adr6-smtp_addr.
       select-options: mailadd for lmail no intervals.
       my customer complain that the field is too short,but I can not change it to longer,the select-options component limit the visible length , how can i do for this problem!

    Dear All:
      I had realized this function.
      I defined a parameter and a pushbutton to replace the select-option componet,
    the code share as below.
    data: lmail like adr6-smtp_addr.
    SELECTION-SCREEN BEGIN OF LINE.
    parameters: mailCopy like lmail.
    selection-screen:pushbutton 64(5) pubu user-command mailButt.
    SELECTION-SCREEN END OF LINE.
    select-options: mailadd for lmail NO INTERVALS no-display.
    at selection-screen output.
      CLEAR l_count.
      DESCRIBE TABLE mailadd LINES l_count.
      IF l_count > 1.
        write ICON_DISPLAY_MORE as icon to pubu.
      ELSE.
        write ICON_ENTER_MORE  as icon to pubu.
      ENDIF.
    at selection-screen.
      CLEAR l_count.
      DESCRIBE TABLE mailadd LINES l_count.
      IF NOT mailCopy IS INITIAL AND mailadd[] IS INITIAL.
        MailAdd-low = mailCopy.
        Append mailadd.
      ENDIF.
      IF l_count = 1 and mailCopy IS INITIAL.
        refresh mailadd.
        clear mailadd.
      endif.
      if sy-ucomm = 'MAILBUTT'.
        perform show_box.
      endif.
    *       FORM show_box                                                 *
    FORM show_box.
      TYPE-POOLS aqadh .
      DATA: tab_and_field TYPE  rstabfield.
      tab_and_field-tablename = 'ADR6'.
      tab_and_field-fieldname = 'SMTP_ADDR'.
      CALL FUNCTION 'COMPLEX_SELECTIONS_DIALOG'
           EXPORTING
                TEXT           = 'SET E-Mail To '
                tab_and_field  = tab_and_field
           TABLES
                range          = MAILADD
           EXCEPTIONS
                no_range_tab   = 1
                cancelled      = 2
                internal_error = 3
                OTHERS         = 4.
      IF NOT MAILADD[] IS INITIAL.
        READ TABLE MAILADD INDEX 1.
        MAILCopy = MAILADD-LOW.
      ELSE.
        CLEAR MAILCopy.
      ENDIF.
    ENDFORM.

  • Can I change the select option text for pnp ldb ?

    hi Akll,
    I am using a pnp logical database in my report and I have created my own hr category because i wanted to use field ename from the ldb in the selection screen. Now the problem with ename is I cant do a case sensitive search.
    So I have replaced it with sname, so now my screen has sname instead of ename, however I want to change the selection text for select option ( at present it is 'EE name can be sorted' )
    Kindly advise,
    thanks,
    GV

    I guess the text cannot be changed.. anyways you can add the field as an additional field by normal coding in your report

  • How to change the select options selection text dynamically in webdynpro abap ?

    I am using standard interface WDR_SELECT_OPTIONS.... i want to change the Selection text dynamically in my select options.I.E. if the select option is for VBELN field than i want to change its description SALES ORDER Number through Code to some other text.
    If anyone can please help me in this.

    Hi,
    You can achieve your requirement as below
    Get the range table of your selection field as below
              data lt_range_table type ref to data.
              wd_this->m_handler->GET_RANGE_TABLE_OF_SEL_FIELD(
                        exporting
                        i_id = 'VBELN'
                        receiving
                        rt_range_table = lt_range_table ).
    Update the selection field with new description - 'Your New Text'
              wd_this->m_handler->UPD_SELECTION_FIELD(
                        exporting
                             I_ID = 'VBELN'
                             I_DESCRIPTION = 'Your New text'
                             I_IS_AUTO_DESCRIPTION = abap_false
                             IT_RESULT = lt_range_table ).
    You can also pass the other parameters as per your requirement
    Hope this helps you.
    Regards,
    Rama

  • Changing generic selection parameters for Payment advice notes

    Hi,
    I want to add few more generic selection parameters for Automatic Payment advice notes generation on the seletion screen(f110 - rffoavis_fpaym). Please let me know the config settings for doing this.

    Hi Pradeep,
    you can change the sender, when you change the system-field SY-UNAME before calling FM SO_NEW_DOCUMENT_ATT_SEND_API1.
    REPORT Z_TEST_SEND_MAIL.
    h_uname must be a SAP-UserId.
    sy-uname = h_uname.
      CALL FUNCTION 'SO_NEW_DOCUMENT_ATT_SEND_API1'
        EXPORTING
          DOCUMENT_DATA              = DOC_CHNG
         PUT_IN_OUTBOX              = 'X'
          COMMIT_WORK                = 'X'
        TABLES
          PACKING_LIST               = OBJPACK
          OBJECT_HEADER              = OBJHEAD
          CONTENTS_BIN               = OBJBIN
          CONTENTS_TXT               = OBJTXT
          RECEIVERS                  = RECLIST
        EXCEPTIONS
          TOO_MANY_RECEIVERS         = 1
          DOCUMENT_NOT_SENT          = 2
          OPERATION_NO_AUTHORIZATION = 4
          OTHERS                     = 99.
    I tried it and it was successfull.

  • Made changes and selected 'save' but it will not save in directory

    First, let me say I am new to Mac and iWeb in general so I have lots of novice questions, but so far using my Mac for video-related things and working on my website has been great! (Should have switched to mac long ago)
    My question/problem: I built a website using iWeb08 and used Cyberduck (thanks to this forum) to FTP it to my domain. Everything was fine. Today, I changed a page on the site and from the iWeb File menu selected 'Save.' I then went to upload (with Cyberduck) to my domain and noticed when choosing files that the changes had not been saved. I opened iWeb back up and the changes were there, but they are not making it to where I saved the webpage on my computer, so therefore Cyberduck was uploading the old version of the website. What am I doing wrong??
    Thanks in advance!
    -Mike
    Message was edited by: FisheyeSC78

    Today, I changed a page on the site and from the iWeb File menu selected 'Save.'
    Save doesn't do what you think. You need to do File > Publish to Folder for any of your changes to be reflected in what you upload via ftp.

  • Change query select option values via enhancement RSR00001

    I have got a query that calls the The enhancement RSR00001. Does anyone know if there is any way of changing the values of the selection screen variable once the user has press execute?
    I can get the values they have entered in step 3 with the table I_T_VAR_RANGE but dont seem to be able to change them and get the values back to the program.
    Any help would be much appreciated!
    Regards
    Martin

    Hi Mart,
    here's an example coding. Use step 2 (after user-input) for the coding.
    Let's say your old variable is named ZFVAROLD the new one is ZFVARNEW.
    DATA: xh_var TYPE  rrrangeexit,
          l_s_range type rsr_s_rangesid.
    CASE i_step.
      WHEN '2'.
        CASE i_vnam.
          WHEN 'ZFVARNEW'.
            READ TABLE i_t_var_range INTO xh_var WITH KEY 
                       vnam = 'ZFVAROLD'.
            IF sy-subrc EQ 0.
    calculate the new value dependend on the old value (xh_var-low).
                l_s_range-low = new value.
                l_s_range-sign   = 'I'.
                l_s_range-opt    = 'EQ'.
                CLEAR e_t_range.
                APPEND l_s_range TO e_t_range.
             endif.
    That's it! Just let me know if you need more information.
    Regards
    Nicola

  • Select options higher range value not appearing

    Dear Experts,
    Carrid : AA to AZ
    But at runtime i see that low value is AA and high value is null....
    written code in wdoinit and code in button to search values.
    code of wddoinit:
      DATA: LT_RANGE_TABLE TYPE REF TO DATA.
      DATA: LR_COMPONENTCONTROLLER TYPE REF TO IG_COMPONENTCONTROLLER,
                 L_REF_CMP_USAGE TYPE REF TO IF_WD_COMPONENT_USAGE.
      L_REF_CMP_USAGE = WD_THIS->WD_CPUSE_SELECT_OPTIONS( ).
      IF L_REF_CMP_USAGE->HAS_ACTIVE_COMPONENT( ) IS INITIAL.
                 L_REF_CMP_USAGE->CREATE_COMPONENT( ).
      ENDIF.
      WD_THIS->M_WD_SELECT_OPTIONS = WD_THIS->WD_CPIFC_SELECT_OPTIONS( ).
      WD_THIS->M_HANDLER = WD_THIS->M_WD_SELECT_OPTIONS->INIT_SELECTION_SCREEN( ).
      LT_RANGE_TABLE = WD_THIS->M_HANDLER->CREATE_RANGE_TABLE
                                                         ( I_TYPENAME = 'S_CARR_ID' ).
      WD_THIS->M_HANDLER->ADD_SELECTION_FIELD
                                                         ( I_ID = 'S_CARR_ID'   IT_RESULT = LT_RANGE_TABLE ).
    can anyone pls help me to resolve this.
    Regards......
    Sajid
    Edited by: shaik sajid on May 17, 2009 3:39 PM

    got it."should press enter after entering values"..i am new to webdynpro and learning on my own,hope i will be successful...

  • Changes in Customizing for agent assignment do not transport well

    Hi,
    We have made changes in some tasks regarding agent assignment (we select the option 'General Task' in the Attributes button). This generates a Customizing request.
    After releasing these 2 requests (Customizing and Workbench), we transport them from Development to Test. But when checking the new workflow in Test, the Customizing modifications regarding agent assignment do not occur.
    We have tried the two possible sequences of transporting the requests: first Customizing and then Workbench, then the other way, with same results.
    Is there any specific order that should be followed to correctly transport Customizing and Workbench requests?
    I appreciate your help!
    Regards,
    Ivson

    Thanks a lot,
    Our wf doesn´t use organizational structure, but checking the transport logs as you suggested (that´s what I should've done first!), has shown an error of type 12 in the last Customizing requests we have sent.
    The log error's header says
    'Method execution 08.09.2006 16:01:39   (12) Canceled',
    Going to the details,
    'Execution of programs after import (XPRA)'
    'Ended with return code:  ===> 12 <==='
    There is also one Workbench request with the same type of error.
    All clues are welcome,
    Best regards,
    Ivson

  • Hierarchy Transfer Strucutre & Transfer Rules are not transported to QA sys

    hai
    I have one master data infobject. And i loaded the text , attribute, hierarchy data from Flat file.
    I need to transport it QA system . I did it.
    But when i checked in QA system. It says that "HIERARCHY TRANSFER STRUCUTRE" is not avaialbel in Qa system .
    So how can i transport the "Hierarchy Transfer Strucutre & Transfer Rules" to QA ssytem .
    Please tell me
    rizwan

    transaction SM59 /  R/3 connections; you should see your system there.
    double click and Test connection.
    then menu/test/authorization.
    if you have transported stuff already then it is most likely because of your flat file source system.... Ensure that they're defined exactly the same way in your DEV and PROD! Right click this source system and perform a CHECK and/or RESTORE and/or ACTIVATE.
    Partner profiles should also be similar. Transaction WE20 / Partner type LS / your flat file sys.
    Finally ensure that your prod sys can access your flat file the same than your DEV!
    did you already import TRules from with flat file?
    hope that helps
    Olivier.

  • Select option greyed out for fields of custom DataSource (rso2, rsa6)

    Hi
    Why are several fields, in my custom DataSource (created in rso2) not available for select?
    I do not think this is a permission issue, since several fields are selectable, but not all fields.
    It is not the data type, since I see other custom DataSources that have the same data type, and it is selectable as a select option.
    This is not a DataSource that was provided by SAP, it is completely custom, and uses a custom data definition (defined as a structure via se11), and a custom function.
    I have read the responses to similar questions, but have not found an answer that explains how to make the field selectable for select.
    What determines which fields can be selected for selection, and which fields have this option greyed out (not selectable)?
    I have come across multiple answers, for similar questions, that suggest an abap program to directly update table roosfield.
    Is this safe?
    IF I choose this route will I need to run the update program on production, or will the change it makes to my dataSource transport with my transport?
    (I can test this).
    What I most need to know is If this suggestion is safe, or if it has side effects?
    Thank you

    Hi Eileen,
    In Least case to enable the selection for the fields with the below program:
    Below code is for your reference which will use to unhide objects in RSO2 or RSA6 for Data source( in code for BELNR, KUNNR, VBELN, BUDAT fields are unhiding for 0fi_ar_4 data source selection option) . Still need any clarifications let me know.
    SE38: Create a program for ref below code.
    REPORT ZNP_SELE_DS.
    tables: ROOSFIELD.
    UPDATE ROOSFIELD SET SELECTION = 'P'
    WHERE OLTPSOURCE = '0FI_AR_4' AND   OBJVERS = 'A' AND FIELD = 'BELNR'.
    UPDATE ROOSFIELD SET SELECTION = 'P'
    WHERE OLTPSOURCE = '0FI_AR_4' AND OBJVERS = 'A' AND FIELD = 'KUNNR'.
    UPDATE ROOSFIELD SET SELECTION = 'P'
    WHERE OLTPSOURCE = '0FI_AR_4' AND OBJVERS = 'A' AND FIELD = 'VBELN'.
    UPDATE ROOSFIELD SET SELECTION = 'P'
    WHERE OLTPSOURCE = '0FI_AR_4' AND OBJVERS = 'A' AND FIELD = 'BUDAT'.
    Thanks & Regards,
    Srinu.Rapolu

  • One search help for multiple select-options in webdynpro abap

    Hi,
    I need a way to use one search help for multiple select-options fields. My scenario is :
    I have a table for keeping different organizational units' values of different systems. I have pasted some sample data from this table at the end of this mail. On the screen I want to have 1 select-options filed for werks, and 1 select-options filed for vkorg. (In fact I will have more org. unit fields...) In the beginning of my application the user will select sid.
    If the user selects ADS as SID, when he opens search-help for the first org. unit (werks), he will see the records with SID: ADS, VARBL = $WERKS, LANGU = SY-LANGU.
    If the user selects AGT as SID, when he opens search-help for the second org. unit (vkorg), he will see the records with SID: AGT, VARBL = $VKORG, LANGU = SY-LANGU.
    I have created a search-help taking SIDD, VARBL and LANGU as import parameters; used field mapping and bound this search help to my table. I have created 2 context nodes : org1 and org2 having attributes SID, VARBL, VALUE, LANGU .
    I have assigned related SID, VARBL and Langu values to these attributes at runtime as I needed. That way, if I use input field and reference to the related context attributes org1-value and org2-value2 accordingly, search help works well as I want.
    However, when I use select-options field , I can not bind the field to the context data. I can give reference only to ddic structure. Is there any way to reference to a context attribute? I searched for this in SDN, but could find nothing.
    I think I won't be able to use this way. What do you say?
    As I read from forums maybe using OVS help will be suitable for me. But I have to use one search-help for all select-options fields. Do you know how I can determine the active select-options field and pass its name (for instance "werks" ) as parameter to this OVS search help. (Also I'll pass SID and LANGU.)
    MY TABLE (ZBYYT080) CONTENTS:
    SID     VARBL     VALUE     LANGU     VTEXT
    ADS     $WERKS     1     T     Werk 0001
    ADS     $WERKS     11     T     OZYAS  GIDA URETIM YERI
    ADS     $WERKS     5501     T     BOYA GEBZE FABRİKASI
    ADS     $WERKS     5502     T     BOYA CIGLI FABRİKASI
    AGT     $WERKS     2301     T     KAMLI DAMIZLIK
    AGT     $WERKS     9601     T     PANAR DENIZ URETIM YERI
    ADS     $VKORG     22     T     AA KİMYASALLAR
    ADS     $VKORG     8001     T     İINSAAT BOYALARI
    AGT     $VKORG     6500     T     DAMk St.Org
    AGT     $VKORG     5400     T     PANAR St.Org.
    I wish I'm clear enough..
    I will be gald if someone answers me as soon as possible...
    Thanks İn advance..
    MERAL

    Hi,
    Your ques is how to refer to a DDIC search help to refer to selection screen parameter ?
    Am I right ?
    If Yes, then in the interface IF_WD_SELECT_OPTIONS
    method ADD_SELECTION_FIELD, ADD_PARAMETER_FIELD etc
    have importing param like I_VALUE_HELP_TYPE and  I_VALUE_HELP_ID, I_VALUE_HELP_MODE, I_VALUE_HELP_STRUCTURE
    etc which may help you to link your create DDIC Search help to selection screen params.
    this is just a clue from my side. I haven't tried it myself.
    You can go to the where used list of this method and find some sample implementations which use these params.
    Hope this helps.
    Regards
    Manas Dua

  • Select-option in AR02 txcode

    Hi,
    I want to keep select-option in AR02 txcode in the selection screen SETTINGS, i want
    to replace REPORT DATE from parameter to select-options.
    I have copied the standard programs RAGITT_ALV01 and LDB ADA into
    Zprogram can anyone guide me to this requirment.
    Regards
    VEnk@

    Hi ilesh,
    Thanks for the answer. Actually someone have prepared this report but report is running
    correctly when we are not checking the depreciation checkbox for the date rang (select-options).
    It is not running correctly i mean it is fecthing wrong data according to the date
    range when deprication checkbox is checked. Hope you got it now.
    Please check my subroutine get data.
    FORM GET_DATA .
    Populate Report Start Date
      CLEAR FS_VARI_CONTENTS.
      FS_VARI_CONTENTS-SELNAME    = 'BERDATUM'.
      FS_VARI_CONTENTS-KIND       = C_P.
      FS_VARI_CONTENTS-SIGN       = C_I.
      FS_VARI_CONTENTS-OPTION     = C_EQ.
      FS_VARI_CONTENTS-LOW        = BERDAT1.
      FS_VARI_CONTENTS-HIGH       = SPACE.
      APPEND FS_VARI_CONTENTS TO T_VARI_CONTENTS.
    Populate Variant table
      PERFORM POPULATE_VARIANT_TABLE.
      W_FLAG = '1'.
    Submit report ZRAGITT_ALV01 using variant PPE_VARIANT
      PERFORM SUBMIT_REPORT_ZRAGITT_ALV01 TABLES ITAB_DATA1[]
                                          USING  W_FLAG.
    IF ( BERDAT2 IS NOT INITIAL ) AND
      IF BERDAT1 NE BERDAT2.
        DELETE T_VARI_CONTENTS INDEX 1.
      Populate Report End Date
        CLEAR FS_VARI_CONTENTS.
        FS_VARI_CONTENTS-SELNAME    = 'BERDATUM'.
        FS_VARI_CONTENTS-KIND       = C_P.
        FS_VARI_CONTENTS-SIGN       = C_I.
        FS_VARI_CONTENTS-OPTION     = C_EQ.
        FS_VARI_CONTENTS-LOW        = BERDAT2.
        FS_VARI_CONTENTS-HIGH       = SPACE.
        INSERT FS_VARI_CONTENTS INTO T_VARI_CONTENTS INDEX 1.
        W_FLAG = '2'.
      Submit report ZRAGITT_ALV01 using variant PPE_VARIANT
        PERFORM SUBMIT_REPORT_ZRAGITT_ALV01 TABLES ITAB_DATA2[]
                                             USING W_FLAG.
      ENDIF.                               " IF BERDAT1 NE BERDAT2
      IF W_ENDDATE IS NOT INITIAL.
        IF W_ENDDATE NE BERDAT1.
          DELETE T_VARI_CONTENTS INDEX 1.
        Populate Report End Date
          CLEAR FS_VARI_CONTENTS.
          FS_VARI_CONTENTS-SELNAME    = 'BERDATUM'.
          FS_VARI_CONTENTS-KIND       = C_P.
          FS_VARI_CONTENTS-SIGN       = C_I.
          FS_VARI_CONTENTS-OPTION     = C_EQ.
          FS_VARI_CONTENTS-LOW        = W_ENDDATE.
          FS_VARI_CONTENTS-HIGH       = SPACE.
          INSERT FS_VARI_CONTENTS INTO T_VARI_CONTENTS INDEX 1.
          W_FLAG = '3'.
    This is where i was strucked in.
    Regards
    VEnk@
    Edited by: Venkat Reddy on Sep 21, 2009 12:59 PM

  • ERROR IN SELECT-OPTIONS COMPONENT

    Hi Friends,
    Currently, I am working on SELECT-OPTIONS component, Variants.
    In component controller WDDOINIT, I have got the instantiated the select-options component.
    And I have one more pop-up view, in Get_variant action method ,I will be getting the data of Variants and Using the methods set_range_table_of_sel_filed( ) and set_value_of_parameter_filed( ), I am setting the data to Selection-screen.
    For select-options fileds.
    CALL METHOD wd_comp_controller->m_handler->set_range_table_of_sel_field(
                        EXPORTING
                        i_id           = l_searchparameter-name
                        it_range_table = l_dref ).
    for Parameter fileds.
    ALL METHOD wd_comp_controller->m_handler->set_value_of_parameter_field(
                                    EXPORTING
                                    i_id = l_searchparameter-name
                                    i_value = l_dref ).
    It runs successfully for all the fileds , and after coming out of this method, I am getting an error like
    Subnode WDR_SELECT_OPTIONS#COMPONENTCONTROLLER.CONTEXT.BEGDA does not exist.
    But in webdynpro, For select-option fileds we will not be creating any context.
    Could you please help me, in solving this issue.
    Regards,
    Xavier.P
    Edited by: Xavier Reddy on Jan 20, 2009 11:07 AM

    Hi Xavier,
    CALL METHOD wd_comp_controller->m_handler->set_range_table_of_sel_field(
    EXPORTING
    i_id = l_searchparameter-name
    it_range_table = l_dref ).
    Put a break point on the method and check what value is passed in i_id field because here we pass the name of the field for which we want to create the range.
    Regards
    Arjun
    Edited by: Arjun on Jan 20, 2009 4:11 PM

Maybe you are looking for

  • RFC call error with no exception associated.

    I'm remotelly calling FM L_TO_CREATE_SINGLE. When the ubication is locked up the FM produces an error which results in lose of contact with the remote system or something like that. What I get is a dump with CALL_FUNCTION_RECEIVE_ERROR. I've looked a

  • Syncing music from iPhone 5S to PC iTunes

    I have had iTunes for a decade and taken it from computer to computer. My latest iPhone has more than 6000 songs on it from the original syncing. Now the iTunes library on my PC AFTER "back up" and "manual backup" only shows about 500 songs. The iPho

  • How to download netflix on an American bought ipad

    I Have an American bought IPad that will not allow sky Go and netflix to download in ireland What can I do please???

  • Always install applications into non-global zones?

    I am planning on taking full advantage of Containers and Zones as I migrate servers and applications to Solaris 10. During this migration process, I believe that I will have a need to initially just run just one application on a server. I fear that i

  • Problem in displaying a datablock... Urgent!

    hello guys, i have a serious problem to solve. It's urgent for me . First of all i have a datablock which contains some data from the database table mis_efhmeries. Now, i want to display in the screen 3 columns , 1 from the database (so i make the ot