Need to get a list of iViews under a specific package folder

Hi,
I am working on EP 7.0 and NWDS 7.0 version 9.
We have a requirement to fetch the names, descriptions, pcd paths of all iViews that exist under a specific folder in EP. This needs to be achieved in Web dynpro. I have searched the forum but everywhere it gives a solution to do it in dynpages. The dynpage code doesn't work in Web dynpro since i need to get request object in that code piece which is not available in web dynpro. Can someone please help me to achieve this in Webdynpro?
or if someone can tell me how do i get request object in web dynpro so that i can do request.getUser() to get a IUserContext object which can later be used to set the principal and get the list.
All help will be highly appreciated.
Thanks,
Prachi

chk it
Getting Request Object in WebDynpro

Similar Messages

  • Need to get a list of PSA tables and change log tables existing in a PC

    Is there a standars table to look up all active DSOs and the change log tables associated to those DSOs?
    and also Data sources and the PSA tables associated to that DS.
    I need to get a list of PSA tables and change log tables existing in a processchain(whioch deletes the data in them time to time)how do I do this in a quicker way?
    Thanks in advance

    Hi Ramya
    Check  RSTSODS table with filter of  User App   CHANGELOG ---> For change log tables

  • Need to get catalog item from MDM of a specific supplier

    Hi gurus,
    i need to get the list of catalog item from MDM of a specific supplier,
    user will give the supplier and i need to bring the list of the catalog item
    that belong to the supplier that the user gave me,
    through abap.
    is anyone can help me with wich class+method do i need to use if i have the supplier name or id?
    thanks in advanced,
    dana.
    Edited by: dana leving on Jan 10, 2011 3:59 PM

    Hi Dana.
    You can achieve this through MDM Webservices.
    1. Create a MDM Webservice
    2. Configure the tables and list the list of fields which you want to retrieve
    3. You can specify the search criteria as well(supplier=XXX)
    4. Generate it and save it
    You can deploy the application in your landscape and call this webservice from your custom application to create shopping cart.
    The below link will give you an insight of MDM Webservices.
    http://help.sap.com/saphelp_nwmdm71/helpdata/en/45/018c03166a0486e10000000a155369/frameset.htm
    Hope it helps.
    Regards
    Bala

  • Hi ,How can I get a list of all laptops or users with folder direction enabled or offline files enabled, be it sccm or poerwshell . i have struggled for a week.

    Hi ,how can I get a list of all laptops or users with folder direction enabled or offline files enabled, be it sccm
    or poerwshell . i have struggled for a week
    tchocr

    Hi,
    There is no such PowerShell command can achiev this. Maybe you can use a script to get the user name with folder redirection enabled. However, I am not familiar with writing script, and it would be better for you to ask in script forum below for professional
    assistance:
    http://social.technet.microsoft.com/Forums/en-US/home?forum=ITCG&filter=alltypes&sort=lastpostdesc
    Best Regards,
    Mandy
    Please remember to mark the replies as answers if they help and unmark them if they provide no help. If you have feedback for TechNet Subscriber Support, contact [email protected]

  • How can I get a list of all laptops or users with folder direction enabled or offline files enabled, be it sccm or poerwshell . i have struggled for a week.

    How can I get a list of all laptops or users with folder direction enabled or offline files enabled, be it sccm or poerwshell . i have struggled for a week.

    Hi,
    There is no such PowerShell command can achiev this. Maybe you can use a script to get the user name with folder redirection enabled. However, I am not familiar with writing script, and it would be better for you to ask in script forum below for professional
    assistance:
    http://social.technet.microsoft.com/Forums/en-US/home?forum=ITCG&filter=alltypes&sort=lastpostdesc
    Best Regards,
    Mandy
    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]

  • I need to get a list of sites I've visited from my home desktop computer while in private browser mode. I need all sites from 2011 & 2012

    I need to get records of websites I visited for 2011 & 2012 while private browsing on Mozilla firefox. The info page said although this info would not be recorded onto my computer there would be records of these websites through the Internet provider. How do I obtain these records?

    Your ISP's systems keep a running record of all requests and responses through your internet connection. How long these are preserved will vary. Please note, however, that these records might not be available to you even though you are their customer; they might limit access to law enforcement or other requests accompanied by a subpoena. You could contact your service provider and see what they are willing to do for you.
    Note: Your ISP would have no idea which requests were made in regular browsing mode versus private browsing mode because it looks identical from where they are. You would have to figure that out for yourself.

  • Need to get the list of all procedures called in an object

    Hi,
    I am trying to find the list of all proceudres called in an object. I can get the list of packages and individual procedures/functions using dba_dependencies, all_dependencies or user_dependencies. However this would not give me the list of procedures of a package that are used in my object.
    How to find the procedures of a package (and not just the package name) being called in another object?
    Thanks in advance
    Upendra

    You can take the package name from user_depencies and query the USER_SOURCE table for the object name where the package name exists.
    Eg code, here PKemp is the package name.
    SELECT SUBSTR(TEXT,INSTR(TEXT,'PKEMP'))
    FROM USER_SOURCE
    WHERE NAME = 'PROCEMP'
    AND INSTR(TEXT,'PKEMP') >=1
    SUBSTR(TEXT,INSTR(TEXT,'PKEMP'))
    PKEMP.SALUP;

  • Need help getting a list of named users

    Hi all, is there a way to get a list of all named users in the system?  I can't find any filters for it in the management console. 

    run this query in query builder.
    SELECT si_name FROM CI_SYSTEMOBJECTS WHERE SI_KIND = 'USER'
    AND SI_NAMEDUSER=1

  • Getting a list of users and permission from a folder

    I run this command to get a a list of users and permission from a folder
    $project_folder = "\\servername\foldername"
    get-acl $project_folder | %{ $_.Access  } | ft -property IdentityReference, AccessControlType, FileSystemRights > folder.csv.
    This only lists information for 1 folder.
    If i have multiple folders how should the code be modified?

    this is the code i am looking for 
     $project_folder
    = "\\servername\foldername\foldername1"
    get-acl $project_folder | %{ $_.Access  } | ft -property IdentityReference, AccessControlType,
    FileSystemRights > folder.csv.
    I  run this code and this gives me the information for only the folder 'foldername1'.
    Ex. i need a list of users who have permmission in \\servername\foldername\foldername2.
    i run the code and it gives me the permissions and list of users in foldername2.
    This is the issue
    IF there are multiple folders \\servername\foldername\foldername2, \\servername\foldername\foldername1,
    i need to run the code each time for 1 folder. 
    is there a command where i can combine the path of these 2 or more folders and export
    it to csv
    Ex.  $project_folder
    = "\\servername\foldername\foldername1",
    "\\servername\foldername\foldername2"
    get-acl $project_folder | %{ $_.Access  } | ft -property IdentityReference, AccessControlType,
    FileSystemRights > folder.csv.
    This will give me the list of users and the type of access they have in foldername1 and
    foldername2

  • How do I get a list of the most recent upgraded packages?

    Hi there,
    I want to get a list of the last upgrades using pacman.
    I´ve been looking for a way to do it in the man page, but either I´m blind or there is not such an option.
    I know that I can just do:
    ls --sort time /var/cache/pacman/pkg/|head
    But what if I clean the cache regularly?
    Does the pacman database store the upgrade or installation date for each package? If so, how can I access this data?
    Cheers,
    Edit: I know that "pacman -Qi" gives me the date of installation of individual packages, but what I want is to be able to sort the list of all installed packages by date.
    Last edited by samhain (2008-04-30 11:41:19)

    dolby wrote:/var/log/pacman is the file you want
    Thanks.
    cat /var/log/pacman.log | grep "] upgraded" | tail
    Gives me what I need
    I would prefer if pacman had some option for sorting the queries, but for now, this will do fine.

  • How do I get a list of users for a specific role in EP 6.0

    Hi,
    I'm trying to find a table or an API that I can use to get a list of users for a role that I have created in the portal. There are about 940 users tied to this role that I would like to dump to an excel or text file. My goal is to get these users into a security group and tie the role to the group instead of each user. Thanks!

    Hi Chris,
    first, welcome on SDN!
    UMFactory.getInstance().getRoleFactory(roleID).getUserMembers() returns the users which are members of the role, see http://media.sdn.sap.com/html/submitted_docs/60_sp2_javadocs/ume/com/sap/security/api/IRole.html
    addGroupMember(...) adds a group.
    removeUserMember(...) removes a user from a role.
    Corresponding method exist for the groups.
    Hope it helps
    Detlev
    PS: Please consider rewarding points for helpful answers on SDN. Thanks in advance!
    PPS: Wrong forum, should have been EP DEV for example. It's not a question in conjunction with KM.

  • Need to get rid of blue line under image

    Hi,
    I've created a table with a row and three columns also I've placed splitted a button into three pieces and placed left portion in 1st column and right portion in last column and I've placed a piece of background image with repeat-x in middle column. I need to link the button used javascript to rollover the button with another three piece of buttons, so I've linked the whole with <a> tag and given "border=0" for <img> tag, now I get a blue bar (seems linked) under the background images that I've used in the middle column, could you please help me to get rid of the blue line.
    Thanks in advance

    Hi Nancy,
    Thanks for the response. Below is my code. What I exactly need is to link the whlole button instead of only the text "Buy Now". The mean time I dont want to use <img src="" border=0"> for the middle column since the text "Buy Now" should be dynamic and can be changed, so that I've used a background image instead of a <img> tag.
    <div id="subdiv6">
                        <!-- Start of Div6 -->
                            <a href="javascript:void(0)" onmouseover="ShiftTo('subdiv7')">
                                <table width="100" border="0" cellspacing="0" cellpadding="0">
                      <tr>
                        <td align="left" valign="top"><img src="images/butoverl.png" border="0" width="16" height="45" /></td>
                        <td align="center" valign="middle" background="images/butovermid.png" class="proddemo">BUY NOW</td>
                        <td align="left" valign="top"><img src="images/butoverr.png" border="0" width="16" height="45" /></td>
                      </tr>
                    </table>
                            </a>
                        <!-- End of Div6 -->
                    </div>
                    <div id="subdiv7">
                        <!-- Start of Div7 -->
                            <a href="javascript:void(0)" onmouseout="ShiftTo('subdiv6')">
                                <table width="100" border="0" cellspacing="0" cellpadding="0">
                      <tr>
                        <td align="left" valign="top"><img src="images/butl.png" border="0" width="16" height="45" /></td>
                        <td align="center" valign="middle" background="images/butmid.png" class="proddemo">BUY NOW</td>
                        <td align="left" valign="top"><img src="images/butr.png" border="0" width="16" height="45" /></td>
                      </tr>
                    </table>
                            </a>
                        <!-- End of Div7 -->
                    </div> 

  • How to get a list of files under C:\Program Files?

    dir C:\"Program Files" in DOS will get me a list of files in the directory. But how could I do in Java to get the some results? To put it in two double quotes, does not work.
    Any suggestions?

    Here is a small Java program that will read the contents of any directory for you:
    readDir.java
    ==========
    import java.io.*;
    public class readDir {
       public static void main(String[] args) {
          try {
             String[] dirArray=new File(args[0]).list();
             for (int i=0;i<dirArray.length;i++) System.out.println(dirArray[ i ]);
          } catch (Throwable exception) {
             exception.printStackTrace();
    }Just compile the program and run it as follows:
    java readDir "C:\Program Files"
    ;o)
    V.V.

  • Need to get a listing of all users and their corresponding Exchange 2013 Mailbox Quotas using Powershell

    I will be changing the default quota on mailboxes soon, but there are a number of others who have "customized" quotas and I will need to identify them also.
    Charlie

    The following powershell command can get you the mailboxes that are using "custum "quota:
    Get-Mailbox -Resultsize unlimited | where-object {$_.UseDatabaseQuotaDefaults -eq $false}

  • Need to get a list from EJb and then display it on my jsf

    I have the following entities:
    _AP.java_
    private String date;
    private AV av;
    _AV.java_
    private List<AC> aCList;
    _AC.java_
    private CTList cTList;
    private AQList aQList;
    private String amount;Now to render the String date on my jsf I have used the following syntax which is rendering correctly.
    <tr:outputText rendered="#{pD.date != null}"
                       value="#{pD.date }"/>What I want to know is that how can I display the list ctList, aQList and amount on my jsf.
    Any help would be appreciated

    If those are all instance of List, then you can use h:dataTable for that. Also see this article for some pointers: [http://balusc.blogspot.com/2006/06/using-datatables.html]

Maybe you are looking for

  • Kenwood X991 & iP200 cable with iPod 5th Gen 80GB does NOT work correctly

    I have a conundrum. My wife has the 4th Gen v1.2.1 iPod 30GB which works fine on my Kenwood X991 Head Unit. I recently purchased the "new" 80GB iPod 5th Gen with the latest version "1.0.2" which does NOT work properly. The iTunes software tells me th

  • CREATE MATERIALIZED VIEW - TABLE OR VIEW DOES NOT EXIST

    Anybody can help me? Why could this happen? SQL> CREATE MATERIALIZED VIEW LESTARI.YIELD_BI_ACTUAL_PLAN_BLOK_MVU 2 TABLESPACE MVU 3 NOCACHE 4 NOPARALLEL 5 REFRESH FORCE 6 START WITH TO_DATE('19-APR-2005 18:00:00','DD-MON-YYYY HH24:MI:SS') 7 WITH PRIMA

  • Ipad wifi connection problem

    When I first started my ipad a few weeks ago, I set up the wifi I have at home, no problem. But yesterday and today I have had intermittent problems with the wifi not working on my ipad. It gives me the message, no connection and then asks for my pas

  • Missing content of BI statistics table?

    Hi, Recently ( Two months back ) we have upgarded our BW system To BI 7.0 and also activated its Technical content! But the Table RSDDSTAT_OLAP has so many objects lists missing in its contents like infoprovider, Processchain, etc-- How to activate t

  • Looking for a Firewire interface with Midi Connectivity?

    If I play my cards right, I should be able to afford an M-Audio 410. But if that doesn't work out, is my only other option in a lower price bracket the Tascam FireOne?