Backend BW table for reject counts in datamanager packages

Hello Team,
I am not able to find the backend BW table for the logs of the data manager package which can tell about the rejected records count or sucessful records count.
I got all other information about the datamanager package form the table UJD_STATUS except records counts.
So can anyone please help me out to find the rejected records/sucessful records count in the backend BW table
I got 1 tableUJF_DOC but it is also not giving me the information which i want.
Thanks & Regards
Ronit Kumar

Something like:
In UJD_STATUS for some record in the field LOG_FILE you will have:
Clear20150209150549_DJEGACHWJI3FV62YUSBQ7LLVS.LOG
with
USER_ID: V.KALININ
APPSET_ID: SIM
APPLICATION_ID: INFILE
In UJFS:
\root\webfolders\sim\infile\privatepublications\v.kalinin\tempfiles\
we can see the file: Clear20150209150549_DJEGACHWJI3FV62YUSBQ7LLVS.LOG
In this file:
<RESULT><PROMPT><![CDATA[%SELECTION%    /SIM/INFILE/PRIVATEPUBLICATIONS/V.KALININ/TempFiles/FROM.TMP@@@SAVE@@@@@@EXPAND@@@|DIMENSION:BE||DIMENSION:PERIODS|
%SELECTION_KEYDATE%    ]]></PROMPT><STATUS_STEP><![CDATA[/CPMB/MODIFY completed in 0 seconds
/CPMB/CLEAR_COMMENTS_FOR_CLEAR completed in 2 seconds
/CPMB/CLEAR_CUBE completed in 663 seconds
/CPMB/CLEAR completed in 0 seconds]]></STATUS_STEP><REJECTRECORD><![CDATA[Clearreject_record20150209150549_DJEGACHWJI3FV62YUSBQ7LLVS.txt]]></REJECTRECORD><REJECTFILE><![CDATA[Clearreject_data20150209150549_DJEGACHWJI3FV62YUSBQ7LLVS.txt]]></REJECTFILE><MESSAGE><![CDATA[Task name CLEAR CUBE DATA:
Submit count: 1831713
Reject count: 2
model: INFILE. Package status: WARNING]]></MESSAGE></RESULT>
Vadim

Similar Messages

  • CRM tables for iBASE, Counter and pricing details.

    Hi Everybody,
    Can anybody help me with the name of the tables and the joining condition for iBASE, Counter and pricing agreement tables.
    Say, I have only service contract number and GUID, to start with.
    I'm looking for counter id and the reading, from iBASE. Then, using the pricing agreement, I want to convert the volume to an amount.
    Regards,
    Sanj.

    Hello,
    Could you find a way out for creating counters in an IBASE component programatically?
    Rgds
    Priyanka

  • Fields in MCHB table for cycle counting

    Hi Experts,
    There is a requirement in my program that if the values of the follwoing stocks are there in MCHB table then change the date of creation when cycle counting is performed at the end of the year:
    Blocked
    In qual. insp.
    Restricted-use
    Returns
    Stock in tfr
    Unrestricted
    Can anyone tell me that which field are there in MCHB table coressponding stock  types.I can see some fields starting with CV* and some with KZ* for BLocked, restricted..etc

    Blocked  - CSPEM
    In qual. insp. - CINSM
    Restricted-use - CEINM
    Returns - CRETM
    Stock in tfr - CUMLM
    Unrestricted  - CLABS
    These are the fields

  • Table for Reading Counter in CRM IBASE

    Hi All,  
              I want the table link and table names for CRM Ibase counter reading value.
    In CRMD_MPK_READING table i can get all counter values except Counter reading value.
    Thanks in advance,
    Regards,
    Madhan

    Hi Madhan
    These tables might help.
    CRMC_MPK_APPGRP
    CRMD_MPK_MPOINT
    Please refer these links.
    http://scn.sap.com/thread/1394539
    http://scn.sap.com/thread/1403552
    Regards
    Vivikta

  • WM tables for cycle count

    Friends,
    I have a question regarding WM tables.
    Whenever a cyclecounting is carried for a Bin, a Physical Inventory document is genrated. Is there any table in SAP tha gives me the list of ins for which no pysical inventory documents are generated.
    Sanjay

    Hi,
    If you're looking for WM-tables, please check this link:
    http://www.saptechies.com/warehouse-management-tables/
    BR
    Csaba

  • For all entries in source package merge

    Hi experts,
    I have one question regarding statement for all entries in source package where …..
    Explanations:
    Let’s say that my source package contains 2 types of data:
    -type1
    -type2
    I would like to use the statement select from table into internal table
    For all entries in source package
    But the where statement changes depending on the data type (2 keys when data type is 1 and only 1 key when data type is 2) .
    So that would be:
    Type1:
    Select fields
    From table into internal table
    Where field1 = source_package-field1
    And field2 = source_package-field2.
    Type2:
    Select fields
    From table into internal table
    Where field1 = source_package-field1
    How can I merge them?
    Thanks.
    Amine

    Hi Amine,
    Didn't try that before but there are some idea for you to reference.
    I assume source_packet have a field which indicate the data type which call source_packet-dtype
    1) Write SQL like this... (Notes: never try that, not sure if it will work)
    Select fields
    From table into internal table
    Where ( source_packet-dtype = 1 and field1 = source_package-field1 and field2 = source_package-field2 )
    OR ( source_packet-dtype = 2 and field1 = source_package-field1 ).
    2) Try to split the source_packet into 2 itab, one contain type 1 and another contain type 2 data and then read with 2 sql and merge with appending key word, but this idea assume the record will be difference
    Select fields
    From table into internal table
    Where field1 = itab_type1-field1
    And field2 = itab_type1-field2.
    Select fields
    From table APPENDING internal table
    Where field1 = itab_type2-field1
    BTW, you may have better luck in the ABAP space.
    Regards
    Bill
    Message was edited by: Chie Bill

  • To count number of records in an internal table for a condition

    Hello All,
            I want to count number of records in an internal table for a condition.
    For e.g. -- I have one internal table IT which having fields F1, F2, F3, F4, F5.
                     Now, I want number of records in itnternal table IT where F1 = 'ABC'.
    Is it possible to do..?? If yes, then how.??
    Thanks in advance...!!
    Regards,
    Poonam.

    Hi,
    If you mean an internal table, there are a few ways to do this.
    1 One would be to loop over the table with a WHERE clause and increment a counter.
    data: lv_counter type i.
    clear lv_counter.
    loop at itab where fld1 = 'ABC'.
    lv_counter = lv_counter + 1.
    endloop.
    lv_counter now has the number of rows per the condiction.
    2  Well, you may want to try this as well, and compare to the LOOP way. Not sure what kind of overhead you may get doing this way. Here ITAB is our main internal table, and ITAB_TMP is a copy of it. Again I think there may be some overhead in doing the copy. Next, delete out all records which are the reverse of your condition. Then whatever is left is the rows that you want to count. Then simply do a LINES operator on the internal table, passing the number of lines to LV_COUNT.
    data: itab type table of ttab.
    data: itab_tmp type table of ttab.
    itab_tmp[] = itab[].
    delete table itab_tmp where fld1  'ABC'.
    lv_count = lines( itab_tmp ).
    Thanks & Regards,
    ShreeMohan

  • Use global temp table for DML error logging

    our database is 11.2.0.4 enterprise edition on solaris 10
    we are wondering if anyone has an opinion of or has done this before, to use a global temp table for DML error logging. We have a fairly busy transactional database with 2 hot tables for inserts. The regular error table created with dbms_errlog has caused many deadlocks which we don't quite understand yet. we have thought using global temp table for the purpose, and that seemed to work, but we can't read error from the GTT, the table is empty even reading from the same session as inserts. Does anyone have an idea why?
    Thanks

    The insert into the error logging table is done with a recursive transaction therefore it's private from your session which is doing the actual insert.
    Adapted from http://oracle-base.com/articles/10g/dml-error-logging-10gr2.php
    INSERT INTO dest
    SELECT *
    FROM  source
    LOG ERRORS INTO err$_dest ('INSERT') REJECT LIMIT UNLIMITED;
    99,998 rows inserted.
    select count(*) from dest;
      COUNT(*)
        99998
    SELECT *
    FROM  err$_dest
    WHERE  ora_err_tag$ = 'INSERT';
    1400    "ORA-01400: cannot insert NULL into ("E668983_DBA"."DEST"."CODE")"        I    INSERT    1000        Description for 1000
    1400    "ORA-01400: cannot insert NULL into ("E668983_DBA"."DEST"."CODE")"        I    INSERT    10000        Description for 10000
    1400    "ORA-01400: cannot insert NULL into ("E668983_DBA"."DEST"."CODE")"        I    INSERT    1000        Description for 1000
    1400    "ORA-01400: cannot insert NULL into ("E668983_DBA"."DEST"."CODE")"        I    INSERT    10000        Description for 10000
    rollback;
    select count(*) from dest;
      COUNT(*)
            0
    SELECT *
    FROM  err$_dest
    WHERE  ora_err_tag$ = 'INSERT';
    1400    "ORA-01400: cannot insert NULL into ("E668983_DBA"."DEST"."CODE")"        I    INSERT    1000        Description for 1000
    1400    "ORA-01400: cannot insert NULL into ("E668983_DBA"."DEST"."CODE")"        I    INSERT    10000        Description for 10000
    1400    "ORA-01400: cannot insert NULL into ("E668983_DBA"."DEST"."CODE")"        I    INSERT    1000        Description for 1000
    1400    "ORA-01400: cannot insert NULL into ("E668983_DBA"."DEST"."CODE")"        I    INSERT    10000        Description for 10000

  • How to find total recs in a local table for a particular condition

    Hi,
    How to find total recs in a local table for a particular condition?
    Thanks,
    CD

    Well, you may want to try this as well, and compare to the LOOP way.  Not sure what kind of overhead you may get doing this way. Here ITAB is our main internal table, and ITAB_TMP is a copy of it.  Again I think there may be some overhead in doing the copy.  Next, delete out all records which are the reverse of your condition.  Then whatever is left is the rows that you want to count.  Then simply do a LINES operator on the internal table, passing the number of lines to LV_COUNT.
    data: itab type table of ttab.
    data: itab_tmp type table of ttab.
    itab_tmp[] = itab[].
    delete table itab_tmp where fld1 <> 'A'.
    lv_count = lines( itab_tmp ).
    Regards,
    Rich Heilman

  • Sales report based on Reason for Rejection

    Hi Guru's,
    I have a requirment to get the list of sales orders( Open/ Close) report based on Reason for Rejection.
    Please makesure it should be standard not customization and using tables.
    Thanks & Regards,
    Subbu.

    Hi subburamaiah
    If you want the report you can create a separate SIS report . In that take the input field  as a Reason for rejection.. and ask for the output the list of sales orders .Now when you check this user defined report you will give the reason for rejection and check what all orders got rejected on that reason for rejection.
    Regards
    Srinath

  • BAPI_SALESORDER_CHANGE to update reason for rejection of sales order item

    Hi,
    The FM BAPI_SALESORDER_CHANGE is not working properly as I am getting below error when try to update the reason for rejection at sales order item level.
    The delivery is done for this salesorder. Is it because the reason for rejection field is not as an input field when delivery done?
    error in return table is " Field 'ABGRU' cannot be changed, VBAPKOM 000010  ready for input"
    Request your suggestions to avoid this error.
    Thanks

    >
    anikaushi wrote:
    > Hi,
    > The delivery is done for this salesorder. Is it because the reason for rejection field is not as an input field when delivery done?
    >
    >  error in return table is " Field 'ABGRU' cannot be changed, VBAPKOM 000010  ready for input"
    >
    >
    > Thanks
    Yes, Most likely.. You can confirm this by trying to change a order without delivery and see if it goes thru (to ensure that you have passed correct parameters)...
    you may have to delete the delivery (and if billing document exist, cancel it), before you can reject the line item... it would be safer to raise an error message and let the users manually delete delivery document as long as you don't have large volumes of this scenario..
    Please see the SDN thread for how you can avoid this error...
    Re: Cancel Sale Order after Issued Billing

  • How can I pass value in status and reason for rejection using BAPI_LEAD_CREATEMULTI when creating multiple lead

    Hello,
    I want pass value in STATUS and Reason for rejection according to requirement when i am creating multiple lead using BAPI_LEAD_CREATEMULTI. Please help me how can i pass value. Please give some sample code that in which table i have to pass values and please also tell me INPUT_FIELDS values. Please help me
    Regards,
    Kshitij Rathore

    Hello,
    Please help me for solve this problem. I am trying to solve problem from last 4 days but i didn't get any solution.
    Regards,
    Kshitij Rathore

  • Not able to put reason for rejection at sales order level.

    Hi Gurus,
    I have an issue where I am not able to put reason for rejection for line item in sales order. It gives error as please delete the follow on document purchase order line item number 10. I have already deleted the line item in purchase order. Then tried but did not work. Tried by deleting the purchase requision item also but it did not work.
    Tried to undelete the item from PO and then again tried to put reason for rejection but it could no worked out. 
    Please guide me what can be the solution.
    Regards
    Vinod

    As far a I understand you created PO for line item
    So first check whether GR is reversed or not for PO
    Then mark this line item for deletion in PO and then in PR
    Check if you have created any billing document for PO if so reversed that invoice
    Also check if you have created any delivery for the Line item in sales order if yes then reversed the same
    If you have Sales order related Billing, and if you have done billing reverse the same
    If you have Delivery related Billing, and if you have done billing reverse the same
    After reversing all docuemnts created for Sales order then only try to reject the line item
    You can check table VBFA for document flow

  • How to do formatting of messageStyleText in a table for each row

    Hello one and all,
    We have a requirement that the values displayed in figures must have a formatting same as we do in SQL
    for example : select TO_CHAR(4555.95 , '999,999,999.99') from dual
    OUTPUT will be 4,555.95
    Now i want to do the formatting for the messageStyleText which i have created as follows:
    Header
    Table
    messageStyleText
    The code that i am writing is as follows :
    public void processFormRequest(OAPageContext pageContext, OAWebBean webBean)
    super.processFormRequest(pageContext, webBean);
    //Call the AM by using create object, this object created only for FirstPG_AMImpl use
    FirstPG_AMImpl am =(FirstPG_AMImpl)pageContext.getApplicationModule(webBean);
    //Calling view object vo method when Go button is clicked.
    if (pageContext.getParameter("go")!=null)
    Object [] returnVa = (Object[]) am.payslipsummary(pageContext);
    OAMessageStyledTextBean earbean =(OAMessageStyledTextBean) webBean.findIndexedChildRecursive("inputValue");
    earbean.setValue(pageContext, returnVa[0]);
    when the query executes it displays 3 Rows in the table.
    Now, the formatting happens only for the first row displayed in my table. how to allow formatting to happen for all the rows???
    NOTE: the formatting code is in my AMImpl
    public Object[] payslipsummary(OAPageContext pageContext)
    Object [] strValue = new Object[10];
    NumberFormat numberFormat = NumberFormat.getInstance();
    numberFormat.setMinimumFractionDigits(2);
    numberFormat.setMaximumFractionDigits(2);
    numberFormat.setMinimumIntegerDigits(3);
    numberFormat.setMaximumIntegerDigits(20);
    return strValue;
    pls help!
    Brgds,
    Jenny

    Hi,
    To for the specific column value of all rows of table, please loop through the underlying VO of that table
    OAViewObject vo = (OAViewObject)am.findViewObject("View Object");
    if (vo != null) {
    Row TotalLinesVOrows[] = vo.getAllRowsInRange();
    RowSetIterator rowsetitr[] = vo.getRowSetIterators();
    if (vo.getRowCount() > 0) {
    rowsetitr[0].setRangeStart(0);
    rowsetitr[0].setRangeSize((int)vo.getRowCount());
    for (int count = 0; count < vo.getRowCount(); count++) {
    row = rowsetitr[0].getRowAtRangeIndex(count);
    Object value= row.getAttribute("ViewAttributename");
    Double fomattedValue=getFormatCurrency(value)
    row.setAttribute("ViewAttributename", fomattedValue);
    public String getUSFormatCurrency(double value)
    Locale locales = Locale.US ;
    DecimalFormat formatter = (DecimalFormat)
    NumberFormat.getCurrencyInstance(locales);
    String formattedCurrency = formatter.format(value);
    return formattedCurrency;
    Thanks
    Pratap

  • Missing most detailed table for dimension tables

    Hi ,
    I am getting this following error
    Business Model Core:
    [nQSError: 15003] Missing most detailed table for dimension tables: [Dim - Customer,Dim - Account Hierarchy,Dim - Account Region Hierarchy,Fact - Fins - Period Days Count].
    [nQSError: 15001] Could not load navigation space for subject area Core.
    I got this error when I tried to configure # of Elapsed Days and # of Cumulative Elapsed Days by following way-
    1. Using the Administration Tool, open OracleBIAnalyticsApps.rpd.
    Configuration Steps for Controlling Your Data Set
    Configuring Oracle Financial Analytics 5-51
    The OracleBIAnalyticsApps.rpd file is located at:
    ORACLE_INSTANCE\bifoundation\OracleBIServerComponent\coreapplication_
    obisn\repository
    2. In the Business Model and Mapping layer, go the logical table Fact - Fins - Period
    Days Count.
    3. Under Sources, select the Fact_W_DAY_D_PSFT logical table source.
    4. Clear the Disabled option in the General tab and click OK.
    5. Open the other two logical table sources, Fact_W_DAY_D_ORA and Fact_W_
    DAY_D_PSFT, and select the Disabled option.
    6. Add the "Fact - Fins - Period Days Count" and "Dim - Company" logical tables to
    the Business Model Diagram. To do so, right-click the objects and select Business
    Model Diagram, Selected Tables Only.
    7. In the Business Model Diagram, create a new logical join from "Dim - Company"
    to "Fact - Fins - Period Days Count." The direction of the foreign key should be
    from the "Dim - Company" logical table to the "Fact - Fins - Period Days Count"
    table. For example, on a (0,1):N cardinality join, "Dim - Company" will be on the
    (0/1) side and "Fact - Fins - Period Days Count" will be on the N side.
    8. Under the Fact - Fins - Period Days Count logical table, open the "# of Elapsed
    Days" and "# of Cumulative Elapsed Days" metrics, one at a time.
    9. Go to the Levels tab. For the Company dimension, the Logical Level is set to All.
    Click the X button to remove it. Repeat until the Company dimension does not
    have a Logical Level setting.
    10. Make sure to check Global Consistency to ensure there are no errors, and then
    save the RPD file.
    Please help me to resolve.
    Thanks,
    Soumitro

    Could you let me know how you resolved this. I am facing the same.

Maybe you are looking for

  • How to cancel email notifications in ical?

    Please help. I share a work calendar with a colleague via ical and syncing via mobile me. When I as the "owner" of the calendar send or update an event in ical my colleague recieves an email notification. I update the calendar many times each day and

  • Why doesn't my media player work

    media on my laptop dosen;t work

  • Music speeds up when playing music in itunes!

    hi everyone, i recently bought a creative xmod and when i play music through itunes now the music speeds up to an insane speed, does anyone know how to fix this? i couldn't find any help on the creative tech support but i sae that others had this pro

  • Any Recommendations will be appreciated!

    I am looking for some over-the-ear headphones that fit into the iphone plug, (the 5 sets I have dont fit into it.) I would love a wireless, bluetooth pair, but dont know if they exist. Can anyone recommend their headphones that they use with their ip

  • How to Build Attribute Dimension Dynamically & Load with LCM?

    Hi, I'm trying to modify the existing outline at cilent's site. For some reason, when I pulled the outline with extractor, it didnt come out in the format that is compatible with Outline Load Utility. I was told to use LCM so I may still load with mi