Project Search in cProjects 4.0 - Displays all projects

Hi Experts,
Project Search in cProjects fetches all projects - across all users and across all project types. This includes projects of project types the user is not authorized to. Well, the user cannot open any of these projects (unless he has authorization) but he can see all projects.
Is there a way to restrict this? We require users to get to see projects in his search list only if the user has authorization to the corresopdning Project Type. Is there a way?
Regards...

Thanks Ramakrishna for responding.
But I understand that this search is also influenced by the settings that the user does at the front end. What I mean is, if he does not put any such filter, he can still view all projects.
Is there anyway we can restrict the users from viewing? What I mean is, can we put such filters (which the user puts at front end to search) at the back end by which the front end user just cannot see/view all projects?
Thanks again...
Regards,
Bittu.

Similar Messages

  • Search page displaying all records after create

    Hi,
    I have created the search and the create page using the help of tutorial example. I have run into a 2 problems.
    1. After I create the a transaction and click on apply button it directs me to the search page and diaplays all the records in the table. Instead I was looking to display only the record that I created in the create page.
    I tried to change the parameter of the "pageContext.forwardImmediately" to "false" for retainAM, it is working fine, but at the same time it is not displaying the confirmation message that it ised to display.
    2. Is there a spellchecker that I could add to my page for 3 columns that are of "CLOB" type. Any advise.
    Thanks,
    Ali

    Hi Shiv,
    I have added this in the processformrequest method. I do not know how and where to add it in the processrequest methos. Can you please guide me through it. I am pasting my CO file.
    Thanks in advance for all your help.
    Ali
    package saf.oracle.apps.saf.jobperf.server.webui;
    import oracle.apps.fnd.common.VersionInfo;
    import oracle.apps.fnd.framework.webui.OAControllerImpl;
    import oracle.apps.fnd.framework.webui.OAPageContext;
    import oracle.apps.fnd.framework.webui.beans.OAWebBean;
    import oracle.apps.fnd.framework.OAApplicationModule;
    import oracle.apps.fnd.framework.webui.OADialogPage;
    import oracle.apps.fnd.framework.webui.TransactionUnitHelper;
    import oracle.jbo.domain.Number;
    import oracle.apps.fnd.common.MessageToken;
    import oracle.apps.fnd.framework.OAApplicationModule;
    import oracle.apps.fnd.framework.OAException;
    import oracle.apps.fnd.framework.OAViewObject;
    import oracle.apps.fnd.framework.webui.OAWebBeanConstants;
    import com.sun.java.util.collections.HashMap;
    import oracle.bali.share.util.IntegerUtils;
    * Controller for ...
    public class ReviewCreateCO extends OAControllerImpl
    public static final String RCS_ID="$Header$";
    public static final boolean RCS_ID_RECORDED =
    VersionInfo.recordClassVersion(RCS_ID, "%packagename%");
    * Layout and page setup logic for a region.
    * @param pageContext the current OA page context
    * @param webBean the web bean corresponding to the region
    public void processRequest(OAPageContext pageContext, OAWebBean webBean)
    // Always call this first
    super.processRequest(pageContext, webBean);
    // If isBackNavigationFired = false, we are here after a valid navigation
    // (the user selected the Create Review button) and we should proceed
    // normally and initialize a new Review.
    if (!pageContext.isBackNavigationFired(false))
    // We indicate that we are starting the create transaction(this
    // is used to ensure correct Back button behavior).
    TransactionUnitHelper.startTransactionUnit(pageContext,"jobperfCreateTxn");
    // This test ensures that we don't try to create a new review if we
    // had a JVM failover, or if a recycled application module is activated
    // after passivation. If this things happen, BC4J will be able to find
    // the row you created so the user can resume work.
    if (!pageContext.isFormSubmission())
    OAApplicationModule am = pageContext.getApplicationModule(webBean);
    am.invokeMethod("createReview",null);
    // Initialize the ApplicationpropertiesVO for PPR.
    // am.invokeMethod("init");
    else
    if (!TransactionUnitHelper.isTransactionUnitInProgress(pageContext,"jobperfCreateTxn", true))
    // We got here through some use of the browser "Back" button, so we
    // want to display a stale data error and disallow access to the page.
    // if this were a real application, we would propably display a more
    // context-specific message telling the user she can't use the browser
    //"Back" button and the "Create" page. Instead, we wanted to illustrate
    // how to display the Applications standard NAVIGATION ERROR message.
    OADialogPage dialogPage = new OADialogPage(NAVIGATION_ERROR);
    pageContext.redirectToDialogPage(dialogPage);
    } // end processRequest()
    * Procedure to handle form submissions for form elements in
    * a region.
    * @param pageContext the current OA page context
    * @param webBean the web bean corresponding to the region
    public void processFormRequest(OAPageContext pageContext, OAWebBean webBean)
    {    //super.processFormRequest(pageContext, webBean);
    // Always call this first.
    super.processFormRequest(pageContext, webBean);
    OAApplicationModule am = pageContext.getApplicationModule(webBean);
    // Pressing the "Apply" button means the transaction should be validated
    // and committed.
    if (pageContext.getParameter("Apply") != null)
    // Generally in the tutorial application and the labs, we've illustrated
    // all BC4J interaction on the server (except for the AMs, of course). Here,
    // we're dealing with the VO directly so the comments about the reasons
    // why we're obtaining values from the VO and not the request make sense
    // in context.
    OAViewObject vo = (OAViewObject)am.findViewObject("jobperfVO1");
    // Note that we have to get this value from the VO because the EO will
    // assemble it during its validation cycle.
    // For performance reasons, we should generally be calling getEmployeeName()
    // on the EmployeeFullVORowImpl object, but we don't want to do this
    // on the client so we're illustrating the interface-appropriate call. If
    // we implemented this code in the AM where it belongs, we would use the
    // other approach.
    String employeeName = (String)vo.getCurrentRow().getAttribute("FullName");
    // We need to get a String so we can pass it to the MessageToken array below. Note
    // that we are getting this value from the VO (we could also get it from.
    // the Bean as shown in the Drilldwon to Details lab) because the item style is messageStyledText,
    // so the value isn't put on the request like a messaqeTextInput value is.
    String employeeNumber = (String)vo.getCurrentRow().getAttribute("EmployeeNumber");
    //ma String employeeNum = String.valueOf(employeeNumber.intValue());
    //ma Number employeeNumber = (Number)vo.getCurrentRow().getAttribute("EmployeeNumber");
    //ma String employeeNum = String.valueOf(employeeNumber.intValue());
    // Simply telling the transaction to commit will cause all the Entity Object validation
    // to fire.
    // Note: there's no reason for a developer to perform a rollback. This is handled by
    // the framework if errors are encountered.
    am.invokeMethod("apply");
    // Indicate that the Create transaction is complete.
    TransactionUnitHelper.endTransactionUnit(pageContext, "jobperfCreateTxn");
    // Assuming the "commit" succeeds, navigate back to the "Search" page with
    // the user's search criteria intact and display a "Confirmation" message
    // at the top of the page.
    MessageToken[] tokens = { new MessageToken("EMP_NAME", employeeName),
    new MessageToken("EMP_NUMBER", employeeNumber) };
    OAException confirmMessage = new OAException("PER", "LAC_FWK_TBX_T_EMP_CREATE_CONF", tokens,
    OAException.CONFIRMATION, null);
    // Per the UI guidelines, we want to add the confirmation message at the
    // top of the search/results page and we want the old search criteria and
    // results to display.
    pageContext.putDialogMessage(confirmMessage);
    HashMap params = new HashMap(1);
    // Replace the current employeeNumber request parameter value with "X"
    params.put("employeeNumber", "employeeNumber");
    // IntegerUtils is a handy utility
    params.put("employeeNumber",IntegerUtils.getInteger(5));
    pageContext.forwardImmediately(
    "OA.jsp?page=/saf/oracle/apps/saf/jobperf/webui/jobperfPG",
    null,
    OAWebBeanConstants.KEEP_MENU_CONTEXT,
    null,
    params, //null,
    true, // retain AM
    OAWebBeanConstants.ADD_BREAD_CRUMB_YES);
    else if (pageContext.getParameter("Cancel") != null)
    am.invokeMethod("rollbackReview");
    // Indicate that the Create transaction is complete.
    TransactionUnitHelper.endTransactionUnit(pageContext, "jobperfCreateTxn");
    pageContext.forwardImmediately("OA.jsp?page=/saf/oracle/apps/saf/jobperf/webui/jobperfPG",
    null,
    OAWebBeanConstants.KEEP_MENU_CONTEXT,
    null,
    null,
    false, // retain AM
    OAWebBeanConstants.ADD_BREAD_CRUMB_NO);
    } // end processFormRequest()
    }

  • To display all the Nodes in a Binary Search Trees

    Hi,
    I want to traverse through all the nodes in a binary tree. I know that there are traversals like Preorder,Postorder,Inorder. But I am not able to write a recursive code for performing this operation. Can anyone please help me or give me an idea how to write a code to do any one of these traversal.
    Thanks a lot in advance.

    Hi,
    hmm .. how is a tree-node defined? - As so you have not posted a node-class, I will help you by demonstrating it for inOrder by normal language:
    The Idea is as follows:
    You have a root, that references to a tree-node. This tree-node has a value and 2 references to other tree-nodes, let's say they are named left and right. Because left an right are references to tree-nodes in the same way root is a reference to the tree-node, this fact can be used for recursive action on the tree.
    if you like to display all values in the tree, what do you have to do in a node?
    1. display the tree the left reference is pointing to
    2. display the value-Field
    3. display the tree the right reference is pointing to
    that is inOrder, assuming all lesser values are in the left tree and all greater are in the right tree.
    How to display the left and right trees?
    The same way you display this node, but this time you use the left / right reference as the node.
    So do it in pseudo-coding:
    void DisplayTree(NodeClass aNode) {
    if (aNode == null) return;
    DisplayTree(aNode.left);
    DisplayValue(aNode.value);
    DisplayTree(aNode.right);
    That is it - figure it out and try to write a program after this - good luck. To write one for pre-order and post-order should be easy if you have this one for inOrder.
    greetings Marsian

  • How to display all value of metadata from nodes collection model in content presenter template

    Hi All,
    first of all the new look of OTN is great.
    coming to problem i am facing (i dont know whr to ask here or in portal forum).
    i am creating a content presenter template to display list of items.
    now as per requirement i need to create a drop down to filter the list.
    now while check- in a file author would choose a value in one metadata field lets say xCategory(which is a single select list).
    i have to display similar category list on portal to allow user to filter list.
    i could hv used view of xCategory but problem is files are targeted to role using ACL. so u see i cant display all category to all users.
    also customer wants this whole thing to be Dynamic i.e. they can add value of xCategory later that to could be only for specific role (on portal it should be role specific , author can see whole list not a problem there).
    so what i think is if content is given as search result so the category. so now if i can get the all xCategory metedata from 'nodes' collection model in template i can create drop down with out having any additional bean.
    somthing like this
    #{nodes.xCategory} (but this one is not correct).
    please suggest me any solution.
    thanks
    -somesh

    Hi,
    you can do all of what you said with JSF. ADF Faces provides drag and drop functionality (have a look at the Web Developer Guide) that allow you to move nodes within a tree. The drag and drop framework sends an event notification to the server with a reference to the changed node.You can also have context menus on a tree node to help users creating, deleting and editing a tree nodes. JavaScript isn't required at all, even if you wanted to drag and drop a row in a table on top of a tree node to create a new tree node.
    I just finished a book project in which we explained this usecase. As soon as I find the time, I'll follow up with a blog entry on this as it seems to be a common requirement. However, as mentioned, the web developer guide on OTN explains drag and drop in ADF Faces pretty well.
    However, if you choose the "Search" link above, choose JDeveloper and ADF as the product to search for and type drag and drop as the search string, then you get lots of code sample posted in the past to this forum
    Frank

  • Search Tab in WebHelp Not Displaying Any Topics

    Let me preface this thread by saying that I JUST figured out the answer to my own problem. I tried to post this thread about 2 hours ago, but the forum was having issues...I got unexpected errors, and such. Although I figured out the answer a moment ago, I wanted to post the thread anyway, in case others come across the same problem, they will know how to fix it.
    The Search tab in WebHelp doesn't work. No matter what I do, no topics will display when I enter search terms that I *know* are in the Help system. I have another project on the same computer, and the Search tab in that project works fine. I tried to attach screenshots, but keep getting an "unexpected error," so I gave up. But basically, if I enter a search term and click Go, "No topics found" displays.
    When the WebHelp is being generated for this project, the following displays in the Output View:
    "Processing Full-text-search data...
    Finished processing Full-Text-Search data in 0 sec(s)"
    It looks like something that is needed in order to do the full-text-search is missing, but I have no idea what. I have read several threads in the forums regarding Search tab issues that others have had.
    I have:
        * Ensured that the itss.dll and itircl.dll are registered and in my C:\WINDOWS\system32 folder
        * Confirmed that I have keyhelp.ocx and hhctrl.ocx in my C:\WINDOWS\system32 folder
        * Used the same browser to view the WebHelp output for both projects (firefox 3.6.18)
        * Checked the project settings - they match
        * Checked everything in the WebHelp Settings window - General, Content Categories, Navigation, Search and Publish - everything matches in both projects
        * Tried creating a new webhelp layout, selecting a different skin...
    everything, to no avail.
    When the WebHelp is being generated for the project where the Search tab works, the following displays in the Output View:
    "Processing Full-text-search data...
    Finished processing Full-Text-Search data in 115 sec(s)
    I can't understand why the Search tab works in one project, but not the other project. See the diagnostic report below. According to the report, the only thing I don't have (and don't know how to get) is MS Help 2. But why would my search work in one project and not the other, despite not having MS Help 2? Both project have the same settings and I'm generating the same output - WebHelp. Any ideas why my Search tab works in one project, but not my other project?
    Thanks in advance for any assistance!

    NOTE: In my original post, I forgot to include the diagnostic report that was produced by using the diagnostics tool mentioned in other threads where forum members were having problems with the Search tab, so here it is (just so that this thread is complete)...
    MJ's Help Report
    A common problem with HTML Help 1.x is DLLs not correctly registered during installation. This utility checks all components and registers DLLs if required. We also report if the RoboHelp DLL is registered, and if MS Help 2 components are installed and registered.
    After running the report, try running your program again to see if the fault has cleared.
    General Info
    Report EXE:                C:\DOCUME~1\LMCKEN~1\LOCALS~1\Temp\Temporary Directory 1 for MJsDiag.zip\MJsDiag.exe
    Report Run Date:           7/21/2011 11:14:07 AM
    Report EXE Version:        2.7.2.0
    Download URL:              http://helpware.net/downloads/
    Operating System:           Windows NT 5.1.2600
    SysLocale.DefaultLCID:      0x0409 (1033)
    SysLocale.PriLangID:        0x0009 (9)
    SysLocale.SubLangID:        0x0001 (1)
    DecimalSeparator:           .
    HH Installed:               YES
    HH Version:                 5.2.3790.4110
    HH Friendly Version:        > 1.4a
    H2 Installed:               NO
    H2 Version:                 
    IE Installed:               YES
    IE Version:                 6.0.2900.5880
    IE Friendly Version:        Internet Explorer 6 (Windows XP SP2)
    NT Administrator
    NT Admin Check: Current user has full administor privileges: YES
    HTML Help Run-time Components
    File Registered OK: C:\WINDOWS\system32\hhctrl.ocx (Version: 5.2.3790.4110)
    File Registered OK: C:\WINDOWS\system32\itss.dll (Version: 5.2.3790.4186)
    File Registered OK: C:\WINDOWS\system32\itircl.dll (Version: 5.2.3790.2453)
    File Found: C:\WINDOWS\system32\hhctrl.ocx
         Version = 5.2.3790.4110
         Registry Info: {adb880a6-d8ff-11cf-9377-00aa003b7a11}
           ClassName = HHCtrl Object
           InProcServer32 = C:\WINDOWS\system32\hhctrl.ocx
           ProgID = Internet.HHCtrl.1
         DLL is Found and Registered OK = YES
    File Found: C:\WINDOWS\system32\itss.dll
         Version = 5.2.3790.4186
         Registry Info: {5D02926A-212E-11D0-9DF9-00A0C922E6EC}
           ClassName = Microsoft InfoTech IStorage System
           InProcServer32 = C:\WINDOWS\system32\itss.dll
           ProgID = MSITFS1.0
         DLL is Found and Registered OK = YES
    File Found: C:\WINDOWS\system32\itircl.dll
         Version = 5.2.3790.2453
         Registry Info: {4662DAA5-D393-11D0-9A56-00C04FB68BF7}
           ClassName =
           InProcServer32 = C:\WINDOWS\system32\itircl.dll
           ProgID = ITIR.WordWheelBuild.4
         DLL is Found and Registered OK = YES
    For HH Version Info See: http://helpware.net/htmlhelp/hh_info.htm
    HTML Help 1.x Registry Settings
    Description: If present this Key can disable HH Shortcuts and HH WinHelp commands on the local PC
    Reference: KB 810687, KB 323180
      Key: HKEY_LOCAL_MACHINE\SOFTWARE\Policies\Microsoft\Windows\System\
      Value: HelpQualifiedRootDir (string value) =
      -> Report: Policy is not enabled. HH Shortcuts are not restricted on local machine.
    Description: This key can be used to enable Hhctrl.ocx ActiveX Visual controls on servers
    Reference: KB 892675
      Key: HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\HTMLHelp\1.x\HHRestrictions
      Value: UrlAllowList (string value) =
      Value: MaxAllowedZone (string value) =
      -> Report: Settings reported for information only.
    Description: This key allows MS programs such as iexplore.exe to open ITS file that do not have a .CHM file extension
    Reference: KB 873343
      Key: HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\HTMLHelp\1.x\HelpRestrictions\AllowedExtensions
      -> Report: No special file extensions have been enabled on this PC.
    Description: This key can be used to allow access to remote ITS files
    Reference: Win 2003 SP1, KB 896054
      Key: HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\HTMLHelp\1.x\ItssRestrictions
      Value: UrlAllowList (string value) =
      Value: MaxAllowedZone (string value) =
      Value: NestedProtocolList (string value) =
      -> Report: Settings reported for information only.
    For HH Registry Info See: http://helpware.net/htmlhelp/hh_info.htm#hh14
    HTML Help 1.x Workshop Components
    *** HH Workshop not found or not installed correctly. Try reinstalling.
    File Registered OK: C:\Program Files\itcc.dll (Version: 4.72.7277.0)
    File Found: C:\WINDOWS\system32\hha.dll (Version: 4.74.8702.0)
    KeyHelp OCX by Keyworks.net - KeyHelp.ocx
         Detecting KeyHelp.ocx by looking for the IKeyPopup interface
         Registration Info: {1E57C6C4-B069-11D3-8D43-00104B138C8C}
           Version = 1.1.2200.0
           ClassName = KeyPopup Class
           InProcServer32 = C:\WINDOWS\system32\Keyhelp.ocx
           ProgID = KeyHelp.KeyPopup.1
         Dll Found and Registered = YES
    For More Info See: http://keyworks.net/
    RoboHelp DLL by eHelp/Macromedia - HHActiveX.dll
         Registration Info: {399CB6C4-7312-11D2-B4D9-00105A0422DF}
           Version = 9.0.0.228
           ClassName = HHComponentActivator Class
           InProcServer32 = C:\Program Files\Adobe\Adobe RoboHelp 9\RoboHTML\HHActiveX.dll
           ProgID = HHActiveX.HHComponentActivator.1
         Dll Found and Registered = YES
    For More Info See: http://www.macromedia.com/
    MS Help 2 Run-time Components
         *** MS Help 2 NOT installed on this PC

  • Problems with recordset paging and dynamic menu displaying all the options

    Hi hope someone can help on this - I've posted the code on the FoEd Backend Blight - with no takers/success yet -
    I've created a jobs page using DWCS3 which has a dynamic drop down menu filtering the 'countries' that jobs are located in.  When I introduce a recordset page only those countries associated with the jobs on that particular page are shown in the dynamic menu above, not all of the countries listed in the database. When I get to the second page of results - again - only those jobs' countries are shown in the menu (and not the previous pages/next pages as well).
    I'd clearly like a user to be able to select from the menu of countries available for all the jobs in the database, and not just those on the page.  Any ideas?
    On a similar strain - my country menu/filter is wrapped up in a form above the list of jobs.  On loading the page, only the search and menus appear.  No jobs are shown until I hit submit.  Is there a way to have all the jobs display on first load, and then for the search/menu filter to work on the displayed jobs. I've tried altering the variables on the search to 1 from -1, and other options but I can't seem to get a page of content on first load.
    I'd really appreciate any pointers on the above, as this would help solve the final stage of my project. The full post and code can be seen on the friendsofed website under backend blight.
    Many thanks in advance.
    Matt

    I'm still stuck on getting the page to load with some actual content, however.  I'm just getting the search box and country filter displaying on first load.
    Pages 584-6 explain why you get nothing when a page first loads. Dreamweaver sets the default value to -1. The problem with trying to change the default value even to an empty string or % is that Dreamweaver's security function, GetSQLValueString() changes an empty string to NULL and wraps % in quotes, so neither will work.
    One way to display all records when the page first loads is to create another recordset that selects all records. Wrap the code in a conditional statement that checks whether the $_GET array contains any values:
    if (!$_GET) {
      // recordset to retrieve all records here
    This means that you need two repeat regions to display the results. Wrap both of them in conditional statements:
    if (isset($fullRecordsetName)) {
      // display the full recordset
    } elseif (isset($searchResultsRecordsetName)) {
      // display the search results
    You also need to wrap the mysql_free_result() statements in conditional statements at the end of the page:
    if (isset($fullRecordsetName)) mysql_free_result($fullRecordsetName);
    if (isset($searchResultsRecordsetName)) mysql_free_result($searchResultsRecordsetName);
    Another way to do it is to use just one recordset, but split the SQL query into two sections:
    $query_RecordsetName = "SELECT * FROM myTable";
    if (isset($_GET['searchTerm')) {
    $query_RecordsetName .= sprintf(" WHERE searchTerm LIKE %s",
         GetSQLValueString("%" . $colname_RecordsetName . "%", "text"));
    This uses the combined concatenation operator to add the WHERE clause to the query only if $_GET['searchTerm'] has been set. Notice that you need a space before the "WHERE".

  • Authoriization object for resource search in cProjects

    Does anybody know which authorization object is required for resource search in cProjects  5.0 ? I need to to grant an access exactly via the user role and authorization object, not via the Authorization bookmark in cProjects.
    Thanks!

    Hello Kiryl,
    this is what you can do with Cprojects 4.5:
    cProjects Roles
    The following single roles are delivered with cProjects:
    Role Authorization
    SAP_CPR_PROJECT_ADMINISTRATOR Create projects (project definitions).
    SAP_CPR_TEMPLATE_ADMINISTRATOR
    Create, change, read, and delete all
    templates in cProjects.
    SAP_CPR_USER
    Use cProjects, but no authorization to
    perform any activities in a particular project.
    To do this users need project-specific
    authorizations, which can be distributed
    either directly or through their assignment to
    a role.
    This role must be included in every
    cProjects composite role.
    The following composite roles are delivered with cProjects:
    Role Authorization
    SAP_CPR_DECISON_MAKER cProjects decision maker. Contains the role
    SAP_CPR_USER.
    SAP_CPR_INTERESTED cProjects interested party. Contains the role
    SAP_CPR_USER.
    SAP_CPR_MEMBER cProjects team member. Contains the role
    SAP_CPR_USER.
    SAP_CPR_PROJECT_LEAD cProjects project manager. Contains the role
    SAP_CPR_PROJECT_ADMINISTRATOR
    and SAP_CPR_USER
    SAP_CPR_TEMPLATE_RESPONSIBLE cProjects template responsible. Contains the
    roles
    SAP_CPR_TEMPLATE_ADMINISTRATOR
    and SAP_CPR_USER
    You can use these SAP standard roles or create your own. For more information see the
    solution management content for cProjects under Solutions → mySAP PLM → Configuration
    Settings → SAP cProject Suite 4.00 → General Settings → Activating Single Roles for
    cProjects and Creating Roles for the Project-Specific Authorization Checks.
    In cProjects, you carry out Customizing activities in the SAP Web AS. Only
    system administrators, that is, users with the authorization profile SAP_ALL, are
    authorized to carry out Customizing for cProjects.
    Hope this helps.
    Regards
    Thomas

  • Popup with generic ALV to display all fields of a structure

    Hello WebDynpro Experts,
    I have developed a WebDynpro application using an ALV control to display all the search results in a table.
    The number of columns shown in this table is reduced by a default view, that is preset for all users.
    In the SAP GUI there is a standard feature to show all the details of a record in a pop up window.
    E.g. in WE02 you see a few fields in the ALV table, and when you click on the details button, you get a popup with all the fields of the selected line.
    Is there something similar in the ALV table for WebDynpro?
    I want to show all the fields of the selected structure in a generic table with two columns: Field label and value.
    Can anybody help?
    Regards,
    Jürgen

    Hello Jurgen,
                    When you select a particular row in ALV table, you can get the data in that row by using ONLEADSELECT
            method from used component(SALV_WD_TABLE).
                   And i Guess you can get all the field names of that structure from DD03L table and you can display them
            in a generic table.
        Regards,
        Harry

  • How to display all rows in the report in one page in Oracle APEX 3.2

    Friends -
    We are using Oracle Applications Express 3.2 on oracle database 10.2.0.5 on solaris environment.
    One of our report contains total no of rows 50000. when we ran report by default it is showing 15 and i can go search and change display no of rows to different numbers and click go.
    My question is it possible to display all 50000 rows during first time report launching without going to change rows. Is there any option that we can set how many number of rows that we can display during report design.
    Please advise
    VSH

    Hello VSH,
    >> My question is it possible to display all 50000 rows during first time report launching without going to change rows
    As vee pointed out it is possible, however the question you need to ask yourself is is it wise?
    Bear in mind that displaying 50,000 rows on a single HTML page means a lot of code that must be loaded by the client browser all at once. What it will do to your page loading time? Browser memory? Network bandwidth? Also, do you really believe that it is effective to let an end user look for a specific row among 50,000 rows?
    Regards,
    Arie.
    ♦ Please remember to mark appropriate posts as correct/helpful. For the long run, it will benefit us all.
    ♦ Author of Oracle Application Express 3.2 – The Essentials and More

  • How to configure search results web part to display results only after a query is generated from user?

    Hi All,
    I am crawling documents from a file server. I created a new content source and crawled the documents. All documents are crawled successfully.
    Then I went to my enterprise search center site collection and created a new result source. I have added the query to use above content source.
    After that, on a page I am trying to configure the search results web part to display documents using this result source. Now the problem is:
    It displays all the documents that are crawled without searching for anything. I mean first it should not display any results. If a user searches for something , then according to that search it should display results.
    Any idea how to do this in the web part? I am using SharePoint 2013 on premise enterprise edition. No code. Totally OOTB.

    Hi Mohan,
    What did you use for the Query text in the result source?
    I could reproduce this issue when I used Query text like: {searchTerms} Path:”http://sps2k13sp/sites/First/Shared%20Documents”
    Then I changed the Query to
    {?{searchTerms}
    Path:"http://sps2k13sp/sites/First/Shared%20Documents"}
    , then Search result web part didn’t return results without searching.
    So , check your result source, and use the Query like the above(adding "{?...}").
    I hope this helps.
    Thanks,
    Wendy
    Wendy Li
    TechNet Community Support

  • Database displaying all records when no records are in database

    SEARCH PAGE:
    <form id="searcMennuu" name="searcMennuu" method="post" action="VehicleListing.php">
    <select name="vehicles" id="vehicles">
    <option value="allCars" selected="selected">ALL</option>
    <option value="Sedan">Sedan</option>
    <option value="Jeep">Jeep</option>
    <option value="Motorbike">Motorbike</option> </select> <input name="radioVehicle" type="radio" id="searchSale" value="searchSale" />
    Vehicles for Sale</label>
    <label>
    <input type="radio" name="radioVehicle" id="searchRent" value="searchRent" />
    Vehicles for Rent</label> <input type="submit" name="searchButton" id="searchButton" value="Search" />
    </form> RESULTS PAGE:
    mysql_select_db($database_ddd, $ddd); $query_rsTest = "SELECT `year`, `model` FROM vehicles";
    if (isset ($_POST ['vehicles'])) {
    $parSearch = mysql_real_escape_string ($_POST['vehicles']);  if($_POST['vehicles'] == "Sedan"){
    $query_rsTest.= " WHERE vehicle_type LIKE '%$parSearch%'";
    } $rsTest = mysql_query ($query_rsTest, $ddd) or die(mysql_error());
    $row_rsTest = mysql_fetch_assoc ($rsTest);
    $totalRows_rsTest = mysql_num_rows ($rsTest); <div class="showPage"><?php echo $totalRows_rsTest ?></div><?php do { ?>
     <?php if ($totalRows_rsTest > 0) { // Show if  recordset not empty ?> 
    <div class="output" id="Results">
    <p><?php echo $row_rsTest['year']; ?></p>
    <p><?php echo $row_rsTest['model']; ?></p>
    </div>
    <?php } // Show if recordset empty ?>
    <?php } while ($row_rsTest = mysql_fetch_assoc($rsTest)); ?> 
    1. I think i found out why the hide region is not working, whenever i search for something that is not in my database or does not satisfy my search criteria the results page is displaying all records in the database. However i don't know how to fix that. Can someone please help me?
    2. Also i'm trying to find out how i would display ALL vehicles in my database either for rent or sale, i dont have a field in my database for "ALL" so i'm not sure where to start. Thanks in advance

    Which BOBJ version do you use?
    Which kind of data source are you retrieving data from?
    Regards,
    Stratos

  • DWMX Not Displaying All Files

    Hello folks. This is my last attempt to locate a solution for
    why my DWMX is not displaying all my files in my local or remote
    folder. I have a new client who has put us in charge of moving
    their site to a new server. When I create a new site in DWMX, it
    allows me to download and upload just fine, ALL of the site.
    Problem is, DWMX will only display a certain number of files in
    both the local and remote views. In my windows explorer, it shows
    all the files, on the new server it shows all the files, but DWMX
    will not. The folder in question is the dumping ground for all
    their self-managed content images for their site. So it is hard to
    split these up into multiple folders and expect the code to work
    properly.
    Has anyone else experienced this problem? If so, is there a
    solution to this problem with DWMX?
    Thank you.

    Are you using DMX6.0 or DMX6.1? If the former, please update
    to the latter
    at your earliest opportunity - use the updater on the Adobe
    site, please.
    Murray --- ICQ 71997575
    Adobe Community Expert
    (If you *MUST* email me, don't LAUGH when you do so!)
    ==================
    http://www.dreamweavermx-templates.com
    - Template Triage!
    http://www.projectseven.com/go
    - DW FAQs, Tutorials & Resources
    http://www.dwfaq.com - DW FAQs,
    Tutorials & Resources
    http://www.macromedia.com/support/search/
    - Macromedia (MM) Technotes
    ==================
    "csnetworks" <[email protected]> wrote in
    message
    news:fai93r$hj$[email protected]..
    > Hello folks. This is my last attempt to locate a
    solution for why my DWMX
    > is
    > not displaying all my files in my local or remote
    folder. I have a new
    > client
    > who has put us in charge of moving their site to a new
    server. When I
    > create a
    > new site in DWMX, it allows me to download and upload
    just fine, ALL of
    > the
    > site. Problem is, DWMX will only display a certain
    number of files in
    > both the
    > local and remote views. In my windows explorer, it shows
    all the files,
    > on the
    > new server it shows all the files, but DWMX will not.
    The folder in
    > question is
    > the dumping ground for all their self-managed content
    images for their
    > site.
    > So it is hard to split these up into multiple folders
    and expect the code
    > to
    > work properly.
    >
    > Has anyone else experienced this problem? If so, is
    there a solution to
    > this
    > problem with DWMX?
    >
    > Thank you.
    >

  • New releases doesn't display all text

    I've noticed a problem wtih the music store and I can't find any similar problem searching through the archives here. Any help in fixing the problem would be appreciated.
    In iTunes here when I go to the Music Store the "New Releases" box seems to be too small to display all the information. The second row of songs has the artist name cut off except for the very tops of the letters. The "Exclusives" and "Staff Favorites" boxes also trim off the very bottom of the artist names but those are still readable.
    Is there some way to reduce the text size so that I can read the information in the "New Releases" box?
    Thanks for any help.

    Seems like newer updates to iTunes fixed this problem.

  • How to display all tagged photos from the whole catalogue?

    Hi,
    I have been googleling around, but have not found the right information. I am trying to find all my tagged photos of all imported photos, but it would only show the tagged photos from a specific folder when I select that specific folder or from the timeline, in which I already knew that some tagged photos belong in those folders.
    My question is...how can I search tagged photos from the whole catalogue without going through the timeline or clicking each folder and subfolder to view them. I would like that the organizer display all tagged items from all my folders and subfolders at once.
    Sorry if this has been answered and I was not able to find the right forum or information.
    Many thanks in advance!
    Dreamy

    Thanks a lot!

  • Create report in orde to display all pending orders on basis of  "CODE"

    Hi ,
    I need to create report in orde to display all pending orders on basis of  "CODE" ( e.g RC , VP ext)  given on selection screen.
    This "Code" field is on  tcode Me23n inside tab "Release strategy".What is table and relation to fetch ebeln on basis of CODE(e.g RC)
    Regards.

    Hello,
    In SQL Server Reporting Services (SSRS), by default, the chart will only display axis labels for data points in the dataset that contain valid values. Also, if we have values of 1, 2, and 6 on the category axis, we can specify the chart to use a scalar axis
    to maintain the scale of category values. It is add numeric or date/time values to the axis where no data grouping values exist.
    You can refer to the steps below:
    1. Right-click X-Axis, select Horizontal Axis Properties.
    2. Select “Scale(Number/Dates)” below “Axis type:”. Configure “Axis range and interval” as you require.
    You can refer to the screen shots below:
    Preview the report:
    There is an article about Formatting Axis Labels on a Chart, you can refer to it.
    http://technet.microsoft.com/en-us/library/dd239363.aspx
    Regards,
    Alisa Tang
    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.

Maybe you are looking for

  • IPhoto Metadata and the Collage Screen Saver

    I'm loving the new screen savers that came with Leopard, and I like the collage screensaver. I have good information that I entered in the iPhoto "info" box for photo names and dates. However, when I turn on the "Annotated" option in Desktop & Screen

  • N97 pictures show in downloads category

    Hello After I updated my Nokia N97 I needed to do Hard Rest to fix some problems. After I did the Hard Reset all the pictures that I took from the phone camera moved to the downloads category from the captured category. Until now I didn't found a way

  • My Visit to Oracle Developer Forum 2006, India Photos !!

    Last week 11th May, I attended the Oracle Developer Forum held in Chennai. The presentations gave us insights into Oracle Database 10g Express, Oracle JDeveloper, Oracle SQL Developer, SOA, Rapid J2EE Application Development with Oracle Application E

  • Access ODBC link table list ONLY one table

    Hi all, I try to link Oracle tables from Microsoft Access via Link Table. The return list show ONLY one table, which by right it should show ALL tables in my Database. What is the problem here? Anyone encounter this same problem before. My database i

  • Standard report names

    Dear Experts,                   Is there any standard reports to find out confirmation lag and appraisal lag for the given period of dates.... Thanks in Advance, Thanks, Thiru. R