cancel
Showing results for 
Search instead for 
Did you mean: 

Flah Islands: missing SWAP ROOT ELEMENT

Former Member
0 Kudos

Hi All,

I have tired to recreate the tuotrial (pls see http://blip.tv/file/1417778) .

When I have rightclicked in the views ROOTELEMENTSCONTAINER in order to create a

SWAP ROOT ELEMENT i was suprised since this option did not exist in my system.

What can be the resason for it ? Maybe the system release ?

SAP_BASIS 700

Component version SAP ECC 6.0

Regards

ertas

Accepted Solutions (1)

Accepted Solutions (1)

Former Member
0 Kudos

To run a Web Dynpro ABAP application with an Adobe Flash Island, you will need:

SAP NetWeaver ABAP 7.0, Enhancement Pack 1

Check this [link|https://www.sdn.sap.com/irj/sdn/index?rid=/webcontent/uuid/80da3bdf-32a4-2b10-0582-aeb25040bfd0] [original link is broken];

Regards,

Radhika.

Former Member
0 Kudos

How can I check on my system whether it works or not..

Hiw can I find it out within WedDynpro ?

I am internding to devekeop with Flash Islands

Please help.

Regards

ertas

thomas_jung
Developer Advocate
Developer Advocate
0 Kudos

From what you describe, you don't have the correct release level. You stated that you NetWeaver 7.0, but the FlashIslands functionality was introduced in NetWeaver 7.0 Enhancement Package 1. You would need to update your system to this Enhancement Package level.

Former Member
0 Kudos

Hi Mr. Jung

I am having a severe problem with my calculator

I have created a search help (freely programmed).

I have used this search help in another component. This search help is used at an input

field. It has the data type i (integer). But if I calculate with zeros and decimals I dont see

the complete result. I know this is because of the data type. But i also tried it with f .

It was not possible. in the search help i am using type numeric

Which data type can I choose.

method ONACTIONBUTTONPRESS .
 
  DATA lo_nd_calculator TYPE REF TO if_wd_context_node.
  DATA lo_el_calculator TYPE REF TO if_wd_context_element.
  data lr_value type ref to data.
  data l_string type c LENGTH 60.
  data: val type string.
  data l_binding_string type string.
 
  lo_nd_calculator = wd_context->get_child_node( name = wd_this->wdctx_calculator ).
  lo_el_calculator = lo_nd_calculator->get_element( ).
 
  lr_value = lo_el_calculator->get_attribute_ref( WD_COMP_CONTROLLER->value_help_listener->f4_attribute_info-name ).
 
  FIELD-SYMBOLS <wa_numeric> type numeric.
 
  ASSIGN lr_value->* to <wa_numeric>.
 
  val = wdevent->GET_string( 'ID' ).
 
  CASE val.
    WHEN 'BTN_1'.
      IF WD_COMP_CONTROLLER->COMP EQ 'X'.
        CLEAR: WD_COMP_CONTROLLER->erg, WD_COMP_CONTROLLER->merker, <wa_numeric>, l_string, WD_COMP_CONTROLLER->COMP.
      ENDIF.
      move <wa_numeric> to l_string.
      CONCATENATE l_string `1` into l_string. CONDENSE l_string NO-GAPS.
      <wa_numeric> = l_string.
................
.........
 
endmethod.

thomas_jung
Developer Advocate
Developer Advocate
0 Kudos

Type numeric should allow the pass through of any numberic based data type. Integer of course won't allow for decimals since that data type supports whole numbers only. What part of the Float data type didn't work?

Answers (0)