How to hide fields which is visible on screen only

Hi,
One of my template contains some controls that are set as visible on screen only, like the reset button. They are used for blank interactive form only. But when combined with xml data file,I donot want the use will see those controls when they review the output pdf file on the screen. Does anybody know what configuration I should set on/off to make it work. I still needs those controls set as visible on screen only. Thanks
Haoming

Haoming,
I do not think this is the right place to ask this question. If you are asking a Flex question, you should try here:http://forums.adobe.com/community/flex
Tom

Similar Messages

  • PLM UI: How to hide fields in Create Engineering record screen?

    Hi Experts,
    I have an requirement, where I need to hide fields that are present in "Create Engineering Record" screen, I need only 4 to 5 fields among them I want remaining fields to be hidden.
    Please kindly help me in achieving this.
    Thanks in advance!
    Thanks and regards,
    Prathyusha Rudraraju

    Hello Prathyusha,
    I assumed that you want some fields to be invisible for all scenarios so i suggested the option of configuration instead of enhancing the SAP Standard component.
    and i would copy paste what i already wrote
    "So if your use case includes that fields needs to be hidden for all users and for all clients you should go for Configuration
    and if it is only for selected clients you could go for Customization.
    and if it is only for selected users you could go for personalization "
    I am sorry i completely overlooked that you want to achieve that as per user role, i would suggest you to read about Access Control Management, and revisit whether you want to change the UI or you dont want to display data as per user role and all those operations update create as per the role.
    Impact of ACM on the Work with PLM Web UI - Authorizations and Access Control Context (PLM-WUI-APP-ACC) - SAP Library

  • How to hide fields in Table maintenace screen

    I have created a view with table maintenance generator. I would like to hide some fields. With event I am able to fill in those fields but I want to hide those from screen.

    HI, 
    This is reff with ur below post, I have been stuck with same problem,
    I got your code, how its functioning, but didn't get get where i have to write it.
    plz tell me in brief.
    Thanks in Advance.
    Regards
    Vivek
    Re: How to hide fields in Table maintenace screen  
    Posted: Feb 6, 2009 11:42 AM   in response to: Aarti Ramdasi in response to: Aarti Ramdasi           
    Click to report abuse...             Click to reply to this thread      Reply
    Hi,
    You can hide the fields like this..
    For example
    select-options:
    s_carrid for spfli-carrid modif id gr1,
    s_connid for spfli-connid modif id gr1,
    s_cityto for spfli-cityto modif id gr2.
    I am going to hide last fied..To do this
    at selction-screen output.
    if s_carrid is initial or s_connid is initial.
    loop at screen.
    if screen-group1 CS 'GR2'.
    screen-active = 0.
    modify screen.
    endif.
    endloop.
    endif.
    whenever u click on any one of the field i.e. carrid or connid the third field will displayed.Otherwies the last field cityto is not visible initially
    Regards
    Kiran

  • How to hide fields in UIX form

    Hi
    I need to update the table with last_updated_by and last_updated_date every time if any change to the record. But I do not want to show these 2 fields on the screen.
    Could you help me how to hide fields in UIX form/any procedure to insert the data to database with out placing them in the screen .
    Thanks in advance.
    NRK

    Now that you mention it ... the rendered flag will stop the field from being rendered. So it's not even in the page. Stupid me.
    Have a look at formValue. These are rendered, but invisible fields in a form. That should do it (hopefully).
    In prepareForDML() you could simply call the setter of your date attribute that stores the date of the last update. There you pass the current date, or you could fetch the sysdate from the database and pass that. If you go that way, then the EntityImpl could make these adjustments automatically when inserting or updating and you wouldn't even need these fields/bindings in your UIX page.
    Just check what the operation is, and if it's an update or insert then call the setters of the attributes you want to update. Then call super.prepareForDML(). Something like that.
    It all would happen in the middle-tier, client not involved.
    So formValue should work, and the prepareForDML() stuff should also work. Don't know which way you want to go.
    Sascha

  • How to hide fields on Sourcing cockpit

    Hi,
    Our client wants to hide some of the fileds in the  Souricng cockpit which they are not using by their purchasing department. example contract, auction, info rec etc in Sourcing cockpit
    How to hide this fields in Sourcing cockpit?
    They wants to bring internal note to soucing cockpit sceen, it is time cossuming for Puchasing department to drill down to each SC line item in Sourcing cocpit to see internal note for SC having 100+ items.
    Thanks
    Ravi

    Hi Ravi,
    You can even use the Screen variants to hide the standard fields on sourcing cockpit.
    Go to transaction SHD0--> Screen Variants.
    Transaction Code: BBPSOCO01
    To hide fields on the worklist the screen variant is BBP_SOCO_WL. Make a Z copy of this screen variant say ZBBP_SOCO_WL. Go inside this Z screen variant in change mode and tick in invisible box opposite to the field you want to hide. Save the screen variant.
    Now go to BADI BBP_SCREENVARIANT
    Method GET_SCREENVARIANT_SOCO
    Assign EV_SCVARIANT = 'ZBBP_SOCO_WL'.
    This will definately hide the fields. For bringing internal note , you need to create a customer field similar to internal note and assign the value of internal note to it.
    Hope this helps.
    Thanks,
    Pradeep

  • Modify screen in VA41 : How to hide field in userexit_field_modification

    Hello,
    How to hide field at item level only (User should not be able to edit this field) in userexit_field_modification, instead of hiding the complete column.
    If I use
    FORM USEREXIT_FIELD_MODIFICATION.
    IF screen-name = 'RV45A-MABNR'. " Material
    SCREEN-required = 0.
    ENDIF.
    ENDFORM
    the complete material column will be greyed out. I want to grey out only for some items.
    Thanks,
    AP

    Hi AP,
    You havent given MODIFY SCREEN after screen-required = 0.
    Please try it abd check.
    FORM USEREXIT_FIELD_MODIFICATION.
    IF screen-name = 'RV45A-MABNR'. " Material
    SCREEN-required = 0.
    MODIFY SCREEN.
    ENDIF.
    ENDFORM
    Regards,
    Pawan

  • How to make field is editable in ALV  CL_SALV_TABLE only)

    Hi,
    How to make field is editable in ALV  CL_SALV_TABLE only)
    Any one has tried to make field si editable by using CL_SALV_TABLE class.
    *I know how to do it in REUSEALV function module and CL_GUI_ALV class.*_
    Please reply only if you riedin CL_SALV_TABLE class method.
    Regards
    Rajesh V
    Moderator message: not supported, please read class documentation and search for previous discussions.
    Edited by: Thomas Zloch on Mar 17, 2011 2:07 PM

    Hi Chad,
    Please refer the link,
    Edit field in alv
    Regards,
    Hema.
    Reward points if it is useful.

  • How to hide fields in Infotype 16 for Molga 28

    Hi Guys,
    I need to hide some fields for IT0016 for Molga 28. Earlier we have assigned different screen for this molga .But now we have assigned the standard  screen to IT0016 i.e. View-3211. But when i go to node Change Screen Modifications, i m unable to find MP321100. I have checked through PA30 for chinese employee the Program is MP321100 and screen is 2000.
    COuld you guide how to hide some of the fields for Chinese Molga 28 in IT0016.
    Regards,
    Navneet

    Hi Harish,
    I havent got the chance to check with BASIS yet....they are lil busy .....meanwhile i have created an entry in t588m with Module pool mp321100 and feature p0016. As u told i have created entry with Molga 28 and return key 28 in P0016 feature.
    Could you confirm that i need to Create mP321100 or i could have done it via mp001600 as told by other guy.
    And now if i go the fields are hidden except for two fields which strangely are coming "ER Notice Period" and
    "EE Notice Period". I have hidden all fields still these two fields are cming any idea why?
    Regards,
    Navneet

  • How to hide field dynamically in a report while using JRC

    Post Author: prateeti
    CA Forum: JAVA
    How can I hide fields in a report dynamically?Say my report now contains 3 fields(columns). Some users want to see the 1st and 3rd column and the 3rd column must be adjusted accordingly so that it appears where the2nd column previously was.Is there any way of doing such thing using API's from JRC.I am not using RAS.
    Thanks.

    Post Author: something_stupid
    CA Forum: JAVA
    Hi,
    you could to this while designing your report in CrystalReports. Pass the user's choice as parameters to your report on runtime. This parameter is evaluated and changes visibility and position of columns conditionally. Actually haven't done this with visibilty and position but with strings to display conditionally.
    good luck!

  • How to hide field in profit center masted data?

    Hi,
    I would like to know how to hide the field segment in profit
    center master data
    Alternatively I would like to know which user exit used
    to prevent the feeding of the field segment in profit center
    master data.
    Thanks in advance,
    Osvaldo
    Edited by: Osvaldo Cavagnero on Mar 4, 2010 1:43 PM

    Dear,
    Try de-activating the indicator through
    SPRO>Financial Accounting(new)>GL Accounting (New)>Preparation for productive start>Migration of existing SAP Data>Additional Activities>Make settings for segment and segment derivation.
    Maintain Segment.
    Hopefully it has to work.
    Regards,
    Syed Hussain.

  • HOW TO HIDE FIELDS IN A CUSTOM TABLE

    Hi all,
    I've a requirement where there's a maintainence view attached to  a custom created table. Whenever I add new entries via View, on saving the record, 2 of its fields only should appear.
    For example, if my table looks like this,
    SAP ID     OBJECT ID     FROM DATE     TO DATE
    Once i add a new record, when i press save, only 2 of fields say, SAP id and Object Id should appear instead of all the fields.
    Can someone throw light on this if you're aware? Any input in this regard will be highly valuable to me and appreciated. If someone is unable to intrepret this question, do let me know, I'll detail it again.
    Thanks in Advance,
    Vaishnavi Varadarajan

    hi Vaishu,
    Hide parameter / select option in selection screen
    We can Hide parameter / select option in selection screen dynamically by manipulating screen object.
    SCREEN is like an internal table with a header line. However, you do not have to declare it in your program. Go to debugging mode and then view structure of screen.
    You can modify SCREEN in your ABAP program during the PBO event of a screen. Its contents override the static attributes of the screen fields for a single screen call. The only statements that you can use with SCREEN are:
    LOOP AT SCREEN.
    MODIFY SCREEN.
    ENDLOOP.
    We can hide parameter by set screen-active to 0.
    Here is example of how to hide parameter in selection screen. Write it, and change click on radiobutton to hide parameter.
    REPORT ZAALGAL0006.
    DATA: d_ucomm LIKE sy-ucomm.
    PARAMETERS: p_grpa1(10) MODIF ID A,
    p_grpa2(5) MODIF ID A,
    p_grpb1(2) MODIF ID B.
    PARAMETERS: p_actA RADIOBUTTON GROUP rad1 USER-COMMAND ACT DEFAULT 'X',
    p_actB RADIOBUTTON GROUP rad1.
    AT SELECTION-SCREEN.
    d_ucomm = sy-ucomm.
    AT SELECTION-SCREEN OUTPUT.
    LOOP AT screen.
    IF p_actA = 'X'.
    IF screen-group1 = 'B'.
    screen-active = 0.
    ENDIF.
    ELSEIF p_actB = 'X'.
    IF screen-group1 = 'A'.
    screen-active = 0.
    ENDIF.
    ENDIF.
    MODIFY screen.
    ENDLOOP.
    START-OF-SELECTION.......
    pls refer the below sites for reference. they may help you
    http://www.blogtoplist.com/software/blogdetails-14026.html
    http://sap.ionelburlacu.ro/abap/sap2/Other_Useful_Tips.html
    https:/.../servlet/prt/portal/prtroot/com.sap.km.cm.docs/library/uuid/905e3d36-0301-0010-30ac-b55865545635
    thanks
    sagar
    reward me points if usefull

  • How to hide fields in table view

    Hi,
    I'm populating the contents of an internal table in a table view. I want to know how to hide few fields in table view. I'm working on classical BSPs.. no MVC and I have not used iterator.
    Thank you
    Sreesanth.

    just to hide certain fields (columns) you dont need iterator. you could use columnDefinition attribute of htmlb:tableView tag.
    to do this declare two page attributes as below
    col_control_tab     TYPE     TABLEVIEWCONTROLTAB
    col_wa     TYPE     TABLEVIEWCONTROL
    now in the oninitialization event. fill col_control_tab with the required column details.
    suppose the itab has columns 1 to 10 and you want to display only column 1 and 8 then the coding would be.
    clear col_wa .
      move: '1' to col_wa-columnname , " field name of column1 in itab
      'This is the title of column1' to col_wa-title ,
      'LEFT' to col_wa-horizontalalignment  .
      append col_wa to col_control_tab .
    clear col_wa .
      move: '8' to col_wa-columnname , " field name of column8 in itab
      'This is the title of column8' to col_wa-title ,
      'LEFT' to col_wa-horizontalalignment  .
      append col_wa to col_control_tab .
    the finally
    <htmlb:tableView id                  = "tv1"
                           design              = "ALTERNATING"
                           selectionMode       = "MULTISELECT"
                           onRowSelection      = "MYROWSELECTION"
                           table               = "<%= flights %>"
                         columnDefinitions   = "<%= col_control_tab %>"
    Regards
    Raja

  • How to Hide fields at Costing2 in Material Master

    Dear Experts,
    One of my requirement is, i want to hide 3 fields in Material Master costing2 tab. The fields are Planned Price1, Planned Price2, Planned Price3.
    Can any one guide me how to hide those fields through SPRO. Otherwise how to approch this requirement?
    Thanx and Regards,
    Mohana

    Hi,
    My requirement is, Customer dont want Planned price1, planned price2 and planned price3 in costing tab2 in Material Master. They required this 3 fields with 7 more fields in one more tab.
    So our Tech consultants are created one more view next to costing tab2. They made the remaining 7 fields into 'Z' table and these 3 fields i need to move from Costing tab2 to costing tab3.
    Kindly help how we need to achive this.
    Mohana

  • How to Hide fields on customized DispForm.aspx in SharePoint 2010

    Hi There,
    I have been facing with this issue since 4 weeks, let me explain my requirement first.
    I want to hide 2 fields on DispForm.aspx of a custom template.
    Following are the lines of code written for customizing DispForm.aspx  using ListFieldIterator SP control.
    <SharePoint:ListFieldIterator runat="server" ExcludeFields="PublishingStartDate">
                                            <CustomTemplate>
                                                <tr>
                                                    <td class="fp-ms-vb2">
                                                        <SharePoint:FormField ControlMode="Display" DisableInputFieldLabel="true"
    runat="server">
                                                    </td>
                                                </tr>
                                                <tr style="height:5px;"><td></td></tr>
                                            </CustomTemplate>
                                        </SharePoint:ListFieldIterator>
    those 2 fields are also generated using ListFieldIterator control. 
    Can someone suggest me how to hide specific fields.
    Thank you in advance,
    Vikram 
    vikram padigala

    To add more
    http://social.msdn.microsoft.com/Forums/sharepoint/en-US/4c366cd9-dd84-440c-bdbc-30ee2c81876e/conditionally-hide-a-field-in-a-custom-form-using-sharepoint-designer
    http://social.msdn.microsoft.com/Forums/sharepoint/en-US/7aef4e74-63f1-4f02-96d7-21f9549fc924/how-to-filter-the-field-based-on-condition-using-conditional-formatting-in-sharepoint-designer-2010
     http://johnliu.net/blog/2011/2/23/spd-2010-conditional-formatting-to-hide-columns-based-on-a-r.html
    Please remember to click 'Mark as Answer' on the answer if it helps you

  • How to Hide Fields in technical Rfx (C-Folder )

    Hi,
    I want to hide the selected buttons and links in the below screen(C-Folders).
    Can anybody help me how to hide the buttons and links
    Thanks and Regards,
    Lakshmi.

    Hi Laksmi,
    1) There is class called CL_CFX_FOL_UI 
        for Notifications, additional functions ,cancel buttons do enhancement in the method     PG_FOL_DE_INIT_MAIN_GROUP delete the entries in the parameter ES_MAIN_GROUP
    2)  For Copy ,Copy as bookmark Enhance the method GET_FOLDER_LISTING_TABLE  delete the          entries in parameter  EP_FOLDER_LIST .
    Regards
    Jayaprakash Thandavarayan

Maybe you are looking for

  • Commit fault: com.sap.aii.adapter.rfc.afcommunication.RFCAFWExpection: lo

    Hi, we are doing a RFC to file scenario. it works fine in DEV and QA. but in production sporadically it shows commit fault: com.sap.aii.adapter.rfc.afcommunication.RFCAFWExpection: lo error in SM58. I have refreshed the cache and all the necessary co

  • GL Account and Account Groups

    Hi, I am just wondering if you could help me getting this information.  I am just wondering if there is a report within SAP that displays what GL accounts belong to a particular Field Status Group. Thanks Bob.

  • SQL query running slow

    Hi i have a query when i run it for the first time it returs result in 30 mins after few mins (say 2 m ins) if i run the same query it fetches result in 3 mins) can any one hel me to tune the issu when i saw AWR report i showed too many disk I/o and

  • XmlUnmarshalException: XML Deserialization Error Please Help!!!

    Hi All, I am consuming the standard webservice Name: /SAPAPO/SDM_PARCRTRC I am getting the following error on execution of the web service: Service call exception; nested exception is: com.sap.engine.services.webservices.jaxrpc.exceptions.XmlUnmarsha

  • USEFUL INFO FOR SOME 875 problems i had (and solved)

    PROBLEM ONE: AGP/PCI NOT LOCKING, fix: this problem was common amongst us 875 owners. the agp/pci setting would not lock when set to 66/33. some of us used clockgen to patch this. well there is a strange fix. to lock it a t 66/33 ( NO MATTER WHAT SET