cancel
Showing results for 
Search instead for 
Did you mean: 

ECC 6.0-- Integrated-ITS issue

Former Member
0 Kudos

We are on ECC 6.0, WAS 7.00 with Integrated ITS turned on. As PZM3 is not

available, I am building a custom PZM3 in ECC. I have added a Tree control on

the left, and a HTML control on the right to display a service which has been

clicked. Both are generated on runtime on a 2 custom controls. This custom

SAP tcode works find within ECC, but when I display it as a service in our

ITS system, the 1st service display is fine, but on clicking on any other

service directly -- it takes the entire frame currently being displayed --puts

it in the browser window alongwith the new service. Its like a tree structure

with a brower, then within the browser the same tree structure with the new

service that's been clicked. It works fine with ECC, this only occurs within

Integrated ITS. I do not know why it behaves this way. If anyone would like

to see it, I can forward a screenshot of it to their private email address. Please advise. Thank you for your time.

Kshitij

Accepted Solutions (0)

Answers (3)

Answers (3)

Former Member
0 Kudos

hi kshijit,

it seems like the new service along with the tree control is opening in the frame where the current service is being displayed. Try loading the new service in the main frame ( frame=_top).

regards,

Prasad

Former Member
0 Kudos

Hello Prasad,

I tried the frame = _top option eventhough the frame of char(1) type. It didn't work.

Thank you for your time.

Kshitij

Former Member
0 Kudos

Hello Tobias,

Can you have your email id for the screen shots? Thanks.

Kshitij

Former Member
0 Kudos

Hello Kshitij,

thats funny though I chose to publish my mail address it will not appear in my business card. Anyway, please use

tobias@gomer-fuerth.de

best regards

Tobias

Former Member
0 Kudos

Hello Kshitij,

I got it, thanks. But I do not understand your transaction (yet). You are using a HTML viewer control for running a WebGUI session, right? And the HTML viewer contents is determined by a user action on the column tree control?

Did you copy PZM3 for a standalone ITS installation?

Modified something? What is the ABAP code running in the event handler after clicking to the 'Bank Information' node?

best regards

Tobias

Message was edited by:

Tobias Gomer

Former Member
0 Kudos

Hello Tobias,

Its a report transaction at the SAP level. I am using a HTML viewer to show the ESS service on the right side. On the left side its a tree control. I did not copy PZM3 -- I am trying to come up with our own PZM3 but its in SAP -- rather than a Java app.

Event handler code on tree click event which is handled by an overall custom application object;

CLASS LCL_APPLICATION DEFINITION.

PUBLIC SECTION.

data: item_tab type MTREEITM.

METHODS:

HANDLE_LINK_CLICK

FOR EVENT LINK_CLICK

OF CL_GUI_COLUMN_TREE

IMPORTING NODE_KEY ITEM_name.

ENDCLASS.

CLASS LCL_APPLICATION IMPLEMENTATION.

METHOD HANDLE_LINK_CLICK.

read table item_table with key node_key = node_key

item_name = item_name into item_tab.

clear eurl.

if node_key+0(3) = 'Ben'.

if item_tab-text = 'Benefits Information'.

eurl = 'http://iwdecd01.corp.checkfree.com:8080/sap/bc/gui/sap/its/z376?sap-client=130'.

elseif item_tab-text = 'Inquiry'.

eurl ='http://iwdecd01.corp.checkfree.com:8080/sap/bc/gui/sap/its/pz07?sap-client=130'.

elseif item_tab-text = 'Enrollment'.

eurl ='http://iwdecd01.corp.checkfree.com:8080/sap/bc/gui/sap/its/pz14?sap-client=130'.

endif.

ELSEIF node_key+0(3) = 'Per'.

if item_tab-text = 'Address'.

eurl = 'http://iwdecd01.corp.checkfree.com:8080/sap/bc/gui/sap/its/pz02?sap-client=130'.

elseif item_tab-text = 'Bank Information'.

eurl ='http://iwdecd01.corp.checkfree.com:8080/sap/bc/gui/sap/its/pz03?sap-client=130'.

elseif item_tab-text = 'Contact Information'.

eurl ='http://iwdecd01.corp.checkfree.com:8080/sap/bc/gui/sap/its/zess_who?sap-client=130'.

endif.

endif.

IF NOT eurl IS INITIAL.

CALL METHOD html_control->do_refresh

EXCEPTIONS

CNTL_ERROR = 1

others = 2.

CALL METHOD html_control->show_url

EXPORTING

url = eurl

frame = ' '

EXCEPTIONS

cnht_error_parameter = 1

OTHERS = 2.

ENDIF.

ENDMETHOD.

endclass.

Thank you.

Kshitij

Former Member
0 Kudos

Hi,

I would like to see the screen shots - but you did not publish your mail address.

best regards

Tobias