How to hide "Request Information" in FYI?

Hi all,
Please tell me how to hide "Request Information" in FYI. I know we can do it through Workflow. But i created a FYI using AME. Is it possible to do it on functional level.
Regards,
Pradeep

Found the answers:
1. The service Impl should implement the javax.xml.rpc.server.ServiceLifecycle interface.
In this way you get access to a javax.xml.rpc.server.ServletEndpointContext, which gives access to amongst others javax.xml.rpc.handler.MessageContext, which gives access to request information
2. In the Handler it is possible to store information on the MessageContext, which can be accessed in the service Impl (see 1.).
Groeten,
HJH

Similar Messages

  • How to access request information in a webservice implementation (10.1.3)

    Hi,
    I have created a java webservice from WSDL in JDeveloper 10.1.3.4.
    In the Impl class I would like to access HTTP request information.
    Can I do this in a direct way?
    If not, I have made a custom javax.xml.rpc.handler.Handler (by extending GenericHandler)
    In this class I can access the information that I need from the MessageContext that is available there.
    How can I get information from the Handler to my Impl?
    Groeten,
    HJH

    Found the answers:
    1. The service Impl should implement the javax.xml.rpc.server.ServiceLifecycle interface.
    In this way you get access to a javax.xml.rpc.server.ServletEndpointContext, which gives access to amongst others javax.xml.rpc.handler.MessageContext, which gives access to request information
    2. In the Handler it is possible to store information on the MessageContext, which can be accessed in the service Impl (see 1.).
    Groeten,
    HJH

  • How to hide request with no results in Dashboard?

    Hi Experts,
    I have a dashboard with 3 requests in one section. The 3 requests are very similar to each other but need to be separated due to the way the metrics are calculated and the location of the datasource.
    DepartmentName Sales Month
    GroupName Sales Month
    TeamName Sales Month
    There is no hierarchy and all three don't relate to each other.
    The issue I am having is that if the first request (lets call it Department Request) doesn't have any data for that particular month, it still displays the column heading.
    How can hide the request or the column headings if there is no data for that request?

    --Report Dropdown
    --here is a detailed explanation from David using Guided navigation
    --http://forums.oracle.com/forums/thread.jspa?messageID=3511377
    --So, essentially, when you 1st report returns no data then you can hide that section, to itself.
    Thanks for the suggestion.
    This won't work for my requirements because the user doesn't want to select the reports. They want to input the para maters and look at the requests that have the data. If a request doesn't return data, then they want it blank.
    This dashboard will grown in terms of requests so the user doesn't want to select each report that they might need. Also, users will not know which request might or might not have data.

  • How to hide sensitive information in N79

    can anybody help me with hiding the sensitive information in nokia N79.

    it depends on how sensitive they are
    If you just want to hide some media files, touch hider is the best
    if you want some files can't be read by others even you lost your phone and your memory card is scaned in bytes, use touch crypto, it use 128 bit AES to protect your data.
    If you want save some inforamtion like bank account, credit card, email account, website account etc, just use Password Book. It provides well designed forms and store your info with 128bit AES
    They all avilable on OVI store. I see their support webpage, it's an legit site:
    www.kenvast.com

  • How to hide the information box in Jave script if the IR report is no data?

    dear all:
    if the IR report desn't catch the data . the system show "Essbase Query :No rows retried" message . we have to click the "OK" buttion to continue it . but if my report is runing by JAVA script , the message shows it too. i want to hide the message box the program go ahead. how to do it ?
    Regards.
    Tony

    I remembered having this issue with OLAPQuery. Have you tried CubeQuery?

  • How to hide request parameters from URL

    Hi ,
    I do not want to have userId of the logged on user in the URL as the request parameter.What options do i have ?

    Then, I do not need to build the URL as below
    http://localhost:80/app/something?userId=123
    and the URL would like:
    http://localhost:80/app/something

  • How to hide information on VC?

    Hi every one.
    i am working on a VC model, but I meet some issues:
    I do not konw how to hide repeated information from a line.
    for example, I have:
    aaaaa    bbbbb
    aaaaa    ccccc
    aaaaa    ddddd
    xxxxx    zzzzz
    xxxxx    yyyyy
    And I'd like to have:
    aaaaa bbbbb
              ccccc
              ddddd
    xxxxx zzzzz
              yyyyy
    Can anyone help me on this?
    thanks a lot in advance.
    Pierre

    Salut benjamin.
    In fact, I think it is just for 'beauty".
    what I really want did not wotk on my last message.
    I want to pass from
    aaaaa bbbbb
             aaaaa ccccc
             aaaaa ddddd
             xxxxx yyyyy
             xxxxx zzzzz
    to
    aaaaa bbbbb
          ccccc
          ddddd
    xxxxx  yyyyy
           zzzzz
    thanks a lot for your help.
    Pierre

  • How to get Requester Login information into the request dataset validator

    Friends,
    I need to check whether the requester is part of a group or not before submitting the request. If not I need to throw an error.
    Can you please let me know how to get Requester information.login into the request validator?

    Hi Thiago,
    I am getting the requester id from the requestData in the request data validator. Here is my full code for your reference.
    Bikash - I even tried with RoleManager service but still same error.
    public void validate(RequestData requestData)
    throws InvalidRequestDataException {
    tcUserOperationsIntf UserOppsIntf =Platform.getService(tcUserOperationsIntf.class);
    try
    tcResultSet result=UserOppsIntf.getSelfProfile();
    result.goToRow(0);
    String requesterID = result.getStringValue("Users.User ID");
    String userKey=result.getStringValue("Users.Key");
    System.out.println("Request Login:"+requesterID);
    if (isMemeber(getOIMGroupKey("testGroup"),userKey))
    System.out.println(requesterID+" is a Member");
    else
    System.out.println(requesterID+" is not a Member");
    String reason = "Note[REQUEST_SUBMISSION_ERROR].text:You are not authorized to submit this request.";
    throw new InvalidRequestDataException(reason);
    catch(Exception e) {
    e.printStackTrace();
    private String getOIMGroupKey(String GroupName) throws Exception
    String groupKey="";
    tcGroupOperationsIntf groupInstanceOps = Platform.getService(tcGroupOperationsIntf.class);
    HashMap searchFor = new HashMap();
    searchFor.put("Groups.Group Name", GroupName);
    tcResultSet results = groupInstanceOps.findGroups(searchFor);
    for (int i = 0; i < results.getRowCount(); i++) {
    results.goToRow(i);
    groupKey = Long.toString(results.getLongValue("Groups.Key"));
    System.out.println("GroupKey:"+groupKey);
    return groupKey;
    private boolean isMemeber(String groupKey,String userKey) throws Exception
    boolean member=false;
    try
    tcGroupOperationsIntf groupInstanceOps = Platform.getService(tcGroupOperationsIntf.class);
    long grpLong = Long.parseLong(groupKey.trim());
    tcResultSet grpResultSet = groupInstanceOps.getAllMembers(grpLong);
    for(int i=0;i<grpResultSet.getRowCount();i++)
    grpResultSet.goToRow(i);
    long usrKeygrp = grpResultSet.getLongValue("Users.Key");
    if (usrKeygrp==Long.valueOf(userKey))
    member=true;
    break;
    catch(Exception e) {
    e.printStackTrace();
    member=false;
    return member;
    }

  • How to hide standard Iviews in MSS employee profile service

    Hi ,
    I am on MSS Add on 1.0 .
    when I click on Team then employee infomration then employee profile.
    I can see details of employee. How to hide additional information like salary data , compensation information, apprisal which is part of standard delivery.
    Please see attachment.
    Regards,
    Vijay

    Package PAOC_MSS_PROFILES_WDA Config ID            HRMSS_EMP_OVER_PROFILE Application name is HRMSS_EMP_OVERVIEW_PROFILE and there you can delete as shown in below blog for similar case. http://scn.sap.com/community/erp/hcm/employee-self-service/blog/2012/04/25/mss-homepage-customisation http://scn.sap.com/thread/3486553 http://scn.sap.com/thread/3554348

  • How to hide "Any User" participant from "Request more information" notifica

    Can anyone help me on oracle workflow notification?
    When a notification is send to the adjustor and if adjustor wants to ask for more information to the Validator then he will press “Request more Information” button after clicking on the button adjustor would be able to fill the requested information as well as there are 2 participant 1. Workflow participant and 2. Any user. my requirement is to hide the “Any user” option from the notification where we have "All employees and users" option in the dropdown.
    Thanks,
    Gaurav

    I have done this by page personalization however i have one more query, I am able to hide “Any user” label as well as dropdown and search field however not able to remove radio/option button previous to the “Any user” label from the page.
    Could you please help me on this.
    Edited by: user11986433 on Nov 26, 2010 4:15 AM

  • How to hide display details in sap gui and create ad-hoc request in UWL?

    Hi,
    how to hide display "details in sap gui" and "create ad-hoc request" in UWL?
    Please telme the step-by-step procedure to hide "details in sap gui" and "create ad-hoc request".
    Thanks,
    Rashmi

    Hi,
    Thanks for the information. It was very helpfull.
    Can you please tellme where can we fine UWL iView? I tried to find this out in two ways.
    1) Portal Content -> Content Provided by SAP -> End User Content -> Standard Portal Users -> Views -> com.sap.coll.iviews -> Universal Worklist (finally i got this iView). Here i dint find any property called "List of UWL Actions to exclude". In the link which you had given, its written that we can modify the iView and add the name of the actions under the Actions to exclude from the UWL property.
    Which iView do we need to modify and where can i find that property?
    2) I downloaded the xml file and then tried to find this property "List of UWL Actions to exclude" or " Actions to exclude from the UW". But i couldnt find both the properties in xml file.
    Thanks,
    Rashmi

  • How to hide "Create Requisition Request" link in MSS

    Hi All
    How to hide "Create Requisition Request" link which is in Recruiting services in MSS?
    Rgrds
    Sri

    Hello,
    Create Requisition Request is triggered by Home Page framework service MSS_HCM_RECRUITING_NEWREQ_REQUEST.
    In order to deactivate it, in customizing:
    SPRO-IMG:
    Cross-Application Components
      Homepage Framework
        Services
          Assign Services to Subareas
    On the entry :
    MSS_HCM_RC_REQREQUEST     MSS_HCM_RECRUITING_REQ_STATUS_OV     20
    You can set the position as blank, so it will not show up. You can also delete this entry.
    Regards,
    Bentow.

  • STMS: how to hide the Import All Requests button in the import queue view?

    Hi All,
    I'd like to know how to hide the "Import all requests" button in the import queue view.
    Thanks a lot for your answers.
    G.

    Hi,
    about hiding i have a doubt but u can inactivate by following procedure,
    As referred in a thread:
    On the domain controller, in STMS>overview>systems>(double click the one you want to change)>Select Transport Tool tab and click on change. Add Import_single_only value 1, import_single_strategy value 1 and no_import_all value 1. Save distribute and activate.
    or
    Refer to OSS NOTE 194000.
    Thanks & regards.

  • HT203524 I just received a suspicious email requesting information about my checking account. The email was sent from my mac email account. Was my email hacked and how do I fix it?

    just received a suspicious email requesting information about my checking account. The email was sent from my mac email account. Was my email hacked and how do I fix it?

    Sound like a pfishing email rather than your account being hacked.  See http://support.apple.com/kb/HT4933.

  • HOW TO HIDE MDI WINDOW INFORMS 9I WHEN THEY RUN IN WEB BROWSER

    Hi. Will any body tell me how to hide the default MDI window title in Forms 9i when it run in Web Browser. I am using the "Look and feel" property as "Generic" in Formsweb.cfg file. I tried the RESIZE,POSITION,MINIMIZE,VISIBLE FALSE properties of SET_WINDOW_PROPERTY FUNCTION, But the horizontal Bar at the top displaying "Window" on it, is displayed. OR some time form is not displayed at all. So plz help me. This kindness of any one will be appriciated.
    Regards
    Inayat Qazi

    Hi Inayat,
    To remove the ORACLE icon, change the line "logo=" to "logo=x" in file formsweb.cfg.
    I am not sure if it is possible to remove the standard-menu (horizontal bar with word Window, as you describe it), because as far as I know it is inheritance for the Windows OS. In other words, removing the standard menu can only be achieved if you run on another OS.
    Kind regards.

Maybe you are looking for

  • Can we save the warning message in the message log of Lead.

    Hi, I have an requirement where i have to raise an warning message while "creation of lead from campaign" on campaign UI, I can raise that warning message using below code. DATA lr_message_service TYPE REF TO cl_bsp_wd_message_service. lr_message_ser

  • Cant print in Word 2010 or Adobe Reader pdf files

    I run Windows 7 and have an HP Officejet Pro 6835 connected wirelessly via my router.  I am able to print test pages and WordPad docs but not from Word 2010 or Adobe Reader.  Please help! =)

  • .mv4 upload to Weblog broke after 10.6 update.

    I had the Weblog working to accept .mv4 files via tips in George Cooks's "Tweaking Weblog", http://web.mac.com/cook5/iWeb/georgedotmac/Welcome.html. I modified the appropriate files and it was working fine. After the update I can only upload the stan

  • Extra margins when printing double sided

    I'm using Word 2007 and have created recipe cards using a basic recipe templete in Word. I have the top margin set to .25 and I'm printing on a regular 8x11 piece of card stock (I want to simply cut the sides and bottom down to make a 4x6 index card)

  • Send a message to mobile phones

    Please help me how to write a program that can really send a message from a computer to a mobile phone (not a mobile simulator). If possible, please show me the mechanism of the system or where resources are.