Problem with complex business logic...

hi all,
i have two tables 1.running_table
2.history_table
in my tables, for recent 30 day's data will be stored in "running_table". if 30 days completed from the entered date, all the data will be moved to "history_table".this will be done by some triggers.
now, in my stored procedure, i will get start_date,end_date as a inputs.i have to retrieve data from two tables(running_table,history_table) depending on dates.
conditions:
1. if entered time pheriod is before 30 days....use running_table
2. if entered time pheriod is after 30 days....use history_table.
if start_date is in latest 30 days & end_date in old to 30 days ? what to do?
how can i write condition depending on time pheriod?
thanks in advance.....
Edited by: user9041629 on Aug 12, 2010 3:43 AM

I would suggest you to write 3 conditions in your pl/sql block
1. for <= 30 days
2. for > 30 days
3. for range with lies in both.
in 1 condition u may write a query with running table
in 2 condition u may write a query with history table
and
in 3 condition u have to write a query with history union running table
hope it is clear to you :)

Similar Messages

  • BPEL Process with complex Business logic

    Hi,
    So far my knowledge,complex business logic can be implemented by different way in bpel process.
    1. Business rule
    2. ejb with java callout
    3.ADF BC as servcie
    Can anybody please suggest which approach do I need to follow,what are the pros and cons of each one,and best practices to use when and where?
    Thanx in advance.-Aswini

    Hi
    In addition to what Naresh already mentioned, you can consider these points also.
    1. If your process is complex, see if some part of the process can be common across and it can run by itself. Then you can use SubProcess concepts also. Say for example, if process involves credit card processing, it can be in a sub-process and you can call it in the main process. Like that any common approval flows can be put in a separate sub-process.
    2. I would discourage using Java invocations if possible as they have some limitations and you can use reasonable amout of code in invoking java code within the bpel process. If you have lots of validations to do on a bpel process, you can consider using CallBackHandlers and do the validation on a task assignment, submission or any task action in general.
    3. Business Rules can be used to control the actual flow of the process itself. Based on busiiness rule, you can decide if a set of tasks needs to be included or not in the approval flow. This is in addtion to the actual data that controls the business rules, that can be changed dynamically without the code change to core bpel process.
    Which version of SOA are you using or plan to use. I would recommend the latest version SOA 11.5 + Feature Pack applied.

  • Problem with Copied Business Object : SELFITEM

    Hi,
    sub:    Problem with Copied Business Object : SELFITEM
    I want to use changed selfitem BOR for carbon copy functionality. For it, i copied the BOR : SELFITEM. it is giving error
    In SWI2_DIAG it is showing like this.
    Work item  cannot be read                                                
    Work item 000000639770: Object  method SWW_BI_EXECUTE_S cannot be executed
    The problem is with COPYING The Business Object. Because , generally we extend BOR ,not copy. But i did copy.
    Please help me regarding this.
    Balaji.T.

    hi Martin,
    The problem may not be in method. because simply we copied the BO:SELFITEM into ZSELF . And i want to test this for a mail at first , whether copied BOR  is working or not.The mail is not triggering . it is saying that it is Error.
    WF_BATCH error...
    I can see error in Tx: SWI2_DIAG ,
    this is Error :
    Work item 000000639770: Object  method SWW_BI_EXECUTE_S cannot be executed
    Once it is rectified i can modify the method in BO:ZSELF.
    Thank you in Advance..
    Balaji.T.

  • The problem with Complex Job Manager in Business Connector.

    Hi,
    I have a problem with the service "Complex Job Manager" in Business Connector.
    Sometimes this service hangs and a minus value (such as -83452 sec) appears in the column "Next run".
    What can I improve?
    I have BC ver. 4.7 with CoreFix 9, Java ver. 1.3.1 (46.0), system AIX.
    Please help me.
    Thanks,
    Robert

    Sorry, Raja.
    I saw many questions about Business Connector in this category (Process Integration) and I thought that is a right place for my question.
    In your opinion, where is a better place for my question?
    Regards,
    Robert

  • Problem with BDOCS Business Partner CRM - PSCD(R/3)

    I have a problem with BDOCS (Middleware, Data Exchange Synchronization).
    I configured only Synchronization for Business Partner Type “2” Organization and “3” Group”(In the Initial Load).  However, when PSCD add or modify “Identification Number” (table : BUT0ID) for other types of Business Partner, for example type “1” Person, the BDOCS generate a update in CRM (inbound queue) specifically produced a show processes in PSCD, because the table  TRFCOUT progressively grow, and also in the outbound queues table.
    Do you have any idea what happen ??
    or if i can use a kind of filter to the Bdocs online??
    Because i only can filter the BDOCS in the initial load but not in the bdocs online.
    thanks in advanced

    Hi,
    Configuring the business partner integration from R/3 is done in the PIDE-transaction on the R/3-side and in the customer_main object on CRM-side. Simply enter the filter settings in the object, sync it with R/3, check your filter settings in table CRMFILTAB on the R/3 side.
    Grtz,
    Michael.

  • Web service call problem with complex types input

    We are trying to call a web service and pass as parameter
    some complex types. When invoking the web service everything works
    well on flex side, but on the server side the input parameters we
    get from flex are not correct - complex type is removed and the
    elements of the complex type are sent. See the example:
    <?xml version="1.0" encoding="utf-8"?>
    <mx:Application xmlns:mx="
    http://www.adobe.com/2006/mxml"
    layout="absolute">
    <mx:WebService id="ws_id" wsdl="link" useProxy="false"
    fault="wsFault(event)">
    <mx:operation id="op_id" name="op"
    result="wsResult(event)">
    <mx:request>
    <parameters>
    <parameter1>{value1}</parameter1>
    <parameter2>{value2}</parameter2>
    <parameter3>{value3}</parameter3>
    <parameter4>
    <parameter4_1>{value4_1}</parameter4_1>
    <parameter4_2>{value4_2}</parameter4_2>
    <parameter4_3>{value4_3}</parameter4_3>
    </parameter4>
    </parameters>
    </mx:request>
    </mx:operation>
    </mx:WebService>
    </mx:Application>
    on server side we get this:
    <parameters>
    <parameter1>{value1}</parameter1>
    <parameter2>{value2}</parameter2>
    <parameter3>{value3}</parameter3>
    <parameter4_1>{value4_1}</parameter4_1>
    <parameter4_2>{value4_2}</parameter4_2>
    <parameter4_3>{value4_3}</parameter4_3>
    </parameters>
    Instead of :
    <parameters>
    <parameter1>{value1}</parameter1>
    <parameter2>{value2}</parameter2>
    <parameter3>{value3}</parameter3>
    <parameter4>
    <parameter4_1>{value4_1}</parameter4_1>
    <parameter4_2>{value4_2}</parameter4_2>
    <parameter4_3>{value4_3}</parameter4_3>
    </parameter4>
    </parameters>
    Any idea how is it possible to send complex type as web
    service input from flex ?

    Hi,
    I also have similar type of problem where I need to invoke a Web service with Complex input parameters.
    I followed Susan's blog but I stuck at a point where methos getItem is created.
    Can anyone tell me how to get that method for my requirement.
    If possible can you guys share your solutions here.
    Thanks in advance.

  • Problem with Complex Web Dynpro Webservice Model

    Hi all,
    in my Web Dynpro application I am using a Webservice which seems to be too complex for the Web Dynpro Model. I think I am getting the same kind of problems like:
    HELP for WebDynpro web service model with complex structure
    But I dont have a complex structure in my input parameters (like in this thread), <b>I have a complex structure in my output.</b>
    This is the structure of my WSDL. I have a customer (KUNDE) which has an array of contracts (Vertrag).
    <wsdl:types>
      <schema targetNamespace="urn:Rentenkonto" xmlns="http://www.w3.org/2001/XMLSchema">
       <import namespace="http://schemas.xmlsoap.org/soap/encoding/"/>
       <complexType name="Vertrag">
        <sequence>
         <element name="aufschubfrist" type="xsd:int"/>
         <element name="brutto" type="xsd:double"/>
         <element name="eintrittsalter" type="xsd:int"/>
         <element name="endalter" type="xsd:int"/>
         <element name="laufzeit" type="xsd:int"/>
         <element name="renteKapital" type="xsd:double"/>
         <element name="rentenbeginn" nillable="true" type="xsd:dateTime"/>
         <element name="rentenbeginnAlter" type="xsd:int"/>
         <element name="versichererName" nillable="true" type="xsd:string"/>
         <element name="vertragsablauf" nillable="true" type="xsd:dateTime"/>
         <element name="vertragsartTx" nillable="true" type="xsd:string"/>
         <element name="vertragsbeginn" nillable="true" type="xsd:dateTime"/>
         <element name="vertragsnummer" nillable="true" type="xsd:string"/>
         <element name="zahlungsweise" nillable="true" type="xsd:string"/>
        </sequence>
       </complexType>
       <complexType name="ArrayOfVertrag">
        <complexContent>
         <restriction base="soapenc:Array">
          <attribute ref="soapenc:arrayType" wsdl:arrayType="impl:Vertrag[]"/>
         </restriction>
        </complexContent>
       </complexType>
       <complexType name="Kunde">
        <sequence>
         <element name="geburtsdatum" nillable="true" type="xsd:dateTime"/>
         <element name="kundenkennzeichen" nillable="true" type="xsd:string"/>
         <element name="pkNummer" nillable="true" type="xsd:string"/>
         <element name="vertraegeDcKapital" nillable="true" type="impl:ArrayOfVertrag"/>
         <element name="vertraegeDcRente" nillable="true" type="impl:ArrayOfVertrag"/>
         <element name="vertraegeDv" nillable="true" type="impl:ArrayOfVertrag"/>
         <element name="vertraegePk" nillable="true" type="impl:ArrayOfVertrag"/>
         <element name="vertraegeRdv" nillable="true" type="impl:ArrayOfVertrag"/>
        </sequence>
       </complexType>
      </schema>
    </wsdl:types>
    When I execute the Webservice basically I get an empty response. I think this is because the WSModel isnt fully mapped to the WS proxy. This should be done via coding.
    Can someone give me some hints on this?
    Kind regards
    Christoph

    Hi Christoph,
    First test the webservice itself. Maybe it is required to give some input parameter in the request and then get some output parameters in the Response. But therefore you should test the webservice yourself and take a look.
    Give more detail about ur case.
    Greetings, Sandhya

  • Problem with importing Business System

    Hello All,
             I scussfully exported and imported components and products and scussfully exported business system from pi7.0 server. I want to import this business system on another PI7.0 Server. I am facing problem while importing business system is Business group is not assigned to business system. How to create Business group. Plz suggest me how to import business system.
    Thanks
    San

    SAP help defines it - http://help.sap.com/saphelp_nw04/helpdata/en/ef/a21e3e0987760be10000000a114084/content.htm
    Also for more info,
    http://www.sap-hefte.de/download/dateien/964/074_lesesprobe.pdf - look into page 10 for a reference.

  • Problems with Oracle Web Logic 10.3.6, certificates and proxies

    Good morning.
    We are trying to establish a SSL connection using Apache Cxf and WebLogic Server 10.3.6.
    For that, we are passing through a proxy. Using Apache Tomcat, the test is ok, we can connect to the endpoint correctly. But in WebLogic 10.3.6, we have problems with the certificates.
    In our code, we are loading the certificates programatically.
    The web-services-config.xml is the following:
    <?xml version="1.0" encoding="UTF-8"?>
    <beans
         xsi:schemaLocation=" http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans-2.5.xsd http://cxf.apache.org/configuration/security http://cxf.apache.org/schemas/configuration/security.xsd http://cxf.apache.org/transports/http/configuration http://cxf.apache.org/schemas/configuration/http-conf.xsd http://cxf.apache.org/jaxws http://cxf.apache.org/schemas/jaxws.xsd http://www.springframework.org/schema/context http://www.springframework.org/schema/context/spring-context-2.5.xsd"
         xmlns:http="http://cxf.apache.org/transports/http/configuration"
         xmlns:sec="http://cxf.apache.org/configuration/security" xmlns:jaxws="http://cxf.apache.org/jaxws"
         xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://www.springframework.org/schema/beans">
         <jaxws:client address="@SNE.SNE_WS_URL@"
              serviceClass="com.bankia.sne.ws.clientes.buzonAPESNE.APESNEBuzonWSTipoPuerto"
              id="puertoAPESNEBuzonWS" />
         <http:conduit name="@SNE.SNE_WS_URL@">
              <http:client Connection="Keep-Alive" AutoRedirect="true"
                   ProxyServerType="HTTP" ProxyServerPort="@SNE.PROXY_PORT@"
                   ProxyServer="@SNE.PROXY_HOST@" />
              <http:proxyAuthorization>+
                   <sec:UserName>@SNE.PROXY_USER@</sec:UserName>
                   <sec:Password>@SNE.PROXY_PASSWORD@</sec:Password>
              </http:proxyAuthorization>
              <http:tlsClientParameters>
                   <sec:cipherSuitesFilter>
                        <!-- these filters ensure that a ciphersuite with export-suitable or
                             null encryption is used, but exclude anonymous Diffie-Hellman key change
                             as this is vulnerable to man-in-the-middle attacks -->
                        <sec:include>.*EXPORT.*</sec:include>
                        <sec:include>.*EXPORT1024.*</sec:include>
                        <sec:include>.*WITHDES_.*</sec:include>
                        <sec:include>.*WITHNULL_.*</sec:include>
                        <sec:exclude>.*DHanon_.*</sec:exclude>
                   </sec:cipherSuitesFilter>
              </http:tlsClientParameters>
         </http:conduit>
    </beans>
    That's the code used for establish the CXF connection:
    private void configuraConexion(Buzon buzon){
              try {
                   LOGGER.debug("Configurando conexión con el sevicio Web para el buzón con id " + buzon.getId() + " ...");
                   Client client = ClientProxy.getClient(puertoAPESNEBuzonWS);
                   HTTPConduit httpConduit = (HTTPConduit) client.getConduit();
                   TLSClientParameters tlsParams = httpConduit.getTlsClientParameters();
                   Certificado certificado = buzon.getCertificado();
                   byte[] bytes = certificado.bytesCertificado();
                   CertificadoSerializable certSerializado = (CertificadoSerializable)Serializador.desserializar(bytes);
                   //Cargamos el truststore de disco
                   TrustManagerFactory trustFactory = TrustManagerFactory.getInstance(TrustManagerFactory.getDefaultAlgorithm());
                   KeyStore truststore = KeyStore.getInstance(Propiedades.getProperty(KEY_SERVICIO_WEB_ALMACEN_TRUSTSTORE));
                   String contrasenia = Propiedades.getProperty(KEY_SERVICIO_WEB_TRUSTORE_PASSWORD);
                   // -- provide your truststore
                   File ficheroTruststore = null;
                   String rutaTrustore = Propiedades.getProperty(KEY_SERVICIO_WEB_TRUSTORE_RUTA) Propiedades.getProperty(KEY_SERVICIO_WEB_NOMBRE_TRUSTSTORE);
                   LOGGER.debug("rutaTrustore --> " + rutaTrustore);
                   if (rutaTrustore!=null){+
                        ficheroTruststore = new File(rutaTrustore);
              URL url = null;
                   if(ficheroTruststore == null || !ficheroTruststore.exists()){
                        url = Localizador.getResource(Propiedades.getProperty(KEY_SERVICIO_WEB_NOMBRE_TRUSTSTORE));
                        ficheroTruststore = new File(url.getPath());
                        truststore.load(url.openStream(), contrasenia.toCharArray());
                   }else{
                        truststore.load(new FileInputStream(ficheroTruststore), contrasenia.toCharArray());                    
                   LOGGER.info("[ServicioWSBuzonAPESNEImpl.configuraConexion] Fichero truststore.pks recuperado de "+ficheroTruststore.getPath());
                   trustFactory.init(truststore);
                   TrustManager[] tm = trustFactory.getTrustManagers();
                   tlsParams.setTrustManagers(tm);
                   //Cargamos el Keystore de base de datos
                   KeyStore keyStore = KeyStore.getInstance(Propiedades.getProperty(KEY_SERVICIO_WEB_TIPO_ALMACEN_KEYSTORE));
                   keyStore.load(null, certificado.getContrasenia().toCharArray());
                   keyStore.setKeyEntry(certificado.getAlias(), certSerializado.getClavePrivada(), certificado.getContrasenia().toCharArray(), certSerializado.getCadena());
                   // set our key store+
                   // (used to authenticate the local SSLSocket to its peer)
                   KeyManagerFactory keyFactory = KeyManagerFactory.getInstance(KeyManagerFactory.getDefaultAlgorithm());
                   keyFactory.init(keyStore, certificado.getContrasenia().toCharArray());
                   KeyManager[] km = keyFactory.getKeyManagers();
                   tlsParams.setKeyManagers(km);
                   httpConduit.setTlsClientParameters(tlsParams);
                   LOGGER.debug("Conexión configurada satisfactoriamente");
              }catch (Exception e) {
                   LOGGER.error("Error al configurar la conexión del servicio Web", e);
                   throw new WSBuzonException("Error al configurar la conexión del servicio Web: " + e.getMessage());
    We don't know how to solve this issue? Please, could you help us?
    Thanks in advance,
    Jaime.
    Edited by: j2eedevelopment on 10-jul-2012 10:05

    Hi Zack, thanks for the answer.
    I've cleaned the code below.
    Our problem is the following: we wan't to use many keystores, in function the user who is connected in the application. For that reason, we wan't to give the keyStore from Java Client, because we've saw that, in WebLogic, you can select one keystore, but only one. For that reason, we wantto change the keystore in run time execution, dinamically.
    The problem we have found are the following:
    1) If we configure WebLogic with the correct keystore and trustore, we are not able to change keysotre and trustore in runtime execution, so we have to us always the same keystore and we don't want this.
    2) Also, I'm trying now to use JaxWS instead Apache Cxf, and I've tried to put the ssl properties of the system with the following code:
    System.setProperty(JAVAXNETSSLTRUST_STORE, trustore);
    System.setProperty(JAVAXNETSSLTRUST_STORE_PASSWORD, trustStorePassword);
    System.setProperty(JAVAXNETSSLKEY_STORE, keyStore);
    System.setProperty(JAVAXNETSSLKEY_STORE_PASSWORD, keyStorePassword);
    System.setProperty(JAVAXNETSSLKEY_STORE_TYPE, keyStoreType);
    Thanks in advance,
    Jaime.

  • Problem with complex predicates

    Hi,
    i'm trying to create a complex predicate to query for some tasks.
    I have 2 predicates, and i'm trying to create a complex one with the following code:
    complexPred = new Predicate(pred1, Predicate.AND, pred2);
    I have no problems when querying for tasks with either pred1 or pred2, but when executing the query with complexPred, i get a null pointer exception.
    I realised that complexPred has an empty clause list. Am I missing something when creating the complex predicate?
    Thanks in advanced

    Thanks for the example, but i have the same problem running it as I exposed in my previous post.
    When I reach this point in the code...
    Predicate predicate = null;
    if ( predicateSearch == null ) {         
    predicate = predicateBasic;
    } else {         
    predicate = new Predicate (predicateBasic,Predicate.AND,predicateSearch);
    ...both predicateSearch and predicateBasic have content, and when they are combined into predicate, this new variable predicate has an empty clause list (predicate.getPredicateClauseList() is an empty ArrayList, while predicateSearch.getPredicateClauseList() and predicateBasic.getPredicateClauseList() have both content)
    The rest of the components of the variable predicate (tables, values...) seems to be ok and a result of the combination of predicateBasic and predicateSearch
    This is part of the log I get:
    <*::*> <displayColumn xmlns="http://xmlns.oracle.com/bpel/workflow/taskQuery">urlAttribute1</displayColumn>
    <*::*> <displayColumn xmlns="http://xmlns.oracle.com/bpel/workflow/taskQuery">urlAttribute2</displayColumn>
    <*::*> </displayColumnList>
    <*::*> <optionalInfoList xmlns="http://xmlns.oracle.com/bpel/workflow/taskQuery">
    <*::*> <taskOptionalInfo xmlns="http://xmlns.oracle.com/bpel/workflow/taskQuery">Actions</taskOptionalInfo>
    <*::*> </optionalInfoList>
    <*::*> <predicate xmlns="http://xmlns.oracle.com/bpel/workflow/taskQuery">
    <*::*> <assignmentFilter xmlns="http://xmlns.oracle.com/bpel/workflow/taskQuery">My+Group</assignmentFilter>
    <*::*> </predicate>
    <*::*> <ordering xmlns="http://xmlns.oracle.com/bpel/workflow/taskQuery">
    <*::*> <clause xmlns="http://xmlns.oracle.com/bpel/workflow/taskQuery">
    <*::*> <col
    As you can see after assigmentFilter, the label predicate is closed, and is missing a label clause with all the clauseList information
    Thanks in advanced,
    Cris
    Edited by: user7352348 on 07-nov-2011 23:47

  • Problem with E-Business Control Center

    Hi,
    I am trying to create a content selector using the e-business control cnter. When
    I try to save it I get the following error.
    The content selector is not complete. Please complete before saving. Could not
    save the rule. Could not find GlobalContentSelectors to save the rule.
    Can somebody help me with this?
    Thanks and Regards,
    Subramaniam

    Hi,I have also somewhat similar problem in creating content selector using e-business control center.The problem is that in the Window titled "Select Customer Segments", there are no radio buttons for specifying whether Qualifying visitors may belong to Any or all of these segments. Although it is mentioned in the documentation yet not available in actual.So when we try to save it the following error appears"Atleast one selected clause has not been completed. Offending clauses: [Action clause has not been completed.].Please tell me what to do?Regards,Atif

  • Not posted Treasury transactions- problem with new Business area (NewGL)

    Hi all,
    I have to change the Treasury account assignment objects due to a restructure. Currently, all TR transactions are assigned to one business area only.
    In future, there will be 3 (different) business areas.
    I have added new products, transaction tpyes etc and I have made further customising
    settings. It looks ok and I can enter new transactions, settle and post them.
    Problems I do have with already existing deals (fixed term and Forex transactions).
    In here I get posting errors with message:
    Balancing field "Business Area" in line item 001 not filled
    Message no. GLT2201
    I have added additional account assignment references for the new Business Areas
    and assigned to product types and account assignment
    What happens when I create a deal?
    Is that information (product type/ transaction/ account assignment) alreaedy stored in a table and used, when processing the deal further?
    Can I somehow change that original assignment per deal now?
    I think my problem lies in that the system wants to use the old assignment but also the new and it comes to conflict in field business area.
    Any hints much appreciated and will be reqarded as usual.
    Thanks
    Hein

    Assign Business area in the following step (ECC 6.0)
    SPRO - Financial Supply Chain Management - Treasury and Risk Management -  Transaction Manager - General Settings - Accounting - Link to Other Accounting Components - Allocate Additional Account Assignments to Account Assignment References
    Kalyan

  • Problems with Ensemble and Logic 8

    Since I did the update of the ensemble software for Leopard I have encountered only problems.
    My set up is a Macbook pro 2.33 Ghz, 2gig ram, with a studio monitor (Cinema HD 30 inches).
    Ensemble keeps making clicking noises or stops playing audio. It also resets itself (and its sampling frequency) and does it over and over.
    Logic Studio (Logic 8) has suddenly becoe incredibly slow and the processor spikes all the time telling me the system is too slow. This is even if I am working with 14 tracks (8 audio and the rest virtual instruments).
    Does anyone have a similar problem?

    No, but have you tried to update your firmware before installing the driver and software? According to Apogee this is a critical step! Good luck.

  • Problem with CRM business package- Customer iViews throws runtime error

    Hi all,
    We have installed EP6.0 SP11 Patch3 on windows machine.
    Also we have uploaded CRM business package with all required systems (e.g. SAP_CRM,SAP_BW etc.)
    All the iviews are working fine except which are under Customer and Customer Admin Role. These iViews throws following exception :
    Portal Runtime Error
    An exception occurred while processing a request for :
    iView : pcd:portal_content/com.sap.portal.migrated/ep_5.0/roles/com.sap.pct.crm.Customer/customer/Home/com.sap.pct.crm.channelmgmt.specialoffers
    Component Name : com.sap.pct.crm.ChannelMgmtComponents.GenericISAComponent
    Has anybody face this problem earlier....???? If so plz help.....
    With regards,
    Amol.

    hi,
      i didnt configure customer and customer administrator roles...however i was dealign with other roels of CRM business package.. I can jsut give you a asuggestion ..i.e. i see that there is a property cateogry "ISA" after you create the system..so i think these properties need to be filled up.
    Thanks

  • Problem with flextime in Logic 9

    I've recently been learning the new flextime tool in logic 9 and I was trying to audio quantize my audio kick and bass tracks ( like the demo video shows ). I made a groove template of the kick which, of course, shows in the inspector but when I went to the bass audio track in the inspector, it doesn't show up anything, no way to access the quantize function. I tried clicking on a few things in the bass tracks inspector but nothing shows up ( there isn't much to click on ). So, I started looking at my other track's inspector and some tracks have the full function of the inspector while most of the other tracks don't.
    What am I missing here?

    I tried what you suggested and it didn't work for me but I did discover something. Before I used flex time's audio quantize function, I replaced the audio kick track with drum replacement in which created a midi instrument track. My midi instrument tracks only show access not the audio tracks except for one newly added audio track. Also, this session was created from an older session where I had to copy/paste the tracks from one session to this one. I wonder if that has anything to do with it?

Maybe you are looking for

  • How to use POwn, PCon or PMin in Consolidation

    Dear all experts , Do you know how to differentiate consolidation from one account with another? The condition is : Assets : PCon Liabilities : PCon Account (NCI, Capital Reserve, etc) : POwn Is this possible? Actually when and how to use PCon, POwn

  • Hard drive issue?

    I've been having regular problems with my early 2008 iMac (2.4 GHz Intel, 250 GB SATA HD) freezing up, accompanied of course by the spinning rainbow "wheel of death".  The problem is particularly pervasive when I wake the computer from several hours

  • How do I allow a user to enter multiple lines of text within a Text Entry Box?

    I need a text entry box that allows for multiple lines to be inputted with in a Text Entry Box.  How can I make this possible?

  • Package javax.xml.messaging does not exist

    Hi, I have installed the Web Services Developer Pack (Version 1.1), and added the jaxm-api, jaxm-runtime, saaj-ri, and saaj-api jars to my classpath. I also added C:\jwsdp-1.1\bin to my path, and copied the jar files from C:\jwsdp-1.1\jaxp-1.2.2\lib\

  • OBIEE 11g Installation Fails at configuration process

    Hi All, I tried installing OBIEE 11.1.1.5.0 in my machine.Below are the prerequsite which I followed and the laptop system configuration details. Pre-Requisites Followed : 1) Creation of Static IP address,2) Created Schema's using RCU In Oracle 11g D