Diff. btw. Region edit controls and provider.xml controls on rendering portlet UI

hi,
Apologize if this has been asked already.
What are the differences if any between -
- controlling the display of portlet header/border in the provider.xml file (containerRenderer set to false)
V/S
- controlling in the page edit mode (edit defaults) and uncheck the "display banners/borders" for the portlets at the region level.
Appreciate it if anyone can explain any subtle differnces if they exist, or if they complement/overide each other. I am planning to set the containerRenderer to false to show them programmatically.
regards
-Ananth

I'm using VS 2013 Coded UI Test Builder trying to add some new recorded elements to an existing window. The top level window that the coded ui test builder generated had to be modified since the title changes depending on the contents in a form. I've tried
different ways to identify it but the simplest that seems to work looks like this (basically eliminated the name and just search for the winform name):
public class UICustomerWindow: WinWindow
public UICustomerWindow()
#region Search Criteria
this.SearchProperties[WinWindow.PropertyNames.ControlName] = "frmCustomerMaintenance";
#endregion
Like I said, this works in all the tests automated already and the coded ui test builder can find it if I click the refresh button. The problem occurs when I try to add any new element or exiting element. The UI builder likes to ignore all the previous recordings
for that UI map and add a completely new top level window and elements in that window:
public class UIViewEditCustomerDURGWindow : WinWindow
public UIViewEditCustomerDURGWindow()
#region Search Criteria
this.SearchProperties[WinWindow.PropertyNames.Name] = "View/Edit Customer DURGAN, KENYON";
this.SearchProperties.Add(new PropertyExpression(WinWindow.PropertyNames.ClassName, "WindowsForms10.Window", PropertyExpressionOperator.Contains));
this.WindowTitles.Add("View/Edit Customer DURGAN, KENYON");
#endregion
Is there something I'm missing or this just a limitation of the Coded UI Test Builder? BTW, if more info is needed, let me know and I can probably provide it since its all dummy data.

Similar Messages

  • I edited clips and then re uploaded the rendered versions into the organizer and now the thumbnails aren't showing up. how do i generate the thumbnails?

    I edited clips and then re uploaded the rendered versions into the organizer and now the thumbnails aren't showing up. how do i generate the thumbnails?

    neuron113
    Thanks for the reply with the very helpful details.
    Export from Premiere Elements 12/12.1 Publish+Share/Computer/MPEG with Presets = HDTV 1080p29.97 High Quality
    I suspect that we are in a no win situation here - an Elements Organizer 12 issue.
    With Elements Organizer 11, 10, and 9, I can bring your MPEG2.mpg into the Elements Organizer with thumbnail with
    image. I cannot for Elements 12. And, I am working with the same MPEG2.mpg in Elements Organizer 9.0/9.0.1, 10, 11,
    and 12 on the same computer. In the morning, I will look Elements Organizer 13 as well.
    In my work with 12, this MPEG2.mpg consistently crashed the Elements Organizer 12.
    It is difficult to explain these results by invoking a missing codec theory since all was done with the same sample on the
    same computer.
    More later.
    ATR

  • Editing templates and providing validations

    hi,
    how can i make changes to the existing templates so that i get in the way i want it to be.. Also,how are the validations done,ie.,for checking username and password..

    "...how can i make changes to the existing templates so that i get in the way i want it to be..."
    Well, you need to try to change your templates - is the answer. How to get it the way you want them? There is no answer.
    If the question is where to do it, then you go to your Shared Components > Templates and search for them.
    For the validation of the user name and password you can use the item
    APP_USER and htmldb_util package to do what you want.
    Denes Kubicek

  • Diff btw events in reports

    what is the diff btw start of selection and end of selection

    HI Raja,
    Check out the link.
    http://help.sap.com/saphelp_nw2004s/helpdata/en/9f/db9a0735c111d1829f0000e829fbfe/content.htm
    <b>START-OF-SELECTION</b>      Point after processing the selection screen
    The event START-OF-SELECTION gives you the possibility of creating a processing block after processing the selection screen and before accessing database tables using a logical database. You can use this processing block, for example, to set the values of internal fields or to write informational statements onto the output screen.
    At the START-OF-SELECTION event, also all statements are processed that are not attached to an event keyword except those that are written behind a FORM-ENDFORM block
    <b>END-OF-SELECTION      </b>          Point after processing all lines offered
    by the logical database.
    To define a processing block after the system has read and processed all database tables of a logical database, use the keyword END-OF-SELECTION.
    This is the last of the events called by the runtime environment to occur. It is triggered after all of the data has been read from the logical database, and before the list processor is started. You can use the corresponding event block to process and format the data that the program has stored in internal tables or extracts during the various GET events.
    The following program is connected to the logical database F1S.
    REPORT EVENT_DEMO.
    NODES SPFLI.
    DATA: SPFLI_TAB TYPE SORTED TABLE OF SPFLI
    WITH UNIQUE KEY CITYFROM CITYTO CARRID CONNID,
    SPFLI_LINE TYPE SPFLI.
    START-OF-SELECTION.
    WRITE 'Demo program for END-OF-SELECTION'.
    SKIP.
    GET SPFLI FIELDS CARRID CONNID CITYFROM CITYTO.
    MOVE-CORRESPONDING SPFLI TO SPFLI_LINE.
    INSERT SPFLI_LINE INTO TABLE SPFLI_TAB.
    END-OF-SELECTION.
    LOOP AT SPFLI_TAB INTO SPFLI_LINE.
    WRITE: / SPFLI_LINE-CITYFROM,
    SPFLI_LINE-CITYTO,
    SPFLI_LINE-CARRID,
    SPFLI_LINE-CONNID.
    ENDLOOP.
    This program fills a sorted table with data from the logical database in the GET SPFLI event, and displays them in a list in the END-OF-SELECTIOn event. Depending on what you enter on the selection screen, the beginning of the list display might look like this:
    For rest of events check:
    http://help.sap.com/saphelp_46c/helpdata/en/9f/db9a1435c111d1829f0000e829fbfe/frameset.htm
    Reward points if this Helps.
    Manish
    Message was edited by:
            Manish Kumar
    Message was edited by:
            Manish Kumar

  • Diff btw queue,context and xpath

    plzzz provide me the links for diff btw queue,context and xpath....i have searched the sdn but didnt find find any information...!!!
    and also please provide me u r usefull ideas
    thnx SDNers

    Hi ,
    Have a look at these links for queue and context  -
    1. /people/riyaz.sayyad/blog/2006/04/23/introduction-to-context-handling-in-message-mapping
    2. http://wiki.sdn.sap.com/wiki/display/XI/Detailedlookintothesuppressed+nodes
    3. /people/venkat.donela/blog/2005/06/09/introduction-to-queues-in-message-mapping
    XPath is used to navigate through elements and attributes in an XML document. It can be used in content based Receiver determination. For details refer to these links -
    1. http://www.w3schools.com/xpath/default.asp
    2. http://en.wikipedia.org/wiki/XPath
    3. /people/prasadbabu.nemalikanti3/blog/2006/09/20/receiver-determination-based-on-the-payload-of-input-dataextended-xpathcontext-object
    Regards,
    Sunil Chandra

  • How to edit bitmap which is imported in flash using xml and save the edited bitmap back to xml in flash.

    hi all
    It would be appreciated if any one let me know how to edit
    bitmap which is imported in flash using xml and save the edited
    bitmap back to xml in flash.
    Is it posible to save the bitmap data in flash?
    thanks in advance

    Yes you can... but like I said before you need to upload the
    data from the changes you make to a server.
    In terms of the solution... its unlikely that you'll find one
    specifically for your needs. You will have to learn whatever you
    don't know how already and maybe adapt some existing examples to
    your needs.
    To change the visual state of a movie clip... you just do all
    the regular things that you want to do to it using flash... scale,
    rotation, drawing API , textfields etc in actionscript. If you
    don't know how to how to do that stuff, then you need to learn that
    first. That's basic actionscript.
    You can capture the visual state of a movieclip using the
    BitmapData class. That includes a loaded jpeg. You can also
    manipulate bimatp data using the same class. You should read up on
    that if you don't know how to use it or check out the examples
    below for uploading info.
    For uploading to the server:
    Here's an as2 solution that took 15 secs to find using
    google:
    http://www.quasimondo.com/archives/000645.php
    If you're using as3, google search for "jpeg encoder as3" and
    look through that info. There are also historical answers in the
    forums here related to this type of thing that might help as
    well.

  • Title and header in provider.xml

    Hi
    We changed the portlet title and portlet name in provider.xml file. After the portlet repository has been refreshed we could see the changes in the repository. But on the pages where the portlets already exists it does not show the change. If we reate a new instance of the portlet to a page, the new
    name is reflected.Restarting the apache( and jserv) did not make any difference. Any more changes or refresh we need to carry out?.
    In case it helps
    There are 2 tables called WWPOB_PORTLET_INSTANCE$, WWPOB_PORTLET_INSTANCE_FLAT$. Each of these tables has a name column that does not
    appear to reflect the new name of the portlet for the records that existed before the provider.xml changed.
    Thanks
    Raja V
    null

    When existing instances of a portlet are rendered, the title is taken from the stored customization for that instance, not from the portal. The title you specify in the provider.xml is an initial value that can be overridden

  • Why wont google chrome let me play you tube videos as all I get is a black scfeen with no control iocons??? ps help I've  but made n o diff. tried clearing cashe's  and browsing data but made no diff grrr

    why wont google chrome let me play you tube videos as all I get is a black scfeen with no control iocons??? ps help I've  but made n o diff. tried clearing cashe's  and browsing data but made no diff grrr

        Check  whether you are currently  in  YouTube HTML 5 trial?
         http://www.youtube.com/html5
        At the bottom  left of the page  uncheck the box for
       "You are currently in the HTML5 trial".

  • How to access the Custom Data type variable given in Expression edit control To and From LabVIEW

    Hello, I would like to know how to access the custom data type variable given in the Espression Edit Control from LabVIEW and vice-versa
    Say, the FileGlobals.Reference_Handle (Custom Data Type Variable) contains the
    VISA I/O session (Which in turn contains VISA_DeviceName: String, Session: Number),
    Channel1: Number and
    Channel2: Number
    I am expecting the user to give FileGlobals.Reference_Handle as the input at the ExpressionEdit Control in the edit screen of the VI Call.
    I would like to know how to get the values of this custom data type to LabVIEW?
    Say, if I have the Cluster in LabVIEW like VISA I/O session (Deive Name and Session Number), Channel1 and Channel2
    how do i need to set this cluster to the Custom Data type variable in TestStand?
    Thanks and Regards
    Prakash 

    Hi,
    TestStand to LabVIEW: i didnt understand what you r trying to achieve. But if you are using references, Use Property nodes and Invoke nodes to achieve what you want in LabVIEW.
     LabVIEW to TestStand: check the image below: You need to click the button next to 'container'. I have used a cluster output in the VI.
    Hope this helps
    .......^___________________^
    ....../ '---_BOT ____________ ]
    ...../_==O;;;;;;;;_______.:/
    Attachments:
    1.JPG ‏187 KB

  • ALV Toolbar on modal dialog screen and toolbar on text edit control

    Hello,
    I have created one container and producing ALV Grid output on a modal dialog screen. i do not want the ALV Toolbar to appear on this screen. How can I hide it ?
    ALso I need to hide some buttons on a Text edit control. How can I hide them ?
    Thanks and rgds,
    Anand

    Hi,
    To exclude some Toolbar functions, please do the below
    DATA:
    lt_toolbar_excl TYPE ui_functions.
      Exclude Some toolbar functions
        APPEND cl_gui_alv_grid=>mc_fc_detail         TO lt_toolbar_excl.
        APPEND cl_gui_alv_grid=>mc_fc_info           TO lt_toolbar_excl.
        APPEND cl_gui_alv_grid=>mc_fc_graph          TO lt_toolbar_excl.
        APPEND cl_gui_alv_grid=>mc_fc_view_crystal   TO lt_toolbar_excl.
        APPEND cl_gui_alv_grid=>mc_fc_loc_delete_row TO lt_toolbar_excl.
        APPEND cl_gui_alv_grid=>mc_fc_loc_append_row TO lt_toolbar_excl.
        APPEND cl_gui_alv_grid=>mc_fc_loc_insert_row TO lt_toolbar_excl.
        APPEND cl_gui_alv_grid=>mc_fc_loc_copy_row   TO lt_toolbar_excl.
        APPEND cl_gui_alv_grid=>mc_fc_loc_undo       TO lt_toolbar_excl.
        APPEND cl_gui_alv_grid=>mc_fc_check          TO lt_toolbar_excl.
        APPEND cl_gui_alv_grid=>mc_fc_refresh        TO lt_toolbar_excl.
    And Pass the lt_toolbar_excl to the ALV object
    Display
      CALL METHOD go_alv_grid->set_table_for_first_display
        EXPORTING
          is_variant           = ls_variant
          is_layout            = ls_alv_lay
          is_print             = ls_print
          i_save               = 'A'
          it_toolbar_excluding = lt_toolbar_excl
        CHANGING
          it_sort              = lt_sort
          it_outtab            = gt_user[]
          it_fieldcatalog      = lt_alv_cat.
    Hope this helps you.
    Thanks,
    Ruthra

  • Diff btw R3 and BI reporting

    Hi All
    Pls explain me what is the exact diff btw R3 reporting i.e, FI,MM,SD,PS  and BI reporting.
    I have searched the forum but not able to find the answer
    Bhanu

    Hello,
    You have your answer here:
    BW vs. R/3 Reporting
    Regards,
    Jorge Diogo

  • How to open, edit, and save XML

    I hav a problem in creating jsp file that can open, edit, and save xml!Anyone can help me?!!!

    Use a bean to do the job. pass the required params to the bean.

  • Smart Forms with editable fields and signature field provided by Webdynpro ABAP

    Hi,
    i've created an interactive smart form.. Everything fine. The preview of the adobe livecycle designer looks excellent, every field is editable, the signaturefield is signable...
    But when i try to test my form using transaction SE80 i'll get a pdf without any signable field, without any editable textfield and so on
    I've used the standard printer ZPDF1 for that purpose. (PDF1)
    Every value provided by the interface is displayed correctly in the pdf , but no field offers the possibility to change values anymore the pdf looks like a real printed document.
    I want to build a webdynpro application where the user gets a pdf in the last step, where he or she is able to edit single values in the prefilled PDF and afterwards to sign this document with his/her digital certificate...
    hope you could help me
    kind regards
    christian

    solved by myself.
    You have to install and configure the reader rights credentials mentioned in note 736902

  • Apple discontinued its iWork Beta trial which allowed for the placement of documents on the web and provide others the ability to read, edit and download no matter their software.  Is there a replacement product?

    Apple discontinued its iWork Beta trial which allowed for the placement of documents on the web and provide others the ability to read, edit and download no matter their software.  Is there a replacement product?

    No.

  • Whats is the diff. btw classic badi and new badi

    Hi guy,
    I just found out that there is classic and new badi implementation in SE19, I would like to check out with u guys on what is the diff btw the two?
    thanks.

    <b>Differences Between Classic and New BAdIs</b>
    Classic and new BAdIs differ in a number of features that are important for migration:
    1. BAdI object
    a.      With classic BAdIs, a BAdI object is created by calling a factory method, and referenced via a reference variable of the type of the BAdI interface.
    b.      With new BAdIs, a BAdI object is created via the ABAP statement GET BADIas a handle for the calls of BAdI methods, and referenced via a reference variable of the type of the BAdI. A BAdI object is an instance of an internal BAdI class, which otherwise is invisible to the outside.
    2. Passing comparison values for the filter
    a.      With the classical BAdIs, the filter values are stored in a structure and passed with the call of the BAdI methods.
    b.      With the new BAdIs, the comparison values for the filters used to search for implementations are passed when the BAdI object is created with the GET BADIstatement.
    There is no way of migrating the call of the factory method one-to-one into the ABAP statement, because GET BADI can also return an existing BAdI object, which is not possible with the factory method.
    3. Calling BAdI methods
    Passing comparison values for the filter
    a.      A classic BAdI can be called only once and the call positions are registered centrally.
    b.      With new BAdIs, multiple calls are possible and the call positions are not registered centrally.
    For the above reasons, an automatic call migration is not possible.
    Have a look at below link.
    http://help.sap.com/saphelp_nw2004s/helpdata/en/ee/6f3b42ea85b26be10000000a155106/content.htm
    http://help.sap.com/saphelp_nw2004s/helpdata/en/0e/4d3e42fc94aa04e10000000a1550b0/content.htm
    I hope it helps.
    Best Regards,
    Vibha
    *Please mark all the helpful answers

Maybe you are looking for

  • Automatic Update Firmware Fix didn't work?

    I have some graphic pixel glitches and sometimes my iMac is freezing. So I wait until Apple released the Firmware fix. When I installed the Firmware Fix using the automatic updater I noticed that the updater didn't want to restart my iMac - which mak

  • ADF UIX - programmatically deleting rows

    Hi gang I'm attempting to programmatically delete rows from an exposed VO client-method as follows: public void deleteRecord(String cesId) {   ApplicationModule am = this.getApplicationModule();   ViewObject voCes = am.findViewObject("ClinicalDataEle

  • Webdynpro ABAP component TREE - on event onaction do onloadchildren

    Hi experts, I have a specific requirement from my client. On our custom WD ABAP app (see below) which has a CL_WD_TREE component we want to force the event onaction on the tree node to do exactly the same of event onloadchildren of the node selected:

  • Problem with inbound idoc processing.

    hi I am creating release orders through idocs with the help of a custom program. After posting the release orders, i need to take the RO number created by the posting from EKPO table, which is required for further processing within the same program.

  • Printer capability gone after "update"....how to get it back?

    Since Firefox update, my HP printer won't activate to print. How do I get the use of my printer back??