Recrods not extracted into BW

Hi,
I'm using a Function Module for extracting data from R/3. I tested the DataSource  using RSA3, its working fine and pulling records for the specified criteria. Now, I'm trying to pull data into BW by specifying the same selection criteria as in RSA3. The load is successful but its not pulling any records and I get the below message in Status Tab
No data available
Diagnosis
The data request was a full update.
In this case, the corresponding table in the source system does not
contain any data.
System Response
Info IDoc received with status 8.
Procedure
Check the data basis in the source system.
Message in "Step By Step" Analysis
Diagnosis
     The data request was a full update.
     o   In this case, the corresponding tab
             contain any data.
     o   System Response
             Info IDoc received with status
             Procedure
Check the data basis in the source system.
Can anyone please tell me why the records are not pulled into BW even though I have the records in the source system and I'm able to extract those records in RSA3
Thank you!
AM

Hi Ajeet,
I'm pasting the code below can you please check if its missing something.
Initialization mode (first call by SAPI) or data transfer mode
(following calls) ?
  IF i_initflag = sbiwa_c_flag_on.
Initialization: check input parameters
                buffer input parameters
                prepare data selection
Check DataSource validity
    CASE i_dsource.
      WHEN 'XXXXXX'.
      WHEN OTHERS.
this is a typical log call. Please write every error message like this
        log_write    'E'                  "message type
                        'R3'                 "message class
                       '009'                "message number
                       i_dsource   "message variable 1
                       ' '.                 "message variable 2
        RAISE error_passed_to_mess_handler.
    ENDCASE.
    APPEND LINES OF i_t_select TO s_s_if-t_select.
Fill parameter buffer for data extraction calls
    s_s_if-requnr    = i_requnr.
    s_s_if-dsource = i_dsource.
    s_s_if-maxsize   = i_maxsize.
Fill field list table for an optimized select statement
(in case that there is no 1:1 relation between InfoSource fields
and database table fields this may be far from beeing trivial)
    APPEND LINES OF i_t_fields TO s_s_if-t_fields.
  ELSE.
Data transfer: First Call      OPEN CURSOR + FETCH
               Following Calls   FETCH only
First data package -> OPEN CURSOR
    IF s_counter_datapakid = 0.
      g_first = 'X'.
Fill range tables BW will only pass down simple selection criteria
of the type SIGN = 'I' and OPTION = 'EQ' or OPTION = 'BT'.
      LOOP AT s_s_if-t_select INTO l_s_select WHERE fieldnm = 'fieldname'.
        IF l_s_select-low <> '111' AND
           l_s_select-low <> '222'.
          RAISE invalid_movement_type.
        ELSE.
          MOVE-CORRESPONDING l_s_select TO r_im_bwlvs.
          APPEND r_im_bwlvs.
        ENDIF.
      ENDLOOP.
      LOOP AT s_s_if-t_select INTO l_s_select WHERE fieldnm = 'BEG'.
        MOVE-CORRESPONDING l_s_select TO r_im_begda.
        r_im_begda-low0(4) = l_s_select-low6(4).
        r_im_begda-low4(2) = l_s_select-low0(2).
        r_im_begda-low6(2) = l_s_select-low3(2).
        APPEND r_im_begda.
      ENDLOOP.
      LOOP AT s_s_if-t_select INTO l_s_select WHERE fieldnm = 'END'.
        MOVE-CORRESPONDING l_s_select TO r_im_endda.
        r_im_endda-low0(4) = l_s_select-low6(4).
        r_im_endda-low4(2) = l_s_select-low0(2).
        r_im_endda-low6(2) = l_s_select-low3(2).
        APPEND r_im_endda.
      ENDLOOP.
*Select from table ltak into internal table i_ltak the following fields.
*Condition: where bwlvs = import bwlvs & endat is >= import begda and
<= import endda.
      READ TABLE r_im_begda INDEX 1.
      IF sy-subrc NE 0.
        RAISE blank_date_invalid.
      ELSE.
        IF r_im_begda-low IS INITIAL.
          RAISE blank_date_invalid.
        ENDIF.
      ENDIF.
      READ TABLE r_im_endda INDEX 1.
      IF sy-subrc NE 0.
        RAISE blank_date_invalid.
      ELSE.
        IF r_im_endda-low IS INITIAL.
          RAISE blank_date_invalid.
        ENDIF.
      ENDIF.
      IF NOT r_im_endda-low IS INITIAL
        AND r_im_begda-low > r_im_endda-low.
        RAISE invalid_date.
      ENDIF.
      r_endat-sign = 'I'.
      r_endat-option = 'BT'.
      r_endat-low = r_im_begda-low.
      r_endat-high = r_im_endda-low.
      APPEND r_endat.
*-- Get data from the tables
      PERFORM get_data.
*-- Populate the extract structure with data
      PERFORM write_data.
*-- Fill Export able with the extracted data
      e_t_data[] = i_zbipicprd2[].
    ENDIF.                             "First data package ?
    IF g_first EQ 'X'.
      CLEAR g_first.
    ELSE.
*-- This is important to prevent endless loop.
      RAISE no_more_data.
    ENDIF.
    describe table e_t_data lines s_counter_datapakid.
   s_counter_datapakid = s_counter_datapakid + 1.
  ENDIF.              "Initialization mode or data extraction ?
ENDFUNCTION.
Thanks,
AM

Similar Messages

  • R/3 Hierarchy not extracting into BW properly!

    Hi,
    Can anyone suggest anything regarding the following...
    I am working in a SAP BW v3.5 environment and I need to extract a hierarchy from R/3. A new hierarchy was built in R/3 based upon 0Account and was originally extracted into BW OK.
    Changes were then made to the hierarchy in R/3 and I'm now having problems extracting it into BW as it just brings the "original" version of the hierarchy.
    I've tried deleting the hierarchy completely from the BW side and extracting it again (after replicating the DataSource) but without any luck as it just brings back the original hierarchy and not the latest amended version.
    Could the R/3 guys missed something / not done something or could it be an issue on the BW side?
    Does anyone know what the issue could be?
    Regards.

    Hi,
    Time Stamp issue will come if there is time difference at server level may be in min. only. That will come even after retransporting the data source again, so better to reactivate the data source in the PRD system itself with the standard programm RSDS_DATASOURCE_ACTIVATE_ALL. Select only the data source you want to activate.
    Regarding the hierarchy check out any dependency object need to be loaded first with reference to that this updated data will get displayed. Ex: for loading product hierarchy first we need to load the 0PROD_HIER object data so that the updated node will get reflected.
    Hope this will help you.
    Regards,
    Prabhakar.

  • Customer Fields not extracted by FPBW.

    Hi, dear experts,
    I have a problem regarding as the extraction of open items via standard transaction FPBW.
    The fields about the customer information (ex: VKONT and GPART) are not extracted into the table DFKKOPBW. After a search through the OSS notes concerning this problem, we have found two Notes corresponding to this problem. They are 616162 and 526338. Nevertheless, these two Notes have already been included in the version of our system which is 640 with the release number 472.
    Whatu2019s more, in the programme LFKKOPBWCI02 where there were the modification for 526338,  we found that almost every line is commented.
    Do you have any ideas on how to solve the problem?
    Thanks in advance!!

    good afternoon, engineers
    I have this same problem, when I try to fill the table DFKKOPBW, table DFKKOP, load records.
    does anyone have a step by step, to make the filling of the table DFKKOPBW?.
    I am aware of his comments.
    Yimi Castro Garcia

  • Can not extract data into BW from SQL SERVER

    Dear All,
      I meet a problem to extract data from database(MS SQL Server 2000(sp3)) into BW now and can not extract data into BW ODS, even PSA, In the monitor, display yellow light(0 from 0 record), detail message just display message "data request arranged" "confirmed with: confirmation" in requests(message) step; "missing message: request received" in extract (message)  step; "no data" in processing(data packet) step and so on. but in fact, there are two records in my database test table and DB connection is OK. Even I can extract data from another test oracle database into BW ODS successfully.
       Our BW system has two BW applicaton server and use oracle database. the one application server locates on IBM AIX host. the another one locates on one NT server. the application server on NT server is used for data extration from MS SQL SERVER  database into BW oracle database. and MS SQL SERVER and NT platform application server locate on same one host. DBSL was installed on the NT application server already. and DB connector also was created successfully for MS SQL SERVER and datasource also was generated. DBSL type is Kernel640-WIN-IA32bit-unicode. my BW system is ECC5.0/UNICODE/ORACLE. all table/view/field name of MS SQL server is upcase and have not any specific character. for example: ZDEMO etc.
    wait your help.
    Thanks in advance.
    Billy

    Hi  Ravi,
    Could you help me to get knowledge about the followings:
    approximately how many records    extracting and transfering  from SAP R/3 to BIW  in an organisation. for that how much time  will take .
    How to extract data from  two are three source system  to BIW. Kindly help me with step by step explanation .If any screen shots with documents pls fwd to my ID. "[email protected]"
    Your help highly appreciated.
    Thanks.
    Hema

  • Financial Statement hierarchy not extracted correctly from ECC into BW.

    Recently, one of my clients modified a FS hierarchy in production environment by moving some nodes from revenue to expenses, but BW is not picking up the change.
    In ECC via transaction FSE3, one of our Financial Statement hierarchies shows three nodes - (Group Life_, Vehicle Plan only_, and Cost of Removal_) as Expenses. However, the BW extractor still shows these three nodes as Revenue and loads the hierarchy into BW that way as well.
    DataSource is 0GL_ACCOUNT_T011_HIER with field HIENM = AE03. When running RSA3 Extractor Checker in ECC, the displayed data still shows the three nodes in question as Revenue and not correctly as Expenses.
    Found SAP note 1061847 - Ind. For reversing plus/minus signs not extracted correctly. Applied note in ECC development environment, tested the extractor, and checked the load into BW, but the error regarding the nodes still exists after applying the fix.
    Appreciate any suggestions or thoughts from the community.
    Thanks!
    SAP landscape is as follows:
    SAP_BW     700     0009     SAPKW70009     SAP NetWeaver BI 7.0
    SAP_AP     700     0007     SAPKNA7007     SAP Application Platform
    SAP_BASIS     700     SAPKB70010     SAP Basis Component

    Thanks SDNBI. I reviewed the suggested OSS note 1037447, but I am not sure how it applies in my situation. The suggested note seems to address a problem with the display of transfer structure in BW. Our problem seems to be that the extractor on ECC is incorrectly extracting the hierarchy structure. When viewing the data in RSA3 extract checker in ECC, I see the three nodes in question incorrectly positioned in the hierarchy. Thus loaded the same incorrect way into BW. Yet, when I display the hierarchy through transaction FSE2, the three nodes are displayed correctly.

  • Updated CCB records are extracted but not loaded into OBIU.

    This is OBIU version 2.3.2 and CCB version 2.3.1
    Records updated in CC&B are successfully added to the Change Log (CI_CHG_LOG). They are also extracted successfully by base extract program EXTACCT. However, when the data is loaded into OBIU (using OWB), the record update is not reflected into OBIU. This was tested for base object CD_ACCT.
    The OWB mapping object only creates CD_ACCT records for those accounts in the Change Log with Change Type of 'I' (or Insert). The OWB mapping object does not process those with Change Type of 'U' (or Update). How does one get this Change Type to be processed ?
    A new record (with a new effective date) should have been created that would have up-to-date values for its UDFs.
    The update procedure was able to update the End Date and Job Number of the old record correctly. However, without the creation of a new effective record, all new fact records related to the Account record will no longer have an account related to it.
    This makes the data inaccurate.
    This does not just apply to CD_ACCT, but to other base tables/entities as well. No changes have been done to the DB trigger and OWB metadata of CD_ACCT. The extract program has a user-exit that populates some of the UDFs.
    A custom user exit has been introduced to the extract program of CD_ACCT. DB trigger and OWB metadata have not been changed.
    EXPECTED BEHAVIOR
    The OWB mapping object is expected to process records with Change Type of 'U' (or Update). A new record (with a new effective date) should be created that would have up-to-date values for its UDFs.

    Hi,
    Problem becasue of missing  Industory sector setting in R/3 . This setting has to be done before filling the setuptable .For more information search the forums with BF11.
    Re: 0PUR_C01
    Re: Not getting data added to IC for 2LIS_12_VCITM
    With rgds,
    Anil Kumar Sharma .P
    Message was edited by:
            Anil Kumar Sharma

  • G5 will not boot into OSX - stays at a command-line prompt

    My G5 will not boot into OS X. I would appreciate and and all advice. Thanks.
    What happened:
    I had the G5 running one morning, with the Isight camera on, plugged into the front-console firewire port. I was running EvoCam software.
    At about 2 hours into running, the cam stopped broadcasting – I got home to check it out three hours later, and the screen was black, and the fan was louder than I had ever, ever heard it on this box.
    I did a hard shut-down with the powerbutton on the Cinema Display monitor.
    At reboot, I see a grey screen for approx 5 seconds, with a dark grey apple logo, and then the screen goes to black, with a command-line prompt.
    It’s been like that ever since.
    I ran the Apple Hardware test, from the internal CD drive, and it shows no errors.
    I cannot boot from an OSX installer DVD. It won’t recognize it. It goes straight to the black screen and Command line prompt.
    I have re-seated the RAM, as well as the Airport Card. The only other card – which I have not re-seated, it the video card.
    I am able to use the machine in Target Mode, so I can extract data from the drives, which is great. Oddly enough, I’m able to use the front-console firewire port to connect to my other Mac in Target mode – with no problems. Also – in Target mode, the fan never goes above the usual quiet self.
    I would appreciate any advice one can provide. Thanks!
    The machine:
    Mac G5 dual 2.0 – First Generation (purchased December 2003)
    It’s on it’s 3rd Motherboard – and now it’s fully out of Applecare warrantee.
    OSX 10.4.9
    4GB Ram
    2 internal drives: 160GB + 300GB
    Airport Extreme
    20” Cinema Display (first generation)
    Mac G5 dual 2.0 – First Generation   Mac OS X (10.4.9)  

    Well, Apple Support does have articles on:
    Isolating Issues in Mac OS X
    http://docs.info.apple.com/article.html?artnum=25392
    won't boot or login
    http://docs.info.apple.com/article.html?artnum=106464#symp1
    And if those don't work, call.
    With G4 there is/was
    "Fix for a Mac that won't power up
    Mirrored Doors G4. When you pressed the power button, the button would light up, but the computer would not turn on. The fans on the power supply wouldn't turn on.
    FIX: unplug the machine, pull the clock battery, hit the power button to discharge. Then plug it in without the clock battery. The machine should boot perfectly. Shut down, reinstall the clock battery, and now the system is fully functional. Macosxhints
    http://docs.info.apple.com/article.html?artnum=300552
    Reseat video? try another video card?
    My Step #1 is to always boot into Open Firmware (and do reset-nvram, reset-all, if you can't do that, you are sunk).
    Oh, and What do you see in verbose mode on startup?
    Mac Pro 2GHz 4GB 10K Raptor 23" Cinema   Mac OS X (10.4.9)   WD RE RAID Aaxeon FW800 PCIe MDD-G4 APC RS1500 Vista

  • How to copy exitsitng extracter into another new extracter?

    Hello,
    Please some one can tel me how to copy the existing  extracter into another new extracter.
    I have requirment as below
    Currect me if i am wrong ,need to enhance the existing extracter and add some new fields,and need to include some masterdata filds also to it.
    For master data i am going to do write routines at Transfermation so that no need to include in my exter for those filds to extracter.
    Please some one guide me in this scenario.
    Chrs

    Hi,
    you do not have to copy the extractor, you can enhance it with fields and fill them via enhancement coding --> rsa6.
    If you want to copy it, you need to check what kind of extractor you have. Is it a function module or just a table extractor.
    for fm: copy the function module via se37 and copy the extract structure via se11. Add your enhancements in the copied structures and coding. Create a new datasource with rso2.
    for table extractor: create a view adding the additionally needed fields. create a new ds with rso2. Surely you need to add some coding in the relevant enhancement.
    regards
    Siggi

  • Tried "everything" LR4.4 will not extract

    I know this is a common issue, but I have tried everything I can think of to get Lightroom 4.4 to extract/install. I'm getting the same error that others get "A problem occurred while extracting your files. Check available space, write priviledges, blah blah blah."
    I have the same issue trying to install Lightroom 4, Production Premium CS6. Other non-adobe programs install just fine. I have a feeling that when I get one to work, the other one will as well.
    This is brand new, fully updated windows 8 64bit laptop.  Plenty of storage space. Admin user.
    There are no pre existing installations of any Adobe products except AIR.
    I'm not extracting to "Program Files."
    I've tried changing the download location, and extraction destinations (user/downloads, user/desktop, root, USB drive)
    I only have windows firewall/antivirus and have disabled it.I've tried disabling UAC.
    I've downloaded using IE, Firefox, Chrome, and the Adobe download manager (for PP-CS6).
    I've tried both wired and wireless network connections.
    I've tried "unblocking" but that option only even shows up ocassionally.
    I've tried extracting with 7zip.
    I've tried creating new user accounts.
    I've tried using another computer. (Same errors ocurring on the other machine)
    I've tried running a scan disk.
    I've tried turning off all startup services (except MS services).
    I've tried downloading/installing an older version (LR4.3). Same issue.
    For kicks, tried downloading Photoshop CS6. Used ADA. Same issue.
    I had an Adobe tech support person try several things I gave up after 2 hours. For the benefit of any Adobe personnel that may offer assistance, my Case number is 0184225223.
    I can't even think of anything else to try. Please. Someone. Help.

    I GOT IT! It took creating a forum post to actually list out all the things I tried. Once I did that I realized it just HAD to be something that was not about the computer since I experienced the same issue on multiple coomputers on the same network. I changed up the newtork. I circumvented my Netgear WNDRMAC Router and plugged directly into my Motorola SURFboard. Downloaded and installed Lightroom without a hitch.  Now to see if I can do the same with Production Premium!

  • Financial version statement (reverse sign) not extracted correctly

    R/3: ECC 6.0
    BI: NW04s
    Went into ECC and set the 'Reverse sing +/-' setting for Revenue nodes.
    Went into BI and change the datasource for 0GL_ACCOUNT_T011_HIER to assign a transfer rule for reverse sign
    Reload hierarchy for 0GL_ACCOUNT
    The reverse sign appear but their assignment is shifted down by 2 nodes. When I run the Extractor in ECC using RSA3, I can see the incorrect reverse sign assignment. So this appears to be problem with extractor.
    I went tru this process for some query that need revenue amounts reversed
    any thoughts?

    Hi Raynald
    please have a look to note 1061847 - Ind. for reversing plus/minus signs not extracted correctly, import the SP SAPKH60011 or implement the manual correction in the note.
    regards
    Boujema

  • CC 5.2 Alert Generation - Not extracting any data from SAP

    Hi there,
    We are trying to use the alert function for critical transactions in CC 5.2. We have set the relevant parameters in CC. The Alert_Log.txt is created successfully but it is not extracting any data from SAP. Is there any settings that I am missing here, both in R/3 and CC 5.2? I really appreciate your help. Below is the Alert_Log.txt for your review.
    Dec 20, 2007 2:27:32 PM com.virsa.cc.xsys.riskanalysis.AnalysisDaemonBgJob scheduleJob
    FINEST: Analysis Daemon started background Job ID:41 (Daemon ID D:\usr\sap\CC1\DVEBMGS00\j2ee\cluster\server0\. Thread ID 0)
    Dec 20, 2007 2:27:32 PM com.virsa.cc.xsys.riskanalysis.AnalysisDaemonBgJob scheduleJob
    INFO: -
    Scheduling Job =>41----
    Dec 20, 2007 2:27:32 PM com.virsa.cc.xsys.bg.BgJob run
    INFO: --- Starting Job ID:41 (GENERATE_ALERT) - AlertGeneration_Testing
    Dec 20, 2007 2:27:32 PM com.virsa.cc.xsys.bg.BgJob setStatus
    INFO: Job ID: 41 Status: Running
    Dec 20, 2007 2:27:32 PM com.virsa.cc.xsys.bg.BgJob updateJobHistory
    FINEST: --- @@@@@@@@@@@ Updating the Job History -
    1@@Msg is AlertGeneration_Testing started
    Dec 20, 2007 2:27:32 PM com.virsa.cc.xsys.bg.dao.BgJobHistoryDAO insert
    INFO:
    Background Job History: job id=41, status=1, message=AlertGeneration_Testing started
    Dec 20, 2007 2:27:32 PM com.virsa.cc.xsys.bg.BgJob alertGen
    INFO: @@@ Alert Generation Started @@@
    Dec 20, 2007 2:27:32 PM com.virsa.cc.xsys.bg.BgJob alertGen
    INFO: @@@ Conflict Risk Input has 1 records @@@
    Dec 20, 2007 2:27:32 PM com.virsa.cc.xsys.bg.BgJob alertGen
    INFO: @@@ Critical Risk Input has 1 records @@@
    Dec 20, 2007 2:27:32 PM com.virsa.cc.xsys.bg.BgJob alertGen
    INFO: @@@ Mitigation Monitor Control Input has 1 records @@@
    Dec 20, 2007 2:27:32 PM com.virsa.cc.comp.BackendAccessInterface alertGenerate
    INFO: @@@@@ Backend Access Interface execution has been started @@@@@
    Dec 20, 2007 2:27:32 PM com.virsa.cc.comp.BackendAccessInterface alertGenerate
    INFO: @@System=>R3
    Dec 20, 2007 2:27:32 PM com.virsa.cc.comp.BackendAccessInterface alertGenerate
    INFO:
    No of Records Inserted in ALTCDLOG =>0 For System =>R3
    Dec 20, 2007 2:27:32 PM com.virsa.cc.comp.BackendAccessInterface append_TcodeLogFile
    INFO: *********SOD Tcode Size=>0**************
    Dec 20, 2007 2:27:32 PM com.virsa.cc.comp.BackendAccessInterface append_TcodeLogFile
    INFO: *********Alert Tcode Log File=>D:\cc_alert_log\cc_alert_log1.txt is created**************
    Dec 20, 2007 2:27:32 PM com.virsa.cc.comp.BackendAccessInterface alertGenerate
    INFO:
    File Output Log File Size ==>0----
    For System =>R3
    Dec 20, 2007 2:27:32 PM com.virsa.cc.comp.BackendAccessInterface alertGenerate
    INFO: -
    Conf Last Run Date=>2007-12-12--Conf Last Run Time=>12:45:11--
    Dec 20, 2007 2:27:32 PM com.virsa.cc.comp.BackendAccessInterface alertGenerate
    INFO: ==$$$===Notif Current Date=>2007-12-20==$$$==Notif Current Time=>14:27:32===$$$===
    Dec 20, 2007 2:27:32 PM com.virsa.cc.comp.BackendAccessInterface send_AlertNotification
    INFO: ****************** send Notification Alert Type=>1
    Dec 20, 2007 2:27:32 PM com.virsa.cc.comp.BackendAccessInterface send_AlertNotification
    INFO: ******Alert Notification=>CONFALERTNOTIF==LastRunDate:=>2007-12-20==LastRunTime:=>00:00:00==Curr Date=>2007-12-20==Curr Time=>14:27:32*********
    Dec 20, 2007 2:27:32 PM com.virsa.cc.comp.BackendAccessInterface send_AlertNotification
    INFO: ****************** send Notification Alert Type=>2
    Dec 20, 2007 2:27:32 PM com.virsa.cc.comp.BackendAccessInterface send_AlertNotification
    INFO: ******Alert Notification=>CRITALERTNOTIF==LastRunDate:=>2007-12-20==LastRunTime:=>00:00:00==Curr Date=>2007-12-20==Curr Time=>14:27:32*********
    Dec 20, 2007 2:27:32 PM com.virsa.cc.comp.BackendAccessInterface send_AlertNotification
    INFO: ****************** send Notification Alert Type=>3
    Dec 20, 2007 2:27:32 PM com.virsa.cc.comp.BackendAccessInterface send_AlertNotification
    INFO: ******Alert Notification=>MITALERTNOTIF==LastRunDate:=>2007-12-20==LastRunTime:=>00:00:00==Curr Date=>2007-12-20==Curr Time=>14:27:32*********
    Dec 20, 2007 2:27:32 PM com.virsa.cc.xsys.mgmbground.dao.AlertStats execute
    INFO: Start AlertStats.............
    Dec 20, 2007 2:27:32 PM com.virsa.cc.xsys.mgmbground.dao.AlertStats execute
    INFO: start:Sat Dec 01 14:27:32 CST 2007
    Dec 20, 2007 2:27:32 PM com.virsa.cc.xsys.mgmbground.dao.AlertStats execute
    INFO: now:Thu Dec 20 14:27:32 CST 2007
    Dec 20, 2007 2:27:32 PM com.virsa.cc.xsys.mgmbground.dao.AlertStats execute
    INFO: end: Tue Jan 01 14:27:32 CST 2008
    Dec 20, 2007 2:27:32 PM com.virsa.cc.xsys.mgmbground.dao.AlertStats execute
    INFO: Month 2007/12
    Dec 20, 2007 2:27:32 PM com.virsa.cc.xsys.bg.BgJob alertGen
    INFO: @@@=== Alert Generation Completed Successfully!===@@@
    Dec 20, 2007 2:27:32 PM com.virsa.cc.xsys.bg.BgJob setStatus
    INFO: Job ID: 41 Status: Complete
    Dec 20, 2007 2:27:32 PM com.virsa.cc.xsys.bg.BgJob updateJobHistory
    FINEST: --- @@@@@@@@@@@ Updating the Job History -
    0@@Msg is Job Completed successfully
    Dec 20, 2007 2:27:32 PM com.virsa.cc.xsys.bg.dao.BgJobHistoryDAO insert
    INFO:
    Background Job History: job id=41, status=0, message=Job Completed successfully
    Dec 20, 2007 2:27:32 PM com.virsa.cc.xsys.riskanalysis.AnalysisDaemonBgJob scheduleJob
    INFO: -
    Complted Job =>41----

    Hi,
    we have ran into similar issue of alert log being not displayed accurately in CC 4.0 version and we implemented the Note 1044393 - CC5.1 Alerts, it did work for us, as you are using CC5.2, I would recommend you to check the code and then try this note. But iam still skeptical whether this note will be helpful to you or not.
    Thanks,
    Kavitha

  • Generic Data Source delta is not extracted

    Hi,
    There is a problem in extracting the delta records using Generic Data Source. Delta records ( New / Modified records ) are not posted in the RSA7.
    I'll Explain you the Scenario I have done. Created a generic data source in R/3 using view. In the view there is a field Sales Order No. I have enabled the delta update for this field. In the generic delta i have chosen delta type as Numeric pointer.
    Extracted the entire record using full update and after initializing the Delta, it extracts the delta record well ie. it only extracts the sequence of Sale Order No. First I extracted nine records(i.e 10001 to 10009) using full update. again I entered a record in underlying table with sale order no as 10011-10013. It extracts those records into BW system. Then again I made an entry in the table with sales order no 10010. But the record is not extracted. Even though I tried of specifying safety lower limit as -3. Still it not extracting the record(10010).
    And what if I posted a value of sale order 10014 with the same. what should I do?? Help on this plz.
    --Durai.S

    Hi SVS,
    Thanks for your reply.
    I followed this in my scenario. But I don't understand why it is not extracting? even I specified the safety limit of upper and lower values in the generic delta.
    Here the below explanation shows that the delta record can be extracted even  if the pointer value is greater than the posted value.
    Numeric pointer (last extracted value 10011; Data in underlying table (Max value = 10025) )
    Data would be extracted from a min-value of 10010 (lower limit adjusts the last counter 10011 by specified value u2013 1)
    max-value of 10020 (after adjustment for upper safety limit u2013 by 5). The current pointer would now indicate 10020 in
    RSA7.
    --Durai.S

  • Group Memberships not Flowing into Metaverse

    Hello,
    I'm trying to figure out why the group member attributes in the CS are not flowing into the MV.  Here's what I have:
    An HR system running on SQL Server
    A staging database that extract data from the HR system
    The staging database has a table representing person object
    The stating database has a table representing person multi-valued attributes (i.e location, job code, etc)
    The staging database has a table representing group objects
    The staging database has a table representing group memberships (mult-valued)
    A SQLMA connected to the person and person multi tables
    A SQLMA connected to the group and group membership tables
    All group memberships are based on job codes and locations.  There are no approval process in place.  If they have this job code, they get certain groups.  That's all calculated in the staging database and the memberships are in the group membership
    table
    This system does connect to AD (and a few other things), but I'm not concerned with that, right now.
    I've read 100 articles on this, most of them over 5 years old, and tried the ones that made sense.  The flow from the database into the CS works well.  No issues there.
    But, a search of the metaverse for the group shows an empty member attribute.  The sync process is not throwing any errors.  At least they're not showing up in the sync service app or the event logs.
    Where allowed, I'm using rules extensions for everything.  I can't use a rules extension to set the member attribute because it's an rdn.
    I'm going to move forward with this by extending the metaverse schema and adding a multi-valued string attribute named "memberOf" to the person object.  Then, I'll modify my existing MA to use that attribute instead of the member attribute. 
    I'm not sure what kind of issues I'm going to run into when exporting that to AD.  I'll cross that bridge when I come to it.  I don't anticipate that being an issue as the dns for all these objects will be calculated by the ADMA based on locations,
    group functions and person types (bascially, I don't care about the MV rdn).
    Anyway, I'm looking for some real world insight on this.  This whole effort is to migrate off an existing IDM system that works very, very well but quite expensive to license.
    Thanks,
    Greg Wilkerson

    Hey Cameron,
    I have total control of all the DB tables FIM is accessing.  I build them up as part of IDM process.
    I've read this article, along the many others that address the "manager" scenario.  This really doesn't apply in this case as the user and group objects are loaded in separate MAs.  Getting reference values to flow with both object live in the
    same CS shouldn't be an issue. 
    I also saw a solution where the group and user objects were in the same table and differentiated by the "object_type" value (user, group).  That solution solved the issue of the groups and user being in the same CS.  As I grow tired of my daily
    FIM beatdown, that solution is growing more attractive.  That's a major DB redesign, and seems quite inefficient.
    The multi-value table for group memberships already exists in the DB.  For FIM purposes, I transferred that data into the user object multi-value table.  See screen shot.  I can certainly configure the group MA to access that multi-value table
    and load the group members as references.  But, because the group MA CS will not contain the user objects, I don't see how the references will be set.  If the reference value isn't set in the CS, it's not going to flow into the MV (at least I haven't
    figured out a way to set the an reference value for an object in the MV - my problem all along.
    This whole "setting a reference value" encompasses much more than just group memberships in my implementation.  Telephone resources and physical access (key cards, etc) are provisioned through the existing eDirectory system.  These objects exist
    in our current IDM system and are associated with users based on rules.  So, the reference value process is something I need to figure out, if I'm going to use this product.
    Maybe I could use a stripped down ECMA2 as a "staging" CS, export the users and groups into this CS and assign the reference values, then import the groups back into the MV, memberships intact.  I'm not sure that would get me where I want to go, and
    it seems like a lot of extra "stuff" to solve what should be a simple problem.  Hmmmmmm.  Or, connect the ECMA2 directly to my group membership multi-value table in the DB.  Hmmmmmm.  I'd still have to export the groups and users into that
    CS, but the import might be much more straight forward.  Hmmmmmm.
    The structure of my GroupMembership table (both columns are anchors or directly translatable to anchors):
    EmployeeGroups
        GroupName varchar(50) not null,
        EmployeeID nvarchar(50) not null,
        ID int identity(1,1) not null

  • Calling ABAP Extracts into XI

    Calling ABAP Extracts into XI
    What is my understanding for the above scenario will be follows
    1. Build the ABAP extract (basically SQL from what I understand).  This SQL dictates the structure for master table.
    2. Build a BAPI wrapper around the extract program.
    3. Import the model into XI like any BAPI structure.   (this is a standard RFC integration development step)
    At that point XI could receive the structure and read the data as pure XML.
    Please let me know if this is the best approach for this
    Thanks in Advance

    After craeting ABAP Extract Function module, i guess all i need to check REMOTE ENABLED MODULE under ATTRIBUTE section. So that it can be imported into XI in general
    Btw my scenario would be
    The function modules in Target are enabled for remote access (for example, by Source). The program logic and input parameters of the function modules reside in Target
    I guess the best approach i come across the above scenario until morning.
    Now its better to go with ABAP Proxy
    Which inturns makes you not to write a BAPI to create structure. Which is additional work. Proxy is not on IE. It directly talk to R/3 Which is good in performance wise.
    suggestions are welcome

  • PSD Asset not processing into system?

    Hi,
    I'm working with Extract for the first time today. With the first, small and straight-forward file the system worked beautifully. However, with subsequent attempts to work with larger and more complex PSDs, not only does it seem that they are not processing into the system (no thumbnails in Assets view), but when I try to view the file in the Extract view, the system attempts to process them and then fails at 34% each time.
    I have confirmed that there are fewer than 1000 layers in these files (up to 833). However, there are commas in the layer names, which is triggering issues in the Extract Assets process within PS itself.
    Could you help me troubleshoot what's going on here?
    Thanks in advance.

    Sure... we're always interested in files that don't process because our target there is zero :-)
    Since I don't have access to these failing files you would need to explicitly share them with us for investigation. If it's something that you can share, you can do so by choosing "Send link" from the dropdown and then choosing "Create public link."  That will create an (unlisted) link that you can then share via PM or even here in the forum if you choose.
    Thanks,
    -Mitch

Maybe you are looking for

  • Inspector leaves grey "ghost" panel IN ALL TABS after escape/exit

    when I use inspector (Q) it often leaves grey ghost panel covering about 3 inches of the bottom of my browser window), where the black html panel was - and it is in EVERY OPEN TAB, and if I try to use it again, it will then open a html panel above th

  • Why no green light?

    i got my 2G shuffle on thursday. it connects fine and i can load and listen to music without problems. everything i've read says i should see a green light when it's fully charged. it's been in the dock for two days and the status light is still oran

  • Making the file copy.

    I try to copy Template PDF to Working copy but getting error after following code on the Folder Level: var md1 = app.openDoc({ cPath:"/c/PDF/1_Origin/Template.pdf",bHidden: true}) ; var mp1 = app.getPath("/c/PDF/2_Work_to_do/Access_Copy.pdf") ; md1.s

  • Error messages in Eng and Fra

    Hi experts, Iu2019m writing a code and using message class to fetch error messages. Since our system is in both English and French so as is now Iu2019ve 5 error messages each. However Iu2019m wondering canu2019t Iu2019ve a way to just have 5 messages

  • Professional mobile game artist

    I am looking for any equal partner who may need an artist for any project or proposed project he or she is seeking! Here is my CV online URL: http://www.realiant.co.nz/brent_schuster/frame.php?get_page=index.htm You can contact me at: [email protecte