How do i set the multiplicity between two entities to any custom value?

Hello people,
is there a way to set the multiplicity of a relation to custom values instead of only 1 or * in the logical model?
I really need to set it to "1..2" but can't find an option to set own numbers. What should i do? Shall I just create a note saying "1..2" and stick it to the corresponding entity? I'm used to do models in UML (visual paradigm - where you can change such things easily) but now i have to use the SQL Developer 3.2
I would appreciate any help.
Thanks
Edited by: 961075 on 24.09.2012 15:54

Hello,
it's not possible.
Philip

Similar Messages

  • How can i set the space between two button?

    Hello,
    I have
    <mx:HBox>
    <mx:Button label="one" />
    <mx:Button label="two" />
    </mx:HBox>
    how can i set the distance between this two compotents?
    Thanks

    quote:
    Originally posted by:
    robinbouc77
    Hi,
    you can use horizontalGap property on HBox to change the
    space between your buttons. I think the default value is 6. You can
    also use <mx:Spacer/>, but changing the gap on HBox is
    probably the cleanest way ;)
    C U
    perfect!!! works fine

  • How do I set the transition between access points would be fine?

    Hello everyone,
    We have an organization Wirless controller 2504 with 20 aironet access-point (700 series)
    Once I defined  all the access points I noticed that the transition between them is not working fine...
    I mean that clients can not walk around in our organization without having to connect to any access point separately.
    How do I set the transition between access points would be fine?
    Thanks a lot (:

    HI Omri,
    which software version you have on WLC ?
    Is the site survey done propely ?
    Remember: It is the client that decides when to roam and which AP to connect to based on what it perceives the signal to be.
    If your site survey design is perfect and still have problems while roaming then:
    Disable your lower data rates on the 2.4ghz and or 5ghz radio and your clients will roam better. Try to disable everything below 11mbps. and give that a try.May be old device will work in this case.
    Regards
    Dont forget to rate helpful posts

  • How do you sync the calendars between two ipads?

    How do you sync the calendars between two ipads?

    You can enable iCloud syncing on both devices, making sure hte calendar is part of the 'on' part and then what you change on one should change on the other too.

  • How do i compare the similarities between two or more text files?

    The subject says it all. I am familiar with a number of the diff tools that are available, but I have yet to find a tool or app that will find the similarities between two text files. Any suggestions?

    From http://hints.macworld.com/article.php?story=20030217061153119
    "FileMerge highlights the sections that differ in each file..."
    I need to find similarities. I was thinking something along the lines of the similarity-tester package in Ubuntu:
    http://unix.stackexchange.com/questions/1079/output-the-common-lines-similaritie s-of-two-text-files-the-opposite-of-diff/94532#94532
    Preferably a GUI tool, but command line is OK if I can figure out the proper syntax.

  • How to do find the difference between two time stamps

    Hi all,
    i have a table with 2 columns called GMT time and Local time . so i need to find difference between these two time stamps.
    i tried like this
    select to_date(GMT_TIME,'yyyy-mm-dd hh24:hi:ss')-to_date(LOCAL_TIME,'yyyy-mm-dd hh24:hi:ss') from date_table
    the result is coming as follows ..
    0.291666666667
    i did not under stand the out put.
    In my table GMT_TIME= 2011-06-26 00:00:00 and LOCAL_TIME=2011-06-25 17:00:00 ..
    please help me how to get exact hours between two dates ..
    Thanks
    Sreedhar

    Hi Sreedhar,
    Your output (0.2916666) has the unit day.
    You should multiply with 24 to get the unit hour.
    select ( to_date(GMT_TIME,'yyyy-mm-dd hh24:hi:ss')-to_date(LOCAL_TIME,'yyyy-mm-dd hh24:hi:ss') ) * 24 from date_table;Rgds,
    Tycho

  • How can I set the time between how long my phone plays a text msg ringtone if I don't respond the first time?

    If I don't respond the first time, how can I set how many times/seconds it plays the next time until I respond?

    Actually, there is!
    http://www.apple.com/feedback/iphone.html

  • How to find out the difference between two payloads in the BPEL/xsl

    Hi,
    We are invoking a soa service from a BPEL with 10 input parameters and getting the output for only 7 parameters (where 10-7=3 are not returned by service as they are not processed by the service due to invalid input data).
    But the BPEL process should return the 10 payloads with 3 having the failures status.i.e need to find out the difference between input payload and the payload returned by the soa service.
    Can any one tell us, how to achieve this.
    Thanks in advance,
    Ram.

    Check the instance in EM console( in 11G) or BPEL console (in 10G ) and u can see the input and output xmls.

  • How can I set the spacing between lines in my document?

    I am trying to set the spacing in my Pages document. It looks like it is using a space and a half and I would like to change that to just a space.

    More Pages users will see your topic if you post in that community >  Pages: iWork: Apple Support Communities
    And a Pages user manual to refer to >  manuals.info.apple.com/MANUALS/0/MA524/en_US/Pages_UserGuide.pdf

  • How can i measure the time between two successive rising edges ,using digital input ..

    Hello
    I'm trying to measure the time in seconds between each two successive rising edges on a digital input .
    Till now I have managed to detect the rising edge ,increment a counter with each rising edge ,and snap the time at which the rising edge happenned
    all I need now is to subtract the current rising edge time from the previous rising edge time in order to calculate (T) which can be 1/frequency and display it in realtime to the user.
    but I don't know how to do this
    Can somebody please help me !!!
    note: the time that I'm measuring ranges between 200 ms - 2 seconds
    Solved!
    Go to Solution.
    Attachments:
    Counter without time.vi ‏11 KB

    Cheers for that. It's always a good idea to post your SubVIs as well - the problem could be in one of those.
    To help you out:
    You already know how to use shift registers so why not use one again for time? Create a new shift register for  the time then simply compare the "rising edge time" to the the previous time stored in the shift register and then write the new time to the shift register.
    Just a few other pointers:
    1. You'll want to initialise your shift registers ie wire a constant to the left hand register outside of the loop. This will cause the register to be reset each time the program is run. This is so that your counter will start from zero each time you run your code.
    2. You don't need to use the "greater than?" compare function with boolean as they can only be true or false (1 or 0)! The "Equal?" function is what you should use here.
    3. Lastly, it's a small thing but you can use the same tunnel that feeds into a case structure in each of the cases - no need to create two tunnels for the true and false cases, use the same one.
    -CC
    "If anyone needs me, I'll be in the Angry Dome!"

  • How do I calculate the difference between two times?

    I am so embarrassed by the fact that I can't figure this out.
    Cell B2- 8:00 am
    Cell C2- 10:50 am
    Cell D2- (How do I get this cell to calculate the difference and say 2:50?)
    I know this is probably one of the most basic operations, but for the life of me I can't figure it out. Cells B2 & C2 are formatted for 24 hour clock. But if I tell the system to just subtract the two, I get "0.118". Everything I find on the forum search goes beyond what I need. Can anyone help me?
    Thank you.

    KOENIG Yvan wrote:
    Numbers states clearly in the Help and the PDF Users Guide that it doesn't know a "duration" object but a time one which is restricted to the range 00:00:0 to 23:59:59.
    When I search the U.S. language Numbers User Guide for the word "duration," it is not found.
    What may be more clear: _duration is not available but time is_?
    Once again your response resemble to a rant againt the Help and the User Guide.
    In the Help:
    +date-time Any Numbers date/time value. _While you can choose to display only date or time in a cell, all Numbers date or time values contain both the date and time._+
    Which wording would be more clear and precise?
    TIMEVALUE
    +The TIMEVALUE function converts a date, a time, or a text string to _a decimal fraction of a 24-hour day._+
    Which wording would be more clear and precise?
    TIME
    +The TIME function converts hours, minutes, and seconds into a time format.+
    +TIME(hours, minutes, seconds)+
    +hours: The number of hours _(using a 24-hour clock)._+
    +minutes: The number of minutes.+
    +seconds: The number of seconds.+
    Notes
    +You can specify hour, minute, and second values greater than 23, 59, and 59, respectively. _If the hours, minutes, and seconds add up to more than 24 hours, Numbers subtracts 24 hours repeatedly until the sum is less than 24 hours._+
    Which wording would be more clear and precise?
    In the User Guide:
    page 190
    +date-time Any Numbers date/time value. _While you can choose to display_+
    +_only date or time in a cell, all Numbers date or time values contain_+
    +_both the date and time._+
    +TIME (page 277) Converts a time to a decimal fraction of a 24-hour day.+
    +TIMEVALUE (page 278) Converts a time in a string to a decimal fraction of a 24-hour day.+
    TIME
    +The TIME function converts the specified time to a decimal fraction of a 24-hour day.+
    +TIME(hours, minutes, seconds)+
    +• hours: The number of hours _(using a 24-hour clock)_.+
    +• minutes: The number of minutes.+
    +• seconds: The number of seconds.+
    Notes
    +You can specify hour, minute, and second values greater than 23, 59, and 59,+
    +respectively. _If the hours, minutes, and seconds add up to more than 24 hours,_+
    +_Numbers subtracts 24 hours repeatedly until the sum is less than 24 hours._+
    +You can also specify fractional values for hours, minutes, or seconds.+
    TIMEVALUE
    +The TIMEVALUE function converts a time in a string to a decimal fraction of a 24-hour+
    day.
    TIMEVALUE(date-time)
    +• date-time: A date, a time, or a string in any of the Numbers date and time formats.+
    As you may check, the infos are exactly the same in the Help and in the Guide.
    And I really don't understand how you may find them unclear.
    Yvan KOENIG (from FRANCE lundi 4 août 2008 14:57:36)

  • How can I specify the "linkage" between two XMLType columns?

    Hello all,
    I'd like to know whether I can do the following in Oracle 10g R2. Table A has a column C1 of XMLType; table B has a column C2 of XMLType; and C2 has an element links to C1's content (the root element) - not a copy of that.
    Thanks
    Cy

    In theory an DBURI can be used, making use of the DBURIServlet which is part of the XML DB Infrastructure
    /oradb/SCHEMA/TABLE[predicate]... I'm not sure I'd recommend this approach.
    XLink, XInclude and XPointer are the right techniques to do this. As I in my earlier post we don't do anyhting special to enforce or resolve these techniques in the current production product. You can store documents that contain these kind of links in the database. If you organize your content approriately in the XML DB repository you can resolve these links programatically today.
    We will be doing some interesting work to support all of these standards to a greater or less extent in a future release of the database. To use the repository to manage these links it will be necessary to create a resource that allows URL based access to each document that you want to link to. You can create links to existing content by obtaining a REF to the XMLType and then foldering the REF under the required URL.
    Note that this technique cannot be used to refer to XMLType stored in columns of XMLType in an relational table, only to rows of XMLType in an XMLType table.

  • How to carry forward the session between two ears when cookie secure is tru

    Hi, We have a couple of ears. I want to carry session details from one ear to another ear.
    Can any one suggest some solution for this

    You might wish to look at Coherence*Web.
    http://coherence.oracle.com/display/COH34UG/Coherence*Web+Session+Management+Module
    Brad

  • How do I set the SDRAM configuration (EBIU registers) for a custom blackfin target

    I am attempting to deploy a simple Labview embedded program on a custom hardware platform that has a SDRAM memory configuration that is different from the BF537 EZLite board. When I start the application the EBIU is configured for the EZLite's memory configuration and I can't find how to change it. I have created a custom LDF file with the correct SDRAM memory size and included it in the project, but it seems to have no effect on the specific EBIU register that I need to have changed. Below is the value of the EBIU register after I deploy the code and folowing it is the correct value for my hardware.
    308: EBIU_SDBCTL = 0x0025 // External Bus Interface Unit, SDRAM Bank Control Register
    308: EBIU_SDBCTL = 0x0013
    My platform uses 1 - 16 bit wide SDRAM chip instead of 2 - 8 bit wide parts. (32 MB total SDRAM).

    Hi,
    I think what you're looking for is in this file:
    C:\Program Files\Analog Devices\VisualDSP 4.5\System\ArchDef\ADSP-BF537-proc.xml
    Make sure to back up this file if you plan to change it.
    Michael P
    National Instruments

  • Find the difference between two internal table

    how can i see the difference between two interal tables?
    The requirement is as follows
    1. We have a transparent table, which stores the employee data with EMP ID as key.
    2. We load the transp table data into a interal table (B).
    3. We get data from legecy system as file and it gets loaded into another internal table (A) (this also has the same EMP ID key and this will have latest addition/update to those emplyees).
    Now we need to seperate out these data into three interal table Inserted (I), Deleted (D) and Updated (U).
    We want to do followign things
    I = A - B
    D = B - A
    Both A and B will have around 40k records. Hence we are trying to avoid the looping.
    Please suggest the best option for us.
    Thank you in advance.
    Raghavendra

    >
    RAGHAV URAL wrote:
    > how can i see the difference between two interal tables?
    > The requirement is as follows
    >
    > 1. We have a transparent table, which stores the employee data with EMP ID as key.
    > 2. We load the transp table data into a interal table (B).
    > 3. We get data from legecy system as file and it gets loaded into another internal table (A) (this also has the same EMP ID key and this will have latest addition/update to those emplyees).
    >
    > Now we need to seperate out these data into three interal table Inserted (I), Deleted (D) and Updated (U).
    >
    > We want to do followign things
    > I = A - B
    > D = B - A
    >
    > Both A and B will have around 40k records. Hence we are trying to avoid the looping.
    >
    > Please suggest the best option for us.
    >
    > Thank you in advance.
    > Raghavendra
    Hi Raghavendra,
      Currently as of my knowledge, these operations are only possible through LOOPs. But LOOPign can be really fast here if you properly utilize the SORTING, READ with BINARY SEARCH and FIELD-SYMBOLS usage. I would say:-
    Steps for Insert:-
    SORT: A, B.
    LOOP AT A ASSIGNING <WA_A>.
      READ TABLE B WITH TABLE KEY key = <WA_A>-key BINARY SEARCH.
      IF SY-SUBRC NE 0.
        APPEND <WA_A> TO I.
      ENDIF.
    ENDLOOP.
    Steps for Delete:-
    SORT: A, B.
    LOOP AT B ASSIGNING <WA_B>.
      READ TABLE A WITH TABLE KEY key = <WA_B>-key BINARY SEARCH.
      IF SY-SUBRC NE 0.
        APPEND <WA_B> TO D.
      ENDIF.
    ENDLOOP.
    Regards,
    Ravi.

Maybe you are looking for

  • Updated to 10.5.1.42 and now can't connect to itunes store

    I have noticed that I am not the only one having this problem but the only error message I am getting is "itunes has stopped working, windows is checking for a solution to this problem" then I have to close it. I have run itunes diagnostics and this

  • No imformation about this motherboard available?

    Hi Forum, my first post here, I am diagnosing a fault with a MEDION PC MT6 computer (type: MT188) and I am trying to download a motherboard manual, but the MSI archive does not list this motherboard. It is a 2004 computer and written on the motherboa

  • How to create a login module

    Hi Everyone. How to create a login module which like www.sdn.sap.com the module is on the top left corner

  • What does it mean of this error? TypeError: Error #1009 ...

    Hi, Please let me know why the following error occured when the button clicked? The PRStatus button was clicked! TypeError: Error #1009: Cannot access a property or method of a null object reference.     at Final_2_fla::MainTimeline/frame20()     at

  • SOA Human Workflow actionable notifications are sent, but no action is take

    Hi, We have a Human Task on the composite. The Task is configured with Actionable Email and Approvers are also getting actionable notifications in their Inbox. But when they take action from the email notification (APPROVE or REJECT), it is not respo