Skip to Content
0
Former Member
Feb 21, 2009 at 11:35 PM

Web UI DropDonw values are disapperared after picking

30 Views

Hi Experts,

I added a new DDLB on the layout for the service aggrement page. The porblem was, once I choose the value from the Drop down list, the value gets disapperared(i.e DDLB gets initialised) and looks blank.

Technical Details:

Component name - BT107H_OAS

View name - BT107H_OAS/Details

Context node - BTADMINH

Attribute - Category.

When I debug the methods under Category(GET_CATEGORY, GET_I_CATEGORY etc). Under these methods, the program get exited while checking the below lines.

data: dref type ref to data.

value = space.

if iterator is bound.

current = iterator->get_current( ).

else.

current = collection_wrapper->get_current( ).

endif.

try.
      data: coll   type ref to if_bol_entity_col.
      data: entity type ref to cl_crm_bol_entity.
      entity ?= current.
      coll = entity->get_related_entities(
               iv_relation_name = 'BTHeaderActivityExt' ).  "#EC NOTEXT
      current = coll->get_current( ).
      if current is not bound.
        return.
      endif.
      try.
          dref = current->get_property( 'CATEGORY' ).       "#EC NOTEXT
        catch cx_crm_cic_parameter_error.
      endtry.

Here the related entities are not bound at -" current = coll->get_current().

so the method is getting exited reather that assigning the values. Please help me on overcoming the above issue. How to fix the related entities issue.

Thanks for your advise-

James....