BW Info Object update problem

Hi All,
We are implementing BW. The Vendor and Document date info objects are not mapped directly to SAP R/3. Hence the data is not updating directly fromR/3 for these info objects. So I have written a small transfer routine to update the info object. But it is not getting updated with this routine. I am not sure where the problem is. Any ideas why?
The following is the code of transfer routine. There are two infosources: communicaoin structure and Transfer structure. I wrote the routine in transfer structure. This routine is written for the info object Vendor. 
PROGRAM CONVERSION_ROUTINE.
Type pools used by conversion program
TYPE-POOLS: RS, RSARC, RSARR, SBIWA, RSSM.
Declaration of transfer structure (selected fields only)
TYPES: BEGIN OF TRANSFER_STRUCTURE ,
  InfoObject SL_ACTIV: CHAR - 000004
  ACTIV(000004) TYPE C,
  InfoObject SL_AWORG: CHAR - 000010
  AWORG(000010) TYPE C,
  InfoObject SL_AWTYP: CHAR - 000005
  AWTYP(000005) TYPE C,
  InfoObject 0ACDOC_NO_F: CHAR - 000010
  BELNR(000010) TYPE C,
  InfoObject 0PSTNG_DATE: DATS - 000008
  BUDAT(000008) TYPE D,
  InfoObject 0ITEM_NUM: NUMC - 000003
  BUZEI(000003) TYPE N,
  InfoObject 0CHRT_ACCTS: CHAR - 000004
  CHARTACCTS(000004) TYPE C,
  InfoObject 0CREATEDON: DATS - 000008
  CPUDT(000008) TYPE D,
  InfoObject SL_CPUTM: TIMS - 000006
  CPUTM(000006) TYPE T,
  InfoObject 0CREDIT: CURR - 000017
  CREDIT(000009) TYPE P,
  InfoObject 0CURRENCY: CUKY - 000005
  CURRUNIT(000005) TYPE C,
  InfoObject 0CURTYPE: CHAR - 000002
  CURTYPE(000002) TYPE C,
  InfoObject 0DEBIT: CURR - 000017
  DEBIT(000009) TYPE P,
  InfoObject SL_DOCCT: CHAR - 000001
  DOCCT(000001) TYPE C,
  InfoObject SL_DOCLN: CHAR - 000006
  DOCLN(000006) TYPE C,
  InfoObject SL_DOCNR: CHAR - 000010
  DOCNR(000010) TYPE C,
  InfoObject SL_DOCTY: CHAR - 000002
  DOCTY(000002) TYPE C,
  InfoObject 0FISCPER: NUMC - 000007
  FISCPER(000007) TYPE N,
  InfoObject 0FISCVARNT: CHAR - 000002
  FISCVAR(000002) TYPE C,
  InfoObject SL_LINET: CHAR - 000005
  LINETYPE(000005) TYPE C,
  InfoObject SL_LOGSYS: CHAR - 000010
  LOGSYS(000010) TYPE C,
  InfoObject SL_POPER: NUMC - 000003
  POPER(000003) TYPE N,
  InfoObject 0QUANTITY: QUAN - 000015
  QUANTITY(000008) TYPE P,
  InfoObject 0UNIT: UNIT - 000003
  QUANUNIT(000003) TYPE C,
  InfoObject 0GL_ACCOUNT: CHAR - 000010
  RACCT(000010) TYPE C,
  InfoObject 0COMP_CODE: CHAR - 000004
  RBUKRS(000004) TYPE C,
  InfoObject 0COSTCENTER: CHAR - 000010
  RCNTR(000010) TYPE C,
  InfoObject SL_REFACT: CHAR - 000004
  REFACTIV(000004) TYPE C,
  InfoObject SL_RFDCCT: CHAR - 000001
  REFDOCCT(000001) TYPE C,
  InfoObject SL_RFDCLN: NUMC - 000006
  REFDOCLN(000006) TYPE N,
  InfoObject SL_RFDCNR: CHAR - 000010
    REFDOCNR(000010) TYPE C,
  InfoObject SL_REFRYR: NUMC - 000004
  REFRYEAR(000004) TYPE N,
  InfoObject SPL_CUR1: CUKY - 000005
  RTCUR(000005) TYPE C,
  InfoObject 0VERSION: CHAR - 000003
  RVERS(000003) TYPE C,
  InfoObject SPL_CUR2: CUKY - 000005
  RWCUR(000005) TYPE C,
  InfoObject 0FISCYEAR: NUMC - 000004
  RYEAR(000004) TYPE N,
  InfoObject 0CO_AREA: CHAR - 000004
  RZZKOKRS(000004) TYPE C,
  InfoObject 0PROFIT_CTR: CHAR - 000010
  RZZPRCTR(000010) TYPE C,
  InfoObject 0PACCOUNT: CHAR - 000010
  SACCT(000010) TYPE C,
  InfoObject 0PCOMP_CODE: CHAR - 000004
  SBUKRS(000004) TYPE C,
  InfoObject 0PART_CCTR: CHAR - 000010
  SCNTR(000010) TYPE C,
  InfoObject 0POSTXT: CHAR - 000050
  SGTXT(000050) TYPE C,
  InfoObject SL_PPRCTR: CHAR - 000010
  SZZPRCTR(000010) TYPE C,
  InfoObject SL_TMSTMP: DEC - 000015
  TIMESTAMP(000008) TYPE P,
  InfoObject 0SALES: CURR - 000017
  TURNOVER(000009) TYPE P,
  InfoObject 0RECORDMODE: CHAR - 000001
  UPMOD(000001) TYPE C,
  InfoObject 0USER_NAME: CHAR - 000012
  USNAM(000012) TYPE C,
  InfoObject 0VTYPE: NUMC - 000003
  VALUETYPE(000003) TYPE N,
  InfoObject 0VALUATION: NUMC - 000001
  VALUTYP(000001) TYPE N,
  InfoObject SL_WSDAT: DATS - 000008
  WSDAT(000008) TYPE D,
  InfoObject SL_SPLTMD: CHAR - 000001
  XSPLITMOD(000001) TYPE C,
  InfoObject 0ASSET_MAIN: CHAR - 000012
  ZZANLN1(000012) TYPE C,
  InfoObject 0ASSET: CHAR - 000004
  ZZANLN2(000004) TYPE C,
  InfoObject 0DEBITOR: CHAR - 000010
  ZZKUNNR(000010) TYPE C,
  InfoObject SL_ZZLFNR: CHAR - 000010
  ZZLIFNR(000010) TYPE C,
  InfoObject SL_ZRPRCR: CHAR - 000010
  ZZREPPRCTR(000010) TYPE C,
  InfoObject SL_ZTCDE: CHAR - 000020
  ZZTCODE(000020) TYPE C,
  InfoObject 0REF_DOC_NO: CHAR - 000016
  ZZXBLNR(000016) TYPE C,
END OF TRANSFER_STRUCTURE .
Global code used by conversion rules
$$ begin of global - insert your declaration only below this line  -
TABLES: ...
DATA:   ...
$$ end of global - insert your declaration only before this line   -
      FORM COMPUTE_CREDITOR
Compute value of InfoObject 0CREDITOR
in communication structure /BIC/CSSPL_LINE
Technical properties:
    field name      = CREDITOR
    data element    = /BI0/OICREDITOR
    data type       = CHAR
    length          = 000010
    decimals        = 000000
    ABAP type       = C
    ABAP length     = 000010
    reference field =
Parameters:
-->  RECORD_NO       Record number
-->  TRAN_STRUCTURE  Transfer structure
<--  RESULT          Return value of InfoObject
<->  G_T_ERRORLOG    Error log
<--  RETURNCODE      Return code (to skip one record)
<--  ABORT           Abort code (to skip whole data package)
FORM COMPUTE_CREDITOR
  USING    RECORD_NO LIKE SY-TABIX
           TRAN_STRUCTURE TYPE TRANSFER_STRUCTURE
           G_S_MINFO TYPE RSSM_S_MINFO
  CHANGING RESULT TYPE /BI0/OICREDITOR
           G_T_ERRORLOG TYPE rssm_t_errorlog_int
           RETURNCODE LIKE SY-SUBRC
           ABORT LIKE SY-SUBRC. "set ABORT <> 0 to cancel datapackage
$$ begin of routine - insert your code only below this line        -
DATA: l_s_errorlog TYPE rssm_s_errorlog_int.
  SELECT SINGLE CREDITOR FROM /BIC/AAPOSLVEN00
                INTO RESULT
                WHERE /BIC/SL_RFDCNR = TRAN_STRUCTURE-REFDOCNR.
   IF SY-SUBRC NE 0.
       CLEAR RESULT.
    ENDIF.
returncode <> 0 means skip this record
  RETURNCODE = 0.
abort <> 0 means skip whole data package !!!
  ABORT = 0.
$$ end of routine - insert your code only before this line         -
ENDFORM.
      FORM INVERT_CREDITOR
      Inversion of selection criteria for InfoObject 0CREDITOR
      This subroutine needs to be implemented only for SAP RemoteCubes
      (for better performance) and for the Report/Report Interface
      (drill through).
-->  I_RT_CHAVL_CS       Ranges table for current InfoObject
-->  I_THX_SELECTION_CS  Selection criteria for all other InfoObjects
<--  C_T_SELECTION       Selection criteria for fields of
                          transfer structure
<--  E_EXACT             Flag: Inversion was exact
FORM INVERT_CREDITOR
  USING    I_RT_CHAVL_CS      TYPE RSARC_RT_CHAVL
           I_THX_SELECTION_CS TYPE RSARC_THX_SELCS
  CHANGING C_T_SELECTION      TYPE SBIWA_T_SELECT
           E_EXACT            TYPE RS_BOOL.
$$ begin of inverse routine - insert your code only below this line-
  DATA:
    L_S_SELECTION LIKE LINE OF C_T_SELECTION.
An empty selection means all values
  CLEAR C_T_SELECTION.
  L_S_SELECTION-FIELDNM = 'REFDOCNR'.
Selection of all values may be not exact
  E_EXACT = RS_C_FALSE.
$$ end of inverse routine - insert your code only before this line -
ENDFORM.
Thanks for the great help,
Sobhan.

Hi manoj,
Welcome to SDN!!
Check this blog:
/people/sap.user72/blog/2005/09/05/sap-bw-and-business-content-datasources-in-pursuit-of-the-origins
Bye
Dinesh

Similar Messages

  • UnitOfWork/Cache/ClientSession Object Update Problem

    I have a test case that does a create, read, update, read. This is done through methods on a stateless session bean with all methods requiring a transaction.
    I am using Toplink 9.0.3,JBoss 3.0.7 and JTS. Bascally I have a very simple object.
    1. I create the object then call my bean, my bean
    calls TopLink and gets a ClientSession from a
    ServerSession and then gets a UnitOfWork from the
    clientSession. I then register the object as new,
    and commit the object, which get's written to the
    database. My bean method returns the pk.
    BeanInterface.createObject(Object obj) {
    UnitOfWork uow = Singleton.getServerSession().getClientSession().getUnitOfWork();
    uow.registerNewObject();
    uow.commit();
    2. I then read the object via my bean, by calling
    get ClientSession from ServerSession and calling
    readObject on it.
    BeanInterface.readObject(Object obj) {
    ClientSession session = Singleton.getServerSession().getClientSession();
    return Utility.cloneObject(session.readObject(obj)); //Insures I am getting my own copy not a ref.
    So far so good.
    3. I then modify the object in my client and call
    an update method on my bean. This methods does a
    SessionServer.getClientSession().getUnitOfWork()
    I then register my object as existing, deep
    merge it and then commit the unit of work.
    BeanInterface.updateObject(Object obj) {
    UnitOfWork uow = Singleton.getServerSession().getClientSession().getUnitOfWork();
    Object clone = uow.registerExistingObject(obj);
    uow.deepMergeClone(obj);
    uow.commit();
    I check the database and the changes are there.
    4. Now the kicker. I read the object again like in
    step 2 and I get the original object not changes.
    So what is in the cache is the orignal object,
    wht is in the database is the modified object.
    BeanInterface.readObject(Object obj) {
    ClientSession session = Singleton.getServerSession().getClientSession();
    return Utility.cloneObject(session.readObject(obj)); //Insures I am getting my own copy not a ref.
    At this point I am stumped because the changes are in
    the database, but not in the cache and I get no
    exceptions.
    Any thoughts?
    Thanks
    Mike H. SR.

    Donald,
    There are three methods you can use. registerExistingObject(), registerNewObject(), registerObject(). If you know that the object is new then using registerNewObject() is better because it does not do the existence check. If you know that that object exists then using registerExistingObject() saves you the overhead of having TopLink determine whether the object exists or not. registerObject() is really only useful if you do not know whether the object is new or exists. So registNew, registExisting are optimizations. In my case we are using registerNewObject() when a consumer says create the object, and registerExistingObject() when they are doing an update. There is also a store, which uses the registObject(), in this case the consumer does not know whether the object is new or existing.
    I have been tracking the register method in my debugger and the problem may be in this method. Basically the registerObject or registerExistingObject is suppose to load the original object from the datbase if it is not in the cache. If it is in the cache is should clone it giving back the reference to the clone. In the end there will be two copies of the object the Clone on the cloned object list and the original on the original object list. The deepMergeClone should update the clone with the latest changes and then commit should be deltaing the clone and the original to determine what goes to the db. So far the is working ok because the data does filter to the database. If I turn caching off there are no problems.
    Additional information. I did some testing and watching in the debugger, I know this, if I do a serverSession.getClientSession.readObject() or any select or read on the clientSession I get back the same reference every time, but serverSession.getClientSession().acquireUnitOfWork().readObject() returns a different object reference than the clientSession. This may be by design, also I believe the problem is the descriptor, but I cannot figure out what it is about the descriptor, because this only happens on a few descriptors.
    By the way I tried the registerObject prior to posting to no avail and had it worked that would have meant there was a problem with registerExistingObject, because this is an existing object.
    Thanks for the input.

  • Update Concatenated Info-Object

    Dear Experts,
    C1 and C2 are info-objects (characteristics) that have their own data and update rules directly from source (ERP). I have a third info-object animal C3 which is structurally C1-C2 (C1 hyphen C2).
    What is the easiest/neat/straightforward/standard way to update C3 without using Excel ?
    Thanks
    BS.

    Hi Borat
    If you ask me, I will follow below steps.
    1. With first step, I will load the C1 and C3 infobject.
    2. As I 2nd set up, I will start loading the data into C2 infobject. Together with BI expert, you can create logic i.e. C1-C2 = C3 in the transformation. so ideally I would use C1 and C2 as source data for my C3 infobject.
    At least we are following similar kind of process in our area which still works :-).
    Thanks
    Amol

  • Installing a New Language- Mass Updating Info Object Descriptions ?

    We recently installed a new language in our BI 7 system (Patch 16). But the Active SAP delivered info objects (namespace 0nnnn...) did not 'inherit' the SAP provided translations into the new language.
    I can update each info object one by one with descriptions in the new language.
    I can use the translation utility (once I figure it out) to updated the descriptions.
    I can activate standard business content which seems to contain the new language.
    But I'm hoping for something easier and less intrusive. I'm hoping there is a hidden SAP program that merely adds the description in the new language to my existing info objects from the Standard Business Content, without any reverse engienering, redesign, and so forth.
    Is anyone aware of anything like that ?

    Here's the answer from our discussion with SAP.
    There is a program RSDG_LANGUAGE_AFTER_IMPORT that you can run. This program replaces the object description texts in your active SAP Delivered objects with the text description from the Delivered version in the language that you just installed.  Here are OSS notes that are relevant to this issue : OSS Note 562436 and 877049.
    We executed this report using these criteria to replace default English descriptions with the business content descriptions in Polish for our implementation:
    Langauge Key "PL"
    Do not Overwrite Texts turned OFF
    It worked rapidly (150 CPU seconds) and flawlessly. I will say that the program looks for and changes the desription of EVERY object that it can find, and there is no control over changing just query elements or info objects. So step carefully. We plan on running this program in each system (after unlocking) so that we do not have to transport every single standard content object through our development / tests / production environment.
    Once you are finished with this, you will, of course, need to use the translation tools to translate your custom objects. I've personally found the BI 7 translation tools to be much easier to work with than the earlier versions, but that may simply be a symptom of our upgrade process (we just upgraded to BI 7 from BW 3.5)

  • Program to activate update rule for master data (info objects)..very urgent

    Hi all,
    I have an info provider(A0CUSTOMN). For this the update rules are not active.In production system i am not able activate.Please let me know if there is any program to activate the update rule for masterdata(info object).
    Thanks=points
    Manjula

    Hi Manjula,
    Leave the id and infocube field blank.  Just provide the infosource name.
    BTW is this a direct update master data object?  In that case all this is not relevant.
    Check if it appears as an Infoprovider. 
    I did not ask enough questions to start with.
    BR/
    Mathew.

  • Problem with info Object relocating to another dimension.

    Hi Experts,
    I created a cube Sales with dimension Customer and Organization. By mistake I assigned an info object to customer. Now, I have to relocate it to Organization. The cube is with data. The info Object does not contain any data. How to relocate it to Organization?
    Kindly help and advice me.
    Thanks in advance,
    With Kind Regards,
    Kannan

    Hi,
    You need to delete the data in the cube in order to reassign the object to the new dimension. Once you delete the data only then would you be able to reassign the object to the required dimension.
    Cheers,
    Kedar

  • Master Data Info Object is not updating Attribute data

    Dear Sdns,
    We are loading master data to ZCOMP_GL Info object through flat file  extraction... ZOMP_GL have four attributes.. Leaving three of the attributes Only one of the attribute which is CS_ITEM holds the data.
    We loaded data ffrom flat-file.. It laoded sucessfully upto the PSA and data is available... And when we runned DTP the load was successfull.. In the manage screen of the Info object it shows the records are added successfully.. But when we see the data in ZOMP_GL. We are not able to see the Data  for CS_ITEM which is attribute.... Also we runned Attribute change run..
    Kindly Advice me..
    Warm Regards,
    Aluri

    Activate the data in the info object.
    Ravi Thothadri

  • Problem in loading data from flat file to info object

    Hi experts,
      I am new on bw. I am trying to load data from .csv file to info object. CSV file contains two colums Mat No, Mat Name and are separated by comma and similarly Mat Name is attribute of Mat No in info object. I am doing all steps by following the book but whenever I load data into info object it is loaded in one column. I mean both Mat no and Mat name apears in Mat No column whereas Mat Name column appears empty in info object. I have changed exel file into .csv. Any one can help me sort it out.
    regards

    Hi,
    your flatfile should be in the form of csv ie it does not mean that in a word u seperate it with coma
    create an excel file and say save as in teh file name give the name of your flatfile and in the save as type select CSV(comma delimited) from the drop down list
    and then in this file enter the data as u fill in excel sheet.
    After closing the file right click it and say open with wordpad then the data should appear seperated with a comma.
    Try this and then revert back in case of any doubts.........
    Are u loading data into BI 7.0 or 3.x
    Regards
    Madhavi

  • Urgent - Problem with info object

    Hi All,
    I have info object ZH_SONR (not master datatable), I changed the length of the info object from 12 to 10 in the development system. This  info object is used in the general remote info cube.
    Now my issue is I moved the change from development to acceptance. I moved the info object without deleting the msater data in the development system. due to this transport request failed to move to acceptance sys and also the inof obnject is inactive in the acceptance sys.  (How activate info oject directly acceptance syst)
    Can anybody suggest me.how to solve this issue. Pleae it very very urgent for me
    Thanks in Advance
    Narendra

    Hi,
    Just to correct you there is no need to move the dependencies of the infoobject esp the cube if they are already present in the acceptance system.
    Check the exact error using the log in the transport and you will come to know the error for the transport.There can be other errrors also might be number range interval missing or so. So please check the log in se10 or se09 and see what is the error u are getting for the transport Deleting data in the dev system will not hamper i feel you need to take care of the data in the acceptance system .
    Please rethink concern and then proceed.
    Thanks
    Puneet
    Edited by: Puneet Chawla on Apr 4, 2008 9:57 AM

  • Info-Object data not appearing in Multiprovider

    Guys,
    I got a problem here. I have created a multiprovider based on master data and cube. My master data has certain attributes which are not present in the cube. I want to display data for those fields in the multiprovider.
    I can see cube data in the multiprovider view but i don't see any data coming from the master data info-object. 0INFOPROV shows only cube name.
    Is there something i am missing or any setting that i need to do ?
    Points will be awarded to the helpful answers.
    Thx,
    Soumya

    Hi All,
    Multiprovider always has issues when you are trying to link two objects vary in their structure. Lets say if you are creating a multi-provider on a ODS object & Cube or Cube & Info-object. Lets say CHAR X is available in Cube and not in ODS or master data.
    Any selection on char X will not fetch you any record from ODS / master data as it is not available in ODS / master data. You need to add the characteristic to ODS / master data and update the same way as you are updating it in the cube. Otherwise don't make any selections based on this characteristic.
    Hope it helps.
    Thanks
    Soumya

  • Urgent::::Data is not loaded for a perticular info object in ods

    Hi All,
    We have loaded data into an ODS( 0PRC_DS01) in development server. It was successfully loaded into it all info objects.Reports were working well.
    When we transported it to production, data loading was taking longggg  time (15000 for 9 hours).So, we have done two things to improve the loading speed.
    1) we have created an index based on the fields in the where clause RCLNT,RLDNR,RYEAR, DOCNR, POPER in JVSO1 table.
    (JVSO1 is an R/3 table from where key data coming to datasource 0EN_JVA_2.)
    2)We have updated the optmizer statistics.
    Now the problem is, data is not loaded to one perticular info object JOINT VENTURE PARTNER in dso. Which was loaded successfully in development.
    Please help us........We will assign points for helpful answers

    Hi Chek in the transfer and update rules whether u mapped the fields with target and also check whether u have routine. and check whether the data is coming for that object from the source.
    Khaja

  • How to remove the space in the info object level?

    Hi,
    I created a Master Data info Object and gave the data type as <b>Char</b> and length as <b>30</b>.
    From the source system I am getting the data of length 9. But at PSA level I am getting some erroneous records.
    Example: Data from the source system  'a12345678'
                   Data in PSA 'a12345678b'     -
    ***  where b  - Blank
    With out changing the length how can I remove the spaces (Blank)?
    Can any one suggest me how to remove, where and what to apply ?
    I need to do any settings at the info object level or at the Transfer Rule?
    Please provide the each and every step to resolve my problem.
    Thank you

    Hey  you can allow space in RSKC tcode and execute it... .that's it .
    and below is the routine for invalid chars and you can have this in update rules ..
    data: w_fielda(x) type c.
    data: w_result(x) type c.
    data: w_temp_field(1) type c.
    data: w_count type i.
    w_fielda = COMM_STRUCTURE-/BIC/Zxxxxxx.
    w_count = 0.
    do x times.
    clear w_temp_field.
    w_temp_field = w_fielda+w_count(1).
    if w_temp_field CA
    '!"%&''()*+,-./:;<=>? _0123456789ABCDEFGHIJKLMNOPQRSTUVWXYZ'.
    w_result+w_count(1) = w_temp_field.
    endif.
    w_count = w_count + 1.
    enddo.

  • Update Problem in CUBE from ODS.

    Hi Experts,
         I have problem in Updating data from ODS to CUBE and ODS to INFO-OBJECT.
    In brief, ODS has the Up-to date data ( Means till today - 28/07/10 ) . But the cube has Data till 22/07/2010. If I am trying to activate the ODS , Its is showing NO REQUEST TO ACTIVATE. And the DATAMART status is also not available . But the thing is , I checked in ODS till 22/07/2010 also DATAMART status is not available. And Its a Delta .  
    Please help me out, How can I update the data In CUBE and to an Info object.
    Thanks,
    Sethi.

    Hi ,
    I got the point , I am showing how the request are there  in date wise.
    In ODS   : 
                                                               CRM Sales Contract Item:Delta     29.07.2010
                                                               CRM Sales Contract Item:Delta                     28.07.2010
                                                               CRM Sales Contract Item:Delta      27.07.2010
                                                               CRM Sales Contract Item:Delta     26.07.2010
                                                               CRM Sales Contract Item:Delta     25.07.2010
                                                               CRM Sales Contract Item:Delta     21.07.2010
                                                               CRM Sales Contract Item:Delta     20.07.2010
                                                               CRM Sales Contract Item:Delta     19.07.2010
    It's Showins , there is missing REQ after 21.07.2010 .
    In INFO-CUBE
                                                                Delta Package for Update                         22.07.2010
                                                                Delta Package for Update                              21.07.2010
                                                                Delta Package for Update                             20.07.2010
                                                                Delta Package for Update               19.07.2010
                                                                Delta Package for Update                             18.07.2010
    It's showing , there is no data in INFO CUBE after 22.07.2010 and    in ODS the same Date Request is Missing. So my DELTA go Inactivated. After Updating the REQ on 22.07.2010 to CUBE , Unfortunately DELETED without maiking that RED.    My mistake was that.
    Please guide me ... What should I do ? Should I delete the Data in both CUBE and ODS. And Reload .
    Thanks,  
    Sethi.
    Edited by: ukumar on Jul 29, 2010 4:19 PM

  • Direct and Flexible loading for  Attributes for a Info-object?

    Dear all,
          Is it possible to have both Direct and Flexible update for  Attributes of an Info-object from two different data sources from the same source system(R/3)  . The reason being that the first data source can not be extended in R/3.
    When this scenario is tried For Flexible loading The data loading  is not successful in BW.No errors/dumps found.
    Regards,
    Amu

    In this case I start and activate the whole data flow again to hopefully get an error message. If this still has no success I'd open an OSS message. Even if you have made a mistake you should get an error message somewhere.
    Some other places you might check:
    SM50 to see if the job is still running
    DB02 to see DB locks and tablespace problems
    Best regards
       Dirk

  • Data loading of 0vendor from PSA to Data Target(info object)

    Dear Friends
    Here I have one problem that..i have loaded the master data 0vendor data is coming upto PSA but not going to data target i.e info object .
    Here I am giving the system message in RSMO (status tab)
    <b>Processing in Warehouse timed out; processing steps missing
    Diagnosis
    Processing the request in the BW system is taking a long time and the processing step has still not been executed.
    System response
    <DS:DE.RSCALLER>Caller  is still missing.
    Procedure
    Check in the process overview in the BW system whether processes are running in the BW system under the background user.
    If this is not the case, check the short dump overview in the BW system.</b>
    Yesterday also I got this error is it concerned to BASIS guy or have to do in BW.
    I remind you this is daily job .
    Thanks and Regards
    Rajasekar

    Hi Manfred
      Thanks for you response..
      i checked in ST22 i didnt find short dump and in RSMO i find <b>transfer(Idocs and trfc):Errors occured,
    Data Package 1 : arrived in BW ; Processing : Data packet not yet processed</b> in details tab..i have activated transfer rules also..data is available in PSA..in infopackage tab i have selected full update
    and in Processing tab:i find
    Data Package 1 ( 11442 Records ) : Errors occurred
    also showing transfer rules with red button.
    so if u give any solution for above problem i will be highly thankful to you
    Thanks and Regards
    Rajasekar

Maybe you are looking for

  • IPhone in Austria (Europe)

    Does anyone of your know when the iPhone is comming to Austria? On the German Homepage of Apple der are news for the 9. Nov. 2007 but on the austrian site there isn't anything about the iPhone. Does anyone of you know if it comes on T - Mobile or A1

  • EXIT_SAPLV50E_001

    Dear Friends, Captioned  User exit is meant for default values of Foreign Trade header data. Can you please inform me, can this exit be trigerred in VF01? I tried the same using breakpoint, but was unsuccessful. Debugging mode did not start. I wish t

  • What is attribute changerun and process chain?

    hi experts, what is attribute changerun and processchain. pl explain these two with a business case. thanks & regards venkat

  • Adobe AIR installation and testing

    Hi, Can anyone say why Adobe AIR does not function correctly in my PC (Vista Home Premium). When I try to run a test application after installation through AIR SDK command-line tool (adl AIRHelloWorld.xml), console window opens but shuts down immedia

  • Server 4.0 can't edit users and groups. All options greyed out.

    I have upgraded the mac mini server from Mavericks to Yosemite and had to update to Server 4.0 and having many issues. One issue is I can't edit users and groups. All the options are greyed out.