How to hide an object in Agentry list screen

Hello,
I want to know if it is possible to hide an object in a screen list view.
For example, I update an object and fill in DeleteStaus field with "L" (mean that object is deleted) and hide it right after I mark it as deleted, then transmit it to Agentry server to get the marked field and in turn transfer it to SAP server.
Thank you very much.
Tags edited by: Michael Appleby

PG Ngu,
Steve was correct, but his rule was little off.  try it like this:
NOT
     EQSTR
          Whatever Object -> DeleteStatus Property
          L
The 'L' above is a constant.  Do not use quotes.  Add this as the include rule on the List Screen.
Jason Latko - Senior Product Developer at SAP

Similar Messages

  • How to Hide some Rows in a List view Web Part using JavaScript ?

    How to Hide some Rows in a List view Web Part using JavaScript ?

     Here is the code that worked for me:
    var Elements = document.querySelectorAll('div[id=WebPartWPQ3] table[class=ms-listviewtable]>tbody tr .ms-vb-lastCell.ms-cellstyle.ms-vb2')
    for(var i=0, n = Elements.length; i < n; i++)
     if(Elements[i].innerHTML=="India")
    Elements[i].parentNode.setAttribute("style","display:none")
    WebPartWPQ3 -> ID of webpart Div
    ms-listviewtable -> class name of table in Div
    ms-vb-lastCell.ms-cellstyle.ms-vb2 -> classname of td to get text

  • How to hide ,unhide columns  in ALV List

    Hi all,
    How to hide ,unhide columns  in ALV List..
    Plz guide me.
    Thanks in advance..
    Albert

    Hi Joseph,
    Check the following thread:
    Hide Unhide columns of ALV grid Report.
    Regards,
    Archana

  • How to hide Compounding object in report

    Hi friends
    We want to display region in our reports , But when I execute the query region is coming along with county (eg: US/TX , US/CA etc..) ...this is because of country is a compunding object of region...Can any body let me know how to hide country ...We just want to show TX,CA etc..
    regards

    Please search...this has been answered many times here.

  • How to Hide advance button in input list of values Popup

    I am using input List Of Values component to select value from search Pop up, in that popup i need only basic search only , i am unable to hide advance button... plase tell me how to hide this advance option

    I haven't tried this, but check
    How to remove basic/advanced button in inputListOfValues search dialog
    This does not have complete solution, but might give you some lead.

  • How can I delete objects in my list of purchased objects?

    How can I delete objects like books or music from my list of bought items?

    You can't.
    Being able to do so would NEGATIVELY affect Apples iCloud system of memorizing all consumer purchases as a means of storing such info in the Cloud.

  • How to hide views in a SharePoint2010 list by using out of box solutions only

    Hi,
    I work on a Time Reporting tool which is used by the users to submit their time sheet twice a month.
    The submission of time sheet is done through a MS INFOPATH 2010 form. The data then gets submited to a List named "Time Sheet List".
    This list has several important views already existing. These views had been created by the designer (not me) .
    Currently if an user submits his/her time report once,then they cannot edit/delete it. Only the admins [Me one of them] can do any kind of modifications. 
    I am working on giving the users access to edit/delete their own time report for the current month only.
    I have created a view "Edit Time Sheet" which will show the user only their own time report for the current month only.
    Now the issue is how do i provide permission to the list "Time Sheet List" so that only the "Edit Time Sheet"
    view is visible to the users and the other views are hidden from all users except the admins .
    If i provide edit permission to the whole list then all of the views will become editable which is not wanted.So, i just want the users to see "Edit Time Sheet" view so that they can only modify their own time sheet for
    the curent month.
    Please let me know how i can achieve this through out of box solution as i donot have any dev environment installed in my system. I have only MS INFOPATH2010 and SharePoint Designer 2010 in my system.
    Regards,
    Anena Das

    Hi Anena
    There is no OOTB approach to achieve the same , one simple work around would be
    Edit the view (Site Actions->Edit page) you will see your List view webpart there . Edit the Webpart Properties and Set the "Target Audience". Mention the SharePoint groups in there or users who should view the list view.
    So when a user who is not a part of the target audience navigates to this page , they will not see the list View. You can show some custom message to them "You are not authorized to view this".
    As I mentioned it will be just a work around if u dont want to use Javascript/jQuery and custom components/
    Thanks and Regards,
    Nandini

  • How to hide one object within a group

    Is it possible to show/hide one object within group using the Timeline? I don't need to hide it in output, just need to show/hide it in the Timeline for convenience while working on a slide.

    It's funny that they will let you expand/collapse the group in the timeline window, but not edit visibility. At any rate, I suggest you enter a feature request and/or bug report here: http://www.adobe.com/go/wish
    The more people that bother them about it, the more likely they are to fix it.

  • How to hide the fields in the selection screen

    hi please let me know how to keep hide the fileds in the selection screen  i.e in display mode, for the condition

    Hi Sudhir,
    Check the below code.
    tables: pa0000, pa0001.
    parameters: p_chk1 as checkbox user-command rusr,
    p_chk2 as checkbox user-command rusr,
    p_chk3 as checkbox user-command rusr,
    p_chk4 as checkbox user-command rusr,
    p_chk5 as checkbox user-command rusr.
    selection-screen: begin of block blk1 with frame.
    select-options: s_pernr for pa0000-pernr modif id ABC,
    s_stat2 for pa0000-stat2 modif id DEF,
    s_werks for pa0001-werks modif id GHI,
    s_persg for pa0001-persg modif id JKL,
    s_persk for pa0001-persk modif id MNO.
    selection-screen: end of block blk1.
    AT SELECTION-SCREEN output.
    LOOP AT SCREEN.
    IF SCREEN-GROUP1 = 'ABC'.
    IF p_chk1 = 'X'.
    SCREEN-ACTIVE = 1.
    ELSE.
    SCREEN-ACTIVE = 0.
    ENDIF.
    MODIFY SCREEN.
    ENDIF.
    IF SCREEN-GROUP1 = 'DEF'.
    IF p_chk2 = 'X'.
    SCREEN-ACTIVE = 1.
    ELSE.
    SCREEN-ACTIVE = 0.
    ENDIF.
    MODIFY SCREEN.
    ENDIF.
    IF SCREEN-GROUP1 = 'GHI'.
    IF p_chk3 = 'X'.
    SCREEN-ACTIVE = 1.
    ELSE.
    SCREEN-ACTIVE = 0.
    ENDIF.
    MODIFY SCREEN.
    ENDIF.
    IF SCREEN-GROUP1 = 'JKL'.
    IF p_chk4 = 'X'.
    SCREEN-ACTIVE = 1.
    ELSE.
    SCREEN-ACTIVE = 0.
    ENDIF.
    MODIFY SCREEN.
    ENDIF.
    IF SCREEN-GROUP1 = 'MNO'.
    IF p_chk5 = 'X'.
    SCREEN-ACTIVE = 1.
    ELSE.
    SCREEN-ACTIVE = 0.
    ENDIF.
    MODIFY SCREEN.
    ENDIF.
    ENDLOOP.
    *Note
    *Titles for check boxes and select options
    *P_CHK1 Personal Number
    *P_CHK2 Employment Status
    *P_CHK3 Personnel Area
    *P_CHK4 Employee Group
    *P_CHK5 Employee Sub group
    *S_PERNR Personal Number
    *S_PERSG Employee Group
    *S_PERSK Employee Sub group
    *S_STAT2 Employment Status
    *S_WERKS Personnel Area

  • How to display user define value in list screen from detail screen

    Hello Experts
    I am working on task in which i have to display the user define value on list screen. like i have one list list screen which have one button for add..once i click on add which navigate to detail screen and detail screen has two fields one for ID AND other for name and detail screen has one button for save once i put value for id and name and click on save button which will navigate to previous list screen and those values which should be display on list screen.
    Regards:
    Sumit

    Hi Sumit,
    To navigate to the Master page on button click , you need some thing like,
    oSplitApp.toMaster("masterpage_id");
    to understand the navigation for Master/Detail page , have a look at,
    http://help.sap.com/saphelp_uiaddon10/helpdata/en/df/adb6b7247e4826b0fcde472b029840/content.htm
    Also to pass value from Detail page to Master page, you can use a Global variable to store your values on click of the Save button. For eg. You may have a global JS file which both Master and Detail page can access like App.Js, Application.JS etc.
    After navigating to the Master page, you can read the Global variables and show it on your Master page.

  • How  to  hide a block  from a  selection screen.

    Hello Friends,
      I have a new reqirement in which a main program has two transactions.
    Both the transactions have the same fields and parameters.
        Now I am asked to add some fields in only one transaction without disturbing  the other txn.
    For this I have created a block and added two fields. But now i want to hide this block for the 2nd transaction.
    So please guide me for this...
    Thanks in advance.

    Hi Sapna,
      If you hide all the fileds that are in a block then that block should also get hidden as far as I know. have you tried assigning a MODIF ID to all the fileds and then using
    SCREEN-GROUP1 = 'GROUP NAME'
    SCREEN-ACTIVE = 0.
    This should work if this is not working then check if you can use the block name and hide it in LOOP AT SCREEN.
    Hi I has juse checked this code and it hides the block also.
    SELECTION-SCREEN BEGIN OF BLOCK b1 WITH FRAME TITLE text-001.
    PARAMETERS: par1 TYPE spfli-carrid MODIF ID par.
    PARAMETERS: par2 TYPE spfli-connid MODIF ID par.
    SELECTION-SCREEN END OF BLOCK b1.
    AT SELECTION-SCREEN OUTPUT.
      LOOP AT SCREEN.
        IF screen-group1 = 'PAR'.
          screen-active = 0.
          MODIFY SCREEN.
        ENDIF.
      ENDLOOP.
    MODIFYING your code
    <b>SELECTION-SCREEN BEGIN OF BLOCK PARAMETER WITH FRAME TITLE TEXT-053.
    PARAMETERS:
    P_1 LIKE t-f1 DEFAULT 'USD' MODIF ID par,
    P_2 LIKE t-f2 MODIF ID par.
    SELECTION-SCREEN END OF BLOCK PARAMETER.
    AT SELECTION-SCREEN OUTPUT.
      LOOP AT SCREEN.
        IF screen-group1 = 'PAR'.
          screen-active = 0.
          MODIFY SCREEN.
        ENDIF.
      ENDLOOP.</b>
    Regards,
    Sesh
    Message was edited by:
            Seshatalpasai Madala

  • Agentry - list screen stylesheets (selected row, selected no focus row)

    Hi!
    I'm trying to add a rule on list screen style sheet for "selected rows" and "selected no focus rows". The same rule with stylesheet is working fine on "highlight rows" but is not working at all on those two. I've tried to set the rule both on screen and on platform but nothing is happening.
    The reason for doing this is that I want some rows to have a different colored text also when they are selected or selected but not in focus.
    Has anyone any experience of this not working or suggestions on what to do?
    I browsed the forums for anyone with similar problems and found that changing background color is not working but since this is the font text I thought maybe...
    Thanks in advance,
    Daniel
    Tags edited by: Michael Appleby

    Daniel,
    I tried playing around with it and see what I think is the behavior but after trying it I don't think it is possible.  The intent of the selected or selected no focus styles is to provide a visual indicator to the user of what rows have been selected compared to the other rows on the screen.   For a list screen I don't believe you have the granularity to set different styles for each selected row.
    Now, if you were using a tile list control, I do believe there you can control it since you can set the styles at the field level to control the text color.  Not sure if that is an option for your application but something to consider.
    --Bill

  • How to hide two fields in SharePoint list when a dropdown value selected?

    Hi all,
    I have a SharePoint list which have four columns 1 Title 2.Type (Dropdown: option1:Issues Option2:Risk) 3.Risk Name and 4.Risk type. If 'type' value is 'Issues' then I need to hide field 3 and 4. In other words, default value in dropdown should be 'Issue'
    and want to hide field 3 and 4 are onload without using InfoPath.
    How to achieve this? Thanks in advance!

    You can make use of jquery for the same. Add script editor webpart on the page and access the dropdown value and based on the value you get, show or hide the fields. Below are some pointers.
    http://sachinvkatkar.blogspot.in/2013/02/hide-fields-from-sharepoint-newform.html
    http://social.msdn.microsoft.com/Forums/sharepoint/en-US/50aa6f8d-f742-4400-82f3-7949ab1c215e/need-help-manipulating-form-fieldsrows-using-jquery?forum=sharepointdevelopmentprevious#802d9d4d-c19b-4752-a4fb-e38f40f50c51
    http://social.technet.microsoft.com/wiki/contents/articles/21730.sharepoint-2010-conditionally-hide-fields-on-standard-list-forms-using-jquery.aspx
    http://sharepointnadeem.blogspot.in/2013/09/sharepoint-showhide-list-column-based.html
    Geetanjali Arora | My blogs |

  • How to hide compounded object values in columns ?

    Hello Everyone,
    I have one MD object called depreciation area which has 3 objects in compounding tab called company code, asset and asset sub number.
    When I try to add depreciation area in columns part of Bex query, I see that there are multiple columns comming up for same depr area.  This is possibly because there are multiple entries in the SID table for same depreciation area and different combination of company code, asset and asset sub number.
    I want to avoid this and only display columns with unique depreciation areas i.e one column for each depreciation area.
    I am using BI 7.0.
    Can anyone help me with this.
    Thanks,
    Vijay

    Hi Pravender,
    These three objects are used in rows part also and there are selections given to these objects.  So I cannot restrict them to a set of values, since I am using variable to get input value from.
    Thanks,
    vijay

  • How to hide remote music from itunes list?

    I have a NAS in my network that hosts most of my music albums. I added these to itunes but without copying to my harddrive due to limited space on my HDD. Whenever the NAS is turned off or I am not in my home network iTunes still displays all the titles obviously but whenever I click on it it freezes for 15/20 seconds, then tells me that the connection to th NAS was not possible and asks if I want to search for the new location.
    Especially the freezing is verry annoying since there is no way to see if the media location is local or remote.
    Is there any way to filter all media and separate between local an remote media with a click of a button, hiding all remote media if I know my nas is not available and by this not showing any serach results in my library form the remote NAS?

    Hi there poffel78,
    You can use the "Show iTunes in the Cloud purchases" check box found under iTunes > Preferences... > Store to hide or display items purchased from the iTunes Store that haven’t been downloaded to your computer. Take a look at the article below for more information.
    iTunes 11 for Mac: iTunes Store preferences
    http://support.apple.com/kb/PH12263
    -Griff W.

Maybe you are looking for

  • I want a new MacBook. now which one?

    I'm new to the community, and I figured it wouldn't hurt to ask. I've seen LOTS of similar questions, but mine is a bit more specific. I'm a High School Senior, and I've had my trusty '09 13-inch MacBook Pro since it first came out. The thing is, I s

  • I am trying to load the 64 bit version of iTunes on to my PC but it continues to fail. My Pc is running Windows XP x64 edition. The rrror message states I need Window Vista 64 or later. What should I do?

    I am trying to load the 64 bit version of iTunes on to my PC but it continues to fail. My Pc is running Windows XP x64 edition. The rrror message states I need Window Vista 64 or later. What should I do?

  • Copying wrong tax code

    Hello Experts,                                Whenever i create A/R Credit Memo from A/R  Sales Invoice the tax code of A/R Sales Invoice gets wrongly copied to   A/R Credit Memo always as Exempt tax code Ex A/R Sales InVoice - Tax Code VAT 12.5 Copy

  • Stroke color of line in LineChart

    How to change the color of line in line chart, from ActionScipt??? I've found an example of how to change the stroke of horizontal or vertical axis, but I just can't find anything clear, how to change the chart line!!!! There are many, many propertie

  • IPhoto 5 problem

    Had problem with disk burning this am, and now getting message that "The photo library was created with an unrreleased version of iPhoto. Tells me to please quit and upgrade this library by openiing it in iPhoto 2 or iPhoto 4. I have iLife 05 loaded