Component name of SS_GET_SEARCH_RESULTS

Hi All
Please let me know in UCM on which component "SS_GET_SEARCH_RESULTS" service belongs to.
With thanks and regards
Anoop

Hi
This will be part of the any search fragment that is there by default on SS . This is the core search service of Site Studio .
Thanks
Srinath

Similar Messages

  • BP Fact sheet: how to translate component name?

    Hello
    At my customer BP fact sheet is custimized to include a custom component. The component name is Z-custom and the description in english is "custom". If I log on to the web UI in english I can see the title on the windo "custom". But if I log on in other languages it is empty.
    This is because there was no translation to the component name before. I added the translations in SPRO - Maintain Fact Sheet but still nothing is shown in the web UI. I also checked BSP_WD_CMPWB but found no place for translation.
    Can anyone help? It must be something really quick ans stupid !!
    Sotiris
    Edited by: Sotiris Hatzis on Jul 6, 2011 12:26 PM

    Actually I also made some other changes in transaction BSP_WD_CMPWB (like titles of columns) but these changes are not shown either onthe Web UI.
    Do I need to activate something, or run something?
    Sotiris

  • How to find out the Target Component name and Target view name

    Hi All Expert,
                      I want to know ,how to find out the target component and target view in WEB UI,when i click on a field which shows as a hyper link in WEB UI .At GUI level ,i know the how it will work.Any way to find out the component name and view name which is show the details of that field at GUI level .IF you go to transaction CRMD_ORDER then open the service contract id .then goto the item level value .there is 1 service data tab is available at item level.there is two button is available.first one is available time and second one is response time .if i click on any button then one popup is open which is shows the details of that button.I dont know how to find out the component name and view name from GUI level.
    Thanks in Advance....
    Vishwas Sahu

    Hi Vishwa,
                 The control would be something like this for navigation in Get_p_xxx method u mention as link and u mention a event name which gets triggered on the click of this hyperlink. So your GET_P_XXX method would have the following code:
    CASE iv_property.
        WHEN if_bsp_wd_model_setter_getter=>fp_fieldtype.
          rv_value = cl_bsp_dlc_view_descriptor=>field_type_event_link.
        WHEN if_bsp_wd_model_setter_getter=>fp_onclick.
          rv_value = 'EXAMPLE'.
    Now you have to create a method as EH_ONEXAMPLE at your IMPL class and within which you would give an outbound plug method. Within the outbound plug the target data would be filled in the collection and window outbound plug would be triggered.
    This is a huge topic and  i have just mentioned you basic things.
    Regards,
    Bharathy.

  • Type '[component name]' in CSS selector '[component name]' must be qualified with a namespace

    I've recently upgraded my SDK to allow me encorporate other features such as the Text Layout Framework and such. To avoid issues i've had to make Flash player 10 as required, which is where the problems are occuring in my main project.
    We knew the switch would cause some issues, and we now have a lovely batch of 100+ Warnings, that are all along the lines of
    Type '[component name]' in CSS selector '[component name]' must be qualified with a namespace
    all the warnings are on line locations that have no reference to the component they are talking about.. so i'm kinda stumped on what to do. Anybody else run into this issue before?
    cheers

    <?xml version="1.0" encoding="utf-8"?>
    <s:Application xmlns:fx="http://ns.adobe.com/mxml/2009"
          xmlns:s="library://ns.adobe.com/flex/spark"
          xmlns:mx="library://ns.adobe.com/flex/halo"  >
    <fx:Style>
    @namespace s "library://ns.adobe.com/flex/spark";
    @namespace mx "library://ns.adobe.com/flex/halo";
    Button
        // The warning
    </fx:Style>
    <s:Button label="提交"  textAlign="center" height="30"/>
    </s:Application>
    I think you have use flex4.
    Please change the code to :
    <?xml version="1.0" encoding="utf-8"?>
    <s:Application xmlns:fx="http://ns.adobe.com/mxml/2009"
          xmlns:s="library://ns.adobe.com/flex/spark"
          xmlns:mx="library://ns.adobe.com/flex/halo"  >
    <fx:Style>
    @namespace s "library://ns.adobe.com/flex/spark";
    @namespace mx "library://ns.adobe.com/flex/halo";
    s|Button
        // ok. The is style for spark button }
    mx|Button
        //ok. The is style for halo button
    </fx:Style>
    <s:Button label="提交"  textAlign="center" height="30"/>
    </s:Application>

  • How to get the component name in webdynpro

    Hi all,
            how can i get the name of the webdynpro component. The component is being displayed in the portal. Now i need the component name for this.Can any one suggest of how to get this.
    Regards,
    Kalyan Chakravarthi.M

    Hi ,
    get the object of  IF_WD_COMPONENT , by calling the method wd_get_api( ) of wd_component attribute , then call the method GET_COMPONENT_INFO( ) ,it will return the object of IF_WD_RR_COMPONENT in that call the method GET_NAME( ) .
    Regards
    Yash

  • Can I verify a field-symbol using its component name?

    Hello experts,
    I am looping at my field-symbol and I need to know what are its component name.
    I need to create an IF or CASE statement checking whether the field-symbol's
    component name is equal to that of the value that I declared. I want to do
    something like this:
    LOOP AT <fs_dyntable> ASSIGNING <wa_dyntable>.
    ASSIGN COMPONENT sy-index OF STRUCTURE <wa_dyntable>
            TO <component>.
            IF sy-subrc <> 0.
              EXIT.
            ENDIF.
    if component name = '2000'.
        condition...
      elseif component name = '1999'.
        condition...
      elseif component name = '1998'.
        condition...
      endif.
    endloop.
    Again, thank you guys and take care!

    Hi,
    I am not clear on your doubt , but you can use field-symbol fields like below:
    * if <component>-fld1 = '2000'.
    condition...
    elseif <component>-fld1 = '1999'.
    condition...
    elseif <component>-fld1 = '1998'.
    condition...
    endif.
    endloop.
    LOOP AT x_table ASSIGNING <wa_table>.
    IF <wa_table>-fld1 EQ 100.
    -----your code
    ENDIF.
    ENDLOOP.
    Regards
    Appana

  • How to get WD component name or application name

    Hi ,
    Is there any sap standard variable where webdynpro component name or application name get store like SY-CPORG.
    Thanks And Regards,
    Rohit

    Hi,
    You can get the application name using below code:
    DATA : lr_api      TYPE REF TO if_wd_component,
              lr_app      TYPE REF TO if_wd_application,
              lr_app_info TYPE REF TO if_wd_rr_application,
              lv_app_name TYPE string.
       lr_api = wd_comp_controller->wd_get_api( ).
       CALL METHOD lr_api->get_application
         RECEIVING
           result = lr_app.
       CALL METHOD lr_app->get_application_info
         RECEIVING
           result = lr_app_info.
       CALL METHOD lr_app_info->get_name
         RECEIVING
           result = lv_app_name.
    Now pass the lv_app_name to the FM.
    hope this helps u,
    Regards,
    Kiran

  • Ampersands in component names (very minor issue)

    This issue is not creating any problems for me, just something I have observed.  When an ampersand (&) symbol is inserted into a component name, the ampersand is not actually displayed anywhere once the change is made, but what appears to be an underscore (_) appears instead.  A space also appears at the beginning of the component name within the Object Browser.  Obviously a very minor issue but thought I should report it.

    Well, for what it's worth, this is what I get at this moment when I attempt to view this thread while logged in under Firefox 3.03:
    An error in the system has occurred. Please contact the system administrator if the problem persists.
    type: java.lang.NullPointerException
    java.lang.NullPointerException
         at jsp_thread_2d_flat1226300463732._jspService(jsp_thread_2d_flat1226300463732.java:556)
         at com.sap.engine.services.servlets_jsp.server.jsp.JspBase.service(JspBase.java:112)
         at com.sap.engine.services.servlets_jsp.server.servlet.JSPServlet.service(JSPServlet.java:544)
    code}
    It's actually a very long block of code.  When I refresh, sometimes no posts are displayed at all here.

  • Entering a component name in column New Name causes ecxeption

    Hi peoples,
    It's not the first time i encounter this problem.
    I select a basic action in the Test Case Editor. Then i select it and try to enter a component name in the column 'New Name'. After entering the first tokens suddenly an error message pops op with this text:
    3004: Unexpected error occurred.
    org.eclipse.swt.SWTException: Failed to execute runnable (java.lang.IllegalArgumentException: Comparison method violates its general contract!)
    Closing the test case, open it again and try again to select the basic action and enter a component name leads again to this error message. I probably will have to restart Jubula.
    I am using Jubula_8.1.00294
    I will attach a file with the whole error message, a screenshot and a log file.
    Hope you can tell me if something can be done to prevent this. It is pretty annoying.
    many thanks in advance,
    Jurjen

    Hi Jurjen,
    Thanks for mentioning this. Would you be so kind as to enter a ticket in the Jubula bugzilla with the information you've mentioned here as well as:
    - what platform you are working on
    - whether you can say anything about the reproducibility of it
    Best regards,
    Alex

  • How to find the ABAP Webdynpro Component Name in the Portal IView(WDA)

    Hi All
    I got one ABAP Webdynpro IView in portal , when i opened the Iview i got the Application name of ABAP Webdynpro in the properties of the Iview but i could not able to find the component name .
    Please let me know how to find the component name of WDA , as i already got the Application name of component  from Iview i.e WDA_ED_RDF ( this is applicaiton name found in the portal Iview for ABAP Webdynpro)
    Please get back to me on the same , it would be great help to me.
    Thanks,
    PortalUser100
    Edited by: PortalUser100 on Mar 24, 2011 11:51 PM

    Hi
    Right Click on any UI Element in Portal->Go to more field help->TEchical Information. You can see all the information about component, application, ui elements etc.
    Please check this... may helps more
    http://wiki.sdn.sap.com/wiki/display/WDABAP/GeneralTechnicalAspects
    Thanks,
    Venkat.

  • Portal Runtime Error -  iview: N/A, Component Name: N/A

    Hi All,
    We are getting the following error when trying to access a tab in our portal
    Portal Runtime Error
    An exception occurred while processing the request for:
    iView: N/A
    Component Name: N/A
    and when I looked at the exception log I found the following trace:
    Exception ID:03:34_31/12/07_0135_209744050
    [EXCEPTION]
    com.sapportals.portal.prt.component.PortalComponentException: Error in service call of Portal Component
    User : lynchjp
         at com.sapportals.portal.prt.core.PortalRequestManager.handlePortalComponentException(PortalRequestManager.java:969)
         at com.sapportals.portal.prt.core.PortalRequestManager.callPortalComponent(PortalRequestManager.java:343)
         at com.sapportals.portal.prt.core.PortalRequestManager.dispatchRequest(PortalRequestManager.java:136)
         at com.sapportals.portal.prt.core.PortalRequestManager.dispatchRequest(PortalRequestManager.java:189)
         at com.sapportals.portal.prt.core.PortalRequestManager.runRequestCycle(PortalRequestManager.java:753)
         at com.sapportals.portal.prt.connection.ServletConnection.handleRequest(ServletConnection.java:240)
         at com.sapportals.portal.prt.dispatcher.Dispatcher$doService.run(Dispatcher.java:522)
         at java.security.AccessController.doPrivileged(Native Method)
         at com.sapportals.portal.prt.dispatcher.Dispatcher.service(Dispatcher.java:405)
         at javax.servlet.http.HttpServlet.service(HttpServlet.java:853)
         at com.sap.engine.services.servlets_jsp.server.servlet.InvokerServlet.service(InvokerServlet.java:156)
         at javax.servlet.http.HttpServlet.service(HttpServlet.java:853)
         at com.sap.engine.services.servlets_jsp.server.HttpHandlerImpl.runServlet(HttpHandlerImpl.java:390)
         at com.sap.engine.services.servlets_jsp.server.HttpHandlerImpl.handleRequest(HttpHandlerImpl.java:264)
         at com.sap.engine.services.httpserver.server.RequestAnalizer.startServlet(RequestAnalizer.java:347)
         at com.sap.engine.services.httpserver.server.RequestAnalizer.startServlet(RequestAnalizer.java:325)
         at com.sap.engine.services.httpserver.server.RequestAnalizer.invokeWebContainer(RequestAnalizer.java:887)
         at com.sap.engine.services.httpserver.server.RequestAnalizer.handle(RequestAnalizer.java:241)
         at com.sap.engine.services.httpserver.server.Client.handle(Client.java:92)
         at com.sap.engine.services.httpserver.server.Processor.request(Processor.java:148)
         at com.sap.engine.core.service630.context.cluster.session.ApplicationSessionMessageListener.process(ApplicationSessionMessageListener.java:33)
         at com.sap.engine.core.cluster.impl6.session.MessageRunner.run(MessageRunner.java:41)
         at com.sap.engine.core.thread.impl3.ActionObject.run(ActionObject.java:37)
         at java.security.AccessController.doPrivileged(Native Method)
         at com.sap.engine.core.thread.impl3.SingleThread.execute(SingleThread.java:100)
         at com.sap.engine.core.thread.impl3.SingleThread.run(SingleThread.java:170)
    Caused by: com.sapportals.portal.prt.core.PortalRequestManagerException: PortalRuntimeException
         at com.sapportals.portal.prt.core.PortalRequestManager.dispatchRequest(PortalRequestManager.java:143)
         at com.sapportals.portal.prt.core.PortalRequestManager.dispatchRequest(PortalRequestManager.java:189)
         at com.sapportals.portal.prt.component.PortalComponentResponse.include(PortalComponentResponse.java:215)
         at com.sapportals.portal.prt.pom.PortalNode.service(PortalNode.java:646)
         at com.sapportals.portal.prt.core.PortalRequestManager.callPortalComponent(PortalRequestManager.java:328)
         ... 24 more
    Caused by: java.lang.NullPointerException
         at com.sapportals.portal.navigation.NavigationService.getNode(NavigationService.java:355)
         at com.sapportals.portal.navigation.cache.CachedNavigationService.getNode(CachedNavigationService.java:156)
         at com.sapportals.portal.navigation.NavigationEventsHelperService.getCurrentNavNode(NavigationEventsHelperService.java:373)
         at com.sapportals.portal.navigation.NavigationEventsHelperService.getCurrentLaunchNavNode(NavigationEventsHelperService.java:428)
         at com.sapportals.portal.navigation.fpm.NavigationFpmListener.addToHistory(NavigationFpmListener.java:287)
         at com.sapportals.portal.navigation.fpm.NavigationFpmListener.doNavigatePhase(NavigationFpmListener.java:98)
         at com.sapportals.portal.navigation.fpm.NavigationFpmListener.doPhase(NavigationFpmListener.java:70)
         at com.sapportals.portal.pb.fpm.FPMContainer.distributeEvent(FPMContainer.java:63)
         at com.sapportals.portal.pb.fpm.FPM.doDocumentHook(FPM.java:143)
         at com.sapportals.portal.prt.service.document.DocumentHookMulticaster.doDocumentHook(DocumentHookMulticaster.java:100)
         at com.sapportals.portal.prt.service.document.DocumentHookService.doDocumentHook(DocumentHookService.java:119)
         at com.sapportals.portal.prt.service.document.DocumentHookServiceNew.doDocumentHook(DocumentHookServiceNew.java:183)
         at com.sapportals.portal.prt.connection.PortalHook.doDocumentHook(PortalHook.java:824)
         at com.sapportals.portal.prt.core.PortalRequestManager.callPortalComponent(PortalRequestManager.java:261)
         at com.sapportals.portal.prt.core.PortalRequestManager.dispatchRequest(PortalRequestManager.java:136)
         ... 28 more
    Any idea as to why this is happening? Would a portal restart or workset remigration resolve this issue?
    Thanks,
    KN.

    Hi,
    Try removing iview and assiging back becoz error is saying that iview not found so remove iview and assign again
    Regards
    Krishna.

  • Replace the component name to universal?

    Hi!
    I have put some code into the "FocusLost" event of the jTextField. Here is it:
    private void jTFprobaFocusLost(java.awt.event.FocusEvent evt) { 
    if(jTFproba.getText().equals("wrong"))
    jTFproba.setBackground(Color.red);
    else
    jTFproba.setBackground(Color.white);
    jTFproba.setText("OK");
    It works, but I have about 20 similar TextBox in my application and I am interested in whether it is possible to replace the name of the component (jTFproba) to something universal like "this"?
    For example:
    private void jTFprobaFocusLost(java.awt.event.FocusEvent evt) { 
    if(this.getText().equals("wrong"))
    this.setBackground(Color.red);
    else
    this.setBackground(Color.white);
    this.setText("OK");
    But it does't work!
    Do you have any ideas to replace the component name?

    See the documentation of FocusEvent. It has a getComponent() method that I assume returns the component that has lost the focus (in your case, a JTextField instance). You can add the same listener to all JTextField instances, and cast the source to JTextField.
    It also has a getOppositeComponent() method that presumably returns the component that has gained the focus, if that matters.
    I assume for a focusGained() callback it's the contrary.
    Edited by: jduprez on Nov 4, 2010 2:55 PM
    Mixed method names, so reverted to a conservative "I assume" description

  • Pass Component Name to Generic "Condition" w/o hardcoding it

    Hi, thanks in advance for your help.
    I'd like to create a generic PL/SQL "Condition" statement which references the Component Name of the component executing the Condition - without hardcoding the component name in the query. In other words, a statement which I could plug in to any component's Condition clause without hardcoding the name for each component. Is there a Substitution String, application variable or some other mechanism I can grab which has this value?
    What say ye Oracle... Can I get there from here?

    I'm not sure it does require an enhancement request, since I'm pretty sure you could code that using authorizations right now.
    For example, assuming that you have different levels of users (e.g. level 1, level 2, level 3 etc), where -
    Level 3 is the lowest level
    Level 2 can do everything level 3 can do, plus a bit more
    Level 1 can do everything level 2 can do, plus a bit more
    Then you could define a table mapping users to levels (e.g. "Joe" is level 2).
    Then in your Application you create authorization levels for Level 1, Level 2, Level 3 etc (i.e. you're specifying that a user must be at least Level 2 to see this item etc).
    You create a new item and assign it an authorization level of 'Level 2', therefore only users who are Level 2 and above will be able to see the item.
    Obviously I've missed out a huge chunk of the implementation here ;)

  • No package with component name in src/mimes

    Hi,
    I want to put a gif image file in src/mimes/components/<component name>.
    I am giving reference of this image in my View's image UI element.
    However, when I navigated to 'src/mimes/components', I don't find any subfolder with name of my component.
    Hence my view is not able to locate the image.
    What should I do now?
    Thanks and regards,
    Amey

    Hi,
    Is it  a DC ? or simple project .
    This is structure :_comp\src\mimes\Components\<package + your DC name>.
    try with close the project then rebuild + reload . If it still not there , delete the gen and gen_wdp folder from your file system, after this close +rebuild + reload .
    Try out.
    BR
    Satish Kumar

  • Web dynpro component name

    Dear All, From the Portal how can we find the web dynpro component name.

    Hi Simpu,
    Your question is not really clear to me, but anyhow, I expect that it is if one can determine "what" is called (technically) if a WD iView is called from within the portal.
    All you can determine is given in the corresponding WD iView and it's parameters, see http://help.sap.com/saphelp_nw70/helpdata/en/11/0d653f0c9fa075e10000000a114084/frameset.htm
    Hope it helps
    Detlev

Maybe you are looking for

  • Where can I get a replacement power cord for an Apple TV 2

    I want to be able to move my Apple TV from TV1 to TV2 wihtout having to crawl around and unplug it.  I can't seem to find where to get a second power cable to accomplish this. Thanks

  • Asset account issues

    Hi Guru's Situation is like this: Project System captures the cost through WBS. This cost is then transferred to AUCs. Based on the settlement profile this cost will settle to final asset. When the cost is settled following problems are occurring: De

  • How to Avoid Redundant Indexes on Indexed Views

    Let's say I have an indexed view - so far it only has a clustered index. I want to avoid redundant indexes. So let's say the view joins Customers and Orders. If I've already put a nonclustered index on every column in both base tables, it's a pretty

  • How to send an iPod to get refurbished?

    I dropped my iPod touch 4th generation flat on the pavement. The screen is completely shattered and I want to send it back to Apple to get it refurbished. I have a 1 year warrrenty on it as well. How do I send it in?

  • What is the last software update for N95 8g..??

    what is the last software update for N95 8g and what are its problems any one feel after new update??