Value table

Does the value table will be created as a transparent table?

hi,
Value table exists at a domain level and the entries are not stored at the underlying database as how transparent table entries get stored.
Regards,
Santosh

Similar Messages

  • How to populate Value in Pop Up Via Value table

    Hi Experts,
    I have created one Zfield and assign it to a structure . Then structure is mapped to its corresponding Field group .  I have provided the value table to the Domain of the same Zfield . But at the execution the F4 pop up is appearing but the data (From the Value table) is not populating in the pop up.
    Kindly let me know the procedure to populate the data in popup via Value table....
    Though i know that for some standard fields like Country and Region, already the standard domain LAND1 is provided with the value table T005 and it works fine.
    Kindly suggest. Points will be rewarded for every helpful sugesstion.
    Thanks
    Sunil

    Hi
    In the fieldgrop structure for this field, fill in the field INPUT HELP as VALUE_TABLE and generate the layout. The values will appear in F4 now.
    Regards
    Karthik

  • How to get the values of the value table ?

    Hello all,
    I want to get the values of the value table, given a domain name.
    Ex: To get the MATNR values of table MARA, giving the MATNR as input on the selection screen.
    Is it possible? Is there any FM?
    Thanks
    SR

    Hi
    forget my previous answer.
    Yuo can use a code like this:
    PARAMETERS: p_table TYPE  ddobjname,
                p_dom   LIKE  dfies-domname.
    DATA dfies_tab LIKE STANDARD TABLE OF dfies WITH HEADER LINE.
    DATA: ftab TYPE TABLE OF string.
    FIELD-SYMBOLS: <fs_table> TYPE table.
    CALL FUNCTION 'DDIF_FIELDINFO_GET'
      EXPORTING
        tabname        = p_table
      TABLES
        dfies_tab      = dfies_tab
      EXCEPTIONS
        not_found      = 1
        internal_error = 2
        OTHERS         = 3.
    CHECK sy-subrc <> 0.
    LOOP AT dfies_tab WHERE domname = p_dom.
      APPEND dfies_tab-fieldname  TO ftab.
    ENDLOOP.
    SELECT (ftab)
           FROM (p_table)
           INTO TABLE <fs_table>.
    In this case you have to create dynamically the table <fs_table> or you can also use a table string:
    DATA: T_DATA TYPE STANDARD TABLE OF STRING.
    SELECT (ftab)
           FROM (p_table)
           INTO TABLE T_DATA.
    Max

  • Invalid value in OPTION field of value table for IN itab operator. operato

    Hi,
    I am working on SELECT-OPTIONS to accept single and multiple values for company code. I am using CREATE_RANGE_TABLE and ADD_SELECTION_FIELD and all is good but I was prompted with error "Invalid value in OPTION field of value table for IN itab operator. operator"  when I enter 2 single value.
    SIGN OPTION LOW  HIGH
        |      |CN01|    |
        |      |SG02|    |
    However, below combinations working good for me and I don't get the above error.
    SIGN OPTION LOW  HIGH
    I   |BT   |CN01|CN02|
         |     |SG02|    |
    SIGN OPTION LOW  HIGH
         |     |SG02|    |
    I am using below coding.
      DATA:
        ls_cmp_restrictions TYPE if_wd_select_options=>t_complex_restrictions,
        ls_rsoptions        TYPE rsoptions.
      CLEAR ls_rsoptions.
      ls_rsoptions-bt = abap_true.
      ls_rsoptions-cp = abap_false.
      ls_rsoptions-eq = abap_true.   " for enable only single value*
      ls_rsoptions-ge = abap_false.
      ls_rsoptions-gt = abap_false.
      ls_rsoptions-le = abap_false.
      ls_rsoptions-lt = abap_false.
      ls_rsoptions-nb = abap_false.
      ls_rsoptions-ne = abap_false.
      ls_rsoptions-np = abap_false.
      ls_cmp_restrictions-m_exclude = ls_rsoptions.
      CLEAR ls_rsoptions .
      ls_rsoptions-bt = abap_true.
      ls_rsoptions-cp = abap_false.
      ls_rsoptions-eq = abap_true.   " for enable only single value*
      ls_rsoptions-ge = abap_false.
      ls_rsoptions-gt = abap_false.
      ls_rsoptions-le = abap_false.
      ls_rsoptions-lt = abap_false.
      ls_rsoptions-nb = abap_false.
      ls_rsoptions-ne = abap_false.
      ls_rsoptions-np = abap_false.
      ls_cmp_restrictions-m_include = ls_rsoptions.
    * Create a reference to range table
      lr_field = wd_this->m_helper->create_range_table( `BUKRS` ).
    * Add the select-option to the group
      wd_this->m_helper->add_selection_field(
        i_id                         = `BUKRS`
        i_value_help_structure       = 'P0001'
        i_value_help_structure_field = 'BUKRS'
        it_result                    = lr_field
        i_no_intervals               = abap_true
        i_no_extension               = abap_false
        i_complex_restrictions       = ls_cmp_restrictions
        i_use_complex_restriction    = abap_true ).
      FREE lr_field.
    Edited by: Girish Nabar on Jul 22, 2011 12:35 PM

    Hi Girish,
    People are answering not for points, just to share the knowledge.
    And I think the way of structure is wrong.  i think we cannot pass two single values in your way. am not sure about .
    low means it will accept single value. for one record in sign structure.
    wait for other replys.
    Regards
    Srinivas

  • How to get Value Table values in F4 help

    Hi.
    I am creating one custom field in ORDERADM_H.
    I created it based on my own data element name.
    In that data element domain contains Value Table.
    This value table is having one field with four records.
    Now i am adding the field in the Web Ui Screen.
    But it is not at all getting F4 help.
    How i will get F4 help.
    I want my value table records in that F4 help.
    I am selecting any one then that should be placed in the Input Field.
    When i save the record the data should be stored in the Data base tables also.
    Thank You.
    B. Krishna.

    This question has been asked and answered many times before.  Please read the following blog for a good start:
    /people/yohan.kariyawasan/blog/2009/03/18/ui-framework-news-f4-help
    Before posting further please do a search in this forum and also read the rules of engagement listed here:
    https://www.sdn.sap.com/irj/scn/wiki?path=/display/home/rulesofEngagement
    I'm now locking this thread as it is a duplicate of an already answered question.
    Thank you,
    Stephen
    CRM Forum Moderator

  • How to add Value Table or Search Help for a field which is on Standard SAP?

    Hi All,
        I have a field HERST (tcode IE01) which doesnt have any value table or search Help. I have the same field in a Z table which I should display for the standard screen field in tcode IE01. So Pls suggest me on this.
        Thanks in advance.
    Regards
    Jaker.

    Hi, Tamas,
    I found the reason. The function Z_WEBRFC_READ_DATA_SH had a string concatenation error.
    CONCATENATE '{"results":[{"key": "shlpname", "value": "' l_shlp '"},"key": "fieldname", "value": "' l_field '"}]}' INTO htmldoc-line.
    The correct code is like:
    CONCATENATE '{"results":[{"key": "shlpname", "value": "' l_shlp '"},{"key": "fieldname", "value": "' l_field '"}]}' INTO htmldoc-line.
    Another question is, I can't get any words in Chinese from WebRFC. It returns error when I try it. How can I configure it?
    Xin

  • How to add a value table to a field in database table?

    Dear Experts,
    Normally a value table can be added in the domain.
    And the field of the database table will have the value table, to which this domain is assigned.
    My question is.. Is it possible to assign a value table to any field ina database table, directly?(i.e. <b>without assigning to that domain</b>)
    If yes.. please let me know the <b>step-by-step</b> procedure clearly.
    Thanks to U in advance.

    Hi sr,
    1. what is the purpose of your value table ?
      -- so that the user can select values
       from some master table , for that field !!!!
    2. This is done by
        CHECK TABLE (foreign key concept)
       (and not value table)
    3. When we create a check table for a field,
       then
       some DEFAULT table is PROPOSED
       . that DEFAULT table is nothing
      but PICKED up from the domain of that field,
      and shown from the value of VALUE TABLE.
      (we can change it however)
    4. so for your purpose,
       just create a CHECK TABLE.
    regards,
    amit m.

  • Insert Value(s) in Lookup Flat Multi-valued Table with Java API

    I've been looking in MDM Java API Library Reference Guide, MDM SP4 API JavaDoc, and SDN Forums for information on how to Insert/Update different values in a field in the Main Table of a given repository that belongs to a Lookup Flat Multi-valued Table using the Java API with no success.
    I also haven't been successful in adding this values in the same way that I'll add a single value, using the MDM Java API, in a single-value Lookup Table (a2iFields.Add(new A2iField(FIELD_CODE,FIELD_VALUE)) for each value I want to add, like for example:
    a2iFields.Add(new A2iField("Country","USA")
    a2iFields.Add(new A2iField("Country","Mexico")
    a2iFields.Add(new A2iField("Country","Germany")
    Can anybody point me to the correct documentation that I need to read to fulfill this task? Or, even better, if someone can post a piece of code, I'll be more thankful.
    Thanks for your help.

    HI,
    little code example, where you add existing lookup values based on there record id:
         int USA = 1;
                        int GERMANY = 2;
                        A2iValueArray countryArray = new A2iValueArray();               
                        countryArray.Add(new Value(USA));
                        countryArray.Add(new Value(GERMANY));
                        A2iFields record = new A2iFields();
                        record.Add(new A2iField("Country", new Value(countryArray)));
    Please reward points if helpful.
    Regards,
    Robert

  • Instructions on how to create a value table in Marketing Attributes.

    Hello All,
    As i understood from one of the thread , Value Table in Marketing attributes is for search help,  pls let me know how to define value table in SE11 with search help object.
    Thanks & Regards
      praneeth C

    Hello All,
    Value Table in Marketing attributes is for search help configured by following the steps mentioned in below OSS.
    1044363
    1546360
    1542289
    Thanks
    Praneeth

  • Business Process Monitoring-Value table

    Dear friends,
       I am working with Sol Man 4.0, SP12.
    In SOLUTION_MANAGER t.code, in the screen of Business Process Maintenance, iam finding the the following tabs
    1. Steps of process-Partially display
    2. Seasons (Peak Months)
    3. Process availability...etc
    In that screen, i am choosing the tab "Steps of process-Partially display" then under the column. "Details", i am choosing the check box.
    At that time i am getting folowing information
    "Value Create transfer posting in column Step Type not listed in value table"
    In which value table, i have to include the process step?
    Thanks
    Senthil

    Hi John,
    you get an overview about all available key figures in the PPT "Business Process & Interface Monitoring - Part 2" under https://service.sap.com/bpm --> Media Library --> Customer Information. It lists all Monitoring Object and Key Figures with Select-Options. There is no document that describes the setup of every key figure as the setup is too similar for most objects. Therefore the grey text boxes within the tool.
    The NAST collector will always pick-up everything older than x days. So you would have to process or delete the olde entries. But it is a good advise that for this rather technical key figure we should think about a delta mechanism like with our IDOC or ABAP dump monitor.
    Best Regards
    Volker

  • Check table and value table -Example

    Hi Experts
                  Please give me the step by step procedure to create the check table and value table, and how to work on it.
    Thanks in advance.
    Regards
    Rajaram

    Hi
    Check Table is for Field level Validation whereas Value table is for Domain Level Validations.
    Value Table proposes table for check table.
    I think you are clear with this.
    more elaborate.
    Check Table
    The Check Table is the table used by system to check if a data exist or not exist.
    While creating a table if you want to be sure that a field can have some values
    and these are in a certain table, you can give IT this table as CHECK TABLE.
    Value Table
    This is maintained at Domain Level.
    When ever you create a domain , you can entered allowed values. For example you go to Domain SHKZG - Debit/credit indicator.
    Here only allowed values is H or S.
    When ever you use this Domain, the system will forces you to enter only these values.
    This is a sort of master check . .
    To be maintained as a customization object.
    This mean that if you want to enter values to this table you have to create a development request & transport the same.
    Differences:
    1)check table will carry out the check for input values for the table field being entered in any application
    and value table will provide values on F4 help for that table field.
    2)The check table defines the foreign keys and is part of the table definition.
    The value table is part of the domain definition.
    check table is validation at field level.
    value table is at domain level.
    Value table is defined at the domain level and is used to provide F4 help for all the fields which refer to that domain.
    Check table is defined against a field in SE11 if you want the values in that field to be checked against a list of valid values. For e.g. if you are using the field matnr in a table you could define MARA as the check table.
    Also while defining a check table SAP proposes the value table as check table by default. Referring to the previous example if you tried to define a check table for the matnr field SAP would propose MARA as the check table.
    1. what is the purpose / use ?
    -- so that the user can select values
    from some master table , for that field !!!!
    2. This is done by
    CHECK TABLE (foreign key concept)
    (and not value table)
    3. When we create a check table for a field,
    then
    some DEFAULT table is PROPOSED
    4. that DEFAULT table is nothing
    but PICKED up from the domain of that field,
    and shown from the value of VALUE TABLE.
    CHECK TABLE -it is a parent table.
    for example..
    i have two tables ZTAB1 and ZTAB2.
    I have one common field in both the tables,i can make any ztable to be the check table .If i make Ztab1 to be the check table then when i have to make an entry in ztab2 i will check whether ztab1 is having that value or not..
    its also field level checking..
    Valuetable-It is nothing but default check table.
    one parent can have n number of child tables.For example
    For ztable we have zchild1 and zchild2 tables r there.
    Its domain level checking..When zchild2 uses the same domain as used by zchild1 then the system automatically generates a popup saying a check table already exists would u want to maintain it.
    go to domain and then press the value tab u can see the valuetable at the end...
    Please refer the links below,
    d/r b/n check and value table?
    wjhat is the exct difference between check table and value table
    what is the check table and value table
    check table and value table
    Re: wjhat is the exct difference between check table and value table
    http://www.sap-img.com/abap/difference-between-a-check-table-and-a-value-table.htm

  • Value tables and BSP-Pages

    Hello,
    how is supposed to work the value table or the search help that a field has behind it ?? When the end user enters a non-valid value in a field, the system should mark the frame of the field in red. For some fields in our BSP application it works, for some others it doesn´t. Probably we forgot to declare something in the structure in SE11 but can´t work it out.
    Has anyone an idea ??  Thanks a lot.

    Hi Jorge
    You are creating F-4 HELP and getting possible values in a pop-up.(say AAAA,BBBB).how can user select(HHHH) from that pop-up.
    Now let us assume you are not disabling the field to which you want to insert value via pop up.
    Now user is inserting value in that field without getting values from F-4 help.
    As you said it simply saves the record without checking whether user is inserting proper value or not.
    Now when you save that value in the record,just before that validate it.
    example:
    SELECT SINGLE <field-name> from <table> into <wa> where
    <field_name> eq <input_field_value>.
    if sy-subrc eq '0'.
    --success.
    else.
    --failed.
    endif.
    if it is success,then you should allow it to save record.
    else.
    Do the desired, Show a message....
    I assume,i understod the problem right way..
    cheers
    Vijay,

  • Reg value table and check table

    Hi Friends,
        I have defined a value table(ZVALTAB) for a domain and defined the relation ship between check table(ZCHKTAB) and dependent table(ZDEPTAB). Here value table and check table both are different. My problem is while I am entering the values into check table, it is not restricting the values to enter into check table even those values are not in value table. And while I am entering values into the dependent table through the menu option Utilities->Create entries then also foreign key is not working. But when I use the SM30 then the foreign key is working. So can any body explain me when this value table restrict the values and why the option Utilities->Create entries is not validating the foreign key relation ship.
    Sathish Reddy

    Hi,
      Value Table will just provide you the possible set of values.  It won't restrict u for the wrong entries.  Moreover whenever u enter entries thru Create entries no user interface is available.  The constraints whatever we give is not at all stored in the Data Dictionary.  Only the user interface which takes care all about this.  Hence it wont restrict you.  For this u have to create table maintenance generator for your table.  Then it will restrict the values against check table.
    Both Value table and Check table will provide u possible set of values.  But only the check table will restrict the values.
    Hope this will help u.

  • BAPI OR RFC THAT RETURNS THE VALUE TABLE CONTENTS THAT IS SPECIFIED IN DOM

    HI ALL,
    i have requirement of BAPI  or RFC that returns the value table contants(text table) in CRM..
    for ex:
      if i  pass the dataelement or domain or checktable as input parameter,could i get the contents of its text table associated with it....
    please if there is way help me on this..
    thanks and regards,
      goutham,

    Check these FM
    RFC_READ_TABLE
    RFC_GET_TABLE_ENTRIES

  • Need FM to know value table of Data element

    Hello frieds ,
    I need such function module which will give me domain , value table of Specified data element .
    Something like if I give WDY_BOOLEAN it should return me abap_true and abap_false too possible values from value table.
    I urgently need it in WD ABAP .
    Points will be rewarded surely .
    Cheers
    Parry

    see this sample code.
    DATA : BEGIN OF int_orient OCCURS 10,
               domvalue_l LIKE dd07v-domvalue_l,
               ddtext LIKE dd07v-ddtext,
               END OF int_orient.
    DATA: ZPETS_PORTORIEN type dd07l-domname,
            int_values_table  TYPE dd07v OCCURS 0 WITH HEADER LINE.
      CALL FUNCTION 'GET_DOMAIN_VALUES'
        EXPORTING
          domname         = 'ZPETS_PORTORIEN'
          text            = 'X'
        TABLES
          values_tab      = int_values_table
        EXCEPTIONS
          no_values_found = 1
          OTHERS          = 2.
      LOOP AT int_values_table.
         int_orient-domvalue_l = int_values_table-domvalue_l.
        int_orient-ddtext = int_values_table-ddtext .
        append int_orient.
      ENDLOOP.
    Rgds
    Anver

  • Value table as search help

    Hi Experts,
    I am new to WebDynpro ABAP.
    I want to assign a search help to one of the UI elements in WebDynpro ABAP component.
    The search help is attached as a value table in a domain LAND1.
    Now while creating an attribute i am creating it from a data element which is attached to this domain.
    Still i can not see the value help being shown.
    May be i am missing something.
    Can you please help me to find out what am i missing?
    Regards,
    Ashish Shah

    Hi  Ashish,
    For getting a search help for the drop down by key UI element, here i am mentioning the logic using the flight demo.
    1.Add attribute PLANETYPE to the context of the component controller.
    Locate the Component Controller node in the project structure that is located immediately under the component. Double click on Component Controller to open the Custom Controller editor.
    - Add attribute PLANETYPE to context node FLIGHTINFO
    Hint: Select Create Using Wizard -> Attributes form Components of Structure from context menu of node FLIGHTINFO.
    2.Navigate to the Context tab of view controller Iof your view. Choose Update Mapping from the context menu of node FLIGHTINFO to add the attribute PLANETYPE.
    3.Add Label and DropDownByKey for PLANETYPE to the layout of ur view.
    Go to tab Layout and add a label named PLANETYPE_LABEL_1 and a DropDownByKey named PLANETYPE_DROPDOWN_1 to group GROUP_1. The two new elements should be placed between the input field for the Date and the button. Bind the DropDownByKey to the context attribute PLANETYPE.
    4..Adjust component controller method FLIGHTTAB_FILL
    Navigate to the Methods tab of the component controller and double-click on the method FLIGHTTAB_FILL to open the editor.
    Adjust the method:
    - Get also the context value for PLANETYPE
    - Use PLANETYPE also in the where clause of the select statement
    METHOD flighttab_fill .
      DATA:
        cond(72)                            TYPE c,                                    
        itab_where                          LIKE TABLE OF cond,                        
        context_node                        TYPE REF TO if_wd_context_node,
        elem_flightinfo                     TYPE REF TO if_wd_context_element,
        stru_flightinfo                     TYPE if_componentcontroller=>element_flightinfo ,
        item_carrid                         LIKE stru_flightinfo-carrid,
        item_connid                         LIKE stru_flightinfo-connid,
        item_fldate                         like stru_flightinfo-fldate,
        item_planetype                      like stru_flightinfo-fldate,
        itab_flighttab                      TYPE if_componentcontroller=>elements_flighttab.
    navigate to <FLIGHTINFO>
      context_node = wd_context->get_child_node( name = `FLIGHTINFO` ).
    get element at lead selection
      elem_flightinfo = context_node->get_element(  ).
    get connid
      elem_flightinfo->get_attribute(
        EXPORTING
          name =  `CARRID`
        IMPORTING
          value = item_carrid ).
    get carrid
      elem_flightinfo->get_attribute(
        EXPORTING
          name =  `CONNID`
        IMPORTING
          value = item_connid ).
    get fldate
      elem_flightinfo->get_attribute(
        EXPORTING
          name =  `FLDATE`
        IMPORTING
          value = item_fldate ).
    get planetype
      elem_flightinfo->get_attribute(
        EXPORTING
          name =  `PLANETYPE`
        IMPORTING
          value = item_planetype ).
    create where condition
      IF NOT item_carrid EQ ''.
        CONCATENATE 'CARRID = ''' item_carrid '''' INTO cond.
        APPEND cond TO itab_where.
      ENDIF.
      IF NOT item_connid EQ '0000'.
        CONCATENATE 'CONNID = ''' item_connid '''' INTO cond.
        IF item_carrid NE ''.
          CONCATENATE 'AND' cond INTO cond separated by space.
        ENDIF.
        APPEND cond TO itab_where.
      ENDIF.
      IF NOT item_fldate is initial.
        CONCATENATE 'FLDATE = ''' item_fldate '''' INTO cond.
        IF not itab_where is initial.
          CONCATENATE 'AND' cond INTO cond separated by space.
        ENDIF.
        APPEND cond TO itab_where.
      ENDIF.
      IF NOT item_planetype eq ''.
        CONCATENATE 'PLANETYPE = ''' item_planetype '''' INTO cond.
        IF not itab_where is initial.
          CONCATENATE 'AND' cond INTO cond separated by space.
        ENDIF.
        APPEND cond TO itab_where.
      ENDIF.
    read data
      IF itab_where IS NOT INITIAL.
        SELECT * FROM sflight
          INTO CORRESPONDING FIELDS OF TABLE itab_flighttab
          WHERE (itab_where).
      ELSE.
        SELECT * FROM sflight
          INTO CORRESPONDING FIELDS OF TABLE itab_flighttab.
      ENDIF.
    navigate to <FLIGHTTAB>
      context_node = wd_context->get_child_node( name = `FLIGHTTAB` ).
    Bind table to context node <FLIGHTTAB>
      CALL METHOD context_node->bind_table
        EXPORTING
          new_items = itab_flighttab.
    ENDMETHOD.
    5.Navigate to the Methods tab of the ur view and create a new method with the name VS_PLANETYPE. Double-click on the name of the newly created method to navigate in the editor.
    Add coding for:
    -     Get nodeinfo for node FLIGHTINFO
    -     Build the value set table. Create the following entries:
    Key     Value
    747-400     747-400
    A310-300     A310-300
    A319     A319
    DC-10-10     DC-10-10
    -     Set the values to context attribute PLANETYPE of node FLIGHTINFO
    method VS_PLANETYPE .
    data:
      lr_node_flightinfo type ref to if_wd_context_node,
      lr_nodeinfo_flightinfo type ref to if_wd_context_node_info,
      lt_value_set       type wdy_key_value_table,
      ls_value_set       type wdy_key_value.
    get nodeinfo of node flightinfo
      lr_node_flightinfo = wd_context->get_child_node( name = `FLIGHTINFO` ).
      lr_nodeinfo_flightinfo = lr_node_flightinfo->get_node_info( ).
    fill values into value set table
      ls_value_set-key   = '747-400'.
      ls_value_set-value = '747-400'.
      append ls_value_set to lt_value_set.
      ls_value_set-key   = 'A310-300'.
      ls_value_set-value = 'A310-300'.
      append ls_value_set to lt_value_set.
      ls_value_set-key   = 'A319'.
      ls_value_set-value = 'A319'.
      append ls_value_set to lt_value_set.
      ls_value_set-key   = 'DC-10-10'.
      ls_value_set-value = 'DC-10-10'.
      append ls_value_set to lt_value_set.
    set values to context attribute
      lr_nodeinfo_flightinfo->set_attribute_value_set( name = 'PLANETYPE' value_set = lt_value_set ).
    endmethod.
    6.Invoke method VS_PLANETYPE in method WODOINIT in ur view.
    Hint: Use Web Dynpro Code Wizard.
    method WDDOINIT .
      DATA:
       node_flightinfo                     TYPE REF TO if_wd_context_node,
       elem_flightinfo                     TYPE REF TO if_wd_context_element,
       stru_flightinfo                     TYPE if_input_view=>element_flightinfo,
       item_carrid                         LIKE stru_flightinfo-carrid.
    navigate from <CONTEXT> to <FLIGHTINFO> via lead selection
      node_flightinfo = wd_context->get_child_node( name = `FLIGHTINFO` ).
    get element via lead selection
      elem_flightinfo = node_flightinfo->get_element(  ).
    set single attribute
      elem_flightinfo->set_attribute(
        EXPORTING
          name =  `CARRID`
          value = 'AA' ).
    Create Value Selector for PLANETYPE
      wd_this->vs_planetype( ).
    endmethod.
    Regards
    Manoj Kumar

Maybe you are looking for

  • Adobe Acrobat 9.5.0 now available for PowerPC (PPC)

    Just wanted to let everyone know that Adobe Acrobat Reader 9.5.0 is now available for PowerPC. I didn't know if there would be additional updates, but this confirms there are. This should work for both Tiger 10.4.11 and Leopard 10.5.8. Strangely, it

  • Opening PDF attachments in Outlook 2003 with Adobe 8.1

    Everytime I attempt to open a Pdf file that is attached to an e-mail, It opens in Excel, even though it is not an excel spreadsheet.

  • Cannot export Luminance settings when exporting TIF from Lightroom 4

    Hi All, A problem that's come up today! I use quite heavy Luminance noise reduction on my images as they are shot at very high speed ISO... I adjust this in L4, picture in preview looks as smooth as a babies bottom and perfect... I then export as a T

  • Playing poscasts on iPhone

    is there a setting that I can make so that only one podcast will play at a time on my iPhone?

  • Extended Classic - Purchase Order Number Ranges

    We are using Extended Classic EBP. When a PO is created in SRM the PO replicated into R/3 does not have the same number. The backend PO document type is ECPO. We have assigned an internal and external number range to this document type. When an SRM P