Discover the Result Type of a Notification

Hello Dear all,
I am building a web Front-End for Oracle Workflow in HTML DB.
I managed to display a notification with its Body etc.
Now i have to implement the Result buttons like for Approval an Approve and Reject button.
How can I discover the Result needed for a notification. The Result that gets set in the Properties of the Notification in the Oracle workflow builder?
Thanks in advance.
- Kai Eilert

Hi,
with a simple select you can do that.
I´ve already posted this information in this forum.
If you couldn´t find the post, please let me know and I will send it for you.
I won´t send it know because I am travelling and I don´t have access to my stuffs here....
Any doubts just ask,
Regards,
Luiz

Similar Messages

  • The Refiner Result type: When refine by result type: PDF or Zip sometimes files which are images are shown (not pdf or zip)

    Hi,
    We use Search Refiners and there is a strange problem: when we refine by the Refiner Result type: Zip and PDF we also get files which are gif files.
    keren tsur

    Hi,
    According to your post, my understanding is that you get the gif files sometimes when you refiner the Result Type PDF or ZIP.
    I try to do this test in my environment, however, the result is I get the corresponding PDF file and don’t get the gif files by Refiner the PDF Result Type in Search Center.
    Do you get all gif files by the Refiner Result Type: PDF or ZIP in Search Center?
    And, do you see these gif files under the Refiner Result Type: Image?
    I recommend that you can try to respectively type the “PDF”, “ZIP” and “gif” in search box to compare the search results.
    Also, you can try to go to SharePoint 2013 Central Administration, click “Search Service Application” in “Manage service application”, click the “Index Reset” to reset all crawled content, then start Full Crawl again.
    Best Regards,
    Yumi Fu

  • Oracle Text : type of the results.

    In v2, in the "custom search" portlet, I chose to display the results of "elements" type.
    But it returns both elements and portlets. Portlets are not compulsory viewable if one clik on in in the result page.
    How can I only return "true" elements (documents) and not portlets ?

    These are two slightly different issues
    In v2, in the "custom search" portlet, I chose to display the results of "elements" type.
    But it returns both elements and portlets. Portlets are not compulsory viewable if one clik on in in the result page.
    How can I only return "true" elements (documents) and not portlets ? I am not too clear on what you are refering to when you say you chose to display the results of 'Elements' types.
    If you wish a search to only return documents (in this sence i mean files) you can add the 'Base Item Type' attribute as search criteria and chose the 'File' value from the LOV. If you do not wish the end users of the search form to know you are restricting the search to just files you can hide this attribute and not display it on the submission form.
    I have the same issue. the release 2 custom search portal has an option
    to limit the result type to page. But, if I have a simple text item with some content containing the words
    "jey is testing" and If I search for "jey" it doesn't return any pages. But, if I change the result type to
    item it returns the item. I want to mimick a std web search where users search on content and get links to
    pages with content.
    pls help,
    jey If you set a portlet to return 'Items' then the search will return the actual items which match the search terms as the search results.
    If you set a portlet to return 'Pages' then the search will return any pages whose title, description etc which match the search terms not those pages whose content contains the search terms.
    However you can customize the attributes displayed with search results to get the list similar to what you require. Set a results portlet to return items (as its the items which will match the search criteria) and select 'Page' and 'Blank Line' attributes as the 'Search Results Attributes'. When you perform a search the results will be a list of pages on which the search result items reside.
    Note: The listed pages may not be distinct. If more that one item resides on the same page which match the search criteria, you will get multiple lines displaying the same page. This is because the search actually returns 2 hits and as you are just displaying the page name it will appear as if they are duplicate results. Therefore you may want to include the attribute 'Display Name' in order to clarify that these are different items on the same page.

  • Having an inherited function return the derived type instead of the base type

    I am writing two classes in C#:
    A Matrix class
    that represents a general Matrix with n-by-m dimensions
    A SquareMatrix class
    that inherits from Matrix and
    has the constraint of being n-by-n
    The reason I designed it this way is because square matrices support additional specific operations like calculating the determinant or the inverse, so being able to guarantee that those functions are avaliable with the specific type you're using are nice things
    to have. Additionally it would support all the regular Matrix operations and can be used as a Matrix
    I have a function in Matrix called getTranspose().
    It calculates the transpose of the Matrix and returns it as a new Matrix
    I inherited it in SquareMatrix,
    but because the transpose of a square matrix is guaranteed to be square matrix, I also want it to return a SquareMatrix
    I am unsure about the best way to do this.
    I can re-implement the function in SquareMatrix,
    but that would be code duplication because it's essentially the same calculation
    I can use implicit typecast operators, but if I understand correctly that would cause unnecessary allocations (upcast SquareMatrix to Matrix,
    create a new Matrix as
    the transpose, create a new SquareMatrix during
    typecasting and throw away the tranposed Matrix)
    I can use explicit typecast operators, but it would be stupid to have to typecast the transpose of a SquareMatrix explicitly,
    and it also has the same problem of the implicit operator with unnecessary allocations
    Is there another option? Should I change the design of having SquareMatrix inherit
    from Matrix?
    This problem also applies to operators. It seems that I have to either implement typecasting operators which might cost in performance, or have to re-implement the same code.

    Inheritance not helping to eliminate repetition and typecasts is often a sign that generics would help. You can do something like:
    public T getTranspose<T>()
    // or non-member function
    T getTranspose<T>(T input)
    I haven't fully worked it out, but it seems it might get awkward on the calling side. I know C# does some inference with generic methods, but I don't know C#, so I'm not familiar with the details. That might be the way you have to go, though, if you want
    full compile-time type checking with the least amount of repetition in the implementation.
    Another option would be to create private helper functions, then pass in the result type you want, for the helper to populate, like:
    public SquareMatrix getTranspose() {
    SquareMatrix result = new SquareMatrix();
    transposeHelper(result);
    return result;
    This gives you more boilerplate on the implementation side, but at least it isn't full repetition.
    A third option is just to check if the result is square in the Matrix implementation, and return a
    SquareMatrix if it is, like:
    public Matrix getTranspose() {
    Matrix result;
    if (resultIsSquare())
    result = new SquareMatrix();
    else
    result = new Matrix();
    // calculate result
    return result;
    This has the advantage of not needing any implementation at all for getTranspose() in
    SquareMatrix, but at the expense of requiring type checking of the return value at the call site. It also works for cases like multiplying two non-square matrices that happen to give a square result. You give up most compile-time type checking,
    though.
    If your application happens to mostly require run-time instead of compile-time type checking anyway, you might as well just give up the different types and throw an exception if you call a method that a non-square matrix doesn't support. I believe this is
    the approach most existing libraries take, especially since there are other conditions than being non-square that can cause methods like
    inverse() to fail.
    Speaking of libraries, there are a lot of good ones out there for matrix math, that are already heavily tested and optimized. Don't reinvent the wheel if you don't have to.

  • Custom result type does not appear in search result

    I've got some document libraries containing technical documents, across a few team sites.  I'm trying to customize the search results so that the document type shows up in the results.  Using
    this example as a guide,  here's what I've done so far:
    Created a term set called "Document Type" with 4 terms: "Built", "HowTo", "Kb" and "Forms".
    Created a site column called "Document Type" using the term set as the source
    Added a column to my document libraries using the site column
    Did a crawl
    Looked up the Managed  Property name (It's called "owstaxIdDocumentx0020Type").
    Made a copy of the Item_Dafault files in Display Templates, renamed it DocType.html and .js
    Edited the new file:
           - Renamed title to "Document Type"
           - Added 'owstaxIdDocumentx0020Type':'owstaxIdDocumentx0020Type'
           - Added _#=ctx.CurrentItem.owstaxIdDocumentx0020Type =#_ as indicated in the example.
    Updated the result types
    Made a copy of the "SharePoint List Item" result type with settings as follows:
           Name: Document Type
           Match "All Sources" of type "SharePoint List Item"
           Properties to match "owstaxIdDocumentx0020Type" equals any of... "Built", "HowTo", "Kb", "Forms"
           Results should look like "Document Type" (i.e. points to the new display template file above)
    Saved and went back to the Search Center.  Typed in the name of a file I know has a specified "Document Type" value. It comes up in the results, but all results seem to be displayed using the default template.
    So where did I go wrong?  Did I miss a step somewhere?

    First test your template works, change the matching rule so that everything matches. That'll prove that the template itself is valid rather than the matching rules.
    I suspect that your issue is in the rules. Bella's guide is fantastic but there is one difference that's worth mentioning, the guide is for a list item rather than a document. The two are subtly different.

  • How can I extract the results of my squence?

    Hello, I'm a beginer of test Stand.
    I've created a main squence with LabView & TestStand, and works well, when it finish TestStand automatically creates my report. I need to extract these results of my sequence in order to create a custom document automatically, creating an action with LabView that works with these results, without any action of an operator.
    How can I extract these results? Thanks you very much.

    Hello,
    you've got several options here, although it seems you might want to go with the first option:
    1) After running your sequence, you'll find all the results needed for creating a report on the variable Locals.ResultList, which is an array of objects (of the Result type). You can pass this array to external code for it to use the information (i.e. create a report)
    2) You can override the report generation callback on your process model (Test Report callback)and create your own LabVIEW-based report generation sequence/routine
    3) You can modify the report generation sequences on the process model to suit your needs (always make backup copies and place your modifications on the /Components/User folder !)
    I would also recommend you to assist National Instruments Training Courses, as these things can be seen in detail and provide you a better understanding of all the options TestStand has.
    Regards,
    Jorge M.Mensaje editado por Jorge M.

  • External Java Function with a Result Type

    Dear all,
    I have created a workflow process which use a Function Activity of type "External Java" without a result type and it works fine, but i have created another with the result type of boolean (WFSTD_BOOLEAN) and it doesn't work properly. I will explain what is happening.
    I start a process and it stops in that function activity, then the oracle Function Activity Agent executes the class associated to that function and it works fine. Then i review the workflow process and check that the status of the activity is "Deferred". I execute the wf_engine.background process, and then the status of the activity is "Complete" but the result field is blank, thus the process is stopped and did not go through the "True" branch of the process. I have follow the Oracle Workflow and Java Technical White Paper to build the class associated to the function activity, and i return true in the execute method and don't put anything in the errorStack variable.
    The documentation says:
    resultOut If a result type is specified in the Activities properties page for the activity in the Oracle Workflow Builder, this parameter represents the expected result that is returned when the procedure completes.
    Note: Unlike the resultout for a PL/SQL procedure called by a function activity, the resultOut for a Java procedure does not include a status code. In the Java API, only the result type value is required. The status of the activity will be set automatically by the Workflow Engine depending on whether there is a value in the errorStack variable.
    am I doing something wrong? could anyone help me?
    Thanks in advance.

    Hi Allison,
    I've found the solution to the problem. If i set the variable resultOut to "T" or "F" before finnishing the execute method it works.
    I think that you have to set the variable resultOut with the internal value of the lookup type that you are using as the result type of the function activity.
    Bye!

  • Result Type Condition for Multi value Manage Property not working

    Hi All,
    I have created one template & I wanted to show this template on particular condition. So I created the result type. The Managed property (MP) that I used, I have verified its attributes all attributes are selected and its type is Multi value. I am trying
    to apply the "Show fewer conditions" and some how the value not matched.
    I have checked MP ; it has all the values but some how the template not called. When I removed this condition it working and when choose other MP other then Multi valued. It is working as expected.
     Please let me know if i miss something here. 
    PS: I have checked each option from the Query drop down like "Equals any of" and "Contains any of" not working in case of multi value attribute. Please help.
    I have explain this issue more details in this post : http://sharepointfordeveloper.blogspot.com/2015/02/sharepoint-search-2013-result-type-with.html
    Regards,
    Basant Pandey
    http://sharepointfordeveloper.blogspot.com

    Update on above mentioned issue.
    I have verified the same at my end. So I come to this conclusion this is product issue. Either need to raise the ticket to Microsoft related to this issue.
    Regards,
    Basant Pandey
    http://sharepointfordeveloper.blogspot.com

  • Customize search result types in SharePoint 2013

    Hi
    I want to create the new Search Result types based on existing "List SharePoint Item" result type. I know how to do it manually . But i want it to automate it. can i do it using powershell script? is there anything available or somebody tried anything
    in this direction?
    So my requirement is bascially create the Result type with custom display template. Please suggest how to do using powershell script or sharepoint object model.
    Thanks

    Hi,
    According to your description, my understanding is that you want to create search result source programmatically in SharePoint 2013.
    Here are some links about creating search result source programmatically for you to take a look:
    http://sadomovalex.blogspot.com/2014/04/create-custom-search-result-source.html
    http://blog.tippoint.net/create-result-source-with-powershell-sharepoint-2013/
    http://mksharepointblogs.wordpress.com/2014/01/16/create-result-source-programmatically-in-sharepoint-2013/
    Thanks,
    Victoria
    Forum Support
    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]
    Victoria Xia
    TechNet Community Support

  • Result type of get_elements of if_wd_context_node

    Hello,
    I need to get the internal table of a context node. I try to use the methode get_elements(), but the result type is not if_wd_context_element. What should it be? Could you give me any suggestion? Many thanks!
    regards
    meer

    Hi , For getting the context element in to an Internal table you have to use
    get_static_attributes_table method ,
    Look into the Piece of code below
    DATA lo_nd_series TYPE REF TO if_wd_context_node.
        DATA lt_series TYPE wd_this->Elements_series.
    *   navigate from <CONTEXT> to <SERIES> via lead selection
        lo_nd_series = wd_context->get_child_node( name = wd_this->wdctx_series ).
        lo_nd_series->get_static_attributes_table( importing table = lt_series ).
    Search SDN before posting the New thread
    Regards
    Chinnaiya P

  • Need to know data type which could take the result of - data TYPE RAW.

    Hello,
    I have the following Req:
    I need to make a RFC call from one SAP system to SAP Banking Services system to retrieve Contract ID.
    But the field contract id happens to be of TYPE RAW. (16 characters)
    So my problem is - I need to know the data type could take the result (contract id) of that RFC call.
    As the declration -> data: v_con_id Type RAW --> isn't a valid syntax.
    Please help in this regard.
    Thanks
    Anoop

    Hi  
    Check this link for RAW data type
    http://help.sap.com/saphelp_46c/helpdata/en/9d/ab1b0f055b11d2806500c04fadbaa1/content.htm
    As you have mentioned about the declration ->
    data: v_con_id Type RAW --> isn't a valid syntax.
    lets try another one assign a variable to RAW data TYPE and inturn assign v_con_id to that variable.
    var_raw(16)  type RAW,
    v_con_id type var_raw(16).
    I am though not sure just try out
    Revert for clarification
    Thanks and Regards
    Srikanth.P

  • Can I see the list of Event's Notification types of Azure Site Recovery ?

    Can I see the list of Event's Notification types of Azure Site Recovery ?
    I want to verify Event's Notifications rather than "Virtual machine health is OK".
    Example senarios:
    senario 1. Disconnect the Ethernet cable.
      Can I get the notification e-mail at Disconnecting the Ethernet cable from the on-premises Hyper-V host ?
    senario 2. Turn off
      Can I get the notification e-mail at Turning off the protected Virtual Machine on the on-premises Hyper-V host ?
    senario 3. e-mail test
      Can I get the notification e-mail after turning on Event Notification ?
      Is e-mail address Collect ?
      Can I get e-mail without auto-Junk ?
    Regards,
    Yoshihiro Kawabata

    Hi Yoshihiro Kawabata,
    Thanks for bringing these requests to our attention. We currently do not have support for these three types of email notifications. I will add them to our backlog and we will enable support for them soon.
    Currently, we support email notifications only for replication issues. One example you can easily test is to Pause the replication of a virtual machine from the Hyper-V Manager UI. This should send an email notification.
    Let me know if this helps.
    Thanks
    Siva

  • I've found no way to sort.  For example, if I type the group "Rush" into the search bar, I get a list of songs recorded by rush and literally thousands of other songs and artists with the word rush in them. There is; however, no way to sort the results.

    I've found no way to sort search results in itunes.  For example, if I type the group "Rush" into the search bar, I get a list of songs recorded by rush and literally thousands of other songs and artists with the word rush in them. There is; however, no way to sort the results. 

    In the Search box click on the black Arrow and UNTICK the Search Entire Library.
    Then the Search results in Songs view will be displayed in the main Grid and you can sort them by clicking on the column headers.
    You can also turn on the column browser which can help with filtering

  • After Preflighting a PDF, using Convert to CMYK, Flatten Transparency and Prepress Profile Convert to CMYK only the resultant PDF has a grubby halo along the edge of some white type sitting on an image. The type is part of the image.

    I am using a 27" iMac 3.2 GHz Intel Core 5, 8 GB Memory, running Yosemite 10.10.1. 
    The version of Acrobat that I am using is: Acrobat XI Version 11.0.10
    After Preflighting a PDF, using Convert to CMYK, Flatten Transparency (high resolution) and Prepress Profile "Convert to CMYK only" the resultant PDF has a grubby halo along the edge of some white type sitting on an image. The type is part of the image which is 300 dpi.
    It is like the image isn't really 300 dpi but has been artificially boosted to that to avoid being tagged by Preflighting, but when Preflighting the file it knows the original resolution.
    I have screen grabs which illustrate the problem perfectly but do not know how to post them, if indeed they can be.
    Any help or comments gratefully received.

    Without the files and possibly screen prints, it is virtually impossible to assist you.
              - Dov

  • Whats is the result of statement datamy_flight type s_flight

    Hi Folks,
    I have just started learning ABAP.
    And i have following queries in mind.
    what is the result of the following statement
    data my_flight type s_flight occurs 10 with headerline.
    regards,
    Nithin

    You had to have some kudos for the effort put in to your thread as week as the point you make.

Maybe you are looking for

  • Error while checking RSRV of Cube

    hi all, I am getting following error while checking RSRV (DataBase indexses) of one of the cube. ORACLE: The status of index /BIC/FZPS_C02~020 is INVALID Please suggest something on it. amit

  • Creating Sales order using the IDocs.

    Hi All, I am looking to create a Sales Oredr from outside SAP syatem making use of the ALE-IDocs. What should be the structure of the data to be recived from legacy system and what should be the settings (ALE). Thanks In Advance.... Abhi.....

  • Camera Raw in Bridge

    decided to add descriptions and keywords to my canon raw images in Bridge. No problems so far. Now I want to look at the same images from another installation. I see the images, but no descriptions and keywords. I have tried to copy the Camera Raw ca

  • SOAP, servlets and others decisions?

    Hi? I?m developing a servlet application in an AS400 server which basically does some query in the DB In other web server (Apache, Linux), I have the web application which needs to request information in the AS400 DB. I was thinking to develop the co

  • Error message that plug in conatiner has quit working?

    How do I fix?