issue by creating roles according to the jazn-data

jdev 11.1.1.7

In my application, I create roles in the jazn data files. When I run the application, the roles defined in the jazn file are not automatically created in the integrated weblogic.

Considering that I have different applications in the same workspace, when I run it, the roles defined in their jazn is created in the weblogic. I can see a "deployment" tab, which is created in the jdev console and can see the continuation of console.

[09: 42:07] download jazn-data users.

[09: 42:07] update user 'john '.

[09: 42:07] update user 'susan '.

[09: 42:07] update user "steve".

[09: 42:07] roles jazn-data download.

[09: 42:07] remove the group existing 'Wendy '.

[09: 42:07] group was created for the role of "Wendy".

[09: 42:07] adding 'susan' to the group 'Wendy '.

So what's the problem with my app that I am not able to see the roles are created in weblogic?

Hi Fabrice,.

Go to Applications - > Secure-> configure secure deployment

Make sure that the following is checked.

Redeploy your application using JDeveloper.

Tags: Java

Similar Questions

  • Need to create a structure for the target data store?

    Hi Experts,

    If I create a structure for the target data store, and then load the data from source to target works fine. If I make mistakes.

    Is necessary to create a structure for target?

    Please help me...

    Thanks in advance.

    A.Kavya.

    I found the answer. No need to create the structure for target temporary data store. and we need to create the structure for the permanent target data store.

  • How to recover the key role according to the role name?

    Hello

    I do turn on IOM R2 PS1 and need recover the key role the name of role-based.

    After you run the full reconciliation on the LDAP hierarchy, I have the following data in the table of the PMU.

    ugp_key 123

    ugp_name has the inside cn

    ugp_display_name is not always the name that corresponds to the group in OID

    ugp_role_name (it seems that it is the field that corresponds to the group in OID).

    How can I retrieve the key of role based on the ugp_role_name using the API?

    Thank you

    Khanh

    There are a few reasons for your mistake.  The first is that the role name does not exist you are looking on.  The other reason could be that the person doing the search, they do not have the authorization to search for the role.

    Here is a good reference, you can look for the use of the API:

    https://Java.NET/projects/OpenPTK/sources/SVN/show/branches/Oracle/OIM11g/examples/Java/OIMClient/src/OIM/client?Rev=1402

    -Kevin

  • create a view with the double data type

    I have Windows XP with 10g 10.2.0.1.0

    I need to create a view of the double and with the type of data, such as NUMBER (5.2), NUMBER or VARCHAR2 (20).
    such as:
    create see test (view_test varchar2 (20)) as (select view_test from double)


    Help, please. Thanks in advance.

    It seems a little strange, but you can do something like this with the CAST function:

    SQL> create view dual_view as
      2  select cast(null as number(5,2)) col1
      3        ,cast(null as date)    col2
      4        ,cast(null as varchar2(30)) col3
      5  from   dual;
    
    View created.
    
    SQL> desc dual_view
     Name                                      Null?    Type
     ----------------------------------------- -------- -------------------------
     COL1                                               NUMBER(5,2)
     COL2                                               DATE
     COL3                                               VARCHAR2(30)
    

    I used the NULL values, but you can use the actual values if you wish.

  • Creating a copy of the base data missing data UNDO files

    I need to create a copy of a database 11G on a windows server (using a script to create controlfile with database set = "database_name") from a cold backup that was taken at the time, but the backup lacks 2 3 of the UNDO tablespace data files.

    There is a lot of advice to suggest that setting undo_management = 'MANUAL' a database can be restarted and the missing data files dropped (and recreated)... However, I don't know if it is a solution that works in the context of rename the database by using create controlfile method

    does anyone know if the parameter undo_management = 'MANUAL' is all I have to do? or is it more...

    any suggestion would be received with gratitude...

    Dear patrichards,

    Your quite welcome. I am pleased that you have solved your problem.

    Kind regards.

    Ogan

  • How to create a function for the function date two

    Hai All

    How can we create a function for the date function two and to return the number of hours between two dates

    For example

    1 January 2010 0815' - '01-jan-2010 1715' and I need to calculate the time between two dates

    How can I create a procedure

    Thanks I advance

    Srikkanth.M

    What have you tried?

    Here is an example (untested):

    CREATE OR REPLACE FUNCTION RETURN_HOURS
    (
            pDateStart      IN DATE
    ,       pDateEnd        IN DATE
    )
    RETURN NUMBER
    DETERMINISTIC
    AS
    BEGIN
            RETURN (pDateEnd - pDateStart) * 24;
    END RETURN_HOURS;
    
  • According to the value data display

    Hi everyone, I need help to write a query. I have the following data:
    WITH data1 AS
    (
      SELECT 1 num,     'PAL1' acct     ,'PRIN' descr FROM dual UNION all
      SELECT 1 num,     'COL' acct     ,'SEC' descr FROM dual UNION ALL
      SELECT 1 num,     'COL' acct     ,'AL' descr FROM  dual UNION all
    
      SELECT 2 num,     'PAL2' acct     ,'PRIN' descr FROM dual UNION all
      SELECT 2 num,     'COL' acct     ,'SEC' descr FROM  dual UNION ALL
      SELECT 2 num,     'COL' acct     ,'AL' descr FROM  dual UNION all
    
      SELECT 3 num,     'PAL1' acct     ,'PRIN' descr FROM  dual UNION all
      SELECT 3 num,     'COL' acct     ,'SEC' descr FROM dual UNION ALL
      SELECT 3 num,     'COL' acct     ,'AL' descr FROM dual UNION all
    
      SELECT 4 num,     'COL' acct     ,'SEC' descr FROM dual UNION all
      SELECT 4 num,     'COL' acct     ,'SEC' descr FROM dual UNION ALL
      SELECT 4 num,     'MT' acct     ,'MA' descr FROM dual
    
    )
    The query that I write will be inside a PROCEDURE. a parameter will pass with the value of the ACTC.
    the possible values of the parameter are: ALL, COL PAL1, PAL2, MT

    If one value other than EVERYTHING happened inside I want to get all the lines for a specific number which contain at least one MAIN line.
    for example
    PAL1 pass, THEN the output should be
    num    acct    descr
    ====   =====   ======
    1      PAL1    PRIN
    1      COL     SEC
    1      COL     AL
    
    3      PAL1    PRIN
    3      COLL    SEC
    3      COLL    AL
    as you can see, the acct PAL1 contain at least one row with MAIN descr num = 1 and num = 3. in this case, all the lines for these num (ex num = 1 and 3)
    have been exposed in the output.


    Another example is that pal2 is pass, then output should be
    num    acct    descr
    ====   =====   ======
    2      PAL2    PRIN
    2      COL     SEC
    2      COL     AL
    num = 2 in this case is the only one who has PAL2 and at least a main line.

    now, let's say MT's past as a parameter, in this case num = 4 is the only one with a row of MT, but there is no MAIN line for this name.
    so no output.

    If the 'ALL' value is pass as a parameter, and then get all lines without worrying if a MAIN line closes. in this case the output should be
    num    acct    descr
    ====   =====   ======
    1      PAL1    PRIN
    1      COL     SEC
    1      COL     AL
    
    2      PAL2    PRIN
    2      COL     SEC
    2      COL     AL
    
    3      PAL1    PRIN
    3      COLL    SEC
    3      COLL    AL
    
    
    4      COLL    SEC
    4      COLL    SEC
    4      MT      MA
    and for the last example, if the PASS is a pass and then output should be
    num    acct    descr
    ====   =====   ======
    1      PAL1    PRIN
    1      COL     SEC
    1      COL     AL
    
    2      PAL2    PRIN
    2      COL     SEC
    2      COL     AL
    
    3      PAL1    PRIN
    3      COLL    SEC
    3      COLL    AL
    as a MAIN line to num = 1, 2, 3 for VAC = PASS then all belonging to num lines specific should be display


    can someone help me WRITE a query FOR this scenario?
    Thank you. your help is appreciated

    This will do

    WITH data1 AS
    (
      SELECT 1 num,     'PAL1' acct     ,'PRIN' descr FROM dual UNION all
      SELECT 1 num,     'COL' acct     ,'SEC' descr FROM dual UNION ALL
      SELECT 1 num,     'COL' acct     ,'AL' descr FROM  dual UNION all
    
      SELECT 2 num,     'PAL2' acct     ,'PRIN' descr FROM dual UNION all
      SELECT 2 num,     'COL' acct     ,'SEC' descr FROM  dual UNION ALL
      SELECT 2 num,     'COL' acct     ,'AL' descr FROM  dual UNION all
    
      SELECT 3 num,     'PAL1' acct     ,'PRIN' descr FROM  dual UNION all
      SELECT 3 num,     'COL' acct     ,'SEC' descr FROM dual UNION ALL
      SELECT 3 num,     'COL' acct     ,'AL' descr FROM dual UNION all
    
      SELECT 4 num,     'COL' acct     ,'SEC' descr FROM dual UNION all
      SELECT 4 num,     'COL' acct     ,'SEC' descr FROM dual UNION ALL
      SELECT 4 num,     'MT' acct     ,'MA' descr FROM dual
    
    ) select * from data1
    where :param='ALL' or
    (
      num in (select num from data1
        where acct=:param
        and exists(select 1 from data1 where acct=:param and descr='PRIN'))
    )
    

    Edit: replace: with param .parameter_name if necessary.

    Published by: david.sweet on February 19, 2011 07:57

    Published by: david.sweet on February 19, 2011 07:57

  • Change table cell color according to the input data

    Hi, I have a table in a form and I want the cells to have a dark in each cell if it has not entered data, but the cell background color to change white if no text is entered in the cell. Is it possible to do?  Thank you.

    You can use the fillColor for this property. It depends on your table structure how you do this. If you have relatively small table say 3 columns. 3 rows and then in each cell of sortient / calculate event you can put the following script.

    If (Cell1.rawValue == null & Cell2.rawValue == null & Cell3.rawValue == null)
    {
    Row1.fillColor = "255,0,0";
    }
    else {}
    Row1.fillColor = "255,255,255";
    }

    If you have a larger table, then you must create a function for it.

    Thank you

    Sidonie.

  • How add/edit/remove UI Components (i.e. not text values) in a UIContainer according to the XML data by using mxml.

    Hi all

    Asked me to make a request to monitor a remote and data devices are accessed through XMLSocket, devices of remote system could be added/removed during execution. and the user Web interface must act accotdingly. What is the best way to approach to apply it? is it by using the mxml or action script? I've already implemented using mxml and may display devices in the Web for addiotion/deleting/editing dynamics of devices and its properties, I am looking for your input/suggestion.

    Thanks in advance.

    Hi Anthony,.

    Set unique name to each of the UIComponents added to the container (default stage)

    by using the name property of the components , you can get the object from the container to aid

    container.getChildByName ("name assigned to the property") , this function will return as DisplayObject

    The DisplayObject instance to the target conversion type for the class that you can Edit the object.

    example:

    var sp:Sprite = myContainer.getChildByName ("one") as Sprite;   Here I am reference sprite with the name "a" to "myContainer".

    SP.x = SP.x + 10;  Here I am to change the property 'x' of the Sprite whose name is 'a '.

    Note: Similarly, you can perform any operation on the sprite

    Removal of UIComponent:

    removeChild will serve to remove the child from the container where it is added

    container. removeChild (container.getChildByName ("assigned to the property name"));

    If this post answers your question or assistance, please mark it as such

  • When the redeployment, jazn-"Data.xml" crushes users the App provides on Weblogic

    Hello world

    I use
    -JDeveloper 11.1.2.1.0
    -Weblogic 10.3.5

    I found that when I transferred a request, it seemed that whatever the roles that I have setup in the Console of Administration WebLogic for users who are not defined in the jazn of application data, gets crushed by the data from jazn-Application data

    for example
    I have an application with jazn-"Data.xml", defined as follows:
    -Creation of 4 users
    -Created the company 3 roles (role of customer, NormalRole, ReadOnlyRole)
    -Assigned 4 users to roles of business as a result
    -Given the workflow, Web Page and ADF entity as a result object

    If I configure the 5th, 6th, 7th and so on users through the Console of Administration WebLogic and grant them a role (i.e. NormalRole). As soon as I redeploy the application, all users (except 4 which are defined in the jazn-data application) seem to lose the delivered business role that I gave earlier in the Console of Administration WebLogic.

    It's not ideal because we always maintain user through the Console of Administration WebLogic (so we can add / remove / update user information at any time, rather than having to do it by changing jazn-Application data and do a redeployment). Is that what I was wrong? I tried excluding the jazn-"Data.xml" during deployment, but the application does not work. What should I do to prevent this?

    Thanks for any information.


    Kind regards
    Andi

    You are aware of the request-> Application-> deployment 'Deployment of Security Options' properties, particularly checkboxes to crush the security on the deployment objects?

    CM.

  • I did according to the instructions RE: cut and paste, still does not work.

    This is what is shown as my profile directory
    /Home/davidlisle/.Mozilla/firefoxsa4u14wa.default-1390261301661

    It's the user.js, I created in accordance with the online instructions page:

    // This file can be used to configure global preferences for Firefox
    // Example: Homepage
    pref("browser.startup.homepage", "http://www.linkedin.com/");
    user_pref("capability.policy.policynames", "allowclipboard");
    user_pref("capability.policy.allowclipboard.Clipboard.cutcopy", "allAccess");
    user_pref("capability.policy.allowclipboard.Clipboard.paste", "allAccess");
    

    However, the data but followed instructions do not produce the expected results.
    Right now I see myself forced to use another browser as I work a lot on the line and I 'should' be able to copy / paste. If you can respond in a timely and a solution, I'll continue with firefox, I like. Otherwise, my frustration level has peaked and interest in firefox is rapidly declining.

    I should be able to accomplish this task with simple steps, not an eternity of troubleshooting your installation bad 'protection '. I am equally sure that many others have no problem, I do however.

    I have provided some basic information about this machine, if you need something specific, I'm sure I'll be happy to hand it to you.

    MemTotal:        4130948 kB
    MemFree:         1416364 kB
    Buffers:          400032 kB
    Cached:          1253676 kB
    SwapCached:            0 kB
    Active:           893300 kB
    Inactive:        1373268 kB
    Active(anon):     579364 kB
    Inactive(anon):    70528 kB
    Active(file):     313936 kB
    Inactive(file):  1302740 kB
    Unevictable:          40 kB
    Mlocked:              40 kB
    HighTotal:       3278664 kB
    HighFree:        1359244 kB
    LowTotal:         852284 kB
    LowFree:           57120 kB
    SwapTotal:      107853432 kB
    SwapFree:       107853432 kB
    Dirty:                92 kB
    Writeback:             0 kB
    AnonPages:        612904 kB
    Mapped:           166476 kB
    Shmem:             37032 kB
    Slab:             379232 kB
    SReclaimable:     361112 kB
    SUnreclaim:        18120 kB
    KernelStack:        4112 kB
    PageTables:        11556 kB
    NFS_Unstable:          0 kB
    Bounce:                0 kB
    WritebackTmp:          0 kB
    CommitLimit:    109918904 kB
    Committed_AS:    3050400 kB
    VmallocTotal:     122880 kB
    VmallocUsed:       87464 kB
    VmallocChunk:      23508 kB
    HardwareCorrupted:     0 kB
    AnonHugePages:         0 kB
    HugePages_Total:       0
    HugePages_Free:        0
    HugePages_Rsvd:        0
    HugePages_Surp:        0
    Hugepagesize:       2048 kB
    DirectMap4k:       10232 kB
    DirectMap2M:      903168 kB
    
    XXX
    
    *******************************************************************************************************
    Version:
    Linux version 3.11.0-15-lowlatency (buildd@batsu) (gcc version 4.8.1 (Ubuntu/Linaro 4.8.1-10ubuntu8) ) #8-Ubuntu SMP PREEMPT Sun Dec 15 21:38:27 UTC 2013
    *******************************************************************************************************
    
    cpuinfo:
    processor	: 0
    vendor_id	: AuthenticAMD
    cpu family	: 18
    model		: 1
    model name	: AMD A6-3500 APU with Radeon(tm) HD Graphics
    stepping	: 0
    microcode	: 0x3000027
    cpu MHz		: 800.000
    cache size	: 1024 KB
    physical id	: 0
    siblings	: 3
    core id		: 0
    cpu cores	: 3
    apicid		: 0
    initial apicid	: 0
    fdiv_bug	: no
    f00f_bug	: no
    coma_bug	: no
    fpu		: yes
    fpu_exception	: yes
    cpuid level	: 6
    wp		: yes
    flags		: fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush mmx fxsr sse sse2 ht syscall nx mmxext fxsr_opt pdpe1gb rdtscp lm 3dnowext 3dnow constant_tsc nonstop_tsc extd_apicid aperfmperf pni monitor cx16 popcnt lahf_lm cmp_legacy svm extapic cr8_legacy abm sse4a misalignsse 3dnowprefetch osvw ibs skinit wdt arat cpb hw_pstate npt lbrv svm_lock nrip_save pausefilter
    bogomips	: 4189.23
    clflush size	: 64
    cache_alignment	: 64
    address sizes	: 40 bits physical, 48 bits virtual
    power management: ts ttp tm stc 100mhzsteps hwpstate cpb
    
    processor	: 1
    vendor_id	: AuthenticAMD
    cpu family	: 18
    model		: 1
    model name	: AMD A6-3500 APU with Radeon(tm) HD Graphics
    stepping	: 0
    microcode	: 0x3000027
    cpu MHz		: 800.000
    cache size	: 1024 KB
    physical id	: 0
    siblings	: 3
    core id		: 1
    cpu cores	: 3
    apicid		: 1
    initial apicid	: 1
    fdiv_bug	: no
    f00f_bug	: no
    coma_bug	: no
    fpu		: yes
    fpu_exception	: yes
    cpuid level	: 6
    wp		: yes
    flags		: fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush mmx fxsr sse sse2 ht syscall nx mmxext fxsr_opt pdpe1gb rdtscp lm 3dnowext 3dnow constant_tsc nonstop_tsc extd_apicid aperfmperf pni monitor cx16 popcnt lahf_lm cmp_legacy svm extapic cr8_legacy abm sse4a misalignsse 3dnowprefetch osvw ibs skinit wdt arat cpb hw_pstate npt lbrv svm_lock nrip_save pausefilter
    bogomips	: 4189.23
    clflush size	: 64
    cache_alignment	: 64
    address sizes	: 40 bits physical, 48 bits virtual
    power management: ts ttp tm stc 100mhzsteps hwpstate cpb
    
    processor	: 2
    vendor_id	: AuthenticAMD
    cpu family	: 18
    model		: 1
    model name	: AMD A6-3500 APU with Radeon(tm) HD Graphics
    stepping	: 0
    microcode	: 0x3000027
    cpu MHz		: 800.000
    cache size	: 1024 KB
    physical id	: 0
    siblings	: 3
    core id		: 2
    cpu cores	: 3
    apicid		: 2
    initial apicid	: 2
    fdiv_bug	: no
    f00f_bug	: no
    coma_bug	: no
    fpu		: yes
    fpu_exception	: yes
    cpuid level	: 6
    wp		: yes
    flags		: fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush mmx fxsr sse sse2 ht syscall nx mmxext fxsr_opt pdpe1gb rdtscp lm 3dnowext 3dnow constant_tsc nonstop_tsc extd_apicid aperfmperf pni monitor cx16 popcnt lahf_lm cmp_legacy svm extapic cr8_legacy abm sse4a misalignsse 3dnowprefetch osvw ibs skinit wdt arat cpb hw_pstate npt lbrv svm_lock nrip_save pausefilter
    bogomips	: 4189.23
    clflush size	: 64
    cache_alignment	: 64
    address sizes	: 40 bits physical, 48 bits virtual
    power management: ts ttp tm stc 100mhzsteps hwpstate cpb
    ********************************************************************************************************
    
    version_signature:
    Ubuntu 3.11.0-15.8-lowlatency 3.11.10
    ********************************************************************************************************
    
    meminfo:
    MemTotal:        4130948 kB
    MemFree:         1416364 kB
    Buffers:          400032 kB
    Cached:          1253676 kB
    SwapCached:            0 kB
    Active:           893300 kB
    Inactive:        1373268 kB
    Active(anon):     579364 kB
    Inactive(anon):    70528 kB
    Active(file):     313936 kB
    Inactive(file):  1302740 kB
    Unevictable:          40 kB
    Mlocked:              40 kB
    HighTotal:       3278664 kB
    HighFree:        1359244 kB
    LowTotal:         852284 kB
    LowFree:           57120 kB
    SwapTotal:      107853432 kB
    SwapFree:       107853432 kB
    Dirty:                92 kB
    Writeback:             0 kB
    AnonPages:        612904 kB
    Mapped:           166476 kB
    Shmem:             37032 kB
    Slab:             379232 kB
    SReclaimable:     361112 kB
    SUnreclaim:        18120 kB
    KernelStack:        4112 kB
    PageTables:        11556 kB
    NFS_Unstable:          0 kB
    Bounce:                0 kB
    WritebackTmp:          0 kB
    CommitLimit:    109918904 kB
    Committed_AS:    3050400 kB
    VmallocTotal:     122880 kB
    VmallocUsed:       87464 kB
    VmallocChunk:      23508 kB
    HardwareCorrupted:     0 kB
    AnonHugePages:         0 kB
    HugePages_Total:       0
    HugePages_Free:        0
    HugePages_Rsvd:        0
    HugePages_Surp:        0
    Hugepagesize:       2048 kB
    DirectMap4k:       10232 kB
    DirectMap2M:      903168 kB

    Edit: deleted email from the public view. (philipp)

    You need these lines in user.js allow the site www.linkedin.com access the Clipboard:

    user_pref("capability.policy.policynames", "allowclipboard");
    user_pref("capability.policy.allowclipboard.Clipboard.cutcopy", "allAccess");
    user_pref("capability.policy.allowclipboard.sites", "http://www.linkedin.com/");

    Use keyboard shortcuts if the buttons on the web page or other methods do not work.

    • Copy: Ctrl + C or Ctrl + insert (Mac: command + C)
    • Paste: Ctrl + V or shift + insert (Mac: command + V)
    • Cut: Ctrl + X or shift + delete (Mac: command + X)
  • Create the folder Date current Wise via .bat file

    I want to create a folder using the current date in the .bat file, and then copy some files into the newly created folder. And then copy this folder from one place to the other. that is on the network location. I need that .bat file will work with two Windows XP & Windows 7.

    I'm totally unexperience in the script.

    Hello

    Your Windows XP question is more complex than what is generally answered in the Microsoft Answers forums. It is better suited for the public to theTechnet on the Technet forums. Here is the link.
    http://social.technet.Microsoft.com/forums/en-us/iTCG/threads

    I hope this helps.

  • Why Lightroom does not change the creation date of the file? (Mac OS)

    I find that Lightroom changes the creation of files present during the incorporation of metadata. I noticed that this behavior is different from the bridge, which reaches to write metadata changes to the file without affecting the creation date, affecting only the modification date.

    I read in other threads that it doesn't matter when even because moving files between disks will write a new file and, therefore, a new date of creation, but if this can be true in some systems (I don't know) is certainly not the case with Mac OS. For example, I have files dating back at least 1998 which have been moved from disc to disc to disc but still retain their original creation date. Which is as it should be. For many of my older images, there seems to be no capture embedded recognizable don't date anyway, so the creation date of the file is the single timestamp.

    It seems quite logical that the modified date of a file must be updated to take into account that the file has been modified (for example if adding metadata), but it seems to make sense that the date of creation of the file should be kept as the date, this file has been created. Changing them both on the same date seems to be a needless loss of information.

    Some would say that the process of adding metadata to a file creates a new file, the creation date must be updated to reflect this. But I would say that the creation date should be which would include a normal user as the creation date. We do not expect the creation date to change everything simply because a file is rewritten to the disk (for example when the defragmentation), however technically accurate, it would be to say that it is a newly created file. And the difference in behavior between Bridge and Lightroom shows that there is some confusion on this subject.

    Photo software ignores generally the operating system created by file-modification dates, and when he is not ignoring them, treated generally in a non-standard way that varies from one program to a program.  Rather than rely on the dates of the files of the operating system, the photo industry has defined fields of metadata with all sorts of specific photos dates: capture date/time (when the shutter button is depressed), date/time of scanning (when a movie or a print image was scanned digitally), date/time software photo altered image or metadata date/time of GPS location.   While some photo software will attempt to maintain the dates of file-created and - updated, many programs and services Web will not (including, but not limited to, LR).  In addition, many utilities files not always to preserve created and set dates to day that you move, copy it, backup and restore files.

    Therefore, I highly recommend that if you care photo dates and times (as I do), so no matter which photo software you use, you store the dates of capture in pictures industry standard metadata by using the tools provided by LR and other photo software.   In this way, you migrate the program to the program over the years, are you more likely to preserve that important metadata.

    Old photos and scans without that metadata, when you first import into LR, LR will assume that the capture time is the hour of the modified file.  LR to rewrite the date of capture of metadata in the file by selecting and making the metadata you can do > edit Capture time, clicking OK and then by metadata > save metadata to file. You can do it in batch - choose all your old photos and make metadata > edit Capture time, click OK, to metadata > save metadata to file.  LR will affect its time updated each file capture time.   If you want to set the time captured in the file create time, select this option in the window change the Capture time before clicking OK.  But beware that many Windows and Mac file utilities cannot preserve create time, even if they retain changed time, in order to create your files time can be wrong.   And of course, make sure that your backups are up to date and valid before making any new procedure file with which you aren't familiar.

    But if you really want to use non-standard file dates to keep your metadata information, and you want Adobe to modify accordingly the LR, so please give your opinion and vote on it in the Adobe official feedback forum: Bug report: Lightroom modifies the image files creation date. This forum is a user forum in which is rarely involved Adobe, Adobe said they read every post in the forum comments (and sometimes they respond).

  • Problem with jazn-data

    Hi all

    On the one hand of my application, I configured the ADF security and created a user. When I run the app on JDEV (Integrated Server), I observed that the credentials provided in the jazn data are not honoured. I opened the console web server integrated and found that users created in jazn do not appear. I understand that used the migrated users from b, if we use a standalone environment, but in the integrated environment, im expecting to see (created in jazn) users on the console.

    Thanks in advance,
    Rambeau

    Hello

    the Application | Application properties. Deployment option has checkboxes to decide or not to deploy the credentials

    Frank

  • How to use the LOB data type?

    I can't create a table with the LOB data type.

    Do I need an additional parameter in sys.odbc.ini?

    My dsn information is

    [tpch]

    Driver=/home/TimesTen/TimesTen/tt1121/lib/libtten.so

    Data store = / home/timesten/TimesTen/tt1121/tpch/tpch

    LogDir = / home/timesten/TimesTen/tt1121/tpch/logs

    PermSize = 4096

    TempSize = 2048

    PLSQL = 1

    LOB = 1

    DatabaseCharacterSet = US7ASCII

    -bash-4, $ 1 ttdaemonadmin-version

    TimesTen Release 11.2.1.2.0

    There is no LOB = 1 attribute; Please, delete it from your definition ODBC to avoid potential errors.

    LOB support has been added in the major version 11.2.2 TimesTen. So you use 11.2.1 LOB is not available. If you want to use LOB data, then you must upgrade to 11.2.2.

    Chris

Maybe you are looking for