Scheduling a mapping....

hi ,
Pls can someone point me to a document which specifies scheduling a mapping using a different external tool like autosys or control-m or tibco
Thanks
s

Check out this on the blog;
http://blogs.oracle.com/warehousebuilder/2008/11/using_3rd_party_schedulers_with_owb_1.html
Cheers
David

Similar Messages

  • How to schedule a mapping?

    Hi ....
    how can I schedule a mapping ????
    Can external tools be used to schedule a mappin ?.....like tibco,autosys etc ?
    thnx
    s

    Follow the below step to shecule mapping
    1.Define the Scheduler say every sunday.
    2.Right click the mapping or process flow which ever to schedule
    under Configure > Refered Calendar select the schedular name.
    3 Deloy the mapping .
    4.Deploy the Sechdular then run the scheduler.
    then every sunday the mapping/process flow will be executed.
    Cheers
    Nawneet

  • Error in scheduling a mapping with sqlloader ctl file

    Hi everyone,
    I have been trying to schedule a single mapping which generates sqlloader ctl file. but i get the error
    ORA-20001: Begin. initialize complete. workspace set. l_job_audit_execution_id= 20545. ORA-20001: Please check execution object is deployed correctly. ORA-01403: no data found ORA-06512: at "USER7.PMAP_TLOG_JOB", line 180 ORA-20001: Please check execution object is deployed correctly. ORA-01403: no data found
    but when i attach this mapping with a process flow it works fine. There is no error.
    so my question is in OWB is it a must that we should attach the mapping which generates sqlloader ctl file to a process flow and then schedule it or can we schedule a single mapping which generates sqlloader ctl file and what should be the process to schedule a single mapping which generates sqlloader ctl file?
    can anyone please help?
    Thanks & Regards
    Subhasree

    Hi Nawneet,
    Any suggestions?
    can anybody else also help me in this error???
    Regards
    Subhasree

  • How to use scheduling in Mapping?

    Hi,
    can i use the schedular in Mapping?.
    I have created a schedule, but dont know how to use it in Mapping.
    Does anyone some ideas oder example.
    Thanks
    Mandi

    Hi Mandi
    You configure the mapping and set the 'Referred Calendar' property.
    See the viewlet below which does it (for Apps integration rather than database scheduler, but the steps are pretty much the same).
    http://www.oracle.com/technology/products/warehouse/htdocs/concmgr/owbconcurrentmanager_viewlet_swf.html
    Cheers
    David

  • Schedule OWB mapping using OEM

    Hi,
    I am trying to call OWB mappings from the OEM (using the GUI).
    I have mappings which have input parameters. So calling the mapping as a PL/SQL block is not going to work.
    using the .MAIN method as these parameters will change for every run.
    I am seeing if there is another way to add these mappings as programs and then add them to a chain. Having the mapping input parameters as program attributes.
    Please share if you know of a way to get this done.
    Thanks,
    AM

    Hi,
    There is no need to detect..if there are any pictures stored in the column which is possible in LONG u cannot even detect the length. You will just ahve to write a procedure which will move the data to col1 ig the data in the LONG column is less than 4000 and it will automatically move it to col2 when the data length in the LONG column is greater than 4000.
    first declate 2 variables with varchar2(4000) and a temp cursor for long column. Open a cursor and and equate the variables with a substring function w.r.t the v_temp.
    ex:
    v_notes1 :=substr(v_temp,1,4000)
    v_notes2 :=substr(v_temp,4001,4000)
    insert the other records as it is. This will work.
    Regards
    Bharath

  • Scheduling a OWB map in Workflow

    Hi All,
    I want to schedule a map in workflow. I have never used Oracle Workflow. Could anyone give me some steps how to do it or could you please provide some documents regarding workflow.
    Pleas help me as this is very urgent.
    Thanks in advance,
    Ashis

    I used the on-line help and the doco. Search the pdf for 'process flows' and this should be a good starting point. In the Design Center go to Process Flows and then use the wizards to setup a simple flow. The actual design will be on the third level down in the hierarchy - Process Flows -> Process Flow Modules -> Process Flow Package -> Process Flow. I integrated our setup with Oracle Workflow - this is a separate installation and I recall there is info on this forum about this also. When integrated with Oracle Workflow, one 'legacy' issue I stumbled on is that Process Flow Package names are restricted to 8 bytes.
    Hopefully, this will get you going.

  • Scheduling Mapping or Process Flows- How to?

    Hi
    I am able to succesfully deploy and execute mappings & PFs using control center. Now i want to test the scheduling part. How should i a schedule a mapping to run at regular intervals of time.
    Regards
    Vibhuti

    Hi I figured out a way to schedule my mapings as explained in the below link
    Scheduled Map Error: ORA-20001: Internal error ...
    but when i deploy my schduled job it gives mr the follwoing errors
    ORA-01749: you may not GRANT/REVOKE privileges to/from yourself
    RPE-02224: Internal Error: Cannot grant privilege EXECUTE on object SPRO_OWNER.WB_RTI_WORKFLOW_UTIL to user SPRO_OWNER.
    What does it mean? Do i have to give any privileges on SPRO_OWNER.WB_RTI_WORKFLOW_UTIL pakage? If yes then what privileges do i have to give?
    Please let me know.
    Regards
    Vibhuti

  • How to execute a mapping based on an event

    Hi
    I am on OWB 10.2.0.3. and Oracle 10.2.0.2. I have a mapping which is fine, deploys well, I can execute using the control manager.
    I also created a schedule module in OWB, created a schedule for a specific date and time and also an interval, configured the mapping to this schedule. The mapping gets executed successfully at the scheduled time.
    The requirement is this mapping needs to be executed by an external process (oracle but a different application in a different machine). The team owning this process is ready to insert a record in a table. Which I want to sense and execute this mapping.
    I already have created a procedure so that this mapping can also be run from pl/sql. I can create an after-insert trigger in this table so call this procedure, but that will make the whole think synchronous and the external process will have to wait for this mapping to complete to proceed further which is not acceptable by them.
    Is there a way I can check for the record in this table and exec the mapping from OWB?
    Can somebody please help and provide me pointers how I can schedule a mapping based on an event (insertion of the record) without (preferably) or with Oracle Workflow.
    Thanks a lot in advance!
    Maruthi

    Thanks Detlef,
    The problem I have is the trigger will make it actually synchronous with the process that inserts the record in the table.
    Even if I define the trigger as AUTONOMIUS_TRANSACTION, both the process will not parellel. setting this I can have commits and rollbacks in triggers but they will be synchronous. I want this mapping to run asynchronously so that the main process inserts the record and continues with the rest of the process while the mapping can be executed independently.
    For this reason I am looking for something which will allow me to do this without a trigger on the table.
    As mentioned in your refereed post, I can use CDC, but not sure how good is CDC and will this be an overkill to implement and use CDC for this purpose. Any simpler solution available?
    Any inputs please?
    Thanks once again!
    Regards,
    Maruthi

  • How to schedle the mapping in OWB?

    Can any please provide me link to see the steps to schedule the OWB mapping. My version is 11.1.0.7.0. The mapping is developed
    by some one. Now i need to take responsibility on this. I need to know how to schedule the mapping.I want to run this every day mighnight.
    In project explorer, I went into schedules. Then i created the schedule. After that, i am not sure, how to link the mapping on this scheduler.
    any help is highly appreciated.
    thanks.

    Hi ,
    Do you have metalink or my oracle support access ?
    If yes then check Note 444877.1 for OWB mapping or process flow scheduling .
    1. Verify the mapping or process flow completes successfully.
    2. Navigate to the Schedules node in the Design Center Console and create a new Schedules module
    called MY_SCHEDULES. For the location, select your TARGET_LOCATION, as the schedule will be deployed to the database.
    3. Create a new schedule, TEST_SCH, with time greater than current database machine time (server where the job executes).
    4. Associate your schedule with the mapping or process flow. Right click the mapping or process flow and select the option "Configure" and "set Referred Calendar" to TEST_SCH.
    5. In the Control Center Manager, navigate to your TARGET_LOCATION and note the Scheduled Job TEST_SCH_JOB under the Scheduled Jobs node. Deploy the job with action "Create".
    Using SQLPlus logged into the database as the TARGET user, verify the user has a job TEST_SCH_JOB, in state DISABLED:
    select job_name, state from user_scheduler_jobs;
    6. Use the Schedule tab on the Control Center Jobs panel in the Control Center Manager to schedule
    the job. Highlight, right click the job and from the pop-up menu select "start". Use the same query to check the current status:
    select job_name, state from user_scheduler_jobs;
    The above query will show whether the scheduled job is SCHEDULED, RUNNING or SUCCEEDED.
    http://download.oracle.com/docs/cd/E11882_01/owb.112/e10935/scheduling_etl.htm#CHDGEGJF
    Thanks,
    Sutirtha

  • Scheduling jobs in OWB 10.2

    I'm busy with a migration of OWB 10.1 to 10.2 and I had almost everything up and running
    except
    the scheduled jobs.
    In 10.1 my predecessors made scheduled jobs which started in their turn a procedure which then started the process flow with wb_rt_api_exec.
    After migration I could not get those jobs going anymore.
    After investigation I could see that the procedures (starting the proess flows) ran when started with the runtime rrepository owner as launcher.
    Even te jobs ran when they were started with the session credentials (iow the credentials from the logged on user being the runtime repository owner).
    I've seen the atricles telling that you need to set the preferred credentials to the runtime repository owner in oem if you want to get it running from there.
    Anyhow I could start it by recreating the jobs with the runtime repository owner as the creator.
    Doens anybody know why it could run in owb 10.1 with sys as creator and why it nn longer works in 10.2.
    I checked the 10.1 installation and I haven't found any priviileges granted to sys that where not granted in the 10.2 installation, so there is no diff.
    Any help would be welcome.

    Hi,
    You cannot schedule direct mapping. You need create Process flow then u need to attach calendar for that. Go to Control Centre Deploy process flow and schedule and further click on start.
    Regards,
    Ava

  • Scheduling jobs in owb

    do schedule a mapping in owb should be use anything else apart from owb.
    Cant we directly schedule using owb? rather than using oracle enterprise manager?
    if yes,then how do i schedule a mapping ,i linked a schedule to the 'refered calender' column in configure option.
    How do i run it ?

    Hi,
    You cannot schedule direct mapping. You need create Process flow then u need to attach calendar for that. Go to Control Centre Deploy process flow and schedule and further click on start.
    Regards,
    Ava

  • Scheduling Mappings and Process Flows

    Can you please tell me how to schedule mappings and process flows in a little detail, if any one has done that. I think OEM can be used for this but dont have any clear cut idea of doing it. Can the mappings/process flows be scheduled without using OEM console ?
    Waiting for you suggestions.
    rgds
    -AP

    Hi
    You can schedule your mapping and process flows with OEM or database job.
    You will find script templates in the OWB HOME/owb/rtp/sql directory
    and you can scheldule them.
    If you want to do it in OEM use the oem_exec_template.sql file createing an OEM job. Read the OWB documentation about it. If you have any question about it ask it, I have done this procedure many times.
    Ott Karesz
    http://www.trendo-kft.hu

  • How to schedule tx. BBP_UPDATE_PORG ? :-(

    Hi guys,
    I need to schedule a job for vendor replication from R3 to SRM.  
    My question is: how can I schedule the mapping that BBP_UPDATE_PORG transaction does ?
    Thank you !
    Best Regards,
    Diego

    Diego / Shaz,
    Have either of u decided on the business process on the Vendor Updates when using this program for BBP_UPDATE_PORG.  I mean that if there is a change to the Vendor in R/3, then the change is reflected in SRM to the R/3 relevant POrgs.  The local POrgs need to be updated after doing the delete and add steps in this Progam BBP_UPDATE_PORG.
    This obviously has inherent issues that at that point the Vendor in SRM is not available for local sourcing.
    Any thoughts. We've gone back and forth with SAP on this but not much luck as although their standard program has this issue, this issue does not have a priority for fixing. 
    Just interested in what you're planning for ur business process. 
    Regards,
    Sachin Sethi

  • Can I execute a mapping from a database trigger ????

    Can anyone tell me if I can execute a mapping from a database trigger ? How ???
    Thanks in advance.----
    JEMD

    Hello,
    We are using the approach of scheduling predefined job heavily in our projects. It works fine.
    There are several points to mention:
    - scheduling / rescheduling algorithm must not lead to simultaneous session of the mapping run. Depending of content of the mappings/PF this could bring the real pain.
    - If there are several user sessions intensively interacting the table on which the scheduling trigger is created, scheduling / rescheduling algorithm must be written with care – users could lock or wait each other while updating job record.
    - Depending on intensity of such mapping runs additional care must be taken of OWB audit trail which will tend to grow.
    Depending on requirements trigger could call ordinal procedure for scheduling (if mapping run must be performed only if user commit change to the table), or procedure with autonomous_transaction pragma (if any touch of the table should fire the execution – don’t think this is a case)
    Sergey

  • How to Schedule OWB Process Flows through OEM

    Hi,
    I have successfully created mappings and process flows for my project.
    But now I want to schedule the process flows through OEM.
    Following are my DB configurations..
    OWB Version : 10g R1 (Oracle SID LVDSGDEV ) on windows
    Runtime Owner: ATS_RUN_OWNER (Oracle SID LVDSGDEV )
    Runtime User : ATS_RUN_USER (Oracle SID LVDSGDEV )
    Work Flow Schema: OWF_MGR (Oracle SID LVDSGDEV)
    Source & Target DB : 10g (Oracle SID LVRUNDEV) on windows
    Process which I want to Schedule is....
    Process Flow Location: ATS_LOC
    Process Flow Name: PKG_DM
    Process Name: BASE_LOAD
    Can someone please suggest me, the procedure to schedule this process flow.....

    You may choose just to schedule the mapping directly through OEM. Create an OEM SQLPlus job that calls the script:
    @c:\owb_home\owb\rtp\sqlplus_exec_template.sql;
    Check the beginning of the sqlplus_exec_template.sql. It will show examples of the parameters it accepts and it has some documentation. It works nicely.

Maybe you are looking for