List View Filter - I want to create List View based on a specific user

I want to create a List View Filter based on specified user ID. I dont want to specify the [Me] for filtering the view based in current logged in User.
I want the view to be based on specific user ID for Ex: "AD\JohnDoe"
Thanks
Nate

The People/Group Picker field has several options for how the name is displayed. For example you can set it to be the friendly name or the account name. When you create your View Filter, make sure that you are using the same format as the field's display
type.
Dimitri Ayrapetov (MCSE: SharePoint)

Similar Messages

  • My client want to create realease strategy based on plant for PO

    Hi all,
    1.My clients want to create realease strategy based on plant for PO. Kinldy let me know the the possibilites and steps.If it is not possible let me know the reason so that I can explain to the client
    2.how can I take print of credit note and MIRO kindly let me know  T,code.
    hope to hear back from you all....
    Thanks&Regards,
    chand

    Hi chandysrm ,
    You can creatye Release strategy for plant specfic.
    Create charetestic (CT04) for plant : CEKKO-WERKS.
    Assign with Class (CL02) --032
    Create Rel. Group , Rel. Code & Rel. Strategy.
    create rel. strategy for each different plant.
    In classification view give the plant code.
    [http://wiki.sdn.sap.com/wiki/display/ERPSCM/RELEASE+PROCEDURE]
    [PO Release Resetting after Value Reduction;
    [Separate release procedure for PO and PO under contract]
    [release procedure for contract]
    [release procedure for contract]
    Credit note print out : MR90.
    SAM
    Edited by: Saminathan Gopalan on Jun 9, 2010 10:39 AM

  • OBI crashing when creating a view on an analysis (initially created table view works fine)

    Wondering if anyone else has experienced this. It seems pretty wierd because the initial view gets created.
    This is what happens:
    I create a new analysis. Data source doesn't matter. I have tried Sample App Lite & 2 different Essbase cubes.
    Drop some columns on the criteria
    Click Results. It displays a table view. I can save it and view it etc.
    If I try to create a 2nd view of any type including another table the front-end will hang, displaying "Processing, please wait"
    Logging onto the server we will see that there is a windows dialog box stating "nqssserver.exe has stopped working. Windows can check online for a solution........"
    It eventually times out. I think nqsserver.exe restarts by itself. The view doesn't get created.
    OBI 11.1.1.7
    Any ideas?
    - Daniel

    Hi Daniel,
    We need to dive to much more granular level, to identify the cause for this kind of issue. Some analysis on the coredump (search for .dmp) produced by your windows OS using Windebug utility, running through console~obis1.log etc might have to be done to catch the culprit.
    Note: I do not remember exactly, but there is are configuration steps available in my oracle support, to enable core dump on windows boxes (at least for Dr Watson though!!). You might want to have a look.
    If you think there are any visible messages in the log, you could post here; I could help you read through them.
    Dhar

  • I want to create a Ajax based Chating application using java .

    hi . I want to create an chating Application , and ajax based chatting application using java as my server side language ..i have some idea about it .. but one thing that i m not understanding is that how i will communicate with other users because each user has its own session so what i will do to send one messge to all the users ???? . i m new to JavaEE and i have chosen this as my semester project .. i need some help regarding this .

    First get it working without AJAX.

  • SharePoint 2010 Datasheet View - Filter not displaying correctly on list

    Hi,
    I have a list where I want to filter in datasheet view.  The filter will work correctly when I first open Internet Explorer:
    However, if I open the list again and go into datasheet view I get the following filter which does not display correctly:
    Has anyone else come across this?
    Mark

    Hi Mark,
    please have a try on this kb too:
    http://support.microsoft.com/kb/2760758/en-us
    Regards,
    Aries
    Microsoft Online Community Support
    Please remember to click “Mark as Answer” on the post that helps you, and to click “Unmark as Answer” if a marked post does not actually answer your question. This can be beneficial to other community members reading the thread.

  • Plsql query to list cases that have failed to create listing records

    i would like to create a query as follows
    Give me all docket_num (whose batch_id's are =11051) from Import_case table
    which do not have listing records on Listing_Table (either they don't exist at all
    or if the do; the create_date in the Listing table is null OR cretae_date on Lsting table not = record_process_date on Import_case table.
    -------- x ---------------
    Import_case Table
    ==============
    1. import_case_id number(38) primary key
    2. batch_id number
    3. record_processed_date date
    4. docket_num varchar2(17)
    case_master Table
    =================
    1. case_master_id number(38) primary key
    2. docket_num varchar2(17)
    Listing Table
    ==========
    1. Listing_id number(38) primary key
    2. case_master_id number(38)
    3. created_date timestamp(6)
    note: case_master table is a link between Import_case Table and Listing table
    where docket_num on import_case table = docket_num on case_master
    and case_master_id on case_master = case_master_id on Listing Table
    Please reply at your earliest. Thanking you. Arvind Modi.

    I have used following query, which gives me list of docket numbers on Import case Table; which don't have Listing records on Listing Table.
    ========================================================
    select
    ic.import_case_id as "IMP_CASE_ID",
    ic.batch_id as "B_ID",
    ic.docket_num as "DOCKET#",
    ic.insert_timestamp as "INS_DT",
    ic.record_processed_timestamp as "REC_PROCESS_DT",
    ic.next_date as "NEXT DT"
    from daoimp.import_case ic
    -- ** insert Batch id ** >>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>
    where ic.batch_id=11051
    -- ** insert Batch id ** <<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<
    minus
    select
    t.import_case_id as "IMP_CASE_ID",
    t.batch_id as "B_ID",
    t.docket_num as "DOCKET#",
    t.insert_timestamp as "INS_DT",
    t.record_processed_timestamp as "REC_PROCESS_DT",
    t.next_date as "NEXT DT"
    from daoimp.import_case t,
    case_master cm,
    listing l
    -- ** insert Batch id ** >>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>
    where t.batch_id=11051
    -- ** insert Batch id ** <<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<
    and
    t.docket_num = cm.docket_num
    and
    cm.case_master_id = l.case_master_id
    ==================================================
    The above query gives correct docket_numbers on Import_case table, but it also needs to include Docket numbers on Import_case Table
    whose Listing records in Listing table contain NULL value in created_date
    OR create_date on Listing table not equal record_process_date on Import_case Table.
    ---- x ----
    Here is the actual request and above is my interpretation of it.
    The goal of the task here is to create a tool. The tool can be run to check for missing listing records that were not created during the import process. When run, the tools returns a result set of records (docket_numbers) from the import case table that although processed on a particular date i.e., (record_process_date) do not have a matching listing record i.e., ( a listing record with a create_date equal to the record_process_date).
    The ONLY VARIABLE PARAMETER NEEDED in this tool is the Batch ID for the import case table.
    ---- x ---
    I am working on some other queries using inner join or outer join or not exists, but no success so far.
    Please call me at my phone number or reply on my e-mail, if you like; so that I can clarify any issues.

  • I want to create a duplicate table (button click by user) but instanceManager doesn't seem to work

    I have a table that needs to be duplicated, in whole, not just adding a row, on the next page of a form.
    Scenario: The user enters data (employment history) on the first table but requires an additional page with table to complete all work history.
    1. I've created a simple table (Table1) wrapped in Subform_EmployHistory which is inside SubformMain_Page2. Theses are the object properties; which I haven't done anything to, yet.
    Subform_EmployHistory is Flowed
    Allow Page Breaks is unchecked
    (click on image to see larger version)
    2. I've added a "Subform Instance Controls: Add" button object outside the table and its subform
    3. Have tried to script the button to allow user to create a new page duplicating the table (not duplicating the data they entered on the first page) table but nothing seems to work.
    4. What you see in the next screen clip has not had any script changed or added. Just what shows up when the instance control button is first placed on the page.
    What should my script look like? Or, am I using the wrong approach altogether.
    Penni

    I would try checking your hardware setup to ensure that your playback device is selected and setup properly
    From the main menu select Edit > Preferences > Audio Hardware

  • I want to create a report based on date ranges...

    I have surfed the forum and seen all of the responses and can't get anything to work.
    This is where I am:
    select     OBJECT_ID,
         EVENT_CATEGORY,
         EVENTS_TITLE,
         EVENTS_DATE,
    OBJECT_ID "Click Icon For More Info"
         from EVENTS
    where     EVENT_CATEGORY = :P3_EVENT_CATEGORY and EVENTS_DATE between to_date(:P3_START_DATE,'DD-MON-RR HH:MI') and to_date(:P3_END_DATE,'DD-MON-RR HH:MI');
    When I input actual data for my querry:
    select     OBJECT_ID,
         EVENT_CATEGORY,
         EVENTS_TITLE,
         EVENTS_DATE,
    OBJECT_ID "Click Icon For More Info"
         from EVENTS
    where EVENT_CATEGORY = 'Category 1' and EVENTS_DATE between '04-MAY-06 10:57 AM' and '12-MAY-06 02:27 PM'
    It works!
    Please help

    Either
    1. Make sure the page is submitted so that those 2 items (P3_START_DATE and P3_END_DATE) get saved into session state and can be used by the report
    or
    2. Make sure both the items have the apppropriate Source or Default values defined so that the initial run of the page will display the report properly
    or
    3. Put a condition on the report region to not display until 1 (or both) of those 2 items have a non-null value.
    Hope this helps.

  • Want to create multiple button based on no.of rows

    sir,
    I have one table and it has two columns. First column has Title and second column has Yes / No
    My page should display the no.of buttons with tittle based on the creteria of Yes.
    For example I have 5 rows. second columns has Yes in 3 Rows and No in 2 row
    At the time of opening My page should display three buttons with title. On any event if i change second column value the number of button may change.
    if i add no of rows, no of buttons with title also get changed. Hence creation and display of button should be based on the no.of rows and column value.
    how to achieve it
    yours
    dr.s.raghunathan

    Hi,
    Begin
    for i in (select label,flag from button_table) loop
    if i.flag = 'Yes' then
    htp.p('<input type = "submit" value ="'||i.label||'">');
    end if;
    end loop;
    end;
    where button_table is ur table and label and flag are your columns

  • How to get the search option when we are creating new view

    Hi,
    How to get the search functionality when we are creating new view.
    Ex:- if we see the standard component BT112S_SC. Under this
    AdvancedSP  is the view,
    same kind of view if i want to create new view with same bol entity in my new component. I am unable to get that search functionality.
    for search functionality,,i think view should inherit the super class CL_BTSRV_ADVS_CNTRL, but in my new view controller class, i am unable to find this class.
    Can anybody give me some inputs on this.
    Thanks,
    neelam

    In case you are still not able to proceed please refer the following blog.
    http://blogs.moovar.com/sap/sap-crm-web-ic-create-a-new-search-view-and-result-view
    Regards,
    Harshit

  • Create a view in SharePoint UI to paginate through data on a large list.

    Some of my users are facing a usability issue with SharePoint.
    The problem seems to be that if a list exceeds the threshold. SharePoint gives them the error ... but doesn't allow them to fix it.
    So when the list threshold is exceeded... the user cannot go into the list at all to create a view or to delete old records. 
    They must call in the system administrator who can open bigger lists... but in large companies system administrators are not easily accessible.
    How can user fix the problem himself/herself in case the threshold has increased?
    The second issue is that I want to create a view on a large list that shows 50 items at a time. I don't want to filter (like year = 2013 or age < 10) I don't want to filter but I want to reduce the number of records fetched by means of pagination. Is
    this possible on a large list. (I found many blogs on the web with people using XSLT web part and DVWP..... but none of them work when the list has exceeded threshold). I want a very simple view on the list which takes only 50 items at a time and works with
    large lists.
    val it: unit=()

    In order to handle large lists (over 5000 items) you need to select the fields that you what to show in the view and set them as indexes , you can do it through list settings-> set indexes.
    it might be a problem in an allready large list 'but in a small one - its pretty quick.
    and to create a view'and set the pagination there - use the create view of the list itself and not a dataview webpart or other tool.
    I have tested it in a project of mine in a list of 15000 records and it works , although you can not filter and sort on the view itself but on the view definitions only.
    if the list is bigger then 20000 items - > it is most desireable not to use sharepoint .
    Shlomy

  • Added can be viewed in SQL Workshop but can't when want to create form

    Hi Friends
    We are using APEX 3.1 and Oracle 10.2.0 at back end.
    I can assign other schemas to a work space successfully.
    The Problem is that
    Added schemas can be viewed in SQL Workshop (SQL commands)
    But can not view the added schemas in the list when want to create a form based on table
    Regards
    Jazib

    Closed: duplicate post.

  • Want to populate LIST in the same format as it is coming in the application

    HI,
    I need to create a list on my page and want exactly it the same way as it is getting displayed in the apex application when u open it.
    What are the setting required so that my list appears in the same format as is appearing in the site.
    Is is possible for apex users to create their list in same fashion or this theme is only for apex dev team.
    kindly revert back
    thanks
    Sanjna
    Edited by: user781218 on Aug 11, 2010 2:26 AM

    Hi
    Thanks Again.
    I want to create list in my page in a particular format. I am able to create list in a page, but I donot know what exactly I should select while creating a list so that it gets displayed exactly in the same way as it is getting displayed in the application by default.
    Currenly I am having lists in my webpages but they are getting displayed in some other fashion.
    If you/ anybody can help me showing how to get the list in the format as shown in Apex application
    ( like it has thin verical buttons , and when one select a particular record, it gets highlighted, And records are separated by horizantal lines....I want these features in my list to be displayed in the page)
    Want to know if is there a particular theme that supports it or is it because of some plugin. Am also using the same theme as apex application default theme.
    Regards,
    Sanjna.

  • [CS4] How to create list entries having button using ADM ?

    Hi All,
    I  want to create list box using ADM whose entries can have button. like we see in layer panel, there is a button to select arts of layer as figure shows.
    I tried to use function like  sADMItem->AddItem(listBoxRef,linkButton)  but there is no effect.
    plz suggest how to do so.
    Thanks

    You can do this, but its a lot of work.
    First, you can't add buttons to list entries. Second, that's not an ADM list in the Layers panel, thats an ADM Hierarchy Control. If you have no children of top-level items, then it will look like a list.
    To do this, you'll need to use an ADM Hierarchy Control and you'll have to implement the Draw() routine of the entries of said control. It'll be up to you to draw everything -- the icon, the text, etc. Then you can also draw your 'button'.
    Next, you'll need to implemented the Track() routine. You can have it do the default for most things, but you'll need to check for clicks and see if they're in the bounds of the 'button' you drew. If so, you can do whatever you want that button to do (and change some state that makes the button draw differently). I don't reccommend animating the press of the button, though that's probably doable (its likely very hard though).
    The code for this is quite extensive, but I'd look at IADMHierarchyList.hpp & BaseADMHierarchyList.hpp/cpp in the SDK directory. You'll be sub-classing those guys to do all this. I don't know if there's any sample code demonstrating this or not.

  • How to create list entries using ADM ?

    Hi All,
    I  want to create list box using ADM.
    Thanks

    Thanks for the reply.
    Sorry for the simple question.
    What is the theme used in Adobe Illustrator CS6?
    And then I started programming in Flash Builder 4.6 and the panel is obtained with the other buttons.
    Or how to move the theme Adobe Illustrator CS6 in my project?
    Thanks

Maybe you are looking for

  • Skype Account Hacked - Will this affect my Microso...

    Last Wednesday, I received an e-mail receiving confirmation of my password change, and confirmation of my new e-mail address.  Of course, I had changed neither and contacted Skype to let them know that someone had hacked my Skype account. Several exc

  • Disable auto Pick confirmation for EK00 output - Outbound Delivery

    Hello experts, Need help with Outbound Delivery Picking output typ EK00, I have setup the output type to be triggered automatically upon Delivery creation, It's printing the pick List as desired, But the problem is it's also confirming the Pick quant

  • How to determine SOST details

    Hi All, Can you tell me the table names from where i can find if mail has been received by recepient successfully or not from SOST. How can i determine the status of the message aswell. Thanks & Regards

  • Itunes gobbles my cpu

    When I play music, my CPU light flashes like crazy and when it does, my music skips like crazy. All was fine until I changed playback features. Well, turning them all off hasn't fixed the problem. Help?!

  • HCM : workflow not triggered

    Hi expert, when i tes my process (hcm fomrs and porcess), i have thi error message Workl item not created !! the worklfow is customze correctly (te exit, type linkage is ok, su53 too) ? what could be the raison ? Thanks