Get  max100 requests from request manager

Hello!
I'm requesting requests for a user from the RequestManager over the ContentServices-API.
Now I've the question if there is possibility to get maximal 100 requests? I've tried to set the Options.RETURN_COUNT and give that to the request manager, but that doesn't work. I only get an ParameterError.
Any ideas?

fnd_concurrent_requests has responsibility_id. You can use this column to determine the ORG_ID.
However this may not always correct, as user may change the profile option after running the request. But in your environment if this profile option is not changed after it first assigned to responsibility then following sql should give you ORG_ID from concurrent request.
select fnd_profile.VALUE_SPECIFIC('ORG_ID',null, RESPONSIBILITY_ID ,null,null,null) from fnd_concurrent_requests where request_id = <your_request_id>
HTH
Dinesh S.

Similar Messages

  • MS SQL query to get Subscription list from Operations Manager

    Hi Experts,
    Is there anyway get Subscription list from Operations Manager DB using SQL query?  I lost subscription list, and need to create subscription as it was. Very urgent.
    Thanks in advance.
    Regards
    Karthick M

    Hi,
    Hope the powershell command Get-SCOMNotificationSubscription can be helpful for you:
    Get-SCOMNotificationSubscription
    Retrieves a list of notification subscriptions.
    https://technet.microsoft.com/en-us/library/hh918490(v=sc.20).aspx
    Regards,
    Yan Li
    Please remember to mark the replies as answers if they help and unmark them if they provide no help. If you have feedback for TechNet Subscriber Support, contact [email protected]

  • How to get useful data from request?

    Hello.
    I am looking for creating a management tool for a web site. All I want is that is there any ready to use API or package or open source project for retrieving user�s information? I just mean that is there any easy to use way in java to get useful data from a client (for example location, his or her system configuration and information �).
    Thanks.

    If you dump all the data from request (see the javadoc, and especially the "header methods" ) you'll see the data you can get are quite simple.
    The only thing you can try to rely on are ;
    - the IP address from the sender (when reversed to DNS, you can sometime use the tld to locate the country it comes from. Yet, you'll get many .com name, so it's not that significant. it may also give you the IAP used). Note that if the user is using a proxy, it's the proxy IP that you'll collect
    - the User-Agent header : from this, you can guess the OS and the browser used
    - the Referer header : usefull to get where your user comes from (where they found a link to your site)
    - the Cookie header : if you're using a servlet container with session id stored in cookie, you should see the Cookie header appear on the second request to your site. That helps finding out wether your user accep cookie or not (from a server point).
    Besides these, i don't think you can get any other useful data without asking your users on a form. Note that it's the client that decides to send Referer, User-Agent or Cookie headers. Those are not mandatory to the Http Protocole and some browser allow their user to fool their content (butmore than 90% of the widespread browsers don't)

  • How to get promoted properties from Request to Response in two way send port scenario.

    I have a requirement to access the promotes properties in response pipeline, these promoted properties are promoted in Orchestration and they are available in Send pipeline, but not available in Receive pipeline. Please help us if we have any solution for
    this issue.
    Thanks
    Ramachandra

    Hi Ramachandra,
    Obviously from above responses you would have got the point that this can’t be done out-of-box and you need to do custom. Also when you say “Get the message
    from DB along with context properties.”, you do agree with this point.
    One of the possible custom solutions is (Obviously in bespoken process, you can achieve it in many ways),
    When send the message out to a solicit-response port, store those promoted properties in db along with the “correlation key” which you can get from the context of the request message like
    “Correlation Token”  and “SPID”. So when the response comes back, you can either in the “inbound map” or in the receive pipeline (using custom component) populate/constructs the message by populating data from db, where will retrieve the
    “Correlation Token”  and “SPID” values of the response message (it will have the same correlation value as in the request message), so you can use the value of correlation sets to get the values from db.
    Regards,
    M.R.Ashwin Prabhu
    If this answers your question please mark it accordingly. If this post is helpful, please vote as helpful by clicking the upward arrow mark next to my reply.

  • Running scripted queries to get performance stats from call manager

    Is it possible to do the above? or does the AXL interface only deal with Call Manager functions, not the underlying operating system? or is there a way to talk direct to the server operating system (MCS)?
    Hope you can help
    Paul                  

    Thanks. I've done this for my proxy-retrieve function and now get the following
    Performance Counters:
    Average Total Percent
    Total number of requests: 134
    Request processing time: 2.0625 276.3740
    proxy-bucket (Proxied requests)
    Number of Requests: 132 ( 98.51%)
    Number of Invocations: 132 ( 4.71%)
    Latency: 0.0000 0.0000 ( 0.00%)
    Function Processing Time: 2.0064 264.8450 ( 95.83%)
    Total Response Time: 2.0064 264.8450 ( 95.83%)
    default-bucket (Default bucket)
    Number of Requests: 134 (100.00%)
    Number of Invocations: 2669 ( 95.29%)
    Latency: 0.0002 0.0280 ( 0.01%)
    Function Processing Time: 0.0858 11.5010 ( 4.16%)
    Total Response Time: 0.0860 11.5290 ( 4.17%)
    Am I correct in saying that ~95% of total processing time is spent in that proxy-bucket (proxy-retrieve function)?
    Does anyone know if the time in proxy-retrieve is the total time from start of function to last byte of response back from origin-server? I'd just like to know exactly what this time involves.

  • How to get iterator values from a managed bean ?

    Due to a bug in selectOneChoice i'm not able to get the label list i want to display directly from an iterator when the value binding is a managed bean.
    To solve the problem i would like to create a managed bean that contains that list and use it as the selectItems to display.
    I would like that the values in that managed bean loaded from the a data control iterator.
    My question is :
    1) is it possible to access the iterator values from a managed bean, i mean without any reference to a page definition
    2) how to do ? is it documented somewhere ? any example ?
    Thank you

    I got it also with this code:
    package view.managedBeans;
    import classification.bean.ClassificationDocument;
    import classification.castor.ClassificationLanguage;
    import java.io.FileNotFoundException;
    import java.util.ArrayList;
    import java.util.HashMap;
    import java.util.Hashtable;
    import java.util.List;
    import java.util.Locale;
    import javax.faces.context.FacesContext;
    import javax.faces.el.ValueBinding;
    import javax.faces.model.SelectItem;
    import oracle.adf.model.generic.DCGenericDataControl;
    import org.exolab.castor.xml.MarshalException;
    import org.exolab.castor.xml.ValidationException;
    public class ClassificationLanguageList {
    private java.util.List<SelectItem> supportedLanguages = new ArrayList();
    public ClassificationLanguageList() throws FileNotFoundException,
    MarshalException,
    ValidationException {
    FacesContext ctx = FacesContext.getCurrentInstance();
    ValueBinding vb = ctx.getApplication().createValueBinding("#{data.ClassificationDocumentDataControl}");
    DCGenericDataControl classificationDocumentDataControl = (DCGenericDataControl)vb.getValue(ctx);
    ClassificationDocument classificationDocument = (ClassificationDocument)classificationDocumentDataControl.getDataProvider();
    ClassificationLanguage[] classificationLanguage = classificationDocument.getClassification().getClassificationLanguageList().getClassificationLanguage();
    for (int counter = 1; counter < classificationLanguage.length; counter++) {
    SelectItem language = new SelectItem();
    language.setValue(classificationLanguage[counter].getClassificationLanguageCode());
    language.setLabel(classificationLanguage[counter].getClassificationLanguageLabel());
    supportedLanguages.add(language);
    public void setSupportedLanguages(java.util.List<SelectItem> supportedLanguages) {
    this.supportedLanguages = supportedLanguages;
    public java.util.List<SelectItem> getSupportedLanguages() {
    return supportedLanguages;
    }

  • Get CD Info from Music Manager no longer available

    After upgrading PC Suite to 6.82.22 the option to "Get CD information" from Gracenote has been removed, or at least in my case it is no longer available. However, when looking at the help files, it still appears to give directions on how to use this service.
    I have tried many well known artist´s CD but the option to get information does not appear, therefore all song titles have to be entered manually. N.B the CDs are originals, not pirated!
    Can anyone confirm if the removal of this function is supposed to be the case. Thanks

    The help files seem to suggest the Gracenote service is only available if the phone is connected. Some kind of licensing restriction perhaps.
    I'd try connecting the phone and re-inserting the CD, should then get the Gracenote Terms and Conditions box. Also make sure Music Manager is allowed net access by your firewall.

  • HP Pavilion dv6-6b47dx gets "Restoration Incomplete" from Recovery Manager.

    I got my son's older HP Laptop, and decided to restore it before using it for myself.  Previously it was working OK.  An HP Pavilion dv6-6b47dx gets "Restoration Incomplete" from the Recovery Manager.  I have tried running the recovery manager from both the HD partion and the DVD media I created.  The HD and Memory pass.  The wireless f12 key is off, and can not be turned back on from the keyboard.  Some previous post have suggested the wireless being off could be a problem.   Any suggestions would be greatly appreciated, Thanks!

    Hi
    No that Recovery media won't work in your laptop.
    ISO file can be used to clean install. You'll have to get all the 25 character alphanumeric product activation key printed on the COA label on the back of your laptop to be clearly & legibly readable for activation of ISO after install.
    Tutorial: http://www.sevenforums.com/tutorials/219487-clean-reinstall-factory-oem-windows-7-a.html
    For additional drivers you can get them here:
    https://h10025.www1.hp.com/ewfrf/wc/softwareCategory?cc=us&dlc=en&lc=en&os=4063&product=5197401&soft...
    AMD chipset driver :
    http://support.amd.com/en-us/download/chipset?os=Windows%207%20-%2064
    Download, save them to a USB and install them from there during/after Win 7 installation.
    You have to first install chipset, restart system - then audio driver-restart, graphic driver- restart, ethernet controller(LAN), network controller(WLAN & Bluetooth), card reader, touchpad , Protect smart hard drive protection driver, quick launch software in order.
    I could see that your model came with Windows 7 Home Premium (64-bit) pre installed.
    Here is the ISO file:
    http://msft.digitalrivercontent.net/win/X17-58997.iso
    Windows 7 Home Premium x64 English
    Size: 3,243,070KB, MD5 hash: a319b5826162829c436306bebea7f0ff
    Source: http://www.w7forums.com/threads/official-windows-7-sp1-iso-image-downloads.12325/page-2#post-124821
    Download , save it to another PC, then make a bootable DVD/USB by mounting this ISO on to it by using software like Imgburn (choose lowest speed while burning to DVD).
    Imgburn : http://www.imgburn.com/
    This will be your Windows 7 installation disc.
    Regards
    Visruth
    ++Please click KUDOS / White thumb to say thanks
    ++Please click ACCEPT AS SOLUTION to help others, find this solution faster
    **I'm a Volunteer, I do not work for HP**

  • Problem getting arraylist values from request

    Hi All,
    I am trying to display the results of a search request.
    In the jsp page when I add a scriplet and display the code I get the values else it returns empty as true.Any help is appreciated.
    <%@ taglib prefix="sql" uri="http://java.sun.com/jsp/jstl/sql" %>
    <%@ taglib prefix="fn" uri="http://java.sun.com/jsp/jstl/functions" %>
    <%@ taglib prefix="fmt" uri="http://java.sun.com/jsp/jstl/fmt" %>
    <%@ taglib prefix="c" uri="http://java.sun.com/jsp/jstl/core" %>
    <html>
    <head>
         <%@ include file="/includes/header.jsp"%>
         <title>Research Results</title>
    </head>
    <body>
    <div class="ui-widget  ui-widget-content">
        <%  
        ArrayList<Research> research = (ArrayList<Research>) request.getAttribute("ResearchResults");
         Iterator iterator = research.iterator();
              while(iterator.hasNext()){
              Research r = (Research) iterator.next();
              out.println("Result Here"+r.getRequesterID());
              out.println("Result Here"+r.getStatus());
        %> 
         <form>
         <c:choose>
         <c:when test='${not empty param.ResearchResults}'>
         <table cellspacing="0" cellpadding="0" id="research" class="sortable">
         <h2>RESEARCH REQUESTS</h2>
                   <tr>
                   <th><a href="#">RESEARCH ID</a></th>
                   <th><a href="#">REQUESTOR NAME</a></th>
                   <th><a href="#">DUE DATE</a></th>
                   <th><a href="#">REQUEST DATE</a></th>
                   <th><a href="#">CLIENT</a></th>
                   <th><a href="#">STATUS</a></th>
                   <th><a href="#">PRIORITY</a></th>
                   </tr>
              <c:forEach var="row" items="${param.ResearchResults}">
                        <tr title="">
                             <td id="researchID">${row.RESEARCH_ID}</td>
                             <td>${row.REQUESTER_FNAME}  ${row.REQUESTER_LNAME}</td>
                             <td><fmt:formatDate pattern="MM/dd/yyyy" value="${row.DUE_DATE}"/></td>
                             <td><fmt:formatDate pattern="MM/dd/yyyy" value="${row.CREATED_DATE}"/></td>
                             <td>${row.CLIENT}</td>
                             <td>
                             <c:choose>
                               <c:when test="${row.STATUS=='10'}">New Request</c:when>
                               <c:when test="${row.STATUS=='20'}">In Progress</c:when>
                               <c:when test="${row.STATUS=='30'}">Completed</c:when>
                              </c:choose>
                             </td>
                             <td>
                             <c:choose>
                               <c:when test="${row.PRIORITY=='3'}">Medium</c:when>
                               <c:when test="${row.PRIORITY=='2'}">High</c:when>
                               <c:when test="${row.PRIORITY=='1'}">Urgent</c:when>
                              </c:choose>
                             </td>
                             </tr>
              </c:forEach>
         </table>
         </c:when>
         <c:otherwise>
         <div class="ui-state-highlight ui-corner-all">
                   <p><b>No results Found. Please try again with a different search criteria!</b> </p>
              </div>
         </c:otherwise>
         </c:choose>
         </form>
              <%@ include file="/includes/footer.jsp"%>
         </div>
         </body>
    </html>

    What is ResearchResults?
    Is it a request parameter or is it a request attribute?
    Parameters and attributes are two different things.
    Request parameters: the values submitted from the form. Always String.
    Request attributes: objects stored into scope by your code.
    They are also accessed slightly differently in EL
    java syntax == EL syntax
    request.getParameter("myparameter") == ${param.myparameter}
    request.getAttribute("myAttribute") == ${requestScope.myAttribute}
    You are referencing the attribute in your scriptlet code, but the parameter in your JSTL/EL code.
    Which should it be?
    cheers,
    evnafets

  • How to get binding variables from request

    We are trying to use html-db to develop an application which need to get values from user request to use in the queries, i.e. we will have pages depend on several binding variables and the value of these variables will be provided by the user through get/post request. Because the request will be initialed by another application so to use a form to collect the values is not an option.
    I am a html-db newbie. Does anyone here know how to do that?

    you're right in thinking this is a bit of a newbie html db question. it's a pretty straightforward matter to set up a report in html db that runs off of bind variables that can be set from a URL. you can see a pretty simple example on the first page of our "Sample Application" that's available to install into your workspace. try taking a look at that to see what i mean. you can install the Sample Application by clicking the "Review Demonstration Applications" link that's available right after logging into htmldb.oracle.com. that resulting screen lets you create (or re-create) the Sample App in your workspace. once it's installed, take a look at how the report on page 1 calls the first report on page 201. that report on 201 is dependent on a bind variable, :P202_CATEGORY, that's set from the URL. this particular URL is generated from the report on page 1, but it could just as easily have been generated from your other application. when you look at this example, the two key points to pay attention to are the 1) syntax used in the URL to set the bind variable (which is explained in our online help at http://htmldb.oracle.com/i/doc/mvl_fund005.htm#sthref357) and 2)the way in which that bind variable is referenced in the first sql query region on page 201. take a look at those when you get a chance, and let us know if you have further questions.
    thanks,
    raj

  • Get all values from request.getParameter

    In ASP, I can do something like that...
    For each item in Request.Form
    Response.write "Name is:" & item & " value is:" & Request(item)
    Next
    How about in JSP? How do i get the names and values of the form using a loop?

    You can use request.getParameterNames() which will return an enumeration, then you can iterate through the enumeration and use request.getParameterValue(String paramName) method to get the values.

  • How to get Int value from request.getParameter()?

    Hi all,
    I have a integer value which is passed from one page to another page.
    i am geting this value in the next page using
    request.getParameter().
    Eg.
    Suppose value of "i" in page1 is 32, i pass this as hidden variable to next page.
    <input type="hidden" Value="<%=i%>" NAME="limit">
    in page2, i fethch this value to a variable by name "limit"
    String limit=request.getParameter("limit");
    but, since value stored in limit is int, i can't assign it to string.
    i can't use request.getParameter for int values.
    How to solve my problem.
    I know it is simple,
    Pls. help me
    Regards
    ASh
    String limit=request.getParameter("limit");

      String limitSTR = request.getParameter("limit");
      int limit = -1;
      if (limitSTR != null) limit = Integer.parseInt(limitSTR);

  • Create App Sharepoint online 365 - .Get Context Token From Request Could not find a context token

    PT-BR
    Olá Pessoal , estou tentando criar um aplicativo hospedado em um servidor de domínio próprio (provider-hosted) . Ao rodar o aplicativo localmente pelo visual studio  eu consigo obter {StandardTokens} e todos os seus parâmetros: "AppContext",
    "AppContextToken", "AccessToken", "SPAppToken" .
    Ao publicar o Aplicativo no sharepoint online 365 e instalar o app em meu site e executar o app. Os parâmetros não passados via query string e nem por resquest form.
    Em minha query string vem apenas os parâmetros: SPHostUrl,
    SPHostTitle,SPLanguage,SPClientTag,
    SPProductNumber,SenderId
    Alguém poderia me ajudar com este problema?
    English
    Hello Guys, I'm trying to create an application hosted on your own domain server (provider-hosted). When running
    the application locally by visual studio I can get  StandardTokens} and all of its parameters, "AppContext", "AppContextToken", "AccessToken", "SPAppToken".
    By posting application in sharepoint online 365 and install the app on my site and run the app. Non parameters
    passed via the query string and not for resquest form.
    In my query string comes only parameters: SPHostUrl, SPHostTitle, SPLanguage, SPClientTag, SPProductNumber,
    SenderId
    Could anyone help me with this problem?
    .Cs
      string contextTokenString = TokenHelper.GetContextTokenFromRequest(Request);

    check the links, see if they can help
    https://social.msdn.microsoft.com/Forums/en-US/39488844-8568-48c2-8d09-a8eb12fb4591/providerhosted-app-could-not-find-a-context-token?forum=appsforsharepoint
    https://social.msdn.microsoft.com/Forums/en-US/23163e33-2f84-4356-813d-04f9103889c5/sharepoint-providerhosted-app-context-token-not-available?forum=appsforsharepoint
    Work hard, play harder!

  • How to get Special Characters from request

    Hi,
    I have one textarea in my jsp.
    I am entering '123' in that textarea and submiting the form to the servlet.
    in the servlet i am using request.getParameter to get the value in the textarea.
    But it was showing
    '123'
    What is the prbolem..
    Thanx for giving the solution
    Message was edited by:
    praveen_nag

    document.main_form.method="post";
                   document.main_form.action="CMGC_cREPORT_GEN_ENTRY?mid=<%=lStrhidMid%>&rootID=<%=lStrRootId%>";
                   document.main_form.hidMode.value="3";
                   document.main_form.submit();
    through this im submiting the form to the servlet.
    in servlet i am calling
    lStrSqlStmt = UTIL_COMMON.fnGetValue(req.getParameter("SQL_STMT"));
    SQL_STMT is my text area name....
    In the text area i entered '123'
    but when i am pringing lStrSqlStmt
    it was showing &#039;123&#039;
    Thanx for u reply.

  • Get Date parameter from request

    hi all,
    i've a JSP in which there is a date field, in the JSP i'm declaring a date variable and use request.getParameter but the date variable store another date with time part while i want the entered date without time part...any help?

    My CO --------------------------
    if( pageContext.getParameter("Submit") != null)
    String userid = (new Integer(pageContext.getUserId())).toString();
    String personid = (new Integer(pageContext.getEmployeeId())).toString();
    String v_date = pageContext.getParameter("StartDate")+"";
    String v_end_date = pageContext.getParameter("EndDate")+"";
    System.out.println("call to process request0 : " + userid);
    System.out.println("call to process request0 : " + personid);
    System.out.println("call to process request0 : " + v_date);
    System.out.println("call to process request0 : " + v_end_date);
    Serializable[] params = {personid,v_date,v_end_date};
    OAApplicationModule am = pageContext.getApplicationModule(webBean);
    String empUserid = pageContext.getUserName();
    System.out.println(pageContext.getUserName());
    System.out.println("Calling initMoverQuery");
    am.invokeMethod("initMoverQuery", params);
    System.out.println("Call out of initMoverQuery");
    My AM------------------------------------------------------------
    public void initMoverQuery(String pid,String sd,String ed)
    System.out.println("In init Query of AM" +pid);
    EmployeeMoverVOImpl vorep = getEmployeeMoverVO1();
    Number personid = new Number(Integer.parseInt(pid));
    System.out.println("user id"+ personid);
    System.out.println("start date"+ sd);
    System.out.println("end date"+ ed);
    if (vorep == null)
    MessageToken[] tokens = { new MessageToken("OBJECT_NAME", "EmployeeMoverRepVO1")};
    throw new OAException("AK", "FWK_TBX_OBJECT_NOT_FOUND", tokens);
    if (!vorep.isPreparedForExecution())
    // vorep.initQuery(personid,sd1,ed1);
    vorep.setWhereClauseParam(0,personid);
    vorep.setWhereClauseParam(1,sd);
    vorep.setWhereClauseParam(2,ed);
    vorep.executeQuery();
    System.out.println("End SP VO Query");
    }

Maybe you are looking for

  • Can't get avahi to work

    I'm trying to set up avahi so that I can access my machine under <hostname>.local. But it doesn't seem to be doing what I want it to do. I started up avahi-daemon with $ sudo systemctl start avahi-daemon.service And it seems to be working, looking at

  • LMS2.5 and Windows 2003 SP2

    Hi, Does someone knows if exist a problem o consideration to take care with the installation of the SP2 (Win 2003 Server) in a LMS2.5 Server? Actually the server has Win 2003 Server w/SP1. Thanks

  • Tar not updated? by 10.4.9 or security update

    The apple security update email for 10.4.9 and security update 2007-003 lists the following: GNU Tar CVE-ID: CVE-2006-0300, CVE-2006-6097 Available for: Mac OS X v10.3.9, Mac OS X Server v10.3.9, Mac OS X v10.4 through Mac OS X v10.4.8, Mac OS X Serv

  • CR for Eclipse version 2.0.1 Report JSP page display problem

    I create report and Report viewer JSP page. When i run JSP page I meet with this [screen|http://www.sendspace.com/file/r2ys55]. When I select print preview the [screen|http://www.sendspace.com/file/4661oa] like this. I use CR for Eclipse all in one p

  • MSI CR/RW 8348 problems

    hi. I have got this burner for a few months and i been burning some time now with out any problems. But today the problem started, i bought some new TDK 48x discs and when i want to burn no matter if its an mp3/data/or video file the Nero program jus