How to stop Jdeveloper to overwrite my customized view object impl

Hi,
Does anyone know how to stop Jdeveloper to overwrite my view object impl which extends from some customized view object impl ?
Thank you.

"modifying something on the view object".
Do you mean, modifying the ViewObject from the Applications Navigator using the Edit Mode of JDeveloper on that ViewObject?
(or)
Directly modifying the Extended ViewObject Implementation class file in System Navigator?
If you edit your ViewObject class file and if you set the ViewObject to extend it from a Customized View Object Impl, unfortunately the model project of Jdev do not recognize it, becoz certain changes are required in xml (viewobject's definition file).
So, better extend the class from the customized impl in Edit mode of that ViewObject.

Similar Messages

  • How to Create a Configuration Manager Console Custom View

    I am trying to create an assembly per the SDK example here:
    https://msdn.microsoft.com/en-us/library/hh948614.aspx
    I have added the assemblies per this article:
    https://social.technet.microsoft.com/Forums/en-US/5d74d30d-295b-4c51-8518-abdabbad731b/console-extension-custom-view-development?forum=configmanagersdk
    Now most of my references resolve but at compile time I get:
    Error 1 'MyCustomView.MyViewDescription' does not implement interface member 'Microsoft.ConfigurationManagement.AdminConsole.IConsoleView.TypeOfView'. 'MyCustomView.MyViewDescription.TypeOfView' cannot implement an interface member because it is
    not public. \MyCustomView\Class2.cs 21 18 MyCustomView
    Error 2 'MyCustomView.MyViewDescription' does not implement interface member 'Microsoft.ConfigurationManagement.AdminConsole.IConsoleView2.TypeOfViewController'. 'MyCustomView.MyViewDescription.TypeOfViewController' cannot implement an interface
    member because it is not public. \MyCustomView\Class2.cs 21 18 MyCustomView
    Error 3 'MyCustomView.MyViewDescription.TypeOfViewController': no suitable method found to override MyCustomView\Class2.cs 23 33 MyCustomView
    Error 4 'MyCustomView.MyViewDescription.TypeOfView': no suitable method found to override MyCustomView\Class2.cs 24 33 MyCustomView
    Error 5 'MyCustomView.MyViewDescription.TryConfigure(ref System.Xml.XmlElement)': no suitable method found to override MyCustomView\Class2.cs 24 109 MyCustomView
    I have been hunting around with a couple of decompilers looking for missing references etc for a few hrs and just can't seem to see what I am missing...
    I have included the code block here - typically of course I would not include multiple classes in the same CS file but for this POC it should be fine...
    using System;
    using System.Collections.Generic;
    using System.Linq;
    using System.Text;
    using Microsoft.ConfigurationManagement.AdminConsole;
    using Microsoft.ConfigurationManagement.AdminConsole.Views.Common;
    using Microsoft.ConfigurationManagement.AdminConsole.Schema;
    using System.Reflection;
    using System.Xml;
    using Microsoft.EnterpriseManagement.UI.WpfViews;
    using Microsoft.ConfigurationManagement.AdminConsole.ConsoleView;
    namespace MyCustomView
    public class MyViewController : OverviewControllerBase { public MyViewController() : base() { } public override void EndInit() { base.EndInit(); this.Content = new Label() { Content = "My Content" }; } }
    public class MyViewDescription : IConsoleView2
    override protected Type TypeOfViewController { get { return typeof(MyViewController); } }
    override protected Type TypeOfView { get { return typeof(Overview); } } public override bool TryConfigure(ref XmlElement persistedConfigurationData) { return false; }
    new public bool TryInitialize(ScopeNode scopeNode, AssemblyDescription resourceAssembly, ViewAssemblyDescription viewAssemblyDescription) { return true; }

    Hi Alfonso,
    I did eventually release the console extension (see screen shot at the bottom of the page
    here).
    It has been a while since I worked on this code but as I remember, once I got the references straightened out (see this thread), a lot of the confusion I had was just understanding that some of the programming that had to be done was in WPF (not WinForm).
     The sample code from Microsoft does work though.
    I never was able to figure out how to tie the "tree node menu item" functionality into the Ribbon (at the top of the SCCM console) so that is still on my TODO list.  
    So, my advice to you is to start with the Microsoft example code (which I did) from the SCCM SDK and if you get compile time errors, look first for the SCCM assembly references (Microsoft.[ConfigurationManagement, ConfigurationManagement.ManagementProvider,
    EnterpriseManagement.UI.Foundation, EnterpriseManagement.UI.WpfViews) and then at the WPF assembly references (PresentationCore, PresentationFramework) for missing class references.
    I hope this information can help you.  Good luck sir! 
    Anthony LaMark

  • How to create ADF UI based on polymorphic view objects

    Hi,
    I'm using JDeveloper build JDEVADF_11.1.1.3.PS2_GENERIC_100408.2356.5660. I created a simple application based on Steve's example #10 [url http://blogs.oracle.com/smuenchadf/examples/]ViewRow and EntityObject Polymorphism.
    I added a men-only attribute "Age" to the "Men" VO and filled it with an arbitrary value in MenRowImpl.java:
    public String getAge() {
         return (String) "45";//getAttributeInternal(AGE);
    }Running the TestModule works perfectly - a row of type "Men" displays the "Age" attribute whereas a row of type "Women" doesn't.
    Afterwards, I setup an ADF ViewController Project and created a JSPX with a read-only form based on the "People" datacontrol with navigation buttons. Running that page always shows the same set of attributes independent of the row type. That's expected behaviour because the binding is defined at design time.
    So my question is: can I somehow achieve the same behaviour for polymorphic VOs as the business component tester shows?
    Kind regards,
    Markus

    Andrejus' example shows how to calculate different values for the same attribute based on overridden view objects. That's not exactly what I'm looking for. I need to display a (at least partly) different set of attributes that changes while the user scrolls through the records of the result set.

  • How to retrieve the values from a Transient View Object

    Hi Experts,
    I am using Jdevelpoer11.1.1.5.0. I created one Transient view object with attributes EmpId,Salary.
    In Backing Bean i will create rows for that view object and display it in the form of <af:Table> like Empid, Salary and an Update Link.
    Now my problem is i want to update the salary of the particular EmpId. For Example if the EmpId is 100 and salary is 10000 now i want to increase the salary to 20000 and if i click on the update button; i want to retrieve the particular employee details in my backing bean. How can i acheive this?
    Thanks in advance.

    A better approach would be to programmatically populate rows in the <VO>Impl.java by overriding the executeQueryForCollection(0 as specified here -
    http://adfpractice-fedor.blogspot.in/2011/01/adf-bc-programmatically-populated-vo.html
    You can write the logic to update the salary in an AM method then on click of Update or in the getter of Salry field if logic is valid for all fields...

  • How to create LOV not based on a View Object attribute?

    Hi,
    I am creating a handed-made search form and I want to create an af:inputListOfValues.
    I have :
    - a read-only-view-object to get the LOV values from BD.
    - af:inputListOfValues tag (droped from Component Palette).
    How can I create the listOfValuesModel in Bindings layer? (the inputListOfValues is not based on a View Object attribute).

    Sorry, I think I am not very clear in my posts.
    My requirement is to create a LOV but I have no ViewObject. I just want an input (not based on a view object attribute), alone, but with a LOV (where lov's datas are get from a view object).
    In a "normal" LOV I would have something like this :
    in jsff :
    <af:inputListOfValues id="departmentIdId"
                                popupTitle="Search and Select: #{bindings.DepartmentId.hints.label}"
                                value="#{bindings.DepartmentId.inputValue}"
                                label="#{bindings.DepartmentId.hints.label}"
                                model="#{bindings.DepartmentId.listOfValuesModel}"
                                required="#{bindings.DepartmentId.hints.mandatory}"
                                columns="#{bindings.DepartmentId.hints.displayWidth}"
                                shortDesc="#{bindings.DepartmentId.hints.tooltip}">
            <f:validator binding="#{bindings.DepartmentId.validator}"/>
            <af:convertNumber groupingUsed="false"
                              pattern="#{bindings.DepartmentId.format}"/>
          </af:inputListOfValues>in pageDef :
    <listOfValues StaticList="false" IterBinding="EmployeesView1Iterator"
                      Uses="LOV_DepartmentId" id="DepartmentId"/>in model layer : a view object (EmployeeView) with view accessor and LOV based attribute, and a read only view object (DepartmentRVO) to get datas for the LOV.
    But in my case I have no ViewObject, so I don't know how to create the listOfValuesModel in fragment pageDef.
    I have :
    <af:inputListOfValues label="Label 1"
                                    popupTitle="Search and Result Dialog"
                                    id="ilov1" model="here I want to point to a listOfValuesModel but I don't know how to create it"/>in pageDef : the listOfValuesModel but I don't know how to create it.
    in model layer : just a read only view object (like DepartmentRVO), to get the datas for the LOV.
    Edited by: h0s on 29 févr. 2012 00:31

  • How to share a bind variable across multiple view objects?

    Hi, Can someone tell me if it's possible to share a bind variable among multiple view objects within an application module? My web page displays data from different VOs on different regions. But all data should be controlled by the same bind variable, which appears in all queries. How can I achieve this?
    Please help.

    Best to state your JDev version, and technology stack (eg. ADF BC) when posting.
    I can think of 2 approaches.
    1) Create a parent VO based on SELECT :bindVar FROM dual, then create links between your other VOs and the parent
    2) Create a AM client interface method that programatically sets the bind variable in each VO.
    Can you specify your use case? This one tends to come up when discussing effective from/to dated queries.
    CM.

  • How to bind the value of textbox with View object's bind variable?

    Hi all,
    In my use case I need to pass the value of textbox in the jsf page to the View Object's bind variable.
    I should not hard code this in my backing bean. I need to configure in the Jdeveloper itself.
    I am using Jdeveloper 11.1.1.4.0 version. Kindly come up with your help.
    Thanks,
    Phani.

    Hi,
    You have to use Named Bind Variables(ExecuteWithParams)
    http://download.oracle.com/docs/cd/B31017_01/web.1013/b25947/web_search_bc004.htm
    http://www.cloudsolid.com/2008/10/using-named-bind-variables.html

  • How to stop BAPI_USER_ACTGROUPS_ASSIGN from overwriting the roles

    Hello,
    I m currently working on a program where I have to modify certain roles for users. What I am doing is using the FM BAPI_USER_ACTGROUPS_ASSIGN to collect all of the roles for  the user, looping thru the table to get the role that needs to be modified, modifying the role, and then adding all of the roles back. I have to do this because when I tried to modify the 1 role, all of the roles that were assigned to the user were deleted and only this role that was ,modified was added back.
    The program is built that process is working correctly. I have been informed by the security person who I am writing the program for, that when they check the information in SU01, they see that the roles were deleted and added back. , they say that our auditors are going to ask why this happening.
    My question is  - is there a way to modify a role without having to delete ad re-add all of the roles for a user
    thanks in advance for the help

    Timothy,
    I'd love for you to re-post this question in the Security forum. .
    If you found a way to modify roles via LSMW, eCATT or program ... we'll make you our king (no joking!). There simply isn't any way as far as we know - it depends on so many variables, e. g. which values have been adjusted in SU24 and so on, so there isn't a method (in the market now) to manage that. You might easily insert transactions and such, but to adjust the objects attached to said transaction (report/query ...) isn't even an algorithm one can phase with 100% accuracy (surely not over a variety of customers and never in Julius' presence).
    Edited by: Mylène Dorias on Oct 1, 2010 2:20 PM
    ETA: on second thought, I have re-read you original post ... could it be I misunderstand? Could you please elaborate what exactly you want to do to the role?

  • How to stop Firefox from overwriting my last tab with Mozilla ad

    I have Firefox 34.0.5 set up to restore my previous session. The problem is that the last tab of my previous session get overwritten by ads from https://www.mozilla.org/en-US/.

    Application Basics
    Name: Firefox
    Version: 34.0.5
    User Agent: Mozilla/5.0 (X11; Linux i686; rv:34.0) Gecko/20100101 Firefox/34.0
    Multiprocess Windows: 0/1
    Crash Reports for the Last 3 Days
    All Crash Reports
    Extensions
    Name: 1-Click YouTube Video Downloader
    Version: 2.3.7
    Enabled: true
    ID: [email protected]
    Name: Adblock Plus
    Version: 2.6.6
    Enabled: true
    ID: {d10d0bf8-f5b5-c8b4-a8b2-2b9879e08c5d}
    Name: DownThemAll!
    Version: 2.0.17
    Enabled: true
    ID: {DDC359D1-844A-42a7-9AA1-88A850A938A8}
    Name: Gesture Translate
    Version: 0.5.9
    Enabled: true
    ID: [email protected]
    Name: NewTabURL
    Version: 2.2.3
    Enabled: true
    ID: [email protected]
    Name: Reader
    Version: 34.0
    Enabled: true
    ID: {20068ab2-1901-4140-9f3c-81207d4dacc4}
    Name: WOT
    Version: 20131118
    Enabled: true
    ID: {a0d7ccb3-214d-498b-b4aa-0e8fda9a7bf7}
    Name: YouTube Auto Replay
    Version: 2.91
    Enabled: true
    ID: [email protected]
    Name: Youtube MP3 Podcaster
    Version: 3.6.0
    Enabled: true
    ID: [email protected]
    Name: Youtube Video Replay
    Version: 32.0
    Enabled: true
    ID: {e1aaa9f8-4500-47f1-9a0a-b02bd60e4076}
    Name: Ubuntu Firefox Modifications
    Version: 2.6
    Enabled: false
    ID: [email protected]
    Graphics
    Adapter Description: GLXtest process failed (exited with status 1): X error occurred in GLX probe, error_code=1, request_code=156, minor_code=19
    GPU Accelerated Windows: 0/1 Basic Blocked for your graphics driver version. Try updating your graphics driver to version <Anything with EXT_texture_from_pixmap support> or newer.
    WebGL Renderer: Blocked for your graphics card because of unresolved driver issues.
    windowLayerManagerRemote: false
    AzureCanvasBackend: cairo
    AzureContentBackend: cairo
    AzureFallbackCanvasBackend: none
    AzureSkiaAccelerated: 0
    Important Modified Preferences
    accessibility.typeaheadfind.flashBar: 0
    browser.cache.disk.capacity: 358400
    browser.cache.disk.smart_size_cached_value: 358400
    browser.cache.disk.smart_size.first_run: false
    browser.cache.disk.smart_size.use_old_max: false
    browser.cache.frecency_experiment: 4
    browser.display.background_color: #999999
    browser.newtab.url: about:home
    browser.places.importBookmarksHTML: false
    browser.places.smartBookmarksVersion: 7
    browser.sessionstore.upgradeBackup.latestBuildID: 20141126041045
    browser.startup.homepage_override.buildID: 20141126041045
    browser.startup.homepage_override.mstone: 34.0.5
    browser.tabs.onTop: false
    browser.urlbar.autocomplete.enabled: false
    dom.mozApps.used: true
    dom.w3c_touch_events.expose: false
    extensions.lastAppVersion: 34.0.5
    gfx.blacklist.suggested-driver-version: <Anything with EXT_texture_from_pixmap support>
    media.gmp-gmpopenh264.lastUpdate: 1417757313
    media.gmp-gmpopenh264.version: 1.1
    media.gmp-manager.lastCheck: 1418538366
    network.cookie.lifetimePolicy: 2
    network.cookie.prefsMigrated: true
    places.database.lastMaintenance: 1418538370
    places.history.expiration.transient_current_max_pages: 102117
    places.history.expiration.transient_optimal_database_size: 162005810
    places.last_vacuum: 1327812932
    plugin.disable_full_page_plugin_for_types: application/pdf
    plugin.importedState: true
    plugin.state.librhythmbox-itms-detection-plugin: 0
    print.tmp.printerfeatures.PostScript/default.can_change_colorspace: false
    print.tmp.printerfeatures.PostScript/default.can_change_downloadfonts: false
    print.tmp.printerfeatures.PostScript/default.can_change_jobtitle: false
    print.tmp.printerfeatures.PostScript/default.can_change_num_copies: true
    print.tmp.printerfeatures.PostScript/default.can_change_orientation: true
    print.tmp.printerfeatures.PostScript/default.can_change_paper_size: true
    print.tmp.printerfeatures.PostScript/default.can_change_plex: false
    print.tmp.printerfeatures.PostScript/default.can_change_printincolor: true
    print.tmp.printerfeatures.PostScript/default.can_change_resolution: false
    print.tmp.printerfeatures.PostScript/default.can_change_spoolercommand: true
    print.tmp.printerfeatures.PostScript/default.colorspace.0.name: default
    print.tmp.printerfeatures.PostScript/default.colorspace.count: 1
    print.tmp.printerfeatures.PostScript/default.has_special_printerfeatures: true
    print.tmp.printerfeatures.PostScript/default.orientation.0.name: portrait
    print.tmp.printerfeatures.PostScript/default.orientation.1.name: landscape
    print.tmp.printerfeatures.PostScript/default.orientation.count: 2
    print.tmp.printerfeatures.PostScript/default.paper.0.height_mm: 210
    print.tmp.printerfeatures.PostScript/default.paper.0.is_inch: false
    print.tmp.printerfeatures.PostScript/default.paper.0.name: A5
    print.tmp.printerfeatures.PostScript/default.paper.0.width_mm: 148
    print.tmp.printerfeatures.PostScript/default.paper.1.height_mm: 297
    print.tmp.printerfeatures.PostScript/default.paper.1.is_inch: false
    print.tmp.printerfeatures.PostScript/default.paper.1.name: A4
    print.tmp.printerfeatures.PostScript/default.paper.1.width_mm: 210
    print.tmp.printerfeatures.PostScript/default.paper.2.height_mm: 420
    print.tmp.printerfeatures.PostScript/default.paper.2.is_inch: false
    print.tmp.printerfeatures.PostScript/default.paper.2.name: A3
    print.tmp.printerfeatures.PostScript/default.paper.2.width_mm: 297
    print.tmp.printerfeatures.PostScript/default.paper.3.height_mm: 279
    print.tmp.printerfeatures.PostScript/default.paper.3.is_inch: true
    print.tmp.printerfeatures.PostScript/default.paper.3.name: Letter
    print.tmp.printerfeatures.PostScript/default.paper.3.width_mm: 215
    print.tmp.printerfeatures.PostScript/default.paper.4.height_mm: 355
    print.tmp.printerfeatures.PostScript/default.paper.4.is_inch: true
    print.tmp.printerfeatures.PostScript/default.paper.4.name: Legal
    print.tmp.printerfeatures.PostScript/default.paper.4.width_mm: 215
    print.tmp.printerfeatures.PostScript/default.paper.5.height_mm: 431
    print.tmp.printerfeatures.PostScript/default.paper.5.is_inch: true
    print.tmp.printerfeatures.PostScript/default.paper.5.name: Tabloid
    print.tmp.printerfeatures.PostScript/default.paper.5.width_mm: 279
    print.tmp.printerfeatures.PostScript/default.paper.6.height_mm: 254
    print.tmp.printerfeatures.PostScript/default.paper.6.is_inch: true
    print.tmp.printerfeatures.PostScript/default.paper.6.name: Executive
    print.tmp.printerfeatures.PostScript/default.paper.6.width_mm: 190
    print.tmp.printerfeatures.PostScript/default.paper.count: 7
    print.tmp.printerfeatures.PostScript/default.plex.0.name: default
    print.tmp.printerfeatures.PostScript/default.plex.count: 1
    print.tmp.printerfeatures.PostScript/default.resolution.0.name: default
    print.tmp.printerfeatures.PostScript/default.resolution.count: 1
    print.tmp.printerfeatures.PostScript/default.supports_colorspace_change: false
    print.tmp.printerfeatures.PostScript/default.supports_downloadfonts_change: false
    print.tmp.printerfeatures.PostScript/default.supports_jobtitle_change: false
    print.tmp.printerfeatures.PostScript/default.supports_orientation_change: true
    print.tmp.printerfeatures.PostScript/default.supports_paper_size_change: true
    print.tmp.printerfeatures.PostScript/default.supports_plex_change: false
    print.tmp.printerfeatures.PostScript/default.supports_printincolor_change: true
    print.tmp.printerfeatures.PostScript/default.supports_resolution_change: false
    print.tmp.printerfeatures.PostScript/default.supports_spoolercommand_change: true
    privacy.cpd.sessions: false
    privacy.sanitize.migrateFx3Prefs: true
    security.warn_viewing_mixed: false
    storage.vacuum.last.index: 1
    storage.vacuum.last.places.sqlite: 1416553811
    Important Locked Preferences
    JavaScript
    Incremental GC: true
    Accessibility
    Activated: false
    Prevent Accessibility: 0
    Library Versions
    NSPR
    Expected minimum version: 4.10.7
    Version in use: 4.10.7
    NSS
    Expected minimum version: 3.17.2 Basic ECC
    Version in use: 3.17.2 Basic ECC
    NSSSMIME
    Expected minimum version: 3.17.2 Basic ECC
    Version in use: 3.17.2 Basic ECC
    NSSSSL
    Expected minimum version: 3.17.2 Basic ECC
    Version in use: 3.17.2 Basic ECC
    NSSUTIL
    Expected minimum version: 3.17.2
    Version in use: 3.17.2
    Experimental Features
    ---------------------

  • How i hide a field of a custom view in OAF 11

    Hi, im a new developer of OAF11.
    What should I do, to customize the Purchase Order screen, if then the requirement is to hide the field that i insert from extended VO.
    What I did was modify the XML of the page to add the field and then extended the original AM.
    I added the extended view into the custom AM to prevent that fail with the field that i insert.
    I must clarify that I modify the path of AM default for the path of the custom AM in the XML, then i upload the XML with the command import, and i see it the field in the page.
    I tried to hide another field that i created by customizing the page, but I couldnt do. That´s why i insert directly the field in the XML original.
    I Try to customize the driver involved with the page, but nothing happened.
    First try it on the controller Father and after the son.
    The page is in the POS module (iSupplier), and is POSVIEWPOG (PO Details).
    The code that attempts to hide the field is:
    OAApplicationModule am = paramOAPageContext.getApplicationModule(paramOAWebBean);
    OAViewObject oaviewobject1 =(OAViewObject)am.findViewObject("PosViewHeadersVO");
    if (oaviewobject1 != null)
    OARow row = (OARow)oaviewobject1.getCurrentRow();
    String vCustomType = (String)row.getAttribute("TypeName");
    if (vCustomType.equals("Blanket Agreement"))
    OAMessageStyledTextBean vHideField = (OAMessageStyledTextBean)paramOAWebBean.findChildRecursive("drbQuantity");
    vHideField.setRendered(true);
    else
    OAMessageStyledTextBean vHideField = (OAMessageStyledTextBean)paramOAWebBean.findChildRecursive("drbQuantity");
    vHideField.setRendered(true);
    Can anyone help me?
    If im grong other solution that i think is:
    How I can put a field on a page with code and how to hide the field with conditions?, consider that the field is from the VO extended.
    Thanks!!!

    Hi Yichao,
    Chk these links
    https://help.sap.com/saphelp_nw04/helpdata/en/5a/0c889a4d5911d2a5fb0000e82deaaa/content.htm
    http://help.sap.com/saphelp_45b/helpdata/en/cf/21ec5d446011d189700000e8322d00/frameset.htm
    thanks and regards
    srikanth.p

  • How to populate a table in a custom view

    I created a custom table view.
    In the view I replaced u201C//Contracts/Tableu201D with "<%= controller->gt_contracts %>"
    I populate gt_contracts  in DO_PREPARE_OUTPUT and it works (i.e. the table in the view is populated). However, this is not the proper way as for example the button to download to Excel does not show up, even if the property is set to TRUE.
    So how do I fill the table having u201C//Contracts/Tableu201D  . I think I should use BUILD_TABLE( ) or not ?
    Thank you,
    Mihai

    Hi Mihai,
    You can populate data in DO_INIT_CONTEXT method of ur impl class in your Z component.
    data:
    lv_struct_ref type ref to YOUR_STRUCTURE,
    lv_value_node type ref to cl_bsp_wd_value_node,
    lv_bo_coll type ref to if_bol_bo_col.
    Data: current type ref to if_bol_bo_property_access.
    data: dref type ref to data.
    data: lv_guid_h type crmt_object_guid.
    data: lt_attr type table of YOUR_STRUCTURE.
    data: ls_attr type YOUR_STRUCTURE.
    data: lr_entity type ref to cl_crm_bol_entity.
    create object lv_bo_coll type cl_crm_bol_bo_col.
    lt_attr is ur internal table.
    Loop at lt_attr into ls_attr.
      create data lv_struct_ref.
      create object lv_value_node
           exporting
                iv_data_ref = lv_struct_ref.
    call method lv_value_node->if_bol_bo_property_access~set_property
    exporting
    iv_attr_name = 'YOURFIELDNAME1'
    iv_value = ls_attr-firstname.
    call method lv_value_node->if_bol_bo_property_access~set_property
    exporting
    iv_attr_name = ' YOURFIELDNAME2'
    iv_value = ls_attr-lastname.
    lv_bo_coll->add( lv_value_node ).
    typed_context->YOURCONTEXTNODE->set_collection( lv_bo_coll ).
    endloop.
    Regards,
    Raghu

  • How to stop google from defaulting to mobile view?

    how do I stop google from opening up in a mobile view? It only happens when I use firefox.

    Start Firefox in <u>[[Safe Mode]]</u> to check if one of the extensions is causing the problem (switch to the DEFAULT theme: Firefox (Tools) > Add-ons > Appearance/Themes).
    *Don't make any changes on the Safe mode start window.
    *https://support.mozilla.com/kb/Safe+Mode
    *https://support.mozilla.com/kb/Troubleshooting+extensions+and+themes
    *http://kb.mozillazine.org/Resetting_preferences

  • Web UI How to add an Image in a custom view

    I want to add a image, similar to one in the screenshot attached in the view. Can anyone suggest how this can be done.

    Hi  bubai chowdhury
    Please need to follow 2 below steps :
    Write below code in layout section of  ".htm" page of view  and define  gv_url  TYPE saeuri at controller class of view:
    <thtmlb:image src    = "<%= controller->gv_url %>"
                   width  = "200"
                   height = "200" />
    And set variable gv_url value at do_prepare_output method which url point to image.
    If you have requirement to upload image in same view (in SAP) & display  then as suggested by Kumar Gaurav pl refer http://scn.sap.com/community/crm/webclient-ui-framework/blog/2012/07/25/form-iterator-for-chtmlbconfig
    Let me know if anything.
    Regards,
    Arjun

  • Final cut 7 - how to stop video from moving around in viewer?

    Hi Guys
    Any suggestions would be really appreciated.
    In FCP7 the diagonal crosshair 'X' (I don't want to see this X) has appeared in my viewer over the video clip I wish to drag onto my timeline.
    However, after setting my in and out points as normal, when I try to drag it down, the video moves in the viewer (revealing black space).
    My question is, how can I somehow 'reset' the video in the viewer window back to its locked, original position, so I can drag it down onto my timeline as I used to?

    Thanks David, I appreciate it.
    I also realised I had inadvertently changed the 'center' and 'scale' figures! So by resetting to zero the picture locked back in place.

  • How to insert audio – not overwrite – in multitrack view

    Very often, I need to insert audio into a project. This means all tracks after the insert need to be pushed back along the timeline to make way for this. (As happens in PP when inserting a clip from the source monitor into the timeline.) I used to use Digigram's Xtrack, which has been able to do this since 15 years ago. The only way it seems possible in Audition is to insert silence that's exactly the same time length as the audio I want to insert, then add the audio to the space that has just been created. Fine if it's a one-off, but I need to do this regularly and it's pretty cumbersome. Any way to speed up this operation?

    Yes, it is a limitation. Generally the easiest (and almost certainly the quickest) way to do this isn't to bother with inserting time - just group all the clips after the point you want to insert, drag the lot forward along the timeline, insert your new clip, then drag them back again to the end of it. No it's not perfect - but it works.

Maybe you are looking for

  • Transfered contacts not appearing in address book.

    Verizon Wireless transfered the contacts from my old phone to my new BB8330.  The contacts are not appearing in the business or personal folder.  Previous numbers I had dialed that were in my old contacts now have the contact name attached and when I

  • Issue while installing Project Controls application in Unifier 10.1

    Hi , I am installing Unifier 10.1 under weblogic 12c. Everything went fine till deployment and logged in as Site Administrator to install the Project Controls application .While trying to install the application , after a certain period of processing

  • Searching XML - which is better?

    I'm just starting with XML and will be querying mainframe data provided in xml format. The file will be pretty large (muncipal property database) and the idea is to get up-to-the-minute data.as opposed to nightly dumps. I'm unsure how to bring this i

  • How to get managers from org unit?

    Hi Experts, Anyone knows how to get managers information from given org unit? Thanks

  • Help, install issues CS5

    Hi I am trying to reinstall CS5 master suit from original discs and I am repeatedly getting this: I have uninstalled renamed folders ran the cleanup tool, changed the permissions etc. but still can't get it to run. Can a file be missing from the DVD?