KIMYONG :  Worklist Page 에서  Sort 기능이 안될경우 조치사항

Symptoms
특정 Patch적용후 Workflow Notification page 에서 Sort page가 안되는경우가 있습니다.
이에 대한 조치사항을 기술하고자 합니다.
Solution
1. 먼저 아래 Profile Option을 확인하고 Personalize 기능이 Disabled 되어 있는지 확인합니다.
Personalize Self Service Definition - Yes
FND: Personalization Region Link - Yes
2. 그리고 아래 navigation에 맞춰 Row Layout: Home Content Row. 에서 Rendered 를 TRUE로 설정하면
Sort를 사용할수 있습니다. 자세한 사항은 Step별로 아래 영문 내용을 참고하세요.
2-1. Login to Applications Home Page and select the 'Personalize Page' link
2-2. In the 'Choose Personalization Context' page, select the "Apply" button
2-3. In the Personalization Structure table, expand the following:
"Table Layout: (topTableLayoutContainer)" then
"Row Layout: (tableLayoutRow)" then
"Cell Format: (worklistResponsibilityLeftCell)"
2-4. See below "Cell Format: (worklistResponsibilityLeftCell)" and expand the
following:
"Table Layout: Home Contenttable" then
"Row Layout: Home Content Row"
2-5. Select "Personalize" for "Row Layout: Home Content Row."
2-6. In the Personalization Properties region, set "Rendered" to "True" at
the level you require
(e.g. Site.) and sort
Allowed to descending. Then select the "Apply" button.
2-7 Select "Return to Application" link.
Reference
Note 564467.1 Sorting Not Working On Worklist Page

Similar Messages

  • Worklist page

    I can see the change in worklist page in PT 8.51.
    Previously i was using PT 8.48 and the appearance was different.
    Can anyone let me know more about it and give link of DOC which will help me to understand new functionality of worklist page in PT 8.51 on CRM 8.8

    Hi,
    The CRM Worklist is different from the PeopleTools worklist.
    If you upgrade to PeopleTools 8.51, the functionality does not change, only the look and feel changes.
    See following doc on how the worklist works in chapter Working with the CRM Worklist
    http://docs.oracle.com/cd/B28703_01/psft/acrobat/crm88act-b1202.pdf
    To see all PeopleBooks on CRM 8.8 see this link
    http://docs.oracle.com/cd/B28703_01/psft/html/doclist.html

  • HWF UI work list not loading in BPM worklist page (on clustered env)

    hello - Please reply directly as I am not on this alias.
    My SOA project (BPEL+HWF) is successfully deployed on the clustered env successfully.
    My BPEL process runs fine. But my HWF_UI taskflow fails to load on the browser (IE and Firefox, same error)
    I can see the composite & UI ear(enterprise app) on EMConsole & AdminConsole, and all configs/ settings looks ok.
    During execution, the work item pops up on the BPM worklist, but when I click on the work-item, the HWF_UI component is not loading....
    Not Found
    The requested URL /workflow/DOO_Simulation_ProjectUI/faces/adf.task-flow was not found.
    How do I overcome this or get some meaningfull error info.? The log files donot tell much..
    Caused By: oracle.adf.controller.ControllerException: ADFC-12002: The ADF Controller is unable to pop the top-level ADF unbounded task flow from the page flow stack.
    at oracle.adfinternal.controller.state.PageFlowStack.pop(PageFlowStack.java:184)
    Another question:
    How do I test if my HWF task flow component (UI) is installed & working / executing properly? any error logs/ error level settings?
    Edited by: ssondur on Apr 5, 2013 4:17 PM

    It is deploying correctly, the worklist app displays my instance. Btu when I click on my worklist item, the UI does not load or display. Below is the browser error and logfile error messages.
    -----Browser error-----
    Not Found
    The requested URL /workflow/DOO_Simulation_ProjectUI/faces/adf.task-flow was not found.
    ---Log file message---------
    Caused By: oracle.adf.controller.ControllerException: ADFC-12002: The ADF Controller is unable to pop the top-level ADF unbounded task flow from the page flow stack.
    at oracle.adfinternal.controller.state.PageFlowStack.pop(PageFlowStack.java:187. No
    8. No customization to env or app. This is a user defined (but standard) BPEL process deployed. The same app works fine on my local laptop & SOA env

  • My App Updates page -- sort order gone?

    In the last week or so, I've noticed that the app listing on the "My App Updates" page seems to have gone from sorted by app name to a nonsense scrambled mess. Has anyone else noticed this or is it something in my version of iTunes? I wonder whether Apple has done away with the sort because their update servers are becoming overloaded. I have had problems with that page not even displaying when the number of available updates exceeds around 200 (there are separate threads on that problem).

    I've just noticed the same thing in My App Updates list too. It used to be alphabetical by app name, so you could easily find specific apps (in my situation often a list of over 100 updates). Now it's an utter jumble. Anyone else with this issue? Perhaps it is specific to Australia. In any case - why the change, I wonder? For my money, alphabetical is the only way to go.

  • Pages sorts merged documents by FIRST name?

    I drop a bunch of names & addresses from Address Book onto a Pages merge document. The address data is sorted by last name.
    Pages creates a new merge document, but now everything is sorted by FIRST name. Kinda makes mailouts a bit a of pain when other documents are sorted by LAST name.
    Hopefully I am missing a simple control somewhere?

    If I remember well, this question was asked and responded some days ago.
    We have no interaction with the way Pages grabs the datas from the AddressBook.
    If you want to apply your own sort,
    (1) import your addressBook addresses in Numbers
    (2) sort the Numbers table
    (3) merge from Numbers.
    Yvan KOENIG (from FRANCE jeudi 2 avril 2009 21:55:11)

  • How do I Keep Razor Page Sort in mvc?

    Hi guys,
    I'm doing a basic Movie MVC application. I have a sorting that will display movies in the order of there 
    MovieId on the Home page, in the view, there is a link you can press to rearrange the movies alphabetically based on the Movie Name. However when I go to another Page and later return, the Sorting will always go back to being organised by MovieId, is there
    anyway to be able to keep the sorting as alphabetical if I leave and return to the Home Page?
    public class HomeController : Controller
    private MovieDb db = new MovieDb();
    public ActionResult Index(string sort, string Search_Data)
    { //Variable sort for sorting
    IQueryable<Movie> movie = db.Movies;
    ViewBag.SortingName = String.IsNullOrEmpty(sort) ? "Name_Description" : "";
    //Search bar
    if (!String.IsNullOrEmpty(Search_Data))
    movie = movie.Where(s => s.MoviesName.Contains(Search_Data));
    //Search bar
    var albu = from alb in db.Movies select alb;
    albu = albu.Where(alb => alb.MoviesName.ToUpper().Contains(Search_Data.ToUpper()));
    //Sorting in switch
    switch (sort)
    case "Name_Description":
    movie = movie.OrderBy(alb => alb.MoviesName);
    break;
    default:
    movie = movie.OrderBy(alb => alb.MovieID);
    break;
    return View(movie.ToList());
    public ActionResult Details(int id = 0)
    Movie m = db.Movies.Find(id);
    if (m == null)
    return HttpNotFound();
    else
    //HEY SHOW ME ACTORS
    m.Actors = (from e in db.Actors
    where e.MovieID.Equals(id)
    select e).ToList();
    //m.Actors.Count();
    return View(m);
    #region Create Movie
    public ActionResult Create()
    return View();
    [HttpPost]
    [ValidateAntiForgeryToken]
    public ActionResult Create(Movie movie)
    if (ModelState.IsValid)
    db.Movies.Add(movie);
    db.SaveChanges();
    return RedirectToAction("Index");
    return View(movie);
    #endregion
    #region Edit Movie
    public ActionResult Edit(int id)
    Movie movie = db.Movies.Find(id);
    if (movie == null)
    return HttpNotFound();
    return View(movie);
    [HttpPost]
    [ValidateAntiForgeryToken]
    public ActionResult Edit(Movie movie)
    if (ModelState.IsValid)
    db.Entry(movie).State = EntityState.Modified;
    db.SaveChanges();
    return RedirectToAction("Index");
    return View(movie);
    #endregion
    #region Delete Movie
    public ActionResult Delete(int id)
    Movie movie = db.Movies.Find(id);
    return View(movie);
    [HttpPost, ActionName("Delete")]
    [ValidateAntiForgeryToken]
    public ActionResult DeleteConfirmed(int id)
    Movie movie = db.Movies.Find(id);
    db.Movies.Remove(movie);
    db.SaveChanges();
    return RedirectToAction("Index");
    #endregion
    Here is the view
    <h2>Movies</h2>
    <p>
    @Html.ActionLink("All Actors", "Index", "Actor", null, new { @class = "btn btn-success" })
    </p>
    <p>
    @Html.ActionLink("Create New", "Create", null, new { @class = "btn btn-primary" })
    </p>
    @using (Html.BeginForm("Index", "Home", FormMethod.Get))
    <p>
    Search Name: @Html.TextBox("Search_Data")
    <input type="submit" value="Filter" />
    </p>
    @Html.ActionLink("Rearrange Alphabetically", "Index", new { sort = ViewBag.SortingName})
    <div class="table-responsive" >
    <table class="table table-striped">
    <tr class="info">
    <th>
    @Html.DisplayNameFor(model => model.MoviesName)
    </th>
    <th>
    @Html.DisplayNameFor(model => model.Description)
    </th>
    <th></th>
    </tr>
    @foreach (var item in Model)
    <tr>
    <td>
    <a href="@Url.Action("Details", null, new{id = item.MovieID})">@Html.DisplayFor(modelItem => item.MoviesName)</a>
    </td>
    <td>
    @Html.DisplayFor(modelItem => item.Description)
    </td>
    <td>
    <div class="form-group">
    <div class="btn-group" data-toggle="buttons">
    <label class="pdsa-radiobutton btn btn-warning active">
    <span class="glyphicon glyphicon-pencil"></span>
    @Html.ActionLink("Edit", "Edit", new { id = item.MovieID })
    </label>
    </div>
    </div>
    </td>
    <td>
    <div class="form-group">
    <div class="btn-group" data-toggle="buttons">
    <label class="pdsa-radiobutton btn btn-danger active">
    <span class="glyphicon glyphicon-minus"></span>
    @Html.ActionLink("Delete", "Delete", new { id = item.MovieID })
    </label>
    </div>
    </div>
    </td>
    </tr>
    </table>
    </div>
    @section scripts
    <script>
    $(function () {toastr.info("Click Movie for details") })
    </script>
    Thanks in advance
    ViewBag.Title = " Movie Details";
    <h2>Movie Details</h2>
    <div class="btn-group" data-toggle="buttons">
    <label class="btn btn-info btn-group-sm ">
    <span class="glyphicon glyphicon-arrow-left"></span>
    @Html.ActionLink("Return to Movie Menu", "Index")
    </label>
    </div>
    <div class="table-responsive">
    <table class="table table-striped">
    <tr>
    <th><b>Movie Name:</b> @*@Html.DisplayFor(model => model.MoviesName)*@</th>
    <th><b>Movie Descritpion:</b> @*@Html.DisplayFor(model => model.MoviesName)*@</th>
    <th></th>
    </tr>
    <tr>
    <td>
    <i> @Html.DisplayFor(model => model.MoviesName)</i>
    </td>
    <td>
    <i> @Html.DisplayFor(model => model.Description)</i>
    </td>
    <td>@*<button class="btn btn-xs btn-info"><a style="color: white;" href="@Url.Action("Edit", new { id = Model.MovieID })">Edit </a></button>*@
    </tr>
    </table>
    </div>
    <p>
    @Html.ActionLink("Add Actor To Movie", "Create", "Actor", new { movieID = Model.MovieID }, new { @class = "btn btn-primary" })
    </p>
    @if (Model.Actors != null)
    <h5>@Model.MoviesName has @Model.Actors.Count() Actors</h5>
    <div class="table">
    <table class="table table-striped">
    <tr>
    <th>
    Template: X is an actor in Y and played Z.
    </th>
    <tr>
    <td>
    @foreach (var mov in Model.Actors)
    <p>
    @Html.DisplayFor(modelItem => mov.ActorsName) is an actor in @Html.DisplayFor(model => model.MoviesName) and played @Html.DisplayFor(modelItem => mov.ScreenName).
    @Html.ActionLink("Delete", "Delete", "Actor", new { id = mov.ActorID }, new { @class = "btn btn-danger btn-xs" })
    @*<button class="btn btn-xs btn-info">@Html.ActionLink("Edit", "Edit", new { id = mov.ActorID })</button>*@
    @*@Html.ActionLink("Edit", "Edit", "Actor", new { id = mov.ActorID }, new { @class = "btn btn-edit btn-xs" })*@
    @*<button class="btn btn-xs btn-info"><a style="color: white;" href="@Url.Action("Edit", "Actors", new { id = mov.MovieID })"><span style="color:white;" class="glyphicon glyphicon-pencil"></span> Edit </a></button>*@
    @*@Html.ActionLink("Edit Actors", "Edit", "Actor", null)*@
    @*@Html.ActionLink("Edit", "Edit","Actor", null, new { @class = "btn btn-primary" })*@
    </p>
    </td>
    </tr>
    </table>
    </div>
    else
    <p class="alert alert-info">No actors found!!</p>
    <p>
    @Html.ActionLink("Back to List", "Index")
    </p>

    How about save the way of sorting as a value in the cookie, When you need to go back the web page then you can read the data from the cookie.
    Refer to:
    http://msdn.microsoft.com/en-US/library/78c837bd(v=vs.80).aspx
    We are trying to better understand customer views on social support experience, so your participation in this interview project would be greatly appreciated if you have time. Thanks for helping make community forums a great place.
    Click
    HERE to participate the survey.

  • How to show values with initial sort asc/desc in 11.5.10 iProcurement page?

    (Logged Bug 12902576 with OAFramework DEV, but OAF DEV closed the bug and advised to log the issue here in the forum)
    How to have values sorted in ascending order when user first navigates to the page?
    Currently the values are unsorted, and are only sorted after the user clicks the column heading to sort the values. We expect the users should not have to click the column heading, but instead that the values should be sorted in ascending order when the user navigates to the page. This issue occurs on an OAFramework based page in iProcurement application.
    PROBLEM STATEMENT
    =================
    Receipts and Invoices are not sorted in iProcurement Lifecycle page even after implementing personalization to sort ascending on Receipt Number and Invoice Number. Users expect the receipts and invoices to be sorted but they are not sorted.
    STEPS TO REPRODUCE
    1. Navigate to iProcurement
    2. Click the Requisitions tab
    3. Search and find a requisition line that is associated to a Purchase Order having multiple receipts and multiple invoices.
    4. Click the Details icon to view the lifecycle page where the receipts and invoices are listed
    - see that the receipts are not sorted, and the invoices are not sorted
    5. Implement personalization to sort in ascending order for Receipt Number and for Invoice Number. Apply the personalization and return to page.
    - the receipts and invoices are still not sorted.
    IMPACT
    Users need the receipts and invoices sorted to make it easier to review the data. As a workaround, click the column heading to sort the results
    Tried workaround suggested by OAFramework DEV in Bug 12902576 but this did not help.
    TESTCASE of suggested workaround
    NAVIGATION in visprc01
    1. Login: dfelton / welcome
    2. iProcurement responsibility / iProcurement Home Page / Requisitions tab
    3. Click the Search button in the upper right
    4. Specify search criteria
    - Remove the 'Created by' value
    - Change 'Last 7 Days' to 'Anytime'
    - Type Requisition = 2206
    5. Click Go to execute the search
    6. Click the Requisition 2206 number link
    7. Click the Details icon
    8. In the Receipt section, click the link 'Personalize Table: (ReceivingTableRN)'
    9. Click the Personalize (pencil) icon
    10. Click the Query icon for Site level (looks different than the screenshots from OAFramework team, because this is 11.5.10 rather than R12
    - Compare this to the Table personalization page show in the reference provided by OAFramework team -
    http://www-apps.us.oracle.com/fwk/fwksite/jdev/doc/devguide/persguide/T401443T401450.htm#cust_persadmin_editperprop
    11. See on the Create Query page
    Sorting
    No sorting is allowed
    The Query Row option becomes available in personalize after setting the Receipt Number row to Searchable. However, even after clicking the Query icon to personalize, it is not possible to specify sorting. There is a Sorting heading section on the personalization page, but there is also a statement: No sorting is allowed
    The workaround mentioned by OAFramework team in Bug 12902576 does not work for this case
    - maybe because this is 11.5.10 rather than R12?
    - maybe similar to Bug 8351696, this requires extension implementation?
    What is the purpose of offering ascending/descending for Sort Allowed if it does not work?
    Please advise if there is a way to have the initial sort in ascending order for this page.

    I´m sorry that you couldn´t reproduce the problem.
    To be clear:
    It´s not about which symbol should seperate the integer part from the fraction.
    The problem is, that i can´t hide the fraction in bargraph.
    The data im showing are integers but the adf bar graph component wants to show at least 4 digits.
    As I´m from germany my locale should be "de" but it should matter in the test case.
    You can download my test case from google drive:
    https://docs.google.com/open?id=0B5xsRfHLScFEMWhUNTJsMzNNUDQ]
    If there are problems with the download please send me an e-mail: [email protected]
    I uploaded another screenshot to show the problem more clear:
    http://s8.postimage.org/6hu2ljymt/otn_hide_fraction.jpg
    Edited by: ckunzmann on Oct 26, 2012 8:43 AM

  • Error retrieving worklist using java

    Hi ,
    I am trying to retrieve the worklist for a particular user.
    The java code is :
    package cpa.apps.fin.wa.model;
    import java.util.ArrayList;
    import java.util.List;
    import javax.transaction.SystemException;
    import oracle.bpel.services.workflow.metadata.config.model.*;
    import java.util.ArrayList;
    import java.lang.Exception;
    import java.util.HashMap;
    import java.util.Map;
    import oracle.bpel.services.workflow.client.IWorkflowServiceClient;
    import oracle.bpel.services.workflow.client.IWorkflowServiceClientConstants;
    import oracle.bpel.services.workflow.client.WorkflowServiceClientFactory;
    import oracle.bpel.services.workflow.query.ITaskQueryService;
    import oracle.bpel.services.workflow.task.ITaskService;
    import oracle.bpel.services.workflow.task.model.Task;
    import oracle.bpel.services.workflow.verification.IWorkflowContext;
    import utils.system;
    public class workflowClient {
    public static void main(String[] args){
    Map<IWorkflowServiceClientConstants.CONNECTION_PROPERTY,java.lang.String> properties = new
    HashMap<IWorkflowServiceClientConstants.CONNECTION_PROPERTY,java.lang.String>();
    properties.put(IWorkflowServiceClientConstants.CONNECTION_PROPERTY.MODE,
    IWorkflowServiceClientConstants.MODE_DYNAMIC);
    properties.put(IWorkflowServiceClientConstants.CONNECTION_PROPERTY.SOAP_END_POINT_ROOT,
    "http://abc.xyz.pqr.us:8001");
    IWorkflowServiceClient client =
    WorkflowServiceClientFactory.getWorkflowServiceClient(WorkflowServiceClientFactory.SOAP_CLIENT,
    properties, null);
    try
    //Create JAVA WorflowServiceClient
    IWorkflowServiceClient wfSvcClient = WorkflowServiceClientFactory.getWorkflowServiceClient(
    WorkflowServiceClientFactory.REMOTE_CLIENT);
    //Get the task query service
    ITaskQueryService querySvc = wfSvcClient.getTaskQueryService();
    //Login as efs_generic_3
    IWorkflowContext ctx = querySvc.authenticate("efs_generic_3","Password2011".toCharArray(),null); **//this is point where i get the error.**
    //Set up list of columns to query
    List queryColumns = new ArrayList();
    queryColumns.add("TASKID");
    queryColumns.add("TASKNUMBER");
    queryColumns.add("TITLE");
    queryColumns.add("OUTCOME");
    //Query a list of tasks assigned to jstein
    List tasks = querySvc.queryTasks(ctx,
    queryColumns,
    null, //Do not query additional info
    ITaskQueryService.AssignmentFilter.MY,
    null, //No keywords
    null, //No custom predicate
    null, //No special ordering
    0, //Do not page the query result
    0);
    //Get the task service
    ITaskService taskSvc = wfSvcClient.getTaskService();
    //Loop over the tasks, outputting task information, and approving any
    //tasks whose outcome has not been set...
    for(int i = 0 ; i < tasks.size() ; i ++)
    Task task = (Task)tasks.get(i);
    int taskNumber = task.getSystemAttributes().getTaskNumber();
    String title = task.getTitle();
    String taskId = task.getSystemAttributes().getTaskId();
    String outcome = task.getSystemAttributes().getOutcome();
    /* if(outcome == null)
    outcome = "APPROVE";
    taskSvc.updateTaskOutcome(ctx,taskId,outcome);
    System.out.println("Task #"+taskNumber+" ("+title+") is "+outcome);
    catch (Exception e)
    //Handle any exceptions raised here...
    System.out.println("Caught workflow exception: "+e.getMessage());
    When trying to debug, this is where it threw the error :(
    // IWorkflowContext ctx = querySvc.authenticate("skyadav","welcome1".toCharArray(),null); **//this is point where i get the error.**
    Caught workflow exception: javax.naming.CommunicationException [Root exception is java.net.ConnectException: t3://localhost:7001: Destination unreachable; nested exception is:
         java.net.ConnectException: Connection refused: connect; No available router to destination]
    Process exited with exit code 0.
    Reading further I understood that i also need to set up a Workflow client Configuration, which i have done using a MAP but i found that we also need to configure wf_client_config.xml
    Can anyone one put some light where i need to keep this file and what sort of configurationis required in it .
    Thanks
    Sumit Yadav
    Edited by: Sumit Yadav on Jul 8, 2011 8:39 AM

    have done the above mentioned steps .
    Fom Oracle worklist page i am able to login .
    but when ever in my program i amtrying it gives the following error.
    Note:
    We are using SSO for authentication:
    but it always gives the error pointing to jazn file .
    Error in authenticating user.
    Error in authenticating and creating a workflow context for user jazn.com/efs_generic_3.
    Verify that the user credentials and identity service configurations are correct.
         at weblogic.rjvm.ResponseImpl.unmarshalReturn(ResponseImpl.java:234)
         at weblogic.rmi.cluster.ClusterableRemoteRef.invoke(ClusterableRemoteRef.java:348)
         at weblogic.rmi.cluster.ClusterableRemoteRef.invoke(ClusterableRemoteRef.java:259)
         at oracle.bpel.services.workflow.query.ejb.TaskQueryService_oz1ipg_EOImpl_1034_WLStub.authenticate(Unknown Source)
         at oracle.bpel.services.workflow.query.client.TaskQueryServiceRemoteClient.authenticate(TaskQueryServiceRemoteClient.java:122)
         at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
         at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
         at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
         at java.lang.reflect.Method.invoke(Method.java:597)
         at oracle.bpel.services.workflow.client.WFClientRetryInvocationHandler.invokeTarget(WFClientRetryInvocationHandler.java:133)
         at oracle.bpel.services.workflow.client.WFClientRetryInvocationHandler.invoke(WFClientRetryInvocationHandler.java:72)
         at $Proxy14.authenticate(Unknown Source)
         at cpa.apps.fin.wa.model.workflowClient.main(workflowClient.java:43)
    Caught workflow exception: Error in authenticating user.
    Error in authenticating and creating a workflow context for user jazn.com/efs_generic_3.
    Verify that the user credentials and identity service configurations are correct.
    Process exited with exit code 0.
    there are 2 methods :
    oracle.bpel.services.workflow.verification.IWorkflowContext authenticate(java.lang.String p1, java.lang.String p2, java.lang.String p3, java.lang.String p4) { }
    oracle.bpel.services.workflow.verification.IWorkflowContext authenticate(java.lang.String p1, char[] p2, java.lang.String p3) { }
    once i tried
    IWorkflowContext ctx = querySvc.authenticate("efs_generic_3","Password2011".toCharArray(),null);
    and again
    IWorkflowContext ctx = querySvc.authenticate("efs_generic_3","Password2011",null,null);
    but evertime it gives the same error :
    Error in authenticating and creating a workflow context for user jazn.com/efs_generic_3
    Why it point to jazn/XYZ.. even though I have not implemented ADF security
    Please advise.
    Thanks
    Sumit Yadav
    Edited by: Sumit Yadav on Jul 15, 2011 9:24 AM

  • How to trigger New page while using ALV with classes/oops?

    Hi All
    I am trying to print a report which has to show the data in two pages.
    I am using ALV with classes/oops.
    Though I am able to print the report but a new page is not coming. Whole of the data is coming in one single page.
    Please tell me as to how to trigger a NEW PAGE while using ALV with classes/oops.
    Please send some code samples also if available.
    Thanks in advance.
    Jerry

    using sort option you can do it. in case of grid/oo alv class ALV you can view that only in print mode/preview mode.
    in case of list you can view that directly.
    sort-fieldname = 'FIELDNAME'.
    sort-group = '*'  "triggers new page
    sort-up = 'X'.
    append sort to it_sort.

  • I installed IE tab plus 1.2.0.12. when i am using explorer in mozilla and login into confirmit, the page is not loading properly. I am login and unable to click on any link.Please let me know your comments on this.

    http://author.confirmit.com//isa/KTAYBTGOKOMVCAAHHMPIDXAQKVOTBALO/srinu/Mozilla%20Firefox_trouble1.htm
    Please find this link. I am getting this message frequently.

    Hi Guru Prasandh,
    Thanks for your Reply.
    There is no error on page.
    If I got more than 10 records then it displays the Advance Worklist page fine but when I put Cursor on Table Navigation buttons it shows the Custom page path only not Sedded Worklist page path if I click on the Next & Previous buttons then it shows error on page on page bar and hangs out. It doesn't shows the next records.
    Personalize page, Diagnostics & ABout this page links are not highlighted when I put the mouse cursor.

  • In Pages, How can I get headers and footers to show up on more than the first page of each section?

    In Mountain Lion, I considered myself a fairly expert user of Pages. Since "upgrading" to Mavericks, I can't get even basic things to work anymore. My current problem is that the headers and footers are only showing up on the first page of each section. A related annoyance is that if I copy the information in a header or footer, all the associated formatting disappears when I paste it. But the first problem is the one that matters — headers and footers that only show up on one page sort of negate the whole point of headers and footers.

    If you click the link I posted previously, it takes you right to the Pages community.
    Here >  Pages: iWork: Apple Support Communities
    Then click New.

  • Add a custom button on notification page and open a oaf page after button

    Hi All,
    My Requirement is add a custom button on notification page and after button click with take some parameter from notification page like supplier_id and org_id then open a new oaf page and show supplier credit and debit balance but problem is that button is only enable to a ap invoices notification not for other type of notification.
    how to take approach/action i don't know.
    it is possible through OAF personalization/customization or it is part of work flow customization.
    Navigation path - payable->worklist->open notification and Type of notification also there
    Type should be matched with AP_Invoices type notification then custom button enable.
    Please Let me know is it possible or not. If possible how to achieve this. ...................................it's argent...plz help me
    Edited by: 815572 on Nov 25, 2010 1:15 AM

    Hi Irk,
    My notification came in given below format (in table) but my custom button only enable for Contract Approval Type not for others..........i hv attach a button on notification page (subject-Contract 21969-R17......)
    From Type Subject Sent
    Taylor, Phillip Contract Approval Contract 21969 - R17-AUG-07 06:19:27 has been approved by Taylor, Phillip 22-Aug-2007
    Taylor, Phillip OKS Contract Process Contract 21975 - R17-AUG-07 06:22:18 for AT&T Universal Card (52,500.00 USD) has been published online 19-Aug-2007
    Taylor, Phillip OKS Contract Process Contract 21969 - R17-AUG-07 06:19:27 for AT&T Universal Card (15,000.00 USD) has been published online 19-Aug-2007
    If I just put a button SHOW BALANCE just like notification button APPROVE, REJECT, REASSIGN but this button shows all types of notification and my req. is this button show only for Contract Approval type notification. how to handled this issuesss ?
    if extend the co of notification page then how to handle TYPE value from worklist page ....please write proper code if u hv any idea...........
    Thanks,

  • SOA 11g Worklist Apps Customisation and Integration with Plumtree Portal

    Hi,
    We want to migrate an existing application build using SOA Suite 10.1.3.3 to 11.1.1.2.0.
    In the 10g application the worklist application was customised and the customised apps was linked as a remote portlet in BEA Plumtree Portal.
    1)In 10g the worklist application source code is available (\SOA_Oracle_Home\bpel\samples\hw\worklistapp) for customisation but is that possible for 11g ?
    (The location of the default deployed worklist apps in 11g is /../mdw_home/user_projects/domains/soa_domain/servers/soa_server1/tmp/_WL_user/worklistapp).
    Can we take the source code and customize in jdev and deploy under a different contextname in 11g??
    3)Our existing 10g worklist was customised a bit in terms of look and feel and for some custom authentication and it was deployed in the 10g SOA Server.
    A sample jsp application was created and the login page of the custom worklist apps was linked in a inframe so that it works when integrated with the Plumtree portal as a remote portlet. And this worked perfectly in 10.1.3.3 SOA Suite.
    However the 11g SOA worklist login when tagged in a jsp as an inframe in plumtree portal is giving a warning message
    Warning: Unable to load content in a frame. Frame content will load at the top level. On cliicking the OK button the worklist page is opening. This is with Firefox browser . however form IE7 or 8 its timing out from portal.
    As per http://newsoalife.blogspot.in/2009/09/framebusing-in-adf.html
    changing the web.xml for the worklist can help.
    Can anyone please let us know on the same as this appeas an unsupported one.
    Regards
    Ashif

    Hi,
    Can you check the log file.u are getting any error.can you check wf_error table also u are getting any error.
    Can you check consumer in AQ tables.
    Thanks,
    Rahul

  • What is the page /_layouts/inplview.aspx?

    What is the page /_layouts/inplview.aspx?
    I am reviewing our web analytics on 2010 and notice that /_layouts/inplview.aspx tends to be at or new the top of the 'Top pages' rankings. It seems to be related to some views in libraries.
    I am looking for a better explanation of what it is and why it is showing up on the stats. Ive seen where its related to group views but we utilize folders in our environment.

    This page is really an API and not an end user's web page.
    The list view webpart has the ability to page, sort columns and filter some values. When this happens, there is an AJAX call to the inplview.aspx and returns a JSON based result set. That is the rows of the defined list view webpart.
    Thanks, Roy Kim

  • Man pages don't work

    hi,
    i updated today and my man pages sort of don't work anymore.
    the j and k keys don't work anymore to scroll up and down.
    same thing happens when i use the less command on anything.
    what could that be?

    tomk wrote:What applications were updated?
    just pciutils this time

Maybe you are looking for

  • There is no "Save and Close" feature anymore, just "Close Tabs".

    After installing Firefox 4, I no longer have the option to save tabs that are open for later sessions. This is a feature I use often and need to have back!

  • Camera RAW 5.6 - Filmstrip Does Not Appear

    I'm having an interesting issue with Camera RAW 5.6. In everything I have found via searching, the preview flimstrip is supposed to automatically appear when multiple RAW files are opened. In my case, this does not happen. Instead, I see each image o

  • Shout out for anyone trying to use a macbook pro with Dell 5210n printer

    Has anybody been able to set up the Dell 5210n printer with a MacBook Pro running tiger 10.4.7? I have downloaded the "driver" from Dell to no avail. Any help greatly appreciated. MacBookPro   Mac OS X (10.4.7)  

  • MacBook pro 13" or MacBook pro 13"

    So the MacBook pro 13" high end model($1499) comes with the i7 processer and more memory. The 13" High end model of the MacBook air costs the same button put as much ram and the i7 processer it will cost more. I do a little video editing plus my HP G

  • Bank Reconciliation Statment Numbers

    Hi While entring the FF67-BR Statement, the SAP system starts picking the statement number no.1 from 1st of January 2008. Our Financial Year is April-March. If my BRS No. is say 355 on 31 st December 2007, I want to continue it with number 356 on 1st