cancel
Showing results for 
Search instead for 
Did you mean: 

How to find the Application/Program Name

Former Member
0 Kudos

Dear All,

I am working on SRM, thru portal we are accessing custom WDA application. My client asked me to do some correction in that program. Now i dont know what is the WDA program name.

Let me know the way to find program name.

Thanks

Accepted Solutions (1)

Accepted Solutions (1)

Former Member
0 Kudos

Thanks for your response again.

I am running thru client portal. They have raised the ticket with only the portal tree detail.[Just spelling mistake - am new to this support project - no documentation am the only one resourse ]

i am not able to identify program name with that url (which is appearing in status bar) .

pankaj aggarwal : i am not able to understand your suggession. can u give in more detail.

Former Member
0 Kudos

HI,

sorry for previous reply....

U can check the name of the application if personalisation is not disabled for u.

Just run the portal and now right click on the screen. select more foeld help. U will get the detail of the component name, application....

Regards,

Pankaj

Answers (3)

Answers (3)

Former Member
0 Kudos

Thanks pankaj, I got it

Former Member
0 Kudos

Thanks for your response.

I hope you are asking me to see in PCD. But I do not have access in EP to see the iview detils.

Is there any other way to find the program name.

( I have checked with Internet Explorer - "view source " but i did n't get any clue)

Former Member
0 Kudos

Hi,

Yes the PCD path, we can get it.

Are you directly running the application from portal. or from some other appl, this gets triggered.

Try checkking the URL of applicaiton in that table mentioned.

Regards,

Lekha.

Former Member
0 Kudos

Hi,

U can find the application name from the coding also.

DATA:
    lr_ctrl_api                    TYPE REF TO if_wd_controller,
    lr_comp_api                    TYPE REF TO if_wd_component,
    lr_appl_api                    TYPE REF TO if_wd_application,
    lr_appl_info                   TYPE REF TO if_wd_rr_application,
    l_appl_name                    TYPE string.
  * get app name
  lr_ctrl_api  = wd_this->wd_get_api( ).
  lr_comp_api  = lr_ctrl_api->get_component( ).
  lr_appl_api  = lr_comp_api->get_application( ).
  lr_appl_info = lr_appl_api->get_application_info( ).
  l_appl_name  = lr_appl_info->get_name( ).

Use this code, u will get the app. name.

Regards,

Pankaj Aggarwal

Former Member
0 Kudos

Hi,

In the Portal, for that Iview, there will be an Applicaiton name attached to it.

check this table WDY_APPLICATION with that application name so that you can find component for that.

Please try this out.

Regards,

Lekha.