Is it possible to customizer entity custom property input interface?

Hi,
I have made a customize validatioin rule and a swing which used to input validation rule parameter. When I costomize validation rule parameter,I only need to do supply three file :
PLSQLRule.java,PLSQLRuleBeanInfo,PlsqlRuleCustomizer.java,and then registered in project setting,but how can supply a swing to input custom property within entity xml file just like validation rule do?Who could help me?
thanks advance
lixinzhu
2007/09/12

hi,
Does anyone has any idea?
Thanks a lot
lixinzhu
2007/10/08

Similar Messages

  • Is it possible to show a custom property in a notification email?

    Hi all
    I would like to know if it is possible to display a custom property in a notification email? As I can understand from Darin Krasles answer here: https://forums.sdn.sap.com/click.jspa?searchID=3062750&messageID=1284727 and his article here: https://www.sdn.sap.com/irj/servlet/prt/portal/prtroot/docs/library/uuid/90626697-0901-0010-2ca7-86e2a50ce70d there does not seem to be an (easy) answer to this question. But perhaps Detlev, Patricio, Robert or you could help me with this question?
    Where can one by the way find the java/class file relating to the email notifications? Is it com.sapportals.wcm.repository.service.subscription.wcm.SubscriptionEventMapStandard?
    Kind regards,
    Martin Søgaard

    Hi Martin,
    would you have some updates on this question. i am also facing one similar requirement.
    1. users wants a mail notification based on expiry date(custom property) before expiring.
    2. In the mail notification, they need some custom properties like document number and other information.
    could you please help me in some directions on this? any standard or way to custom part?
    thanks,
    SK

  • How to simply add custom property to a HTML Form Web Part?

    Hello.
    Is it possible to add a custom property (like a date-field) to a HTML Form Web Part with help of JavaScript? I do not want to use Visual Studio / Nappa etc. Is this possible in an easy way?
    Thanks for your help.

    Hi,
    Based on your description, my understanding is that you want to count the date between today and the latest event date.
    You can create a calendar in a page firstly, then add a content editor web part rather than the html form web part, as html form web part can't place the Jquery element.
    Then you can firstly read the date field value of the calendar list using JavaScript Client Object Model and then calculate the difference between two date values using Jquery. You can add the code directly in the content editor web part.
    Here are some detailed code demos for your reference:
    Get SharePoint calendar list field value using JavaScript Client Object Model:
    <script src="http://code.jquery.com/jquery-1.9.1.js"></script>
    <script>
    $(document).ready(function(){
    SP.SOD.executeFunc("sp.js", "SP.ClientContext", retrieveListItemsCal);
    function retrieveListItemsCal() {
    var clientContextCal = new SP.ClientContext.get_current();
    var oListCal = clientContextCal.get_web().get_lists().getByTitle('Calendar');
    var camlQueryCal = new SP.CamlQuery.createAllItemsQuery();
    AllItemsCal = oListCal.getItems(camlQueryCal);
    clientContextCal.load(AllItemsCal);
    clientContextCal.executeQueryAsync(Function.createDelegate(this, this.onQuerySucceededCal), Function.createDelegate(this, this.onQueryFailedCal));
    function onQuerySucceededCal(sender, args) {
    var listItemInfo = '';
    var listItemEnumeratorCal = AllItemsCal.getEnumerator();
    var htmlCal = '';
    while(listItemEnumeratorCal.moveNext()) {
    var oListItemCal = listItemEnumeratorCal.get_current();
    htmlcal= oListItemCal.get_item("Start Time").format("MMMM d, yyyy"));
    break;
    function onQueryFailedCal(sender, args) {
    alert('Request failed. ' + args.get_message() + '\n' + args.get_stackTrace());
    </script>
    Calculate the difference between two dates:
    http://stackoverflow.com/questions/2609513/jquery-calculate-day-difference-in-2-date-textboxes
    Thanks
    Best Regards
    Forum Support
    Please remember to mark the replies as answers if they help and unmark them if they provide no help. If you have feedback for TechNet Subscriber Support, contact
    [email protected].
    Jerry Guo
    TechNet Community Support

  • SharePoint 2010 UI Interface to add Custom Property for a Term, similar to SharePoint 2013 .

    Hi All,
    We have a requirement to capture additional metadata for each Term (Ex: Requested for, Requested date, Requested by). these properties are not available in Sharepoint 2010 OOTB but can be acheived using Term.SetCustomProperty(). where as in SharePoint 2013,we
    have option to add/update/delete custom Properties in Term Store management window(Custom propertiesTabs) , which is OOTB. 
    Just want to understand is  there any way to get that Custom Property Tab interface in 2010. Or any other way to manage(Add/Update/delete) custom properties from the browser itself. 
    Is there any codeplex/other solution which will  allow us to manage properties from browser with out doing the code.
    Any suggestions on this would be helpful
    Thanks in advance
    ragava_28

    Hi,
    According to your description, you want to manage term custom property in SharePoint 2010.
    As you know, there is no OOTB method to meet your requirement.
    If you want to do it without coding, you can take a look at this tool about managing term store:
    http://www.metavistech.com/product/term-store-manager
    As this is a third party tool, we are not sure whether it has risks, please use with caution.
    Best regards
    Patrick Liang
    TechNet Community Support

  • Possible to customize #{bindings.Delete.enabled} checks at ADFBC level?

    11g ADF Faces w/ADFBC
    Is it possible to customize the checks for a Delete binding at the underlying EntityImpl or ViewRowImpl level?
    On my page I have a table within a panel collection. On the panel collection's toolbar I have a button tied to a Delete operation on the iterator that provides the table data.
    I want the Delete button to be disabled for certain rows based on various data checks. (In my case, checking to see if the DB row is referenced elsewhere in the DB.) Is there some EntityImpl or ViewRowImpl method I can override to perform this check?
    (I know I can override remove() to check and throw an exception, but this would occur after the user has pushed the button in the web page.)
    (I also know I can get the desired effect to work by creating a method on a backing bean to grab the selected row from the table and invoking my custom checking logic on it. However, I wondered if there was a better way to work with the ADFBC framework to accomplish this.)
    Thank you for reading my question.

    One way of doing it might be to create a transient attribute in your VO that returns true or false based on whether the row can be deleted.
    Then in your page have the disable property of the button based on the value of this transient attribute.

  • How to customizer entity create() method and doDML() just ?

    hi,
    I want to customizer entity create() method out of entityimpl java class,just like customer validator rule ,it will be used by many entity,so I can programly control default value such as database function or procedure,and more i want to write customer doDML() procedure with parameter,where and how can i do?
    thanks very much
    lixz
    2006.12.11

    hi,thank you frank
    but what you said is not what i want.eg,I have two entities,users(userid,last_name,first_name),product(prodid,name,specification) ,I want to set useid,last_name by set some property :Inparameter(a,b),setField(userid,last_name),Function_name(set_default_value) and can set product entity some field defaul value,and i only need to supply inparameter(a,b,c),setField(name,specification) ,function_name(another_set_default_value).customer validator (srdemoadfbc datemustcomeafter rule) can do the very thing what i want ,but can it only execute during validating,do you unstand what i say and give me some help?
    thanks
    lixz 2006/12/12

  • Is it possible to customize the halftone screen/angle used by the HP Laserjet 5000/5100

    Hi
    When sending an image to print on our 5000s and 5100s I'd like for the printer to apply a halftone screen of 85 (frequency) and 45 (angle). However, the driver properties only has two settings - Standard and Enhanced.
    I took a look at the PPD and found the following:
    *%=== Halftone Information =================
    *ScreenFreq:  "106.0"
    *ScreenAngle: "45.0"
    *ResScreenFreq 300dpi/300 dpi:  "60.0"
    *ResScreenAngle 300dpi/300 dpi: "45.0"
    *ResScreenFreq 600dpi/600 dpi:  "106.0"
    *ResScreenAngle 600dpi/600 dpi: "45.0"
    *ResScreenFreq 1200dpi/1200 dpi:  "180.0"
    *ResScreenAngle 1200dpi/1200 dpi: "45.0"
    I had hoped that simply by changing the screen frequencies to "85.0" it would do the trick (since 85 does not appear to be outside of the printers' capability). However, it resulted in no changes to the prints. I know (or at least think) the changes were "seen" by the print driver because I changed some of the text that it uses in the property boxes of the print driver and those changes appeared (e.g. I changed "Standard" to "Standard 2" for one of the halftone descriptions).
    My question is... can I customize the frequency/angle used or are these values fixed regardless of changes made to the PPD?
    Thank you.
    Mark

    What was the answer to this excellent question, please?
    Mark
    Student
    Posts: 1
    Registered: 05-14-2009
    0
    Is it possible to customize the halftone screen/angle used by the HP Laserjet 5000/5100
    Options 
    05-14-2009 06:56 AM
    Hi
    When sending an image to print on our 5000s and 5100s I'd like for the printer to apply a halftone screen of 85 (frequency) and 45 (angle). However, the driver properties only has two settings - Standard and Enhanced.
    I took a look at the PPD and found the following:
    *%=== Halftone Information =================
    *ScreenFreq:  "106.0"
    *ScreenAngle: "45.0"
    *ResScreenFreq 300dpi/300 dpi:  "60.0"
    *ResScreenAngle 300dpi/300 dpi: "45.0"
    *ResScreenFreq 600dpi/600 dpi:  "106.0"
    *ResScreenAngle 600dpi/600 dpi: "45.0"
    *ResScreenFreq 1200dpi/1200 dpi:  "180.0"
    *ResScreenAngle 1200dpi/1200 dpi: "45.0"
    I had hoped that simply by changing the screen frequencies to "85.0" it would do the trick (since 85 does not appear to be outside of the printers' capability). However, it resulted in no changes to the prints. I know (or at least think) the changes were "seen" by the print driver because I changed some of the text that it uses in the property boxes of the print driver and those changes appeared (e.g. I changed "Standard" to "Standard 2" for one of the halftone descriptions).
    My question is... can I customize the frequency/angle used or are these values fixed regardless of changes made to the PPD?
    Thank you.

  • How to reference a custom property in a vo transient attribute expr + bug

    Hi all
    I have created a transient attribute with an expression that evaluate null content to replace it by a appropriate text.
    <ViewAttribute
        Name="DescriptionUI"
        IsUpdateable="false"
        IsSelected="false"
        IsPersistent="false"
        PrecisionRule="true"
        Type="java.lang.String"
        ColumnType="VARCHAR2"
        AliasName="VIEW_ATTR"
        SQLType="VARCHAR">
        <TransientExpression><![CDATA[((Description == null) ? 'Pas de description' : Description)]]></TransientExpression>
      </ViewAttribute>I have defined a custom property for that attribute that contains the message text. I was surprised to see that the custom property was not associate with the attribute in the source file. Don't understand where the association is done
        <Properties>
          <CustomProperties>
            <Property
              Name="flex.tree.noLabel"
              ResId="flex.noDescription"/>
          </CustomProperties>
        </Properties>I had some difficulties to use the custom property editor. When creating a new related one by using an existing resource the property column value is not changed and the content 'Property' is generated. Because no relationships exists between attribute and the property, the entry is lost in the table referring custom property list for the attribute when your come back into the view object or if you save an another entry in an another attribute.
    So my first question ? Is the attribute editing part the right part to define custom property pairs if they are not related to attributes ? is it a bug ?
    My second question is : is it possible to evaluate the bundle in the expression (replacing the literal 'Pas de description' by an expression) ? What is the expression to use ? Where it is described to do such things in the help or in the documentation ?
    Thank you

    This is wrong
    ((Label == null) ? {FlexParameterModelBundle['flex.tree.noLabel']} : Label)
    What is the correct syntax to refer to the project model standard bundle in the groovy expression ?
    Thank for the help !

  • How to create Image as Custom Property Type used in Configurable Web Part?

    I wanted to create custom configurable web part property for Image.
    Example - the screenshot of Image property used in Image web part is shown below:
    My goal is to create as many images as possible in custom configurable web part.
    I tried to write the code:
    [WebBrowsable(true),
    WebDisplayName("Example Photo"),
    WebDescription("Example Photo of the user"),
    Category("Custom User Profile"),
    Personalizable(PersonalizationScope.Shared)]
    public Image ExampleUserPhoto { get; set; }
    However, the result does not display Image configurable web part property.
    I wonder why the data type Image does not cause the custom web part to have Image configurable web part property.
    Other data types such as Boolean, Enum, Integer, String and DateTime can be used.
    How can I create Image as Custom Property Type used in Configurable Web Part?

    I have examined that context node __00 has been enhanced,and  has a class name  z___00. But  when I created a new attirubute by right click " Attributes" with wizard under context node __00.There is still  a error message "view is not enhaced or copied with wizard".
    But  when  I created a method  "getvaliation "  in the class of context node zcl__00, the attribute  'valiation' automatically created(at the same time the method "getvaliation' automatically  created for the attribute 'valiation') and I need not to create attibute 'validation' by wizard .  It seemed as if the problem is resloved. But when I make test for it in web ui .There is a runtime erro message.
    Do I need to make some configurations in  the business object layer  for the checkbox? but  the checkbox is only used as a flag  to decide whether a backgoud job is needed to be executed.
    Edited by: samhuman on Jun 22, 2010 10:31 AM

  • Add custom property restrictions in advanced search web part

    hi,
     I am having the default advanced search box web part in my ent.search center site collec. but as per my requirement i need to a  few items in the property restrictions dropdown in my advanced search web part.
    is this possible in sp 2013 e.t serach center  site collection?
    any help is  highly appreciated!

    Hi,
    Check this
    http://technet.microsoft.com/en-us/library/ff621097.aspx
    http://social.technet.microsoft.com/Forums/sharepoint/en-US/c25d418d-d4a2-47a3-9abe-c27656764843/how-to-add-custom-property-in-advanced-search-page?forum=sharepointgeneralprevious

  • Automated Number AND/OR Custom Property Assignment on DRM

    We have an interesting issue. For some of our hierarchies, we do not have all the required Member account codes coming from the business and we only have Aliases.
    We want to therefore create a new set of Auto-Numbering system to use that makes sense. We were thinking about Node IDs but we want to use something that we can customize more.
    What is the way to create custom numbering (Auto-numbering) on DRM. I see that Formulas are used to create/develop custom DRM properties. The property in this case is essentially auto-numbering.
    Do you have any other ideas like is there any existing system property that I may use in DRM or do you thinking creatinga custom property using Formulas is the best way to go about it? Which formula functions should I be looking at? Thanks a lot for the help on this one.
    -- Adi

    Figured it out myself.
    Basically used formulas and functions after creating a new DERIVED property. Formulas and functions are very useful tools in DRM for creating customized metadata if you will.

  • Retrieve resources ordered by a custom property value

    Hi guys,
    I'm newbie in SAP development and I have the following problem.
    I have developed a custom Java servlet which runs in SAP Portal NetWeaver '04; now, I need to retrieve a set of files in a specific RID but, they have to be ordered by a value of a custom property: does anyone can show me the way to do that?
    Is it possible to give a kind of sorting like "descendent" or "ascendant"?
    Best regards,
    Paolo

    Hello Paolo,
    I don't think you can do sorting of KM Resources with your custom property.
    My advice would be to retrieve all the Resources (Files) and do the comparing/sorting in your servlet.
    Ofcourse you can use the standard java class Comparator to do this, check this for more:
    How do you sort on IGroup's group name?
    Greetings,
    Praveen Gudapati
    p.s Points are always welcome for helpful answers

  • Allow user to apply custom property or Workflow to DAM folder

    Hi,
    Is it possible to allow an author user the ability to set a custom property (or workflow) to a folder in the DAM?
    i.e. can I create a custom property "Approved" against a DAM folder and expose it via the UI (or update it via a workflow)
    I want to apply to an entire folder (not single or multiple assets)
    Thanks!

    yes it is possible to add custom property to dam and workflow. To add custom property to dam asset you have to override "/libs/dam/components/asseteditor" form page in your application.
    also you can refer - http://dev.day.com/docs/en/cq/current/dam/customizing_and_extendingcq5dam.html
    To add custom property in workflow you have to create custom workflow component using sling resource super type as "cq/workflow/components/model/process" and add custom property in dialog. you can take example of existing workflow under /libs/wcm/workflow area.
    also you can refer - http://dev.day.com/docs/en/cq/current/workflows/wf-extending.html

  • Is it possible to customize dff's with the help of form personalization?

    Is it possible to customize dff's with the help of form personalization.
    I have added few dffs in a form which users want to be customized according tho their choices.
    Can any one help me in this.

    Pl see MOS Doc 420518.1 - section 10

  • Create and Register Custom Property Panels

    Is there anyone who worked on "Custom Property Panel" in Webcenter? However, I have tried something using the following link but it seems not working.
    http://docs.oracle.com/cd/E16340_01/webcenter.1111/e10148/jpsdg_page_editor_adv.htm#CHDCJGEC
    Can anyone suggest me the possible approaches step by step?
    Thanks in advance.

    Hi again!
    Section 20.2, "Creating Oracle Composer Add-Ons": Refers to Oracle Composer buttons that appears in top of it like "Page properties" or "View". In this image http://4.bp.blogspot.com/-o0-wHhGzAg/TrgeohaGM8I/AAAAAAAAASQ/yfQqqU8faY/s1600/Composer6.png "Chane Logo" is a Composer addon (panel).
    Section 20.3, "Creating Custom Property Panels": Refers to add more tabs/configurations by default provided by Oracle Composer to configure the components added in the page. For example "Parameters" tab. In this image http://1.bp.blogspot.com/-G5lnUwO_mhM/TrgeqZlTT_I/AAAAAAAAASY/vTvznOakpL8/s1600/Composer7.png "Display options" and "Style" are property-panels
    Regards.

Maybe you are looking for

  • Remove scroll bars in dynamic form

    Hi all, I'm starting to kick myself every time I put a post here.  Apologies and thank you for everyone's help - slowly but shortly I'll be one of the people answering the questions. Really easy one (I think).  A have a dynamic form, which updates a

  • Weird timing issues when playing back a recorded sound file and with synths

    Hello there, I'm having a couple of strange issues with playing back files that I have recorded using MIDI data which is then used to play an external synth which then gets recorded to an audio track which at the time is perfectly synced to a click t

  • Display not showing same color/contrast at top of screen as at bottom.

    I just got the new Al and Glass 2.4 Ghz imac and my wife noticed that the colors at the top of the screen were deeper and showed more contrast. The same colors at the bottom of the display looked washed out. This is unaffected by viewing angle and ti

  • Help needed regarding Pricing Conditions in Invoice

    Hi Experts, I have added some Z fields to the Tkomp  Pricing table and did the relevant modifications in user exit Pricing Prepare Tkomp in MV45AFZZ.My pricing conditions are being created successfuly for the sales order. Now when a Invoice is being

  • Screen locking when pressing "M" Key

    Ok, I don't know if this is a problem I've created or theirs something wrong with my phone but everytime i press the "M" key my screen goes black and locks the keyboard, even while texting!!! Pressing "L" brings up the Voice Dial... this is driving m