Urgent:OWB Customised job summary format

Hi experts,
We need customised job summary information or log file in OWB such as:
(a) Total records read from data file;
(b) Total records processed;
(c) Total records successfully loaded;
(d) Total records failed;
(e) Failure records details.
Can anyone suggest how we can achieve this,is there any configuration or PL/SQL?
Any help will be highly appreciated.
Thanks in advance..
Regards,
Amrita

firstly let me ask how ar eyou loading the file into youdb, are you using external tables or sqlloader.
eitherways there is no built in mechanism to get the information that you need so you need to code something.
We need customised job summary information or log file in OWB such as:
(a) Total records read from data file;
If you are using external table then it is a simple count(*) from your table(b) Total records processed;
(c) Total records successfully loaded;
(d) Total records failed;
(e) Failure records details.
If you are using sqlloader then all of the above is automatically logged in the load log file created by sqlloader. which you can read and report in the format required.
So i guess the best option is using sqlloader.

Similar Messages

  • Oracle Warehouse Builder:Customised job summary format

    Hi experts,
    We need customised job summary information or log file in OWB such as:
    (a) Total records read from data file;
    (b) Total records processed;
    (c) Total records successfully loaded;
    (d) Total records failed;
    (e) Failure records details.
    Can anyone suggest how we can achieve this?
    Any help will be highly appreciated.
    Thanks in advance..
    Regards,
    Amrita

    Hi,
    You are in the wrong forum for such a question.
    Ask it in
    Warehouse Builder
    Regards
    Maurice

  • Need More details on ACE Job Summary Report (.ajs)

    We are running ACE 8.00c.05.  I have questions regarding the DPV Summary section of the .ajs report.  My predecessor was using the data values to report out an overall DPV rate of our mailing.  I would to make sure that we are working on the correct set of addresses that will have maximum effect on the DPV rate.  My questions to that end are:
    1. Where can I get more information on the columns and thier meanings?
    2. How can I identify the 105 records that are listed as "Total Not Confirmed."
    Any and all help is appreciated!
    Below is the DPV section of the ACE Job Summary Report.
                Delivery Point Validation Summary (DPV)            
    No Stats Processed:      Y          
    Vacant Processed:        Y          
                                                                CMRA       DPV       DPV  
    DPV Status Code                                 Count   Confirmed  No Stat   Vacant 
    Primary/Secondary Confirmed (Y)      91334       34          477      1226
    Secondary Not Confirmed (S)               475        17              9        11
    Secondary Missing (D)                          218         0               2         0
    Total:                                                   92027        51       488      1237
    Total Not Confirmed:             105

    Hello Paul,
    Information about the Job Summary Report as well as all the other reports can be found in the ACE documentation which should have accompanied your ACE product during the installation.  However, if you cannot locate the documentation for whatever reason, additional copies of the documentation can be downloaded from http://help.sap.com. 
    There are a few different ways to identify records which are tagged as not DPV confirmed records.  The easiest way is to post the ap.dpv_status field in your ACE job.  This will tell you straight away if the record is DPV confirmed it will post a "Y" and if it is not will post "N".
    If  you would like further information about what I have described above in more detail, please open a support incident within Service Marketplace and ensure you use the component EIM-COR and an engineer will be happy to assist you in more detail regarding any further questions you have on this subject.  Additionally, when you open an incident, you will have an opportunity to search our extensive knowledge base which may answer many of the questions you have on this subject.
    I hope this information is helpful to you Paul!  Have a wonderful day!
    Best Regards,
    Ken Burkhamer
    Support Engineer u2013 EIM / Postalsoft
    AGS Primary Support
    SDN WIKI/Forum Active Contributor:  http://wiki.sdn.sap.com/wiki/x/fwxXDw
                               http://forums.sdn.sap.com/forum.jspa?forumID=479

  • Calling owb workflow job created in oem using pl/sql

    is it possible using pl/sql to call owb workflow job which is created thru oem
    can you pl be kind enough to share a sample.
    thanks

    Hi,
    The same question was just answered by another member a couple a days ago want to run owb mappings thru job schedule :
    sqlplus_exec_template runtime_owner location_name PROCESS process_name "," ","
    sqlplus_exec_template is in "D:\oracle\oraWB\owb\rtp\sql"
    Nikolai Rochnik

  • Customisation of Date format while Scheduling reports

    Hello,
    While I am scheduling a report,in reccurance-Dateformat-RunObject and option is Hourly,
    the StartDate/Time format needs to change from 07 - 20 -AM 06/07/2009 to 06/Jul/2009 07-20- AM or equivalent time format.
    Is there any options to customise the time format like above while schedling the report.
    Thanks

    If you are scheduling from CMC or Infoview then you won't be able to customize it. If you are scheduleing from a custom application then you can build a screen whoch shows a date format in desired way so that the end user can select start and end time.

  • OWB 10g Job audit info

    Hi
    When we submit any OWB 10G job, We can get the status of the Job
    from the RTA_STATUS column of the the table WB_RT_AUDIT.
    1.This is numeric column which always gives value as 1 even if the job fails(ie Abended) or succeded..
    2.The view ALL_RT_AUDIT_MAP_RUNS which was created based on the above table has varchar coulmn RUN_STATUS corresponding to RTA_STATUS.numeric column.
    This RUN_STATUS column is also getting the status has COMPLETE irrespective of the actual status of the job.
    kindly suggest a solution from which we can get the actual status of the job.
    Thanks

    Have you looked at the view ALL_RT_AUDIT_EXECUTIONS, there are columns for RETURN_RESULT (OK and FAILURE), RETURN_RESULT_NUMBER, RETURN_CODE. This is output from my target respository for a couple of maps
    LOCATIONS_MAP     PLSQLMap     FAILURE     3     
    TIMES_MAP     PLSQLMap     OK     1     
    Not sure if this is what you are looking for?

  • How to fetch the data records in summary format based on previous day

    drop table T1;
    create table T1(Class, Fees_Collected, Submit_Date) as select
    'MBA', 100000, '7/30/2012' from dual union all select
    'Btech', 20000, '7/10/2012' from DUAL union all select
    'MBA', 45000, '8/1/2012' from dual union all select
    'Btech', 55550, '7/31/2012' from DUAL union all select
    'BBA', 250660, '7/30/2012' from dual union all select
    'MBBS', 44556000, '7/31/2012' from DUAL union all select
    'BDS', 420050, '8/1/2012' from DUAL union all select
    'BBA', 30450, '7/30/2012' from DUAL union all select
    'MBBS', 120450, '7/31/2012' from DUAL union all select
    'BDS', 45950, '7/30/2012' from DUAL union all select
    'MBA', 252450, '8/1/2012' from DUAL;My requirment is to fetch the records based on summary format to display the data with following columns -
    Class |Prev Day Traded Value |Prev Day % of Total |Prev Day % MBA
    Note - Previous Day definiton (Buisness Day) = calendar days - (weekends + US Holidays)
    Kindly help me, as i want to keep it customized so that without specifying the hard coded dates ( Previous Day) it runs through and provide me the resultset....
    All of your help and time is highly appericated.

    You mean business days I guess ?
    I use a function (I had to write it myself) <tt><b> next_business_day(p_start_date in date,p_days_count in number) return date </b></tt>
    where I loop forward/backward from p_start_date according to the sign of p_days_count the required number of steps skipping weekends and holidays as the absolute value of p_days_count is mostly under 30 for the rest (at least around here) Oracle's <tt><b> add_months </b></tt> gets it done.
    Regards
    Etbin
    Edited by: Etbin on 6.8.2012 17:55
    Year till date: <tt><b> your_date between trunc(sysdate,'year') and sysdate </b></tt> is it ? http://en.wikipedia.org/wiki/Year-to-date ?
    Edited by: Etbin on 6.8.2012 18:27
    NOT TESTED!
    function next_business_date(p_start_date in date,p_count_days in number) return date is
      steps  number := abs(p_count_days);
      retval date := p_start_date;
    begin
      if p_start_date is null or p_count_days is null then
        return to_date(null);
      end if;
      while steps > 0
      loop
    /* skipping weekends and (yet to be implemented) holidays */
        while to_char(retval,'dy') in ('sat','sun') /* or is_holiday(retval) */
        loop
          retval = retval + sign(p_count_days);
        end loop;
    /* retval contains a business day now */
        retval = retval + sign(p_count_days);
        step := step - 1;
      end_loop
      return retval;
    end;

  • URGENT: OWB MAPPING

    i am getting the following error while executing the mapping scripts in OWB: PLEASE REPLY URGENTLY
    Starting Execution WINE_PRODUCTS
    Starting Task WINE_PRODUCTS
    ORA-04063: package body "OWBMISO5.WINE_PRODUCTS" has errors
    ORA-06508: PL/SQL: could not find program unit being called
    ORA-06512: at line 1
    Completing Task WINE_PRODUCTS
    Completing Execution WINE_PRODUCTS
    earlier at the time of deployement i was getting the warning
    "LD-2771: System privileges may not allow extraction from source TB_WINE_PRODUCTS."

    Hi Kunal,
    VLD-2771: System privileges may not allow extraction from source TB_WINE_PRODUCTS means that OWB can't determine whether you have sufficient rights on the source you're trying to read. Check if priviliges are correct, if so this message can be ignored.
    More important is ORA-06508, this implies the mapping cannot be found. I don't know how you run this mapping, if you use the SQL template or RUN_MY_OWB_STUFF, check whether you used the right parameters (like location).
    Good luck, Patrick

  • OWB Scheduled job generates infrastructure problem..

    Hi everyone,
    I'm experincing a strange problem while scheduling a process flow using OWB schedule. The job is created and started fine. But the job throws up an exception of the kind 'Infrastructure Problem' etc when the machine is shut down after I start the job from the Control Center. The oracle enterprise manager shows that the job is scheduled and enabled after the job is started via the Control Center.
    Can anyone suggest anything regarding this?
    Thanks in advance.
    Regards,
    Sayantan

    Hi Sayantan,
    Which machine is being shut down, the design client? If so do you use the control center on that machine?
    JP

  • OWB 10gR1 Convert Date format (mm-dd-yyyy) to (yyyy-mm-dd)

    Hi All,
    In OWB 10gR1, I have flatfiles with Date fields having the format (mm-dd-yyyy). I want to load this data into the Staging table in (yyyy-mm-dd) format. How could I do this conversion in my staging mapping ?
    Using external tables is not an option.
    An detailed answer will be extremely helpful.
    Thanks community.

    Wich is this field's datatype in database? Is it date or char? If you are going to store it as a date datatype, you don't have to worry about the date format.
    Have you tried using the Expression Operator to perform the date string conversion in your mapping? Sorry about this lame drawing, but I think it will help you understand:
    source_table ------------ALL_COLUMNS_EXCEPT_DATE_DATATYPE-------TARGET_TABLE
                 |                                                 |
                 +-------EXPR{TO_DATE(DATE_FIELD, 'DATE_FORMAT')}--+In this example, you'll use an expression operator to convert the date string in the format you want. Map other attributes directly to your target table (or other transformations you need to perform).
    This is the generated script of a dummy plan I've built here:
    OPTIONS ( ERRORS=50, BINDSIZE=50000, ROWS=200, READSIZE=65536)
    LOAD DATA
      CHARACTERSET WE8MSWIN1252
      INFILE '{{LOC_FILE.RootPath}}load.csv'
    INTO TABLE "LOAD_TARGET"
      APPEND
      REENABLE DISABLED_CONSTRAINTS
      FIELDS
        TERMINATED BY ';'
        OPTIONALLY ENCLOSED BY '"'
      "COD" POSITION (1) INTEGER EXTERNAL ,
    "NOME" CHAR ,
    "DATA" CHAR "to_date( :\"DATA\" , 'yyyy-mm-dd')"
      )Regards,
    Marcos

  • URGENT: REP-56033: Job 0 does not exist

    Hi, I'm getting this error message when trying to display a report from forms 9i:
    "Cannot Get Output of Job ID 0 you requested on Mon Aug 01 04:22:08 EDT 2005.
    REP-56033: Job 0 does not exist"
    as far as I knew this error occurrs when the rdf file is not accessible or non-existing; unfortunately this is not the case.
    Moreover, the same application launches a report from another form and it works correctly, (the code is exactly the same).
    The main question is:
    is it possible that the problem resides in the server configuration rather than in the code (which actually is equivalent in both procedures)?
    Teh secoind one is:
    how can I get through this?
    Many thanks for helping
    Message was edited by:
    luka

    Nolicer, what is the value of:
    substr(v_rep,instr(v_rep,'_',-1)+1)You might wish to check this, using messages or the debugger.
    In other examples, I have seen the following code used instead:
    substr(v_rep, length(servername)+2, length(v_rep))Maybe this will help.
    Chris

  • Blog Summary Formatting

    I have added a shadow effect to the text in my blog entries however this effect is not carried over onto the main blog summary page. The option to add a shadow effect to the text on the blog summary page is greyed out.

    Yes, you can drag it right into the text area and then set the wrap for it in the text dialog box. You can even set how closely it wraps.
    Another cool little thing I found while playing, it wraps around the object according to opacity! If you place an object so that part of it has below 50% opacity and part has above, only the part over 50% will have text wrap around it.

  • Urgent , need help with fax format

    does anyone know how to convert a file into fax format? I try Rfax http://www.java4less.com/java_fax.htm , it can convert awt.image into a standard fax format, but our solution require a file to be coverted... if anyone know how to do this please give me some advices. thanks.

    Make your file into an awt.image then use what you already know works.

  • Urgent run the job --SBIE0001 takes  long time more than two hours

    hi expert,
    we run the job which cocntian the program SBIE0001 it takes so along time,
    we use the job to eatra the date from our system to another satellite system, by checking the
    job this is one step takes the mainly time as below.
    88 LUWs confirmed and 88 LUWs to be deleted with function module RSC2_QOUT_CONFIRM_DATA
    any update will be appreciated. thanks in advance.

    If you have transaction ME30 active in yous system, run the program into in.
    It will give more information about how the time is lost.

  • URGENT 11i consulting Jobs in CA

    If you or your friends looking for Job, Please find the below job requirements.
    The Positions (multiple) are in California, and its a contract position any where between 3 to 6 months.
    7 Oracle Applications Senior Developer who can put together a technical design document (mainly for Interfaces and Conversions.)
    7 Very good communication skills - Written and verbal.
    7 Strong Oracle technical skills.
    7 5+ yrs total IT experience
    7 3+ years Oracle Applications development experience.
    7 Experience working on Interfaces/ conversions in an Oracle applications environment.
    7 Worked on AR /OM/ Contracts/Install base modules in Oracle Applications.
    7 Experience with Oracle Applications 11i.
    Send your resume to [email protected]
    Thanks,
    Vijay

    Hi ejp,
    thanks for your reply. I did read your post in other thread that you pointed.
    I had searched quite a lot on this issue and had idea that it might be due to firewall settings..
    but sadly, I don't know the solution. Well, you have seen the entire code that I wrote and exception too, Could you suggest me a way out? or any specific firewall setting or a workaround?
    Please let me know if you need any other info from my side regarding the code.
    Thanks a Ton!
    Anuj

Maybe you are looking for

  • How to create Transaction Variant for T code F-30

    Hi I want to create a Transaction variant for T code F-30, so that user can't change the currency field and put any value in rate. Currency should be always in USD. Any input will be heighly appriciated. Regards Shiv

  • Variable of Bean Value to be used in many pages.

    Hi all, My situation is as follow: I have a page PG1 and when it is rendered I'd like to keep a value in something that I could use in PG2 that calls the PG3 and so on. I tried to use session values with pageContext.putSessionValueDirect("vSession",s

  • Regular expressions help

    I'm using a RegExp class (http://www.jurjans.lv/flash/RegExp.html) to do some regular expression in AS2. But I'm not very good at it. var str:String="What if there are other variables, such as possible <a class='gloss' href='asfunction:_root.handle,

  • Random Writer Project! Just started this

    Hi guys I am asked to create a random writer class, below is part of my assignment sheet: You are to implement a Java public class RandomWriterWithArrayList that provides a random writing application. Your class should have a public main method that

  • Help with a video intro on my home page

    Hello, I can use some help or suggestions with a video intro on my home page http: www.godincharge.com. It was originally an mp4 I converted to the swf format using Allok Video to FLV Converter. The file is 650k and downloads painfully slow on dial u