OWB | Passing input to mapping in the process flow

Hi,
I have a process flow which calls a stored procedure which returns 2 values.
I want to use the values returned from this procedure as an input in my mapping. My mapping has Mapping_Input_Parameters definined for these two inputs.
These values are going to be load_date and the batch it belongs.
I have created new params in the process flow edit under the mapping. The process flow executes successfully if I give the input params as a constant. When I do a binding with the out variable of the stored procedure I get a deployment error as "Internal error: OUT_D_LOAD_DATE cannot be converted to a constant value. Please correct the value. If the problem persists then please contact Oracle Support with the stack trace and details on how to reproduce it."
Please let me know how to resolve this and if there is way to get the load_date in the mapping without actually having to call the procedure in the mapping. The load_date will change everyday and I need to read it from a table.
Thanks!

Hi
If you have resolved the error please guide me also Since I am also facing the same error. (RPE-02040: Internal error: MYRAND cannot be converted to a constant value. Please correct the value. )
I am using 10gR2, Here my test process flow is
Start - > MyRand -> FindOddEven->end
Here MyRand function will return a value, the function findOddEven will just do a mod of 2 and return 1 for odd numbers and 0 for even numbers. When I bind the OUT parameter of the MyRand to the IN parameter of the FindOddEven it is throwing the same error.
Thanks in advance

Similar Messages

  • Disable particular Mapping Execution in Process flow

    Hi,
    I am working on OWB 11gR2. I want to disable the execution of a particular mapping in the Process flow. For example, there are 4 mappings A,B,C,D which run one after another,I want to disable the execution of mapping C alone.Is this feature available in OWB?
    Please Advice.

    Unfortunately this is not handled OutOfTheBox.
    You would probably need one or two things extra to do this properly:
    -create a table and a procedure/function that holds the mapping names together with a flag.
    -use a function operator in the process flow to retrieve a mappings flag from above specified table and store it in a variable in the process flow
    -use condtional transitions to route the flow either tru or alongside the mapping. use a reference to the variable used previously.
    -make sure the flow can exit properly when you use conditional transitions.

  • Binding mapping in a process flow

    Hi,
    This is the first time i am creating a process flow. I have kind of figured all the stuff out but i get 1 error in validation. i pulled the mapping into the process flow and named it but i donot know how to point it to the mapping in a particular location. is there something i need to do for this. I get the following error when i validate.
    mapping_name's bound object null of null type???has been deleted.
    Thanks
    Bharath

    Hi,
    I found the issue and it is solved...donot bother answering this thread....
    Regards
    Bharath

  • How to pass execution_audit_id of the process flow to an external process

    Hi,
    I'd like to execute this sql
    SELECT EXECUTION_AUDIT_ID
    FROM RUNTIME_OWNER.ALL_RT_AUDIT_EXECUTIONS
    within a process flow, and pass the returned value to an external process(within the same process flow) which is a unix script. Is this doable? How can it be accomplished?
    Thanks!

    Hi Patrick,
    Yes, I did look at those threads, but they don't help me with what I am trying to accomplish. Here is the design
    The map runtime audit id value is used to uniquely name a file created by one map. Within the process flow, which contains the map that creates this file, I need to rename the file using a suffix string provided by the user. So, if file created is med_admin_1234 (1234 is map runtime audit id), and suffix is "fac_a", then new filename is med_admin_fac_a. For this renaming functionality I am using a Unix script (file is created in a Unix server), but I need to pass the map runtime id that's part of the initial name in order to rename the file. Makes sense? Within the process flow, I need to retrieve a value (instead of an input parameter, have like an output parameter instead). Not sure this is doable, but asking just in case.
    Thanks.

  • How to pass arguments from PAPI to the process

    Can any one tell me How to pass arguments from PAPI to the process.

    The link Creating a new work item instance in a process using PAPI shows how to create instances on PAPI and pass in the variable information as they are being created.
    Provide some additional detail if you're interested in seeing how to pass in variable information using PAPI for scenarios other than instance creation.
    Dan

  • Getting an process-flow audit id in the process flow itself

    Hi,
    I am using OWB 11gR2 and want to capture the audit_id of the process flow itself at the process-flow level.
    I want to use this to pass it tru to the mappings in the process flow.
    I know how to get audit_id when you're in the mapping (get_audit_id), but i want the audit_id of the process flow when i am "inside" the process flow.
    When i have this i can let all of my mappings in the flow receive the same id.
    When i setup a parameter at the process flow and specify get_audit_id there it errors on me.
    Does anybody what to specify here ?

    ok,
    i figured it out myself and answered myself in another thread.
    Basically it goes like this:
    In the master flow you have sub-processflow objects which you want to pass along the audit_id of the master flow.
    So that you can pass along the same audit-id to every mapping in all of the flows.
    But it would be nice to be able to run sub flows independently from the master flows (for testing etc.)but still feed the same id(whatever that is) to the mappings in that process flow.
    And on the lowest level this applies to mappings as well: be able to run a mapping and get a id to store in a field.
    The same applies to feeding a process date to all the mappings in your flows(used for dwh purposes)
    How does this work on the mappings ?
    Create a mapping input parameter, put 2 params in it.
    One date, one number. The date part is easy: just put SYSDATE in it.
    The number part would ideally hold get_audit_id as default value. Unfortunately this generates an error.
    So put default value of 1 here. Create a constant on the mapping with value get_audit_id in it.
    Create expression that tests if input_param has something else than 1 as the value ; if so then there was no audit_id fed into the mapping by a process flow. Make the expression use the constant then. Use the output of the expression in your mapping.
    How does this work in process flows ?
    You'll have two different parts here:
    -feeding from flow to a sub-flow
    -feeding from flow to mapping
    Flow to subflow:
    You can not bind a flowparameter to subprocess paramter so you'll need to create 2 variables.(process date / audit id)
    Create two parameters, one date with sysdate as default, one number with 1 as default.
    Use assign operator to bind audit_id parameter to the audit id variable.
    Use another one to bind to the same variable, but specify parent_audit_id as value instead of binding it to the paramter.
    Use conditonal routing on these two assign operators to have one of these be executed.
    This will ensure that the variabel either gets parent_audit or the value of the input parameter of the flow.
    Use another assign op. to bind the date input to the date variabel.
    Bind the parameters of the sub flows to the variables.
    Flow to mapping:
    Use the same procedure as descibed above. Only difference here is that you can bind a mapping parameter to a parameter.
    This means that you'll don't need the assign stuff for the date parameter since you can bind the date parameter of the mapping to the input parameter of the flow.
    Hope this helps someone ...

  • How to pass a paramter to a schedued process flow

    I have a process flow with a one varchar type parameter.
    I want to schedule this process flow and for that I have created a schedule and then attached it to the process flow using Process Flow -> Configuration -> Referred Calendar Option.
    Now my issue was how can I pass the parameter value into the process flow?
    OWB Version : 10.2.x
    Thanks,
    mc

    Hi Si,
    This is what I did.
    I have deployed the process flow with schedule and then goto control center and start the job.
    Then under parameters it's ask for a "EVAL_LOCATION" value. Which is something else.
    In my process flow I have a parameter called "Job_Name" and I want to pass a value for that parameter. But in either control center, no in direct API allow me to pass a value for that parameter.
    Thanks,
    mc

  • Deployment error during deployment of the process flow...

    i have made a program using OMB to deploy an OWB process flow. i have used tcl programming to run it on UNIX.
    when i run the program it gives me a strange error saying:
    an unknown error has occured during deployment .
    when i open the OWB design center to check the status i find the the process folw is stuck during the generation part and it continues but the generation never takes place.. for that i wrote an OMBALTER to alter the generation language of the mappings used in the process flow ,but it does not help...
    also after the error in the program when i see the mapping through the desibn center i do not see the original mapping when i open the mapping editor.
    then if I run the again program again i get the process flow deployed successfully ,obviously with the incorrect mappings.
    can anybody plz help me out with it???

    Hello!
    I searched metalink on error RTC-5161 and found a reference in note 392263.1
    It is a bug but there is a patch available ( bug 5504848, patch number 5525337).
    Read the note on metalink to check if you really hit this bug and apply the patch.
    Regards,
    Robert

  • Error in using External Process in the Process Flow

    I Created a Process Flow with an external process to Move the file from one location to another location,
    I gave the below parameters for the External Process
    COMMAND: move
    PARAMETER_LIST: ?F:\\FlatFiles\\in\\company.txt?F:\\FlatFiles\\error\\company.err
    SUCCESS_THRESHOLD: 0
    SCRIPT:
    The environment is
    Windows 2003
    OWB 9.2.0.8
    OWF Builder 2.6
    When I deploy and execute using Deployment Manager, it gave me the below error
    Starting Execution TEST
    Starting Task TEST
    Starting Task TEST:EXTERNALPROCESS
    CreateProcess: move move F:\FlatFiles\in\company.txt F:\FlatFiles\error\company.err error=2
    Completing Task TEST:EXTERNALPROCESS
    Completing Task TEST
    Completing Execution TEST
    What am I missing something here?
    Is my Parameters correct?
    GIve me the link where I can find more on using External process.
    Please...please...help me..
    Shree

    Nikolai,
    I have created a simple process flow which only calls the external process. The script is on the same host as the process flow is deployed to.
    I have used two diffent values for the command parameter.
    1. I placed the full path of the file in the command parameter and left the script parameter blank:
    COMMAND: /edwftp/ppas/scripts/ClearPPAS.sh
    PARAMETER_LIST:
    SUCCESS_THRESHOLD: 0
    SCRIPT:
    2.I placed the bash command in the command parameter and the full path in the script parameter.
    COMMAND: /usr/bin/sh
    PARAMETER_LIST:
    SUCCESS_THRESHOLD: 0
    SCRIPT: /edwftp/ppas/scripts/ClearPPAS.sh
    Both of these appear to work as they print out the statements inside the script but the files that are supposed to be removed still remain.
    Starting Execution EXTER_FILE
    Starting Task EXTER_FILE
    Starting Task EXTER_FILE:EXTERNALPROCESS
    Removing ActivatedAudit.dat...
    Removing ActivatedCustomers.dat...
    Removing ActiveAudit.dat...
    Removing ActiveCustomers.dat...
    Done!
    Create the Activated Customers data file...
    Create the Active Customers data file...
    Done!
    WARNING: Log file truncated - see RAB for further information.
    /edwftp/ppas/scripts/ActivatedCustomers.sh: /edwftp/ppas/log/ActivatedCustomers.log: cannot create
    /edwftp/ppas/scripts/ActiveCustomers.sh: /edwftp/ppas/log/ActiveCustomers.log: cannot create
    WARNING: Log file truncated - see RAB for further information.
    Completing Task EXTER_FILE:EXTERNALPROCESS
    Completing Task EXTER_FILE
    Completing Execution EXTER_FILE
    The permissions on the /log direcotry are 775. The user I register the file location with owns this directory.
    Can't think of anything else I have missed. I really appreciate your help :)
    Ryan

  • Skipping mapping execution in process flow

    I have a process flow that calls multiple mappings. Based on some condition I want a mapping not to execute, E.g. when rerunning the process flow in case of failure. Currently I keep track of mapping execution and store the status in a control table. When a mapping has completed, it updates the status as completed. When I need to rerun, in the SQL of the tables join in the mapping, I have a where clause that returns 0 rows (mapping_completed = N) . So mapping is excuted but no rows added/updated.
    The flip side of the approach is when using a complex join specially using views, the SQL takes a long time to run only to return 0 rows. So logic is okay but I want to save time by avoiding the execution of the mapping it self.
    I would like to know how others are implementing this scenario.
    Regards
    Sandeep

    Can you not have two different mappings one for running it first time and one which you can run on failure...
    In your process flow you can have a param i.e 'F for failure and 'I' for intial and based on this condition you can decide which mapping to invoke and hte path to be followed.

  • Describe the process flow in MM

    hi i m new to MM,
    can u pls describe the process flow in MM
    thanks

    Hi Sudeep,
    The MM flow is as follow:
    1) Purchasing Requsition -> sent by inventory dept to purcharsing dept
    2) Request for Quotation(RFQ)-> Purchasing Dept shall ask the vendors to give the quotation for the requested materials by inventory.
    3) Quotation -> Quotation is sent by vendors to the company
    4) Purchase order-> Based on all paramers of a quotation sent by vendors. Vendors are selected from whom the material has to be obtained. The company gives purchase order to the vendor.
    5) Good's receipt -> vendors sends the goods to the company with goods receipt
    6) Invoice verification -> this done based on good's receipt. this means that the ordered goods have reached or not.
    7) Payment -> payment is done based on invoice verification. this is (FI/CO) *-- Santosh Kumaar.M
    Full MM Transaction Codes Flow with table
    Purchase Requisition ME51N (Table - EBAN)
    RFQ to Vendor - ME41 (EKPO, EKKO)
    Raising Quotation - ME47 (EKPO, EKKP)
    Comparison of Price - ME49 (EKPO, EKKO)
    Creation of PO - ME21N (EKPO, EKKO, EKBE, EKPN, EKKN, EKPV)
    Goods Receipt - MIGO (MSEG)
    Invoice (Bill PAssing) - MIRO (BSEG)
    Goods Issue - MIGO (MSEG)
    Physical Inventory - MI01( Create doc) (ISEG)
    MI04 (Enter Count) (ISEG)
    MI07 (Post) (ISEG)
    Hope this helps.
    Reward if useful
    Shawn

  • Probleme execution class java in the process flow

    when i try to execute a simple process flow contain process java i have this message error can somme one help please
    RPE-02229 : Les informations de débogage suivantes ont été collectées :
    RPE-02230 : Informations de débogage : os.name = Windows XP
    RPE-02230 : Informations de débogage : os.version = 5.1
    RPE-02230 : Informations de débogage : os.arch = x86
    RPE-02230 : Informations de débogage : user.name = younes
    RPE-02230 : Informations de débogage : user.dir = D:\app\younes\product\11.2.0\dbhome_1\owb\bin\win32
    RPE-02230 : Informations de débogage : argv.cwd = E:\JavaApplication1.jar
    RPE-02230 : Informations de débogage : argv.arg0 = java
    RPE-02230 : Informations de débogage : argv.arg1 = -classpath
    RPE-02230 : Informations de débogage : argv.arg2 = E:/JavaApplication1.jar
    RPE-02230 : Informations de débogage : argv.arg3 = main
    RPE-02230 : Informations de débogage : HOMEDRIVE = E:
    RPE-02230 : Informations de débogage : DISCOVERER_ALLOW_DB_CONNECT_STRING = YES
    RPE-02230 : Informations de débogage : SERVICE = axadw
    RPE-02230 : Informations de débogage : TMP = E:\DOCUME~1\younes\LOCALS~1\Temp
    RPE-02230 : Informations de débogage : MODE = -startup
    RPE-02230 : Informations de débogage : OWBCC_HOME = D:\app\younes\product\11.2.0\dbhome_1
    RPE-02230 : Informations de débogage : SystemDrive = E:
    RPE-02230 : Informations de débogage : RTHOME = D:\app\younes\product\11.2.0\dbhome_1
    RPE-02230 : Informations de débogage : PATHEXT = .COM;.EXE;.BAT;.CMD;.VBS;.VBE;.JS;.JSE;.WSF;.WSH
    RPE-02230 : Informations de débogage : CommonProgramFiles = E:\Program Files\Fichiers communs
    RPE-02230 : Informations de débogage : OWB_HOME = D:\app\younes\product\11.2.0\dbhome_1
    RPE-02230 : Informations de débogage : USERDOMAIN = KAIOUCHE-YOUNES
    RPE-02230 : Informations de débogage : ALLUSERSPROFILE = E:\Documents and Settings\All Users
    RPE-02230 : Informations de débogage : RTUSER = OWBSYS
    RPE-02230 : Informations de débogage : ORA_HOME = D:\app\younes\product\11.2.0\dbhome_1
    RPE-02230 : Informations de débogage : SystemRoot = E:\WINDOWS
    RPE-02230 : Informations de débogage : APPDATA = E:\Documents and Settings\younes\Application Data
    RPE-02230 : Informations de débogage : SADATADIR = D:\OracleBIData
    RPE-02230 : Informations de débogage : Path = D:\app\younes\product\11.2.0\dbhome_1\bin;D:\app\younes\product\11.2.0\dbhome_1\jre\1.4.2\bin\client;D:\app\younes\product\11.2.0\dbhome_1\jre\1.4.2\bin;D:\app\younes\product\11.2.0\dbhome_1\owb\bin\admin
    RPE-02230 : Informations de débogage : PROMPT = $P$G
    RPE-02230 : Informations de débogage : FP_NO_HOST_CHECK = NO
    RPE-02230 : Informations de débogage : SAROOTDIR = D:\OracleBI
    RPE-02230 : Informations de débogage : HOST = localhost
    RPE-02230 : Informations de débogage : PROCESSOR_ARCHITECTURE = x86
    RPE-02230 : Informations de débogage : LOGONSERVER =
    KAIOUCHE-YOUNES
    RPE-02230 : Informations de débogage : CLASSPATH_LAUNCHER = -classpath Personalities.jar;;;..\admin\;..\admin\launcher.jar -DOWB_HOME=D:\app\younes\product\11.2.0\dbhome_1 -DJDK_HOME=..\..\..\jdk -DORA_HOME=D:\app\younes\product\11.2.0\dbhome_1 -DOEM_HOME=D:\app\younes\product\11.2.0\dbhome_1 -DIAS_HOME=D:\app\younes\product\11.2.0\dbhome_1 -Doracle.net.tns_admin=D:\app\younes\product\11.2.0\dbhome_1\network\admin Launcher ..\admin\owb.classpath
    RPE-02230 : Informations de débogage : JAVAPATH = D:\app\younes\product\11.2.0\dbhome_1\jdk
    RPE-02230 : Informations de débogage : PORT = 1521
    RPE-02230 : Informations de débogage : SESSIONNAME = Console
    RPE-02230 : Informations de débogage : HOMEPATH = \Documents and Settings\younes
    RPE-02230 : Informations de débogage : OCM_HOME = D:\app\younes\product\11.2.0\dbhome_1
    RPE-02230 : Informations de débogage : CLASSPATH = Personalities.jar;;
    RPE-02230 : Informations de débogage : PROCESSOR_IDENTIFIER = x86 Family 6 Model 23 Stepping 10, GenuineIntel
    RPE-02230 : Informations de débogage : USERPROFILE = E:\Documents and Settings\younes
    RPE-02230 : Informations de débogage : SATEMPDIR = D:\OracleBIData\tmp
    RPE-02230 : Informations de débogage : ORACLE_HOME = D:\app\younes\product\11.2.0\dbhome_1
    RPE-02230 : Informations de débogage : NUMBER_OF_PROCESSORS = 2
    RPE-02230 : Informations de débogage : COMPUTERNAME = KAIOUCHE-YOUNES
    RPE-02230 : Informations de débogage : ComSpec = E:\WINDOWS\system32\cmd.exe
    RPE-02230 : Informations de débogage : OS = Windows_NT
    RPE-02230 : Informations de débogage : OEM_HOME = D:\app\younes\product\11.2.0\dbhome_1
    RPE-02230 : Informations de débogage : IAS_HOME = D:\app\younes\product\11.2.0\dbhome_1
    RPE-02230 : Informations de débogage : USERNAME = younes
    RPE-02230 : Informations de débogage : CLIENTNAME = Console
    RPE-02230 : Informations de débogage : TEMP = E:\DOCUME~1\younes\LOCALS~1\Temp
    RPE-02230 : Informations de débogage : PROCESSOR_LEVEL = 6
    RPE-02230 : Informations de débogage : OCM_ORACLE_HOME = D:\app\younes\product\11.2.0\dbhome_1
    RPE-02230 : Informations de débogage : JDK_HOME = D:\app\younes\product\11.2.0\dbhome_1\jdk
    RPE-02230 : Informations de débogage : PROCESSOR_REVISION = 170a
    RPE-02230 : Informations de débogage : ProgramFiles = E:\Program Files
    RPE-02235 : Le système d'exploitation a signalé qu'il ne pouvait pas exécuter la commande demandée. Ce peut être parce que la commande ou les paramètres ne sont pas valides ou parce qu'il s'agit d'une commande shell. Tout code retour résultant est spécifique du système d'exploitation. Des informations de débogage ont été produites.
    CreateProcess: java -classpath E:/JavaApplication1.jar main error=267
    Le fichier journal est disponible. Cliquez sur le bouton Informations pour le visualiser.

    Nikolai,
    I have created a simple process flow which only calls the external process. The script is on the same host as the process flow is deployed to.
    I have used two diffent values for the command parameter.
    1. I placed the full path of the file in the command parameter and left the script parameter blank:
    COMMAND: /edwftp/ppas/scripts/ClearPPAS.sh
    PARAMETER_LIST:
    SUCCESS_THRESHOLD: 0
    SCRIPT:
    2.I placed the bash command in the command parameter and the full path in the script parameter.
    COMMAND: /usr/bin/sh
    PARAMETER_LIST:
    SUCCESS_THRESHOLD: 0
    SCRIPT: /edwftp/ppas/scripts/ClearPPAS.sh
    Both of these appear to work as they print out the statements inside the script but the files that are supposed to be removed still remain.
    Starting Execution EXTER_FILE
    Starting Task EXTER_FILE
    Starting Task EXTER_FILE:EXTERNALPROCESS
    Removing ActivatedAudit.dat...
    Removing ActivatedCustomers.dat...
    Removing ActiveAudit.dat...
    Removing ActiveCustomers.dat...
    Done!
    Create the Activated Customers data file...
    Create the Active Customers data file...
    Done!
    WARNING: Log file truncated - see RAB for further information.
    /edwftp/ppas/scripts/ActivatedCustomers.sh: /edwftp/ppas/log/ActivatedCustomers.log: cannot create
    /edwftp/ppas/scripts/ActiveCustomers.sh: /edwftp/ppas/log/ActiveCustomers.log: cannot create
    WARNING: Log file truncated - see RAB for further information.
    Completing Task EXTER_FILE:EXTERNALPROCESS
    Completing Task EXTER_FILE
    Completing Execution EXTER_FILE
    The permissions on the /log direcotry are 775. The user I register the file location with owns this directory.
    Can't think of anything else I have missed. I really appreciate your help :)
    Ryan

  • How to integrate the Process flow design into Workflow?

    Hi Guys,
    I created a process flow design in OWB. Now I need to integrate this design into Oracle workflow. How can I implement it? Process flow design is saved as an Jpeg or SVG file. Pls suggest the steps how can I do this? Im new to workflow and owb. Im using OWB 10g.
    Regards
    Kishan

    If you deployed the packages to the same location then the second deployment replaced the result of the first one (actually a new version of the process flow was created). You can execute only the latest version...
    Regards,
    Robert

  • How to specify the Process Flow Module with SQLPLUS_EXEC_TEMPLATE.SQL ?

    Hi, we have a couple of process flow modules that have PF Packages and Process Flows with the same name.
    E.g
    PFMOD1 (Module)
    FILELOAD (Package)
    PF1 (Pf)
    PFMOD2 (Module)
    FILELOAD (Package)
    PF1 (Pf)
    Normally we can specify "FILELOAD/PF1" as a paramater to the procedure SQLPLUS_EXEC_TEMPLATE.SQL in order to initiate the running of an OWB process flow but how can the system distinguish between modules ?
    Anyone done this ?
    Thanks
    Paul

    If you deployed the packages to the same location then the second deployment replaced the result of the first one (actually a new version of the process flow was created). You can execute only the latest version...
    Regards,
    Robert

  • Scheduling the Process Flows in Oracle Warehouse Builder

    Hi,
    Can you please let me know how to schedule the process flows.I mean to make the process flow to run on a daily, weekly basis etc.Where exactly we need to schedule the process flows.
    It would be great if you can help me out.
    Thanks
    Vinay

    You can schedule process flows the same way as you schedule mappings. See the following viewlet regarding the scheduling of OWB activities in Oracle Enterprise Manager (OEM):
    http://otn.oracle.com/products/warehouse/htdocs/oem_scheduling_viewlet_swf.html
    Regards:
    Igor

Maybe you are looking for

  • EJB 3.0 indirection problem

    Hi, I'm trying to use lazy loading with EJB 3.0. I've generated CMP beans from tables in JDev. I have the same table schema as in tutorial: http://www.oracle.com/technology/tech/java/oc4j/ejb3/howtos-ejb3/howtooutofcontainer/doc/how-to-ejb30-out-of-c

  • Help adding navigational attribute to IC

    Hi all, i'm adding a new nagigational attr. to a characteristic, i checked it on an already existing and loaded InfoCube. Then when opening an existing query the new nav. attr. appears so i add it to the free characteristics. I can save the query and

  • How to view payload for Successful instances in ESB console ?

    I have a situation where I need to view the payload data for successful esb instances. Only for FAULTED/ERRORED instances, the payload browser is available. Can I change any parameters/settings to enable this for successful service calls? First, Will

  • Crashing on Final Cut Express HD

    Hi, FCE HD is suddenly crashing (just locking up) while I am working on a timeline. I have to force quit to start over. It was happening consistently when I was working with a still image in the timeline on a specific problem. I am really not sure wh

  • Install Illustrator CS6 without CD drive

    Is there a way to download and install Illustrator CS6 on a computer without a disk drive? I have a purchased copy of the disk with serial number and cannot use it. Please help!