Arrange filter plugins in user-defined category hierarchy ? (such as Lightroom Collections)

The issue is the long list of un-related (alphabetical) plugins.
Is it possible to arrange plugins in categories/subcategories (like collections/subcollections in Lightroom) ?
i.e.
- Noise reduction
- Geometric transforms
- Sharpening
- Special effects
- Color
The advantage would be that a filter could be in several collections(categories).
Any way to do this ?
(A new plugin ? )

Thank you Zeno !
I have looked at Configurator 2 user guide.
Seems a little too complicated for me now.
Is it interactive ?
(possible to move/copy/paste filters in a hierarchy ?)
If it is
I hope some skilled developper
can make the applet public.
I'm willing to beta (alpha) test !

Similar Messages

  • Does SQL Server agent/IIS plugin support User-Defined metrics?

    Hi,
    Does anyone know if there is a way to add a user-defined metric that connects to a SQL Server database?
    Thanks

    Recently, I released a full MySQL plug-in, for example - http://www.pythian.com/blogs/mysql-plug-in-for-oracle-grid-control
    For me it's not very difficult but it takes some time to get used to.
    I did presentations on creating Management plug-ins and couple articles in IOUG SELECT Magazine. The latest presentation and whitepaper is here - http://www.pythian.com/blogs/466/ioug-collaborate-07-oracle-10g-grid-control
    Official extensibility guide has much more details and is priceless reference but, still, not everything is documented there.

  • CS3/CS4 - Plugin deletes user-defined keyboard shortcuts?

    Hi,
    I have users complaining that my plugin deletes their keyboard shortcuts. My plugin does not mess with any keyboard shortcuts, so how can this happen?
    Hope somebody can shed some light on this problem
    Kind regards Toke

    Is this an installation issue or does it happen later on? When *any* plugin is installed, InDesign rebuilds several caches from resources. That includes actions, menus and consequently also shortcuts. We had that recently with action/menu filters being asked only on first run.
    Anyway, the plugin readme should tell the user to save their precious shortcuts into a set before installation ...
    Dirk

  • Can I get multiple User-defined variables in one slide?

    I have used the user defined variables in the past to collect identifiying information on quiz results, as well as for quiz certificate.  I would like to re-use the variables in a couple of areas.  in my project, one slide will prompt the User Name (variable I created), second will prompt for User ID (variable I created).  I would like a third screen that reads "Confirm your previous entries", and I want it to show the two variables.  I am only seeing the first one.  Is there a way to get them both to display?
    I would also like to re-use both in the quiz certificate at the end.  If I edit the certificate widget in Flash, will both variable display?
    This quiz reports to me via email (we have no LMS).
    Any suggestions?
    Cyndi Nagel

    Hi again
    Did you shrink the screen shot before uploading? You're right. It's barely legible.
    If the variables are being inserted in more than one caption, have you double checked the timing? Perhaps something is pausing the slide before one of the captions has a chance to appear.
    Cheers... Rick
    Helpful and Handy Links
    Captivate Wish Form/Bug Reporting Form
    Adobe Certified Captivate Training
    SorcerStone Blog
    Captivate eBooks

  • Assign category of user defined field to different user

    hi to all on forum,
    please help me to find the solution of this query
    i had created several UDF  and set them in different category as setting is there for user defined field. now i am getting different different user defined field in different category ,
    now i want to set this different category of user defined field to different user .can we do it in SAP B1
    like category---- general , cat1, cat2,
    user --- Ram , Vipul
    i want to assign cat 1 to ram and and cat 2 to Vipul   so that with the document ram will see only UDF of cat1 and Vipul will see UDF of Cat 2.
    hope for  response
    with best regards
    vikas

    Vikas,
    You can do it for each user by assigning a category
    to each of user defined field by setting visible tick mark.
    Tools>User Defined Fields>Settings
    Jeyakanthan

  • User-defined function in FILTER clause

    hi,
    can i create the user-defined functions and use them in the FILTER clause in the sem_match function? there are some built-in functions for the FILTER clasue. however, only one function (DATATYPE(literal)) support for date/time in the built-in functions. i want to implement some user-defined funcitons in the FILTER clause which can check time intervals in ontology. there are some functions about valid time in the WorkSpace Manager such as WM_OVERLAPS, WM_CONTAINS,WM_MEETS, etc. so, can i write some functions using the these valid time functions in WM and use them in the FILTER clause? thanks a lot in advance.
    hong

    Hi Hong,
    You don't need user-defined functions to do time interval comparisons. You can directly compare xsd:dateTime values with the built-in comparison operators: <, >, =, !=, <=, >=
    For example, the query pattern below could find events that happened during event1 if we have data such as:
    :event1 :startTime "2013-01-01T03:15:00Z"^^xsd:dateTime .
    :event1 :endTime "2013-02-01T02:15:00Z"^^xsd:dateTime .
    :event2 :startTime "2013-01-11T14:15:00Z"^^xsd:dateTime .
    :event2 :startTime "2013-01-14T12:15:00Z"^^xsd:dateTime .
    SELECT ?e2
    WHERE
    { :event1 :startTime ?e1_st; :endTime ?e1_et .
    ?e2 :startTime ?e2_st; endTime ?e2_et .
    FILTER (?e1_st < ?e2_st && ?e2_et < ?e1_et) }
    In general, it is trivial to convert interval relations such as meets and overlaps to conditions on start and end times.
    Hope this helps.
    - Matt

  • Could not load user defined filter. - Weblogic 8.1 sp2

    Hi,
    I got an error in the server output when starting a server with filter. The jar file is located in the WEB-INF/lib but it seems that it could not be loaded. The same application runs fine in Weblogic 7 sp2. Any idea?
    $ cat web.xml
    <!DOCTYPE web-app PUBLIC "-//Sun Microsystems, Inc.//DTD Web Application 2.3//EN
    " "http://java.sun.com/dtd/web-app_2_3.dtd">
    <web-app>
    <!-- Register the GZIPfilter -->
    <filter>
    <filter-name>Compress</filter-name>
    <filter-class>com.jspbook.GZIPFilter</filter-class>
    </filter>
    <filter-mapping>
    <filter-name>Compress</filter-name>
    <url-pattern>*.jsp</url-pattern>
    </filter-mapping>
    <filter-mapping>
    <filter-name>Compress</filter-name>
    <url-pattern>*.html</url-pattern>
    </filter-mapping>
    <Jul 16, 2004 4:53:10 PM EDT> <Error> <HTTP> <BEA-101165> <Could not load user defined filter: com.jspbook.GZIPFilter.
    <java.lang.ClassNotFoundException: com.jspbook.GZIPFilter
    <     at weblogic.utils.classloaders.GenericClassLoader.findClass(GenericClassLoader.java:198)
    <     at weblogic.utils.classloaders.ChangeAwareClassLoader.findClass(ChangeAwareClassLoader.java:62)
    <     at java.lang.ClassLoader.loadClass(ClassLoader.java:299)
    <     at java.lang.ClassLoader.loadClass(ClassLoader.java:255)
    <     at weblogic.utils.classloaders.GenericClassLoader.loadClass(GenericClassLoader.java:223)
    <     at weblogic.utils.classloaders.ChangeAwareClassLoader.loadClass(ChangeAwareClassLoader.java:41)
    <     at weblogic.servlet.internal.WebAppServletContext.loadClass(WebAppServletContext.java:5574)
    <     at weblogic.servlet.internal.WebAppServletContext.registerFilter(WebAppServletContext.java:2901)
    <     at weblogic.servlet.internal.WebAppServletContext.initFilters(WebAppServletContext.java:2878)
    <     at weblogic.servlet.internal.WebAppServletContext.preloadResources(WebAppServletContext.java:3176)
    <     at weblogic.servlet.internal.HttpServer.preloadResources(HttpServer.java:688)
    <     at weblogic.servlet.internal.WebService.preloadResources(WebService.java:483)
    <     at weblogic.servlet.internal.ServletInitService.resume(ServletInitService.java:30)
    <     at weblogic.t3.srvr.SubsystemManager.resume(SubsystemManager.java:131)
    <     at weblogic.t3.srvr.T3Srvr.resume(T3Srvr.java:964)
    <     at weblogic.t3.srvr.T3Srvr.run(T3Srvr.java:359)
    <     at weblogic.Server.main(Server.java:32)
    <>

    This is probably some jsf library issue.
    Which technology are you using? (ADF is not supported on WLS 12c)
    If you have jsf-api.jar or jsf-impl.jar in your deployment, try to remove them.
    Dario

  • User defined characteristics for planning hierarchy

    Hi Experts,
    I am using flexible planning for sales planning when I define a planning hierarchy, I want to include a user defined field also.
    The requirement is like this, Planner wanted to see the cumulative sales figures of domestic and exports (Exports will be to more than one country. So I cant use countries for this).
    How can I do this?
    Request your expert advice.
    Regards

    Hi Ram,
    Thanks for the reply. Since Iam using flexible planning, I will be creating a user defined info structure. But my question is can I include a custom defined characteristic also in the hierarchy which is not available in the field catalogs for characteristics system is showing?
    If so where should I define this characteristics first before assigning to the information structure.
    Thanks & Regards
    Enrico

  • 한글 문서를 FILTER 하는 프로그램 (USER DEFINED FILTER),INTERMEDIA

    제품 : ORACLE SERVER
    작성날짜 : 2000-04-20
    index될 한글 문서를 깨끗이 정리해주는 프로그램 (user defined filter)
    intermedia catriger사용시 (혹은 context option사용시), index생성 도중
    오류가 생기는 원인은 여러가지가 있을 수 있다.
    그 중 대표적인 것이 indexing할 형태소들을 포함하는 문서에 특수 문자등이
    포함되어 있거나 하나의 형태소가 64 bytes이상인 경우이다.
    이러한 경우 그 형태소를 표준 한글 형태소만을 fileter하여 indexing하면 된다.
    여기에서는 이렇게 한글 문서를 filter하는 user defined filter의 source와
    사용법을 정리하였다.
    1.사용방법
    (1) 2번 프로그램 soruce에 포함된 fixhan.c, fixmain.c fixhan.h를 각각
    file로 만들어 둔다.
    (2) 아래와 같이 compile한다.
    cc -c fixhan.c
    cc -c fixmain.c
    (3) 다음과 같이 실행 화일을 만든다.
    cc -o fixmain fixhan.o fixmain.o
    (4) (3)에서 생성된 fixmain을 $ORACLE_HOME/ctx/bin 밑에 위치시킨다.
    (5) user filter를 설정하시면 됩니다.
    sql>execute ctx_ddl.create_preference('length_f', 'USER_FILTER');
    sql>execute ctx_ddl.set_attribute('length_f', 'command', 'fixmain');
    sql>create index tokenlength_test_idx on tokenlength_test(text)
    indextype is ctxsys.context
    parameters( 'filter length_f' ) ;
    2.프로그램 source
    (1) fixmain.c
    /* Copyright (c) Oracle Korea 1998. All Rights Reserved. */
    * NAME
    * fixmain.c
    * DESCRIPTION
    * MODIFIED (MM/DD/YY)
    * jdlee 08/05/98 - Creation
    #include <stdio.h>
    #include "fixhan.h"
    /*----------------------------- main -------------------------------*/
    int main(argc, argv)
    int argc;
    char *argv[];
    FILE fIn, fOut;
    unsigned char v_tkval;
    int v_status;
    char v_buf[FIX_OUTBUFSIZ];
    if( argc < 3 )
         return -1;
    fIn = fopen(argv[1], "rb");
    if( fIn == NULL )
    return -1;
    fOut = fopen(argv[2], "wb");
    if( fOut == NULL )
    return -1;
    v_status = STS;
    while( !feof(fIn) )
    v_tkval = (unsigned char) ( fgetc(fIn) & 0xFF );
    v_status = fixhan(v_tkval, v_status, v_buf);
    if ( v_buf[0] != 0 )
    fprintf(fOut, v_buf);
    fclose(fIn);
    fclose(fOut);
    printf("done.\n");
    return 0;
    (2) fixhan.c
    /* Copyright (c) Oracle Korea 1998. All Rights Reserved. */
    * NAME
    * fixhan.c
    * DESCRIPTION
    * PUBLIC FUNCTION(S)
    *     fixhan
    * PRIVATE FUNCTION(S)
    * isValidKSC
    * NOTES
    * MODIFIED (MM/DD/YY)
    * jdlee 08/05/98 - Creation
    #include <stdio.h>
    #include "fixhan.h"
    /* if token length is more than 32, token is splitted. */
    #define SPLIT_WORD 1
    static int isValidKSC (/*_ unsigned char preChar, unsigned char v_tkval _*/);
    /*----------------------------- TKmap -------------------------------*/
    * NAME
    * TKmap -
    * DESCRIPTION
    * IGN 0 - ignore
    * TKW 1 - whitespace ( ' ', '\n', '\t' )
    * TKG 2 - grphic symbol, not indexed
    * TKE 3 - english, indexed ( number, alphabet, &,-. )
    * TKH 4 - hangeul one byte ( >= 0xa1 )
    * IGN: 00 - 08
    * TKW: 09, 0A
    * IGN: 0B, 0C
    * TKW: 0D
    * IGN: 0E - 1F
    * TKW: 20
    * TKG: 21 - 2F ( except &,-. : 26,2C,2D,2E -> TKE )
    * TKE: 30 - 39
    * TKG: 3A - 40
    * TKE: 41 - 5A
    * TKG: 5B - 60
    * TKE: 61 - 7A
    * TKG: 7B - 7E
    * IGN: 7F - A0
    * TKH: A1 - FE
    * IGN: FF
    * ARGUMENTS
    * RETURNS
    * NOTES
    static int TKmap[256] =
    IGN, IGN, IGN, IGN, IGN, IGN, IGN, IGN, IGN, TKW, TKW, IGN, IGN, TKW, IGN, IGN,
    IGN, IGN, IGN, IGN, IGN, IGN, IGN, IGN, IGN, IGN, IGN, IGN, IGN, IGN, IGN, IGN,
    TKW, TKG, TKG, TKG, TKG, TKG, TKE, TKG, TKG, TKG, TKG, TKG, TKE, TKE, TKE, TKG,
    TKE, TKE, TKE, TKE, TKE, TKE, TKE, TKE, TKE, TKE, IGN, TKG, TKG, TKG, TKG, TKG,
    TKG, TKE, TKE, TKE, TKE, TKE, TKE, TKE, TKE, TKE, TKE, TKE, TKE, TKE, TKE, TKE,
    TKE, TKE, TKE, TKE, TKE, TKE, TKE, TKE, TKE, TKE, TKE, TKG, TKG, TKG, TKG, TKG,
    TKG, TKE, TKE, TKE, TKE, TKE, TKE, TKE, TKE, TKE, TKE, TKE, TKE, TKE, TKE, TKE,
    TKE, TKE, TKE, TKE, TKE, TKE, TKE, TKE, TKE, TKE, TKE, TKG, TKG, TKG, TKG, IGN,
    IGN, IGN, IGN, IGN, IGN, IGN, IGN, IGN, IGN, IGN, IGN, IGN, IGN, IGN, IGN, IGN,
    IGN, IGN, IGN, IGN, IGN, IGN, IGN, IGN, IGN, IGN, IGN, IGN, IGN, IGN, IGN, IGN,
    IGN, TKH, TKH, TKH, TKH, TKH, TKH, TKH, TKH, TKH, TKH, TKH, TKH, TKH, TKH, TKH,
    TKH, TKH, TKH, TKH, TKH, TKH, TKH, TKH, TKH, TKH, TKH, TKH, TKH, TKH, TKH, TKH,
    TKH, TKH, TKH, TKH, TKH, TKH, TKH, TKH, TKH, TKH, TKH, TKH, TKH, TKH, TKH, TKH,
    TKH, TKH, TKH, TKH, TKH, TKH, TKH, TKH, TKH, TKH, TKH, TKH, TKH, TKH, TKH, TKH,
    TKH, TKH, TKH, TKH, TKH, TKH, TKH, TKH, TKH, TKH, TKH, TKH, TKH, TKH, TKH, TKH,
    TKH, TKH, TKH, TKH, TKH, TKH, TKH, TKH, TKH, TKH, TKH, TKH, TKH, TKH, TKH, IGN
    static int STmap[STATENUM][TOKENNUM] = {
    /* IGN TKW TKG TKE TKH */
    { STE, STE, STE, STE, STF }, /* STS */
    { STE, STE, STE, STE, STF }, /* STE */
    { STE, STE, STE, STE, STE } /* STF */
    /*----------------------------- isValidKSC ------------------------*/
    * NAME
    * isValidKSC -
    * DESCRIPTION
    * K_INDEX - hangeul,hanja index word
    * K_GRAPH - graphic character
    * K_IGNORE - ignore character
    * [A1,AF] x [A1,FE] : K_GRAPH
    * [B0,C8] x [A1,FE] : K_INDEX
    * [C9] x [A1,FE] : K_IGNORE
    * [CA,FD] x [A1,FE] : K_INDEX
    * [FE] x [A1,FE] : K_IGNORE
    * ARGUMENTS
    * RETURNS
    * NOTES
    static int isValidKSC(preChar, v_tkval)
    unsigned char preChar;
    unsigned char v_tkval;
    int rc;
    if ( ( ( preChar >= 0xb0 && preChar <= 0xc8 )
    || ( preChar >= 0xca && preChar <= 0xfd ) )
    && ( v_tkval >= 0xa1 && v_tkval <= 0xfe ) )
    rc = K_INDEX;
    else if ( ( preChar >= 0xa1 && preChar <= 0xaf )
    && ( v_tkval >= 0xa1 && v_tkval <= 0xfe ) )
    rc = K_GRAPH;
    else
    rc = K_IGNORE;
    return rc;
    /*----------------------------- fixhan -------------------------------*/
    * NAME
    * fixhan -
    * DESCRIPTION
    * v_count_of_index_char - count of index word after white space
    * in case of v_buf being TKW, TKG, K_GRAPH, set to 0
    * in case of v_buf being TKE, added 1
    * in case of v_buf being K_INDEX, added 2
    * ARGUMENTS
    * v_tkval (IN) - token value
    * v_status (IN) - current status
    * v_buf (OUT) - output buffer byte length 4 ( 1 + 3 )
    * it should return one of TKW, TKG, TKE, K_GRAPH and K_INDEX,
    * and can be added one space
    * RETURNS
    * next status
    * NOTES
    int fixhan(v_tkval, v_status, v_buf)
    unsigned char v_tkval;
    int v_status;
    char v_buf[FIX_OUTBUFSIZ];
    static unsigned char preChar;
    static int v_count_of_index_char;
    int i;
    int rc;
    int v_tk;
    int v_nxtstat;
    v_tk = TKmap[v_tkval];
    i = 0;
    #ifdef SPLIT_WORD
    if ( v_count_of_index_char >= MAX_TOKENLENGTH )
    v_buf[i++] = ' ';
    v_count_of_index_char = 0;
    #endif /* SPLIT_WORD */
    switch( v_status )
    case STS:
    v_count_of_index_char = 0;
    case STE:
    if ( v_tk == IGN )
    v_buf[i++] = ' ';
    v_count_of_index_char = 0;
    else if ( v_tk == TKW )
    v_buf[i++] = v_tkval;
    v_count_of_index_char = 0;
    else if ( v_tk == TKG )
    v_buf[i++] = v_tkval;
    v_count_of_index_char = 0;
    else if ( v_tk == TKE )
    v_buf[i++] = v_tkval;
    v_count_of_index_char += 1;
    else if ( v_tk == TKH )
    v_buf[i] = 0;
    else /* this routine should not be processed. */
    v_buf[0] = 0;
    break;
    case STF:
    if ( v_tk == IGN || v_tk == TKW || v_tk == TKG || v_tk == TKE )
    v_buf[i++] = ' ';
    v_count_of_index_char = 0;
    else if ( v_tk == TKH )
    rc = isValidKSC(preChar, v_tkval);
    if ( rc == K_INDEX )
    v_buf[i++] = preChar;
    v_buf[i++] = v_tkval;
    v_count_of_index_char += 2;
    else if ( rc == K_GRAPH )
    v_buf[i++] = preChar;
    v_buf[i++] = v_tkval;
    v_count_of_index_char = 0;
    else if ( rc == K_IGNORE )
    v_buf[i++] = ' ';
    v_count_of_index_char = 0;
    else /* this routine should not be processed. */
    v_buf[i++] = ' ';
    v_count_of_index_char = 0;
    else /* this routine should not be processed. */
    v_buf[i++] = ' ';
    v_count_of_index_char = 0;
    break;
    default: /* this routine should not be processed. */
    v_buf[0] = 0;
    break;
    v_buf[i] = 0;
    preChar = v_tkval;
    v_nxtstat = STmap[v_status][v_tk];
    return v_nxtstat;
    (3) fixhan.h
    /* Copyright (c) Oracle Korea 1998. All Rights Reserved. */
    * NAME
    * fixhan.h
    * DESCRIPTION
    * PUBLIC FUNCTION(S)
    *     fixhan
    * PRIVATE FUNCTION(S)
    * NOTES
    * MODIFIED (MM/DD/YY)
    * jdlee 08/05/98 - Creation
    * IGN: 00 - 08
    * TKW: 09, 0A
    * IGN: 0B, 0C
    * TKW: 0D
    * IGN: 0E - 1F
    * TKW: 20
    * TKG: 21 - 2F ( except &,-. : 26,2C,2D,2E -> TKE )
    * TKE: 30 - 39
    * TKG: 3A - 40
    * TKE: 41 - 5A
    * TKG: 5B - 60
    * TKE: 61 - 7A
    * TKG: 7B - 7E
    * IGN: 7F - A0
    * TKH: A1 - FE
    * IGN: FF
    #define TOKENNUM 5
    #define IGN 0 /* ignore */
    #define TKW 1 /* whitespace ( ' ', '\n', '\t' ) */
    #define TKG 2 /* grphic symbol, not indexed */
    #define TKE 3 /* english, indexed */
    #define TKH 4 /* hangeul one byte ( >= 0xa1 ) */
    #define STATENUM 3
    #define STS 0 /* start */
    #define STE 1 /* english */
    #define STF 2 /* hangeul first byte */
    /* KSC5601 [A1,FE] x [A1,FE] */
    #define K_INDEX 0 /* hangeul,hanja index word */
    #define K_GRAPH 1 /* graphic character */
    #define K_IGNORE 2 /* ignore character */
    /*----------------------------- fixhan -------------------------------*/
    * NAME
    * fixhan -
    * DESCRIPTION
    * ARGUMENTS
    * v_tkval (IN) - token value
    * v_status (IN) - current status
    * v_buf (OUT) - output buffer byte length 4
    * it should return one of TKW, TKG, TKE, K_GRAPH and K_INDEX.
    * RETURNS
    * next status
    * NOTES
    #define FIX_OUTBUFSIZ 4
    #define MAX_TOKENLENGTH 32
    int fixhan(/*_ unsigned char v_tkval, int v_status, char v_buf[FIX_OUTBUFSIZ] _*/);                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               

    Hi Ralf,
    please define first your own preferences like this:
    exec CTX_DDL.drop_preference('MY_LEXER');
    exec CTX_DDL.create_preference('MY_LEXER','BASIC_LEXER');
    exec CTX_DDL.set_attribute('MY_LEXER','ALTERNATE_SPELLING',
    'GERMAN');
    exec CTX_DDL.set_attribute('MY_LEXER','BASE_LETTER','YES');
    exec CTX_DDL.set_attribute('MY_LEXER','MIXED_CASE', 'NO');
    exec CTX_DDL.set_attribute('MY_LEXER','INDEX_THEMES','NO');
    exec CTX_DDL.set_attribute('MY_LEXER','INDEX_TEXT', 'YES');
    exec CTX_DDL.set_attribute('MY_LEXER','COMPOSITE', 'GERMAN');
    exec ctx_ddl.Drop_Preference ('MY_FILTER');
    exec ctx_ddl.Create_Preference ('MY_FILTER','NULL_FILTER');
    exec ctx_ddl.drop_section_group ('MY_SECTION');
    exec ctx_ddl.create_section_group
    ('MY_SECTION','NULL_SECTION_GROUP');
    and then create your index with this preferences. You only need
    an INSO filter if you want to index pdf,word,...
    create index test.alldocs_ctx on test.alldocs(data)
         indextype is ctxsys.context
         parameters ('DATASTORE CTXSYS.MyUserDS FILTER
    CTXSYS.INSO_FILTER LEXER BASIC_LEXER');create index test.alldocs_ctx on test.alldocs(data)
         indextype is ctxsys.context
         parameters ('
    DATASTORE CTXSYS.MyUserDS
    lexer MY_LEXER
    filter MY_FILTER
    section group MY_SECTION');
    Then see in the token table what tokens are in the index:
    select token_text from dr$alldocs_ctx$i;
    If you got also an ORA-3113 see in alert.log if there is a trace
    referenced with this error and have a look in this file to find a
    better error message.
    Good luck.
    Thomas

  • [All Platforms][Your Music] Make it possible to tag and filter "My Music" with user-defined tags

    It would be very nice and convenient to be able to tag and filter "My Music" (playlists, songs, albums and artists) with user-defined tags. I'm sure quite a few users would like to classify their music by genre. Myself, I would like to tag my albums, assigning them to different virtual collections.

    Updated: 2015-07-23Hello and thanks for the feedback!
    A similar idea has also been suggested here:
    https://community.spotify.com/t5/Live-Ideas/Your-Music-Grouping-or-Sorting-by-Tags/idi-p/744947
    Add your kudos and comments there please! ;)

  • Can Automation be used to send User-defined CC's to Environment objects?

    Hi, this is probably a really dumb question but I'll ask it anyway:
    I've bought a controller-environment for a synth (Alphajuno2, PG300 programmer) for Logic, the faders in the environment layer use sysex to communicate with the synth.
    Apparently it is possible to map an external midi-controller to these environment-faders, and that's all and fine, but what I'm after is a method of using automation to control the environment-faders. How would I go about doing it?
    I've only ever really automated some volume changes or plugin parameter changes, I've not yet automated faders in the environment, so how would I go about doing it?
    Would I create a fader which I'd link to the sysex-sending fader, and automate the fader, or maybe an environment-monitor (and add it to the arranger) and somehow configure a set of CC#'s to be automated with that arranger object, and then just cable them up to the various Sysex-sending faders (I do know enough to be able to set the input of those sysex-faders to match the CC#'s which the automation would be sending).
    Is this kind of "User-defined CC#'s in Automation" possible? How should I go about it?
    Message was edited by: esaruoho to further clarify it

    Is it just because there is currently no way whatsoever of Automation CC, and I should have known to use Hyper Draw to talk to an Environment object directly, which would then be connected to the Faders of choice?

  • Looking for a 'step filter' plugin...

    Essentially I'm looking for a step based filter plugin that works in a similar way to Delay Designer, whereby you can define the cutoff/resonance/pan etc within a grid, thus giving complete control over where, when and for how long parts are filtered.
    This would be a pretty cool plug I think and I've looked before but not found anything. I like the simplicity of Delay Designer too so I don't want to get lost in features I don't need. Does anyone know of such a thing? I have Reaktor if anyone knows any user files, but I always find it a bit complex and painful. Otherwise I'm prepared to pay for something if it's decent.
    Cheers

    This has a 128 step sequencer for filtering and panning:
    http://www.camelaudio.com/camelspace.php
    Also the Ensemble "Vierring" in your Reaktor factory Library has fantastic filtering features as each of the 4 filter bands can be linked to it's own step sequencer plus many FX options.
    Message was edited by: Sampleconstruct

  • Using a user-defined element in ASO cube.

    I have an ASO cube to which I'm adding a new hierarchy/dim containing a single user-defined element as a member. This dim is set to dynamic at dimension level, since I'm going to add additional members with formulas.
    My issue is that as soon as I add this new hierarchy to my cube, all my fact values double! What could cause this and how should I fix this? The user-defined element in this new dim is not connect to the rest of my data in any way, i.e. it is not in any table of my minischema. So why should it have any impact on my data values? Should I be adding a filter of some kind on this user-defined element?
    Fyi- I'm using Essbase Studio (EPM 11.1.2) for cube building and data loading.
    Appreciate any help.
    thanks,
    Axe

    A colleague suggested a reason that SDO_GEOMETRY works is that it is granted to PUBLIC with GRANT OPTION. PUBLIC is not a proper role, somewhere between a user and a role and the issue of having to receive permissions on the type explicitly do not apply.
    If I GRANT EXECUTE ON XTYPE TO PUBLIC WITH GRANT OPTION; it works!
    Thanks for the replies.
    C

  • How to provide value to a User Defined field thru java code

    I am using OIM 11.1.1.5.
    I have a user defined field called Unique-Customer-Number. This field need to be pre-populated during user creation (using OIM Web UI) and the value comes from a java code.
    Can any of you tell me the high level steps to implement this.
    Thanks!
    Kabi

    Thanks Rajiv,
    I just followed everything on metalink 1262803.1. My console shows the followings during Metadata import.
    weblogicImportMetadata.bat :-
    Starting import metadata script ....
    Please enter your username :weblogic
    Please enter your password :
    Please enter your server URL [t3://localhost:7001] :t3://10.10.99.99:7001
    Connecting to t3://10.10.99.99:7001 with userid weblogic ...
    Successfully connected to Admin Server 'adm_server01' that belongs to domain 'server01'.
    Warning: An insecure protocol was used to connect to the server. To ensure on-the-wire security, the SSL port or Admin port should be used instead.
    Location changed to domainRuntime tree. This is a read-only tree with DomainMBean as the root.For more help, use help(domainRuntime)
    Disconnected from weblogic server: adm_eimsdv1s01
    End of importing metadata script ...
    Exiting WebLogic Scripting Tool.
    How I will I know that my plugin/ event-Handler is registered successfully. Is there any screen where I can see all registered plugins ?

  • User Defined field in UDT - how to create select from existing data

    Hi
    I want to create User Defined Table for purpose of storing records of sales visits made to customers.
    I want to record detail for example: Date of Visit; Sales Employee; Activity number ref (which has attached PDF visit report); Related Opps)
    I am not sure exact detail as I have never created User Defined Table before so I am not sure how best to achieve my requirement.
    But I want one of the fields to be Business Partner code.
    My question is How should I set the BP field so that available options are existing Business Partner codes?
    I would like to set field so that if I enter for example:
    "CAQ"... and I click Tab key then SAP will bring list of BP Codes which begin with CAQ (eg. CAQU001; CAQF001 etc) for my selection.
    Is this possible?
    Regards,
    Karen

    hi.
    u can create a user defined table enter your values..by creating columns like..
    Customercode, customer name, vitst time, attachnment.
    but
    "CAQ"... and I click Tab key then SAP will bring list of BP Codes which begin with CAQ (eg. CAQU001; CAQF001 etc) for my selection.
    above one u can not do it..
    all the cutomer codes will come if u use coding........are u can filter as per ur requirement
    else
    if u say i  am not using the coding..
    u can get all the  business master codes... but u have to use fms  u have to put it..otherwise u can not do it...

Maybe you are looking for

  • Change Maintenance Work Order Detail Report in Print WO page

    Hello, I would like to ask you for your help. We would like to have different report in Print WO function than Maintenance Work Order Detail Report. I mean SSM responsibility > Search for WOs > click Print WO icon. We applied patch #9871500 (I found

  • How can I know the delta field for CO-PA datasource?

    Hi,folks:     How can I know which is the field assigned as the delta field for CO-PA datasource,as is noticed in the note that after PI2004 the logic has been turned to general datasource,but I can't find the datasource through RSO2.     Full points

  • How can i fix my wifi and bluetooth issues in yosemite?

    Hi, after upgrading to Yosemite I've noticed that my bluetooth trackpad (Logitech t651) and wifi connection are having serious conflicts which result in sluggish trackpad response or occasional wifi connection drops. I would have some occasional slug

  • Strange resolution problem mac mini 2010 w lion 10.7.3

    Hi! I use XBMC as a media center client, and did the update to 10.7.3 yesterday. This update gave me a problem with the resolution on a 55 "LED TV. If xbmc is running and I switch the source on the television to for example, tuner or blueray player,

  • Can't open dmg or zip files

    I have Yosemite, and recently installed the latest system update for this. I've noticed today that I can't open dmg or zip files - attempting to do this via the 'open with' command results in the icon for (eg disk utility) appearing in the dock and h