No URLs can be called

After Upgrade from NW04 to NW04s we just changed the profile. Now it is not possible to call a URL, example:
http://howev26.hoval.com:50000/irj/portal/ or
http://howev26.hoval.com:50000/
Bevor the profile was changed, we could call these URLs.
It was very much helpfull for me if some one could help me.
Thanks
Selim

Hi Jenny,
I've just tried custom URI with iOS and I am able to receive the argument with length 1, which has the complete url I browsed.
For Eg: If I launch url example://xyz?abc, I get the complete url as 1st element of the e.arguments array.
public function invokeHandler(e:InvokeEvent):void{
label1.text = "";
label1.appendText(e.arguments.length.toString() + " ");
for (var i:int=0;i<e.arguments.length;i++)
label1.appendText(e.arguments[i] + " ");
label1.appendText(e.reason);
Reason should always be standard if it's not launched from login. Currently on Mobile it will be standard only.
Hope it helps.
-Pahup

Similar Messages

  • Can we call Endpoint URI as service url in proxy service

    Hi folks,
    Can we call the web service url as the endpoint uri while configuring proxy service ?
    eg: 10.16.220.144/ABCD as the endpoint uri in proxy service ?
    If yes...then plese give me the steps.
    thanks,
    salil

    The endpoint URI is the endpoint relative to the OSB managed server, to call it from external you use http://hostname:7002/my/path/myService as endpoint...
    You can see the WSDL by typing http://hostname:7002/my/path/myService?wsdl in a browser...
    hostname = your hostname
    7001 = port where the OSB managed server is listening
    /my/path/myService is whatever is configured as endpoint URI of your proxy service
    Cheers,
    Vlad

  • Can I call a .htm page of view1 from another .htm page of view 2?

    Hi,
    I have a viewset QuestionnaireTabVS with a view area TABS which has two views  QuestionCondnsVS (default) and View QuestionRisksVS.
    When a variable say GV_TAB  is set as 'Questions' it navigates to the QuestionCondnsVS view and when the variable GV_TAB is set as 'Risks' it navigates to the QuestionnaireRisksVS.
    This view set QuestionnaireTabVS is contained in an overview page which  has two Radiobuttons. It works fine when  the first radiobutton is selected, i.e, when I click on the Questions it renders the QuestionCondnsVS view and when I click on the Risks it renders me the QuestionRisksVS view .
    Problem is when  I had clicked the RISK tab first and then selected the another radiobutton the rendered view QuestionRisksVS doesnt get removed
    but is present there by default which I dont want.I want the QuestionCondnsVS view to be present there by default after the second radiobutton is selected. I tried to refresh all the controllers but somehow it navigates to the  QuestionRisksVS only .
    So i thought to call the  .htm page of QuestionCondnsVS forcefully from the QuestionnaireTabVS .htm page as soon as I select the another radiobutton.
    Can I call a .htm page of QuestionCondnsVS from another .htm page of  QuestionnaireTabVS? If yes then how or any other suggestion is welcome

    Hi Dharmakasi,
    The Radiobuttons code is not added in the same HTML page but lies in a different component where the coding is on event handler.
    METHOD eh_onchecked.
      DATA: lv_option TYPE REF TO if_bol_bo_property_access,
            lv_check  TYPE char1.
      lv_option ?= typed_context->switch->collection_wrapper->get_current( ).
      lv_check = lv_option->get_property_as_string( iv_attr_name = 'OPTION'   ).
      IF lv_check EQ zcl_gaf_adm_toolbox=>gv_matrix_mnt_type_old.
        zcl_gaf_adm_toolbox=>gv_matrix_mnt_type = zcl_gaf_adm_toolbox=>gv_matrix_mnt_type_old.
      ELSEIF lv_check EQ zcl_gaf_adm_toolbox=>gv_matrix_mnt_type_new.
        zcl_gaf_adm_toolbox=>gv_matrix_mnt_type = zcl_gaf_adm_toolbox=>gv_matrix_mnt_type_new.
      ELSEIF lv_check EQ zcl_gaf_adm_toolbox=>gv_matrix_mnt_type_scaf.
        zcl_gaf_adm_toolbox=>gv_matrix_mnt_type = zcl_gaf_adm_toolbox=>gv_matrix_mnt_type_scaf.
        ELSEIF lv_check EQ zcl_gaf_adm_toolbox=>gv_matrix_mnt_scaf_anz.
        zcl_gaf_adm_toolbox=>gv_matrix_mnt_type = zcl_gaf_adm_toolbox=>gv_matrix_mnt_scaf_anz.
      ELSEIF lv_check EQ zcl_gaf_adm_toolbox=>gv_matrix_mnt_type_sow.
        zcl_gaf_adm_toolbox=>gv_matrix_mnt_type = zcl_gaf_adm_toolbox=>gv_matrix_mnt_type_sow.
      ENDIF.
    ENDMETHOD.
    Here the LV_CHECK = old is the first radiobutton whereas LV_CHECk = new is the second radiobutton. I have tried to set the value of gv_tab ='Question' here but again no success.
    The .HTM coding of QuestionanireTABVS is
    <%@page language="abap" %>
    <%@extension name="thtmlb" prefix="thtmlb" %>
    <%@extension name="chtmlb" prefix="chtmlb" %>
    <%@extension name="bsp" prefix="bsp" %>
    <% data: ls_line                type CRMT_THTMLB_LINK,
             lv_flag                type ABAP_BOOL.
        data: lv_xml                type string.
    if zcl_gaf_adm_toolbox=>gv_matrix_mnt_type = zcl_gaf_adm_toolbox=>gv_matrix_mnt_type_old.
       REFRESH controller->gt_navlink_tab[].
    *   if controller->gt_navlink_tab[] is initial.
         ls_line-id = 'Questions'.
         ls_line-onclick = 'QUEST'.
         ls_line-text = page->otr_trim( 'ZGAF_CRM_70/QUESTIONS' ).
         insert ls_line into table controller->gt_navlink_tab.
         ls_line-id = 'Risks'.
         ls_line-onclick = 'RISK'.
         ls_line-text = page->otr_trim( 'ZGAF_CRM_70/GLOBAL_RISK' ).
         insert ls_line into table controller->gt_navlink_tab.
         %>
    <%--   endif.  %>--%>
    <thtmlb:tray id     = "HeaderExt"
                 indent = 'FALSE'
                 design = 'STANDARD'>
      <thtmlb:trayHeader>
        <thtmlb:grid cellSpacing = "0"
                 columnSize  = "1"
                 height      = "100%"
                 rowSize     = "1"
                 width       = "100%" >
          <thtmlb:gridCell colSpan     = "1"
                       columnIndex = "1"
                       rowIndex    = "1"
                       rowSpan     = "1"
                       >
            <thtmlb:navLink links  = "<%= controller->gt_navlink_tab %>"
                    selectedLinkId = "<%= controller->gv_tab %>" />
        <bsp:call comp_id = "<%= controller->GET_VIEWAREA_CONTENT_ID( 'TABS' ) %>"
                  url     = "<%= controller->GET_VIEWAREA_CONTENT_URL( 'TABS' ) %>" />
          </thtmlb:gridCell>
        </thtmlb:grid>
      </thtmlb:trayHeader>
      <thtmlb:trayBody>
        <%
    *    data: lv_xml    type string.
        lv_xml    = controller->CONFIGURATION_DESCR->GET_CONFIG_DATA( ).
        %>
        <chtmlb:config xml     = "<%= lv_xml %>"
                       mode    = "RUNTIME"  />
      </thtmlb:trayBody>
    </thtmlb:tray>
    <% elseif zcl_gaf_adm_toolbox=>gv_matrix_mnt_type = zcl_gaf_adm_toolbox=>gv_matrix_mnt_type_new.
       REFRESH controller->gt_navlink_tab[].
    *   if controller->gt_navlink_tab[] is initial.
         ls_line-id = 'Questions'.
         ls_line-onclick = 'QUEST'.
         ls_line-text = page->otr_trim( 'ZGAF_CRM_70/QUESTIONS' ).
         insert ls_line into table controller->gt_navlink_tab.
    *     ls_line-id = 'Risks'.
    *     ls_line-onclick = 'RISK'.
    *     ls_line-text = page->otr_trim( 'ZGAF_CRM_70/GLOBAL_RISK' ).
    *     insert ls_line into table controller->gt_navlink_tab.
         %>
    <%--   endif.  %>--%>
    <thtmlb:tray id     = "HeaderExt"
                 indent = 'FALSE'
                 design = 'STANDARD'>
      <thtmlb:trayHeader>
        <thtmlb:grid cellSpacing = "0"
                 columnSize  = "1"
                 height      = "100%"
                 rowSize     = "1"
                 width       = "100%" >
          <thtmlb:gridCell colSpan     = "1"
                       columnIndex = "1"
                       rowIndex    = "1"
                       rowSpan     = "1"
                       >
            <thtmlb:navLink links  = "<%= controller->gt_navlink_tab %>"
                    selectedLinkId = "<%= controller->gv_tab %>" />
        <bsp:call comp_id = "<%= controller->GET_VIEWAREA_CONTENT_ID( 'TABS' ) %>"
                  url     = "<%= controller->GET_VIEWAREA_CONTENT_URL( 'TABS' ) %>" />
          </thtmlb:gridCell>
        </thtmlb:grid>
      </thtmlb:trayHeader>
      <thtmlb:trayBody>
        <%
    *    data: lv_xml    type string.
        lv_xml    = controller->CONFIGURATION_DESCR->GET_CONFIG_DATA( ).
        %>
        <chtmlb:config xml     = "<%= lv_xml %>"
                       mode    = "RUNTIME"  />
      </thtmlb:trayBody>
    </thtmlb:tray>
    <% elseif zcl_gaf_adm_toolbox=>gv_matrix_mnt_type EQ zcl_gaf_adm_toolbox=>GV_MATRIX_MNT_TYPE_SCAF or
              zcl_gaf_adm_toolbox=>gv_matrix_mnt_type = zcl_gaf_adm_toolbox=>gv_matrix_mnt_scaf_anz  or
              zcl_gaf_adm_toolbox=>gv_matrix_mnt_type EQ zcl_gaf_adm_toolbox=>GV_MATRIX_MNT_TYPE_SOW.
       REFRESH controller->gt_navlink_tab[].
    *   if controller->gt_navlink_tab[] is initial.
         ls_line-id = 'Questions'.
         ls_line-onclick = 'QUEST'.
         ls_line-text = page->otr_trim( 'ZGAF_CRM_70/QUESTIONS' ).
         insert ls_line into table controller->gt_navlink_tab.
    *     ls_line-id = 'Risks'.
    *     ls_line-onclick = 'RISK'.
    *     ls_line-text = page->otr_trim( 'ZGAF_CRM_70/GLOBAL_RISK' ).
    *     insert ls_line into table controller->gt_navlink_tab.
         %>
    <%--   endif.  %>--%>
    <thtmlb:tray id     = "HeaderExt"
                 indent = 'FALSE'
                 design = 'STANDARD'>
      <thtmlb:trayHeader>
        <thtmlb:grid cellSpacing = "0"
                 columnSize  = "1"
                 height      = "100%"
                 rowSize     = "1"
                 width       = "100%" >
          <thtmlb:gridCell colSpan     = "1"
                       columnIndex = "1"
                       rowIndex    = "1"
                       rowSpan     = "1"
                       >
            <thtmlb:navLink links  = "<%= controller->gt_navlink_tab %>"
                    selectedLinkId = "<%= controller->gv_tab %>" />
        <bsp:call comp_id = "<%= controller->GET_VIEWAREA_CONTENT_ID( 'TABS' ) %>"
                  url     = "<%= controller->GET_VIEWAREA_CONTENT_URL( 'TABS' ) %>" />
          </thtmlb:gridCell>
        </thtmlb:grid>
      </thtmlb:trayHeader>
      <thtmlb:trayBody>
        <%
    *    data: lv_xml    type string.
        lv_xml    = controller->CONFIGURATION_DESCR->GET_CONFIG_DATA( ).
        %>
        <chtmlb:config xml     = "<%= lv_xml %>"
                       mode    = "RUNTIME"  />
      </thtmlb:trayBody>
    </thtmlb:tray>
    <% endif.
    %>

  • How can I call a plsql function from an attribute?

    I have an attribute defined in an element. I want execute a PLSQL function from the attribute, and display the returne value with an HTML template.
    I've defined the attribute's type like PLSQL, and I've put the called of the function in the value of the attribute, but it doesn't work. The only value I obtain is an URL (I think that is the URL of the function or someting like this).
    How can I call to my function from the attribute and display the returnes value in the page?
    Thanks.

    Thanks, but it doesn't work. I have an attribute called ID_BOL and I want to associate a sequence to that attribute. I've created a function, with the sequence. This function return de value of the sequence. I want taht the attribute takes the value of the sequenece dinamically.
    I've tried it, creating the type attribute like PLSQL, and calling the function from the attribute, but it doesn't work.
    How can I return the sequence value to my attribute?
    Thanks.

  • Can i call a Coldfusion page from C# code?.

    I got a .Net application.
    Part of this application is written in coldfusion.
    How can i call coldfusion page from C# application?.
    Please post sample and code.

    To open a web page in the browser in C#:
    System.Diagnostics.Process.Start("YOUR URL HERE");
    To call a webpage without opening the browser take a look at
    the HttpWebRequest class in .NET
    http://msdn2.microsoft.com/en-us/library/system.net.httpwebrequest.aspx
    Disclaimer: I haven't used the HttpWebRequest class in a
    production project so I'm not sure if it will do what you want.
    You might also consider exposing the CF functionality you
    wish to use as a web service, then invoking the web service in your
    .NET project.
    Please post your solution to forum, I'm interested in hearing
    how you solve your issue.

  • Can we call a webservice  using standalone java application  ?

    Hi friends,
                   Can we call configurd webservice in xi , using standalone java application by just giving url of webservice ?
                  OR
                  Only by means of WEBDynapro we can call  ?
                    Can you please tell me the answer for this .
    Regards .,
    V.Rangarajan

    HI Ranga Rajan
    well, If at all if you have webservice...you can import that werbserivce as External definition in to IR.
    How to import:
    1) Go to IR and and move to your requied component and there you can see the option called imported objects...select on imported objects where you can give the name and you can select the webservices which you want to use it.
    2) Hope you are aware of that a werbservice will have the request and response.
    3) Create the mapping program accroding to your requirement.
    Go through blogs of Bhavesh and Naveen which talks about calling webservice in a specific condition:
    Webservice Calls From a User Defined Function - /people/bhavesh.kantilal/blog/2006/11/20/webservice-calls-from-a-user-defined-function
    Consuming/Calling webservices from DataBases - /people/sap.user72/blog/2005/10/20/consumingcalling-webservices-from-databases
    Also check this help file on Web Services:
    https://www.sdn.sap.com/irj/sdn/go/portal/prtroot/docs/library/uuid/336365d3-0401-0010-9884-a651295aeaa9
    Cheers..
    Vasu
    <i>** Reward Points if found useful **</i>

  • How can I call ECC 6.0 data as ESS/MSS in to Portal?

    Hi One and all,
    I have ECC 6.0 and portal. How can I Call ECC 6.0 data in to portal?
    I have questions please clarify these...
    By using sm59 can I assign RFC connection? how?
    What is SSO? Is it mandatory to access portal?
    Should SLD exist? If yes how can I check wether it is existing or not?
    Where can I configure SLD?
    Are JCO's established in the portal automatically or do we  need to configure those?
    when Iam maintaining JCO's I didn't find JCO's. Whats the problem?
    what are the Tcodes in ECC for checking ESS/MSS in portal?
    I need MSS and ESS configuration steps can any one send me link?
    Tomoro I need to give demo on this can any one help me?
    Thanks,
    Naresh.

    Hi Potru,
               Here is the good URL for ESS configuration
    ESS Configuration
    http://help.sap.com/erp2005_ehp_04/helpdata/EN/80/7d6641df6c7f47e10000000a1550b0/frameset.htm
    SLD Configuration (this is SAP Basis Team Responsibility)
    http://help.sap.com/erp2005_ehp_04/helpdata/EN/8f/a5284203845a33e10000000a155106/frameset.htm
    Single Sign On Configuration Steps
    http://help.sap.com/erp2005_ehp_04/helpdata/EN/4d/dd9b9ce80311d5995500508b6b8b11/content.htm
    http://www.sdn.sap.com/irj/scn/index?rid=/library/uuid/20913057-efe2-2b10-2391-949c27ac910d
    You need to Configure JCO connections(this is also Basis Team Responsibility)
    Path: SAP Portal---Content Administration--->WebDynpro
    Let me know if you need any more clarifications.
    Thanks and Regards,
    Abhi.

  • Can we call the Human Task operations and the Rule Designer, etc. from outs

    Hi,
    I just had one of my customers ask me -
    Can we call the Human Task operations and the Rule Designer, etc. from outside the SOA Suite ??
    Since these are independent applications, and that they are based on Service Oriented Architecture, I should be able to call these services from outside Oracle SOA Suite (SCA) for reuse.
    In case you have any idea about the possibilities, could you share some real world examples / URLs please ?
    Thanks & Regards

    Hi Vaibhav,
    Yes, you are right. We are using Oracle SOA suite 11g.
    My question is, can these Web Services be directly accessed from, say a .NET application without using BPEL PM, or is using BPEL a must to invoke these services in Human Task operations, Rule Designer, etc ?
    Regards

  • Can commandLink call a strut action?

    Hi,
    My project have existing code written in JSP and Strut framework. But, I like JSF better and would like to reuse some of the existing JSP/Strut code in JSF.
    Does anyone know that whether JSF can call a strut action via commandLink
    For example, the snippet below will call xyz.do, which is a strut action.
    <h:commandLink id="xyx" action="xyz.do" value="XYZ" immediate="true" />
    Thanks

    You can indeed call a struts action from a plain form but the action needs to exist and be assigned to the specified url.

  • Can I call any ActiveX control in the Forms under Oracle EBS 11.5.10 ?

    Hi All,
    I have a custom form that works under EBS 11.5.10 (Windows Envoirnment). Is there any way for me to call an ActiveX control on this form? My requirement is to show a URL ( a web application) in Microsoft Web Browser.
    I can successfully call ActiveX outside of the EBS i.e as forms runtime.
    In EBS I get FRM-41344 OLE object not defined for <<block item>> in the current record and then FRM-40735 for exception ORA-305500.
    WEB.SHOW_DOCUMENT is an option to accomplish but ActiveX will provide more control and better look and feel.
    Thanks,
    from Houston.

    Hi;
    Please check below and see its helpful:
    ActiveX controls in Oracle Forms
    ActiveX controls in Oracle Forms
    Forms 6i to Oracle9i Forms Upgrade Reference
    http://www.oracle.com/technology/products/forms/pdf/forms_upgrade_reference.pdf
    Please also check:
    http://www.oracle.com/technology/products/forms/htdocs/forms904FAQ.html
    R12: Publish via Report Manager, Activex Component Can't Create Object [ID 788958.1]
    Hope it helps
    Regard
    Helios

  • Which kind of URL can be opened in DS_Open

    There are some kinds of URL,such an "ftp://ftp.natinst.com/support/compworks/datasocket/chirp.dsd", "file://d:/datafiles/chirp.wav". When click the button, it will appear error information "Error: Can't open file to read from." and "Error: Can't Open File". So I want to know which file kind of URL can be opened!
    Thanks! 

    Chu,
    In addition to the built in portlets you mentioned, Oracle Portal provides a developer kit called the JPDK (Java Portal Development Kit) that allows you to build any portlet you like. Oracle Portal communicates with these portlets over HTTP so the portlets can be hosted remotely and can be used to integrate legacy applications into the Portal by publishing them as portlets.
    For examples of portlets using the JPDK, take a look at http://my.oracle.com
    This site is powered by Oracle Portal and most of the portlets were developed using the JPDK.
    Thanks,
    Todd

  • Url syntax to call stored procedure

    I want to call a stored procedure (STOERFALL_PROC). owner is ELVE_TEST
    v_ba_id and v_sf_id are paremeters for the procedure
    #SF_BA_ID# and #BEARBEITEN# are column values of my reports region for the parameters
    in the url field of the column link attributes of my report region i set this url syntax to call the proc
    #ELVE_TEST#.STOERFALL_PROC?v_ba_id=#SF_BA_ID#,v_sf_id=#BEARBEITEN#
    but it doesn´t works and I don´t know why.
    Can me help someone?

    user512746 (you can have a name display by going to "Your Control Panel") -
    Are you by chance using a manually created report region, using htmldb_item (or apex_item)?
    If so, then your problem may be what is discussed in the thread at Column value substitution in tabular form element attributes
    and
    Column value substitution in tabular form element attributes
    (specifically near the end of each thread).
    If you're using a wizard generated report, then the problem may be different, I'm not sure.
    Hope this helps.
    Bill Ferguson

  • Can applet call IE?...

    Can applet call explorer?...
    That means if i have a applet class which show some details, then i wanna create the html page by using that details from applet and then execute it.
    Is it impossible to do that?
    As i known, there is Runtime class that can execute the program by using "Runtime.exec()" method, but we have to put the file's path(path that tell where the html file is...) as the parameter.
    But my problem is i did not prepare the html file before, it will be create on applet , and then exceute it to show on monitor...
    Do u have any idea?..
    Thank a lot..

    Your applet can call javascript, javascript can open a new window and set the
    text (html) for this window (document.write window.opener.sometext()).
    To call javascript from your applet:
              try {
                   this.getAppletContext().showDocument(
                             new URL("javascript: someJSMethod();"));
              } catch (Exception e) {
                   e.printStackTrace();
              }

  • Can we call a function module in ADHOC query

    Hi
    Can we call a function module in ADHOC query if yes how.
    Also we ned to know how to call a function module in SAP query.
    An early responce is appreciated.
    Thanks and best regards
    Rajeev

    Okay as far as I understand your aim is:
    To fill a field in the output list with a value that is based on the current line information and calculated by a function module
    So go to SQ02 and create an additional field in the InfoSet.
    You can refer in the coding to the technical names you can see in the left tree window like P0000-PERNR.
    More information is avaiable in the Help part look for additional field in SQ02.
    Regards,
    Michael

  • How to log in with my old Apple account? I forgot my pass and I did change my apple ID before canceling first?? I am from Croatia so did folow al the discussion and the to resolve the problem but no luck. Can not call from Croatia the Apple help desk

    How to log in with my old Apple account? I forgot my pass and I did change my apple ID before canceling first?? I am from Croatia so did folow al the discussion and the to resolve the problem but no luck. Can not call from Croatia the Apple help desk.i did try all the options but I can not find the phone number to call from Croatia,
    I can not change my Apple ID to the old mail (not possible!)
    The old mail don't accept the new password..
    I can not delete the Icloud all the time asking my the password of the old mail!
    I realy need help

    You can not merge accounts.
    Apps are tied to the Apple ID used to download them, you can not transfer them.

Maybe you are looking for

  • Source systems vanishes from RSA1 after renaming of the LSN after BDLS

    Dear BW/BI Experts,            We are doing BW3.1 upgarde to BI7.0........After system copy there is need of rename of logical system for BP1 to BD1 (Prod. to Dev. and Dev. is our new Target BW system ) and From RP1 to RQ1. Before renaming I checked

  • Am trying to download Calibre software for EBook management. Safari says can't download file. Why? How to fix?

    I am trying to download E-Book management software (Calibre) on to my IPAD but Safari says download failed as Safari cannot download this file. Why is this.  I would have thought this was a fairly straight forward procedure?

  • SB XF-I Xtremegamer - microphone doesn't w

    I have a SB XF-I Xtremegamer sound card and I can't get the microphone to work. I have tried 2 mics and have tried it on Windows Vista, then I reinstalled Windows XP, still no luck. I have an Asus P5N320E Deluxe mobo that comes with an on board sound

  • ESS/MSS Leave Request Issue

    Hello All Experts We have implemented ESS/MSS. Everything is working fine except the Leave Request approval. The approval request comes to the approver's inbox.When we try to open the approval request, the webdynpro application is getting but there i

  • Requirement to call Function Module in Workflow

    Hi, I have been assigned to task wherein i have a requierement like this . I have created a workflow with step user decision with 2 options. Now the thing is that when user select one of option i need to call function module and based on result from