Syntax of COMPUTE_EXPR in target type metadata

Anyone knows what's the syntax of that expression? I can do basic stuff there like calculating rate from cumulative counters. I need, however, to have something like DECODE or CASE to overcome huge negative values in case of counter overflow.
If I have transient column COL I put formula like:
(COL - _COL) / __intervalIf that expression is negative I want it it to be 0 or better yet empty (NULL).

COMPUTE_EXPR: This attribute specifies the formula for calculating the value of the column. Columns previously defined in the Table descriptor can participate in the calculation. Attaching a ‘_’ prefix to a column name denotes previous value of a column. Support for string expressions is introduced in version 10.2. Please refer to the Examples for details about the expression grammar and usage.
Predefined special values:
a) __interval: collect interval.
b) __sysdate: current system time.
c) __GMTdate: current GMT time.
d) __contains: tests a given string expression for presence of a string expression.
e) __beginswith: tests whether a given string expression begins with a specified string expression.
f) __endswith: testw whether a given string expression ends with the specified string expression.
g) __matches: tests whether a given string expression matches a specified string expression.
h) __delta: computes the difference between the current value and the previous value.
i) __leadingchars: returns the leading characters in the specified string.
j) __trailingchars: returns the trailing characters in the specified string.
k) __substringpos: returns the position of the occurrence of the pattern within a specified string.
l) __is_null: tests whether the expression is NULL
m) __length: returns the length of the string expression.
n) __to_upper: converts the string to upper case.
o) __to_lower: converst the string to lower_case.
p) __ceil: returns the smallest integral value not less than identifier.
q) __floor: returns the largest integral value not greater than the identifier.
r) __round: rounds to nearest integer, away from zero.
Compute Expression support:
Supported Grammar:
expression := (cond_expr | (cond_expr ? cond_expr : cond_expr)
cond_expr := (string_expr |
(string_expr == string_expr) |
(string_expr < string_expr) |
(string_expr > string_expr) |
(string_expr <= string_expr) |
(string_expr >= string_expr) |
(string_expr __contains string_expr) |
(string_expr __beginswith string_expr) |
(string_expr __endswith string_expr) |
(string_expr __matches string_expr) |
(string_expr __delta string_expr))
string_expr := (simple_expr |
(simple_expr __leadingchars simple_expr) |
(simple_expr __trailingchars simple_expr) |
(simple_expr __substringpos simple_expr))
simple_expr := (term |
(simple_expr + term ) |
(simple_expr - term) )
term := (unary_expr |
(term * unary_expr ) |
(term / unary_expr ) )
unary_expr := (factor |
(__is_null factor) |
(__length factor) |
(__to_upper factor) |
(__to_lower factor) |
(__ceil factor) |
(__floor factor) |
(__round factor) )
factor := ( identifier |
string_literal |
number |
'(' expression ')' )
string_literal := '\'' (character | "\\'" )* '\''

Similar Messages

  • Object does not match target type when raising an event from c# to VB6

    I have a c# .net DLL that I use from a VB6 app. It exposes an event,
    and the VB6 app is sinking it.
    The VB6 app is receiving the event, as long as it is raised from the
    main thread of the .net DLL.
    I have an aync task being handled inside the DLL (delegate BeginInvoke). Any
    attempt to raise the event from within that thread casuses the reported
    error, even from within the AsyncCallback function, when the thread is ending.
    I noticed that the delegate for the event is not declared inside the
    interface. It's in that module, but above the interface definition:
        [ComVisible(false)]
        public delegate void LoggingEventHandler( string logData );
    The event is declared in the class itself as:
        public class Processor : _Processor
            public event LoggingEventHandler        LogNotification;
    Finally, to raise the event:
    if ( this.Completed != null )
        this.Completed( true );
    If I open the tlb with OLEVIEW, I can see the public event just fine. Of course, I expected to, as it's working up until the helper thread kicks in.
    Now for the REAL WIERD PART! This DOES work on several servers that have
    been in production for months. It's just this one server that it won't work
    on. Same code. Resinstalled/registered it 1,000 times. It took me a while to
    find that an error was even occuring, since it was being raised in the
    seperate thread. In other words, I'm receiving the event just fine on a series of servers. This is a new machine we're trying to bring online. I suspect it's environmental, but I can't figure it out.
    I don't understand why the publisher would be expecting a certain type of
    subscriber in the first place... unless the error is really triggered by the client when the event reaches it. I've put logging into the client, though, and the first line of code inside the event is not being executed.
    For the VB6 app, I reference the tlb file that is automatically created when
    I compile (Interop is checked). I unregistered and re-registered the tlb on
    the server. I regasm'd the dll itself. All dlls are in the same folder - not
    in the GAC.
    The stack trace is as follows:
       at System.RuntimeType.InvokeDispMethod(String name, BindingFlags
    invokeAttr, Object target, Object[] args, Boolean[] byrefModifiers, Int32
    culture, String[] namedParameters)
       at System.RuntimeType.InvokeMember(String name, BindingFlags invokeAttr,
    Binder binder, Object target, Object[] args, ParameterModifier[] modifiers,
    CultureInfo culture, String[] namedParameters)
       at System.RuntimeType.ForwardCallToInvokeMember(String memberName,
    BindingFlags flags, Object target, Int32[] aWrapperTypes, MessageData&
    msgData)
       at HPFS.Queue.IProcessorEvents.LogNotification(String logData))

    This is driving me nuts!
    I sure would appreciate any suggestions.
    I got this working on one of the two machines. The other machine had some other issues, so I had it re-imaged. It's been so long since I fixed the first one, that I can't remember exactly how I did it. Plus, I did so many things to it over two weeks, that I never really felt confident, anyway. But ... I could *swear* that the last thing I did back then to get this event to flow was to re-register the DLL's TLB.
    So ... This is win 2k with FW 1.1 + SP1.
    Completed is the delagate I'm trying to invoke.
    this.Completed.Target.GetType().Name = "__comobject"
    I've tried everything. Unregistered the .tlb. Unregistered the .net DLL. Verified that the app completely failed while unregistered. Created the TLB using RegAsm /tlb syntax.
    I tried using CLR SPY. It registers nothing. It only lets me pick an EXE. This is a DLL tring to raise to an EXE.
    I've looked at the TLB in OLE VIEW and I just don't know what I'm looking at.
    Is there any other tool or technique I can use to audit/monitor/trap this? .net is giving me *** for details about what's failing. I wish I could somehow debug into exactly what it's trying to do and get more details on the failure.
    Here's the error I'm getting:
    (Code -1) Object does not match target type.<Source:mscorlib>(Stack:    at System.RuntimeType.InvokeDispMethod(String name, BindingFlags invokeAttr, Object target, Object[] args, Boolean[] byrefModifiers, Int32 culture, String[] namedParameters)
       at System.RuntimeType.InvokeMember(String name, BindingFlags invokeAttr, Binder binder, Object target, Object[] args, ParameterModifier[] modifiers, CultureInfo culture, String[] namedParameters)
       at System.RuntimeType.ForwardCallToInvokeMember(String memberName, BindingFlags flags, Object target, Int32[] aWrapperTypes, MessageData& msgData)
       at HPFS.Queue.IProcessorEvents.Completed(Boolean success)
       at HPFS.Queue.Processor.RequestDone())
    Processor = the DLL I'm trying to raise the event from.
    IProcessor = the event interface that's exposed through COM.

  • Error while updating to target type INFOCUBE

    Hi,
    After BI SP16 Upgrade, we noticed that data load to a cube with DTP (7X DS) with partioning active, it would error out saying, "Error while updating to target " " type INFOCUBE....we applied note '1148007' and did reactivation of related structures and objects but still same error....As soon as we deactivate partioning, data load would go thru easily and successfully but we want to have partioning "Active"......I was wondering if anybody ran into this issue and get it resolved...Any help or helpful hints would be appreciated...
    Thanks..

    Hi,
    take a look:
    Error while updating to target ZXXX (type INFOCUBE)
    Error while trying to make infoobject as data target
    Regards
    Andreas

  • How to create a people picker type metadata in a document set?

    
    Hi folks,
    I want to create a people picker type metadata in a document
    set (it has some content types and it resides inside a library).
    So please help me knowing steps for creating it. 
    Our web application is using classic based authentication therefore I want to retrieve the names and groups in people picker column from Active Directory.
    Also, the document set library for which I want to create people picker metadata did not had document set before and documents where saved directly in content types as well as the metadata that now we are making as people picker was before of type Single line
    of text. 
    So, whether after creating it of type people picker, at the time of moving documents into document set, it will create problem? If yes,than of of what kind and how can it be resolved?
    Replies will be greatly appreciated.
    -Ishita

    Hi,
    From your description, I know you want to add a people picker column in a document set, then add this document set into a document library.
    If you want to add a people picker column in a document set you should create a document set first. You can know how to create and configure a document set by referring to this article: https://support.office.com/en-us/article/Create-and-configure-a-new-Document-Set-content-type-9db6d6dc-c23a-4dcd-a359-3e4bbbc47fc1.
    After creating a document set, you can follow these steps below to add a people picker column in a document set: click Site Actions -> Site Settings -> under  Galleries section, Site content types -> find the content you want to add people
    picker column -> under Columns section, Add from new site column -> Name and Type, enter your column name and choice Person or Group -> OK.
    If you move documents into document set, it will keep the current properties. You can edit properties to change the document to another content type which is  contained in the document set.
    In my case, DocA is the content type of the document library, Document and DocB are content types of the document set.
    If I have mis-understand, please let me know.
    Best Regards

  • Changing FPGA target types after Obselescence

    Hi. Can anyone advise of a clean way to migrate or copy / paste my CLIP modules between FPGA targets, please? I've about 30 test rigs, each testig a different product. Each contains a PXI-7833R card. We had one fall over recently and I learned that the card is now obsolete. The PXI-7842R is touted as a drop-in replacement. I'm finding the software support for migrating in the project to the new FPGA somewhat cumbersome. I had hoped I could simply change the device type in FPGA target properties, but it appears that I can't change the FPGA target type; apparently the target device can only be set when the target is first created in the project. Normally, this wouldn't be a problem, since the contents of the old (7833) target can be copied and pasted into the new (7842) target within the project. However, my FPGAs are now using VHDL components and the CLIP properties cannot be copied / pasted: they need to be added and configured manually, which is quite labourious. Each of my pijects might have 10 CLIP modules to manually configure and I'm dreading it, but in order to minimise test rig downtime in the event of a failure, I wish to build each of these projects for the new PXI-7842R target hardware in advance of requiring it. Anything the community can suggest would be a help. Thanks.

    It probably would have been a good idea to hit "Preview" before posting. This is a re-post, but much more pleasing to the eyes!!
    Can anyone advise of a clean way to migrate or copy / paste my CLIP modules between FPGA targets, please?
    I've about 30 test rigs, each testing a different product. Each contains a PXI-7833R card. We had one fall over recently and I learned that the card is now obsolete. The PXI-7842R is touted as a drop-in replacement. I'm finding the software support for migrating in the project to the new FPGA somewhat cumbersome.
    I had hoped I could simply change the device type in FPGA target properties, but it appears that I can't change the FPGA target type; apparently the target device can only be set when the target is first created in the project. Normally, this wouldn't be a problem, since the contents of the old (7833) target can be copied and pasted into the new (7842) target within the project. However, my FPGAs are now using VHDL components and the CLIP properties cannot be copied / pasted: they need to be added and configured manually, which is quite labourious.
    Each of my projects might have 10 CLIP modules to manually configure and I'm dreading it, but in order to minimise test rig downtime in the event of a failure, I wish to build each of these projects for the new PXI-7842R target hardware in advance of requiring it.
    Anything the community can suggest would be a help.
    Thanks.

  • Target types don't show cRIO

    Hi Gang,
    I'm trying to get a new cRIO Project off the ground for a client.  I have LV 2010 and 2012 on my computer.  I've got the RT modules in both.  I've done one cRIO RT/FPGA project over a year ago.
    The cRIO shows "running" in MAX.  Some of the modules can be seen in the remote manager application.  My gut tells me the cRIO is okay.
    When I try to create an RT project in 2012, Compact RIO doesn't show up in the list of target types, so I can't select the cRIO Chassis.  Selecting by IP address does put "something" in a project file but no options show up.
    I've tried the same thing in LV2010, and all goes as expected, until I try to DL to the RT controller.  It returns an error something like: "RT OS unexpected version" probably a newer version.
    I think I'm missing some software, or it is not connected to LV2012.  NI-RIO 4.0 is installed on my computer.  I can see that throught the software tree in MAX.
    I didn't expect this part of the project to take even a day to get started, so I'm anxious for help.  I'll appreciate all ideas.
    Thanks!
    Roger
    Solved!
    Go to Solution.

    Hi RogerMont,
    You will need NI-RIO 2012:
    http://joule.ni.com/nidu/cds/view/p/id/2969/lang/e​n
    DylanC

  • How to create policies on new target type such as mysql target type?

    In MGMT_USER_DEFINED_POLICY package, the target types are predefined.
    G_HOST_TARGET_TYPE CONSTANT VARCHAR2(32) := mgmt_global.G_HOST_TARGET_TYPE; -- 'host';
    G_DATABASE_TARGET_TYPE CONSTANT VARCHAR2(32) := mgmt_global.G_DATABASE_TARGET_TYPE; -- 'oracle_database';
    G_LISTENER_TARGET_TYPE CONSTANT VARCHAR2(32) := mgmt_global.G_LISTENER_TARGET_TYPE; -- 'oracle_listener';
    G_CLUSTER_TARGET_TYPE CONSTANT VARCHAR2(32) := mgmt_global.G_CLUSTER_TARGET_TYPE; -- 'cluster';
    If i added new target type to EM and want to create some policy on the target type, Must I recompile the MGMT_GLOBAL package by adding new defined target type.

    Chapter 8 in the EM Extensibility Guide (available for download here) should help.

  • Why does OWB generate merge statement when target type = Update

    Hi there
    getting problem message cannot generate merge. I don't undretand why even trying to ctreate a merge when should be an update and then sql would be fine.
    trying to update a table whose expiry date = '31-DEC-4000' (via raget filter for update
    and also put value from src into this field.
    This would be ok in sql
    update table
    set col = new_value
    where col = 31-dec-4000'
    Any thoughts - it seems strange why OWB generate a merge when set target type to Update since other target types of Update/Insert and Insert/Update available to generate merge.
    Many Thanks

    I understand what you are trying to say...
    One simple workaround for this is: In the mapping, add one more column in the target table eg: match_val. Set the bound name to match column eg: col.
    Set the one match_val attribute properties to "match column when updating" & actual column eg: col attribute properties to "Load column when updating".
    This will generate merge statement for your requirements. This will help u.

  • Dml data target type forms property

    Hi all
    I have come accross a form that is causing our users many problems with locked records.
    The form has about 15 blocks based on 15 tables.
    One of which i managed to find out is causing the locking issues. I have notcied that this table is not needed in terms of update/insert merely used for querying.
    at the moment the block settings that are used are
    update/insert set to no.
    query source type = TABLE
    query source name = mytablename
    dml data target type = TABLE
    dml target name = null
    If i amend the dml data target type to none will this make it in affect a query only table?
    Does this affect anything else as we use this table as the top level in the relationship of other tables that will need to update/insert. But at no time will the table this blcok is based on ever update.
    Hope this makes sense
    Thanks in advance

    If there is no insert/update allowed in the block and you do no "programmatic" change of values, then there should happen no locking. You could check if a lock is applied by creating an ON-LOCK-trigger at that block and popping up a message from it.
    If the ON-LOCK fires there is some cause in the code which forces the record to be marked as changed.
    A first guess: Is there probably some POST-QUERY-trigger at the block or POST-CHANGE-trigger at some items which populate non-DB-Items?

  • Lens type metadata?

    Hi. I know that when you open up a photo in Camera RAW it shows the lens type. And yet, I can't find this in the Aperture Metadata set. I would love to be able to group by lens type. Is this available somewhere and I'm missing it?
    Also, are you able to sort within albums by things like aperture or shutter speed? I think the answer is no, but I'm not sure.
    Thanks!
    iMac   Mac OS X (10.4.9)  

    You're hardly the only person who would like access to the EXIF lens type metadata info. I currently include the camera make and model in my web galleries and would like to do the same with the lens type.
    AFAIK, the lens type is a standard EXIF field. ExifTool reads it without a hitch.
    Be sure to submit Aperture feedback on this issue.
    http://www.apple.com/feedback/aperture.html
    Cheers,
    Andreas

  • Fake-RAID - target type "mirror" not in kernel

    Hello
    I'm trying to install Arch using dmraid, mostly following the Fake-RAID guide in the wiki. I'm using the 2008.04-RC iso. What I do different is that I make my own dmraid package with this patch, to support Raid10 on my Intel board. I personally don't think this is related to my problem, but you never know.
    Anyways, the installation was going great, I just followed the guide. I rebooted, grub was loading fine, even my old Windows installation was happy. Linux, however, was less happy. It spews out tons of "attempt to access beyond end of device"'s, doesn't find the root partition, and throws me to a rescue prompt.
    ramfs$ dmraid -ay
    RAID set "isw_iifadcbec_Volume0-1" already active
    RAID set "isw_iifadcbec_Volume0-0" already active
    device-mapper: table: 254:2: mirror: unknown target type
    device-mapper: ioctl: error adding target to table
    ERROR: device-mapper target type "mirror" not in kernel
    ramfs$ echo /dev/mapper/*
    /dev/mapper/control
    /dev/mapper/isw_iifadcbec_Volume0-0
    /dev/mapper/isw_iifadcbec_Volume0-1
    When booting from the install cd, /dev/mapper also contains
    /dev/mapper/isw_iifadcbec_Volume01
    /dev/mapper/isw_iifadcbec_Volume02
    I suspect that this problem appears because the init image does not contain the module "dm-mirror". Does anyone know how to include this module, or perhaps I have a completely different problem?

    I'll continue my monologue with my latest problems. I added a custom dm-mirror hook in mkinitcpio.conf to include the module, to my surprise it worked! Unfortunately, behind that door was another door, and I'm now completely clueless:
    :: Running Hook [filesystems]
    :: Loading root filesystem module...ext3
    Waiting for devices to settle...done.
    :: Initramfs Completed - control passing to kinit
    IP-Config: no devices to configure
    Waiting 0s before mounting root device...
    kinit: Cannot open root device dm-7(254,7)
    kinit: init not found!
    It appears that something can read from my raid volume, as an ext2 module is loaded if I tell the kernel that my boot partition is root. I've verified that there actually is a /sbin/init on the root partition. I've been running mkinitcpio more times than I can count, but the problem just won't go away... Is there anything else I can do?

  • Generating target-type xsd with element names in camelCase

    Env: ODSI 10gR3, Workshop 10gR3, Oracle DB 10gR3
    We are developing logical data services following a bottom up approach. The source physical data services that we use to build the logical ds have xsd definitions in which element names are in CAPS_CAPS naming convention (following the same names as the database tables). For example, FIRST_NAME, LAST_NAME, etc.
    When we use Query Map to generate xsd for the target types of the logical ds, it generates element names that are also in the CAPS_CAPS convention. Is there a way to generate the target type xsd in which CAPS_CAPS names are converted to camelCase, e.g. FIRST_NAME becomes firstName.
    Thank you in advance.

    mixed-case with underscores removed vs. upper case is only one variation. Someone might like to rename SSN to SocialSecurityNumber, someone might like to rename LAST_NAME to Surname or FamilyName etc.
    You can do any renaming etc. with a Logical Data Service. See the "Best Practices" which is posted as an Announcement in this forum.
    Typically customers put their Physical (i.e. generated) data services in a Physical folder, and then create a parallel Logical folder (including the schemas folder). Then you would create new schemas in Logical/schemas with the new names, create new Logical data services to match the physical ones, then create a 'read' function that uses the physical read function and map the elements of the physical read function to the logical schema (with the new names). Then you can generate the create/delete/update procedures in the Logical data services.
    Getting back to your original question - the answer is No. There is no feature with in ODSI to automatically transform element names to something else.
    - Mike

  • Navigation Bar Entry - automatic change target type

    Hi,
    A recent post (print friendly remembered me of something strange with the Navigation Bar Entry.
    When I create an entry with Target type URL, and I put an URL pointing to my application (ex.: f?p=&APP_ID.:&APP_PAGE_ID.:&SESSION.::::::YES), it is automatically transformed to Target type Page in this Application.
    Why is this happening?
    Thx,
    Louis-Guillaume
    Homepage : http://www.insum.ca
    Blog : http://insum-apex.blogspot.com

    If you provide a URL that is an "f?p" URL to the current application then the edit page simply decomposes it to format it as "Page in this Application". But whether the URL meets that criteria or not, the actual data stored in the application definition for any URL target is the URL provided.
    Scott

  • Auto discover of custom target types

    hi,
    i created a target type for a special application. is there a way to let the agent discover such custom target types or must i add the target to each agent manually?
    thanks
    regards
    markus

    Traget discrover happens through the file $AGENT_HOME/sysman/admin/discover/discover.lst
    You could always write your own perl script and add it to the list of targets automatically discovered.

  • Need help on syntax of PL/SQL Table type

    Hi Everyone
    I have the following Procedure
    DECLARE
    TYPE ln_empno IS TABLE OF NUMBER;
    ln_empno1 ln_empno;
    dml_errors EXCEPTION;
    PRAGMA EXCEPTION_INIT (dml_errors, -24381);
    ERRORS NUMBER;
    BEGIN
    UPDATE emp
    SET empno = empno
    RETURN empno
    BULK COLLECT INTO ln_empno1;
    FORALL idx IN 1 .. ln_empno1.COUNT SAVE EXCEPTIONS
    INSERT INTO t1
    VALUES (ln_empno1 (idx));
    EXCEPTION
    WHEN dml_errors
    THEN
    ERRORS := SQL%BULK_EXCEPTIONS.COUNT;
    FOR i IN 1 .. ERRORS
    LOOP
    DBMS_OUTPUT.put_line ( 'Error '
    || i
    || ' occurred during '
    || 'iteration '
    || SQL%BULK_EXCEPTIONS (i).ERROR_INDEX
    DBMS_OUTPUT.put_line ( 'Oracle error is '
    || SQLERRM (-SQL%BULK_EXCEPTIONS (i).ERROR_CODE
    END LOOP;
    END;
    This will collect the single column, I am not able to get the syntax to create a record containg empno and ename and bulk collect into a collection type.
    Can anyone help me to execute this procedure for ln_empno as a record of empno and ename.
    Thanks in Advance
    -Ahmed

    Also,
    If you want it as an update then why not just alter as per my example... e.g.
    SQL> ed
    Wrote file afiedt.buf
      1  DECLARE
      2    TYPE lt_emp_rec IS RECORD (empno NUMBER, deptno NUMBER);
      3    TYPE lt_emp IS TABLE OF lt_emp_rec INDEX BY PLS_INTEGER;
      4    lr_emp lt_emp;
      5  BEGIN
      6    UPDATE emp
      7    SET deptno = deptno+10
      8    RETURNING empno, deptno
      9    BULK COLLECT INTO lr_emp;
    10    FOR idx IN 1 .. lr_emp.COUNT
    11    LOOP
    12      DBMS_OUTPUT.PUT_LINE('EmpNo: '||to_char(lr_emp(idx).empno)||' ::: DeptNo: '||to_char(lr_emp(idx).deptno));
    13    END LOOP;
    14* END;
    SQL> /
    EmpNo: 7369 ::: DeptNo: 30
    EmpNo: 7499 ::: DeptNo: 40
    EmpNo: 7521 ::: DeptNo: 40
    EmpNo: 7566 ::: DeptNo: 30
    EmpNo: 7654 ::: DeptNo: 40
    EmpNo: 7698 ::: DeptNo: 40
    EmpNo: 7782 ::: DeptNo: 20
    EmpNo: 7788 ::: DeptNo: 30
    EmpNo: 7839 ::: DeptNo: 20
    EmpNo: 7844 ::: DeptNo: 40
    EmpNo: 7876 ::: DeptNo: 30
    EmpNo: 7900 ::: DeptNo: 40
    EmpNo: 7902 ::: DeptNo: 30
    EmpNo: 7934 ::: DeptNo: 20
    PL/SQL procedure successfully completed.
    SQL>Was that so hard?

Maybe you are looking for

  • Nokia Lumia 810 (T-Mobile) Experiencing Freezes Li...

    I got a new Nokia Lumia 810 almost a month ago, and I seem to be experiencing the same sort of freezes as the 820 and 920 owners. The first freeze occurred almost immediately after setup, the second the next day, and since then the freezes vary betwe

  • I need to rebuild some relationships

    I've ignored this forum too long (despite continuing to enjoy it (Thanks uj)). The only people I understand, and for the most part that understand me, are right here. I can't compete with them when it comes to technical knowledge for this particular

  • FCP 7.0.3 ripple edit in timeline not working

    FCP 7.0.3, AVCHD/proRes 422 LT, ripple edit in timeline not working. Using the ripple tool, I click on the edit point, drag the cursor to the clip and direction I want to trim but it doesn't work. pop-up says collision on V-1. Same thing when I doubl

  • Logic pro 9 has lost its libraries

    Hi There. I've had logic pro 9 for a while. My older Mac broke, so I got a new one and re-installed Logic on it. I opened it up but now it doesn't seem to find any presets as per screenshots below. The same problem occurs when I open e.g. a new "Hip

  • ECC - SXI_MONITOR - How to resend Only System Error Not Application Error Automatically ?

    Hi All, is there any way to re-send or re-process only system error which occured due to QRFC_SHORT_DUMP. We should not re-send Application Errror. I have tried the program RSXMB_RESTART_MESSAGES  , it restarts all System Error and Application Error.