Regarding: Loading data from R/3 To BI for a Generic Data source

Hi Every,
Need Help Urgent
I had created a Generic data source with function Module as the data source, in Rsa3 it is working fine.
1-> I had replicated the data source to Bi then i had created a info package and then I executed the same. when it is getting the data and it is show in the request monitor (Number of records )  but the status is not changing from Yellow to Green.
Status in Step by step analysis is every step is green Except "Data selection successfully finished ?"  (RED)
2-> Then I had seen the Back ground job in Source system which is executing still. I waited for it for a long time but nearly 30 min.
(I had done Steps one and 2 number of time by activating replicating the data source and so on, but still their is no change in it)
3-> Then I had canceled that back ground job with the help of BASIS (as i feel that it is something going wrong).
4-> I feel that their is some thing wrong in the Code of Extractor.
Please Help...............
""Local Interface:
*"  IMPORTING
*"     VALUE(I_REQUNR) TYPE  SRSC_S_IF_SIMPLE-REQUNR
*"     VALUE(I_DSOURCE) TYPE  SRSC_S_IF_SIMPLE-DSOURCE OPTIONAL
*"     VALUE(I_MAXSIZE) TYPE  SRSC_S_IF_SIMPLE-MAXSIZE OPTIONAL
*"     VALUE(I_INITFLAG) TYPE  SRSC_S_IF_SIMPLE-INITFLAG OPTIONAL
*"     VALUE(I_READ_ONLY) TYPE  SRSC_S_IF_SIMPLE-READONLY OPTIONAL
*"     VALUE(I_REMOTE_CALL) TYPE  SBIWA_FLAG DEFAULT SBIWA_C_FLAG_OFF
*"  TABLES
*"      I_T_SELECT TYPE  SRSC_S_IF_SIMPLE-T_SELECT OPTIONAL
*"      I_T_FIELDS TYPE  SRSC_S_IF_SIMPLE-T_FIELDS OPTIONAL
*"      E_T_DATA STRUCTURE  ZBI_MATGRIR OPTIONAL
*Need to get the data only for two Gl account which are fro material purchase while MIGO
*G/L Account Numbers: 0010502001 0010502002
data: E_T_DATA1 type table of ZBI_MATGRIR.
  RANGES: R_BUKRS FOR BSIS-BUKRS,
          R_BUDAT FOR BSIS-BUDAT,
          R_GJAHR FOR BSIS-GJAHR,
          R_HKONT FOR BSIS-HKONT.
  DATA: L_S_SELECT TYPE SRSC_S_SELECT.
  STATICS: S_S_IF TYPE SRSC_S_IF_SIMPLE,
           S_COUNTER_DATAPAKID LIKE SY-TABIX,
           S_CURSOR TYPE CURSOR.
*Declare
  TYPES: BEGIN OF TY_FAGL,
    RBURS TYPE FAGLFLEXA-RBUKRS,
    RYEAR TYPE FAGLFLEXA-RYEAR,
    DOCNR TYPE FAGLFLEXA-DOCNR,
    BUZEI TYPE FAGLFLEXA-BUZEI,
    DOCLN TYPE FAGLFLEXA-DOCLN,
    PRCTR TYPE FAGLFLEXA-PRCTR,
    SEGMENT TYPE FAGLFLEXA-SEGMENT,
  END OF TY_FAGL.
  DATA: GT_FAGL TYPE TABLE OF TY_FAGL,
        GS_FAGL TYPE TY_FAGL.
  IF I_INITFLAG = SBIWA_C_FLAG_ON.
    CASE I_DSOURCE.
      WHEN 'ZFI_GL_M4'.
      WHEN OTHERS.
        IF 1 = 2. MESSAGE E009(R3). ENDIF.
     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.
    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.
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 = 'BUKRS'.
        MOVE-CORRESPONDING L_S_SELECT TO R_BUKRS.
        APPEND R_BUKRS.
      ENDLOOP.
      LOOP AT S_S_IF-T_SELECT INTO L_S_SELECT WHERE FIELDNM = 'GJAHR'.
        MOVE-CORRESPONDING L_S_SELECT TO R_GJAHR.
        APPEND R_GJAHR.
      ENDLOOP.
      LOOP AT S_S_IF-T_SELECT INTO L_S_SELECT WHERE FIELDNM = 'BUDAT'.
        MOVE-CORRESPONDING L_S_SELECT TO R_BUDAT.
        APPEND R_BUDAT.
      ENDLOOP.
*GRIR Inventory (RM/Stores/Spares/FG)   10502001
*GRIR Services & Others Payable   10502002
      R_HKONT-SIGN = 'I'. "i_t_select-sign.
      R_HKONT-OPTION = 'BT'." i_t_select-option.
      R_HKONT-LOW = '0010502001'.
      R_HKONT-HIGH = '0010502002'. "i_t_select-high.
      APPEND R_HKONT.
Determine number of database records to be read per FETCH statement
from input parameter I_MAXSIZE. If there is a one to one relation
between DataSource table lines and database entries, this is trivial.
In other cases, it may be impossible and some estimated value has to
be determined.
      OPEN CURSOR WITH HOLD S_CURSOR FOR
       SELECT BUKRS
              AUGBL
              ZUONR
              BELNR
              GJAHR
              BUZEI
              BUDAT
              HKONT
              BLART
              MONAT
              BSCHL
              SHKZG
              DMBTR
              WAERS
              FROM BSIS
             INTO TABLE E_T_DATA
              WHERE BUKRS  IN R_BUKRS
                AND GJAHR IN R_GJAHR
                AND BUDAT IN R_BUDAT
                AND HKONT IN R_HKONT.
Fetch records into interface table.
  named E_T_'Name of extract structure'.
    FETCH NEXT CURSOR S_CURSOR
               APPENDING CORRESPONDING FIELDS
               OF TABLE E_T_DATA1
               PACKAGE SIZE S_S_IF-MAXSIZE.
    IF SY-SUBRC <> 0.
      CLOSE CURSOR S_CURSOR.
      RAISE NO_MORE_DATA.
    ENDIF.
DELETE E_T_DATA WHERE BLART NE 'WE'.
      SELECT BUKRS
             AUGBL
             ZUONR
             BELNR
             GJAHR
             BUZEI
             BUDAT
             HKONT
             BLART
             MONAT
             BSCHL
             SHKZG
             DMBTR
             WAERS
             FROM BSAS
             into table   E_T_DATA
             WHERE BUKRS  IN R_BUKRS
               AND GJAHR IN R_GJAHR
               AND BUDAT IN R_BUDAT
               AND HKONT IN R_HKONT.
           FETCH NEXT CURSOR S_CURSOR
              APPENDING CORRESPONDING FIELDS
              OF TABLE E_T_DATA
              PACKAGE SIZE S_S_IF-MAXSIZE.
append LINES OF e_t_data1 TO E_T_DATA.
DELETE E_T_DATA WHERE BLART NE 'WE'.
ENDIF.                             "First data package ?
    DATA: F_YEAR TYPE BKPF-GJAHR.
    DATA: F_PERI TYPE BAPI0002_4-FISCAL_PERIOD.
IF E_T_DATA[] IS NOT INITIAL.
   SELECT RBUKRS
          RYEAR
          DOCNR
          BUZEI
          DOCLN
          PRCTR
          SEGMENT
          FROM FAGLFLEXA
          INTO TABLE GT_FAGL
          FOR ALL ENTRIES IN E_T_DATA
       WHERE RYEAR = E_T_DATA-GJAHR
           AND DOCNR = E_T_DATA-BELNR
           AND RLDNR = '0L'
           AND RBUKRS = E_T_DATA-BUKRS
           AND BUZEI = E_T_DATA-BUZEI.
         WHERE RYEAR = E_T_DATA-GJAHR
           AND DOCNR = E_T_DATA-BELNR
           AND RBUKRS = E_T_DATA-BUKRS.
     AND DOCLN = E_T_DATA-BUZEI.
ENDIF.
LOOP AT E_T_DATA.
      IF E_T_DATA-SHKZG = 'H'.
        E_T_DATA-DMBTR = E_T_DATA-DMBTR * -1.
      ENDIF.
      CLEAR: F_YEAR.
      CALL FUNCTION 'BAPI_COMPANYCODE_GET_PERIOD'
        EXPORTING
          COMPANYCODEID       = E_T_DATA-BUKRS
          POSTING_DATE        = E_T_DATA-BUDAT
       IMPORTING
         FISCAL_YEAR         = F_YEAR
         FISCAL_PERIOD       = F_PERI.
      DATA: V_DOC(6) TYPE C .
      CLEAR: V_DOC.
      V_DOC =  E_T_DATA-BUZEI.
      IF V_DOC  IS NOT INITIAL.
        CALL FUNCTION 'CONVERSION_EXIT_ALPHA_INPUT'
          EXPORTING
            INPUT  = V_DOC
          IMPORTING
            OUTPUT = V_DOC.
      ENDIF.
     aS PROFIT center is not updated in all the lines in Bsis
      READ TABLE GT_FAGL INTO GS_FAGL WITH KEY  RYEAR = E_T_DATA-GJAHR
                                                DOCNR = E_T_DATA-BELNR
                                                RBURS = E_T_DATA-BUKRS
                                                BUZEI = E_T_DATA-BUZEI.
      IF SY-SUBRC = 0.
        E_T_DATA-PRCTR = GS_FAGL-PRCTR.
        E_T_DATA-SEGMENT = GS_FAGL-SEGMENT.
      ENDIF.
*As we are using the amount DMBTR in which the amount
*will be in company code currency that is Local currency
*group currency always in the main company code currency.
      CONCATENATE   F_YEAR '0' F_PERI INTO E_T_DATA-FISCPER.
      MODIFY E_T_DATA. " from gs_bsis transporting dmbtr fiscper.
      CLEAR: E_T_DATA.
    ENDLOOP.
      S_COUNTER_DATAPAKID = S_COUNTER_DATAPAKID + 1.
   ENDIF.

Hi,
Please check the log of same jobs for last week and check is today its taking more time,also check with basis is their any backup initited at same time.
Moreover until the background job failed automatically its difficult to imagine what is the exact issue.
Thanks,

Similar Messages

  • While loading data from r/3 to bw error 8 /error in source system is coming

    while loading data from r/3 to bw error 8 /error in source system is coming . how can i solve this problem .

    Check source system connectivity.
    Tcode RSA1 --> Source System RClick --> 'Check'

  • How to load the data from informatica into bw & how to report the data

    Hi friends,
    how to load the data from informatica into bw & how to report the data
    using cognos.(i.e how to access the data in sap bw using cognos 8 BI suite).
    Thanks,
    madhu.

    Inorder to report BW data into Cognos you can extract data from using Open Hub to the DB table from which Cognos reads.
    For BW informatic integration refer following docs:
    http://www.aman.co.il/aman/pfd/DataInteg_BR.q103cd.pdf.pdf
    http://h71028.www7.hp.com/enterprise/cache/3889-0-0-225-121.html
    http://devnet.informatica.com/learning/ePresentations.asp
    http://72.14.203.104/search?q=cache:C741L86Q19oJ:devnet.informatica.com/showcase/resources/Essbase_DataSheet.pdfinformaticapowerconnect(BI)&hl=en&gl=in&ct=clnk&cd=3
    http://www.informatica.com/customers/utilities_energy/fpl_group.htm
    http://www.informatica.com/solutions/resource_center/technote_sapbw_65241004.pdf#search=%22Informatica%20to%20Bw%22

  • How to migrate data from one database to another for a specific time frame

    Hi
    This is the scenario:
    We have 2 databases:
    PTT : THis has data from march 11 to March 19 that was created when the production was down due to a crash
    PROD : THis was recovered after March 19. Hence has no data created between March 11 and March 19
    How do I transfer this data from March 11 to March 19 from PTT to PROD so that Production can be up to date asap.
    Please let meknow the methods to get this done
    Regards
    Gayathri

    Hi,
    You could use EXP/IMP to move the data from PTT to PROD. But, you should be careful with sequences, modification to the same data.....
    eg Customer Address was updated between Mar 11 - 19, again the same customers was updated after 19 Mar, under this situation if you load the data from PTT you would be wrongly updating the data.....
    You have to study well and apply changes...........

  • Passing data from one screen to another(web-dynpro) in SRM sourcing cockpit

    HI Experts,
    i am facing problem in passing data from one web-dynpro screen and assigning the data it to another web-dynpro screen.
    my requirement is that when ever user selects a contract in PROPOSE SOURCES OF SUPPLY screen popup and press only assign only button, the data of the contract should be copied to the shopping cart.
    i have already used the BADI BBP_DOC_CHANGE_BADI, but unfortunately it was not working.
    so i tried to use the context, element and other web-dynpro fields to pass the data, i am able to pass the data from the popup to the second screen and able to assign it.
    but when ever i deselect the shoppping cart which has been assigned with the data of the popup and select another shopping cart the data of the above shopping cart is cgetting changed.
    i am unable to figure out the exact reason why this is happeing.i have written code in the ASSIGN ONLY button method to fetch the popup data and in the WDONMODIFYVIEW method of the second screen to assign the popup data to the shopping cart.
    i have tried to bind the elements using the BIND_TABLE, BIND_STRUCTURE, BIND_ELEMENT, BIND_ELEMENTS methods, but nothing is working.
    can anyone suggest me where i am making mistake and try to solve the issue.
    Thanks
    Tanveer

    Dear Poster
    Your thread has had no response since it's creation over
    2 weeks ago, therefore, I recommend that you either:
    - Rephrase the question.
    - Provide additional Information to prompt a response.
    - Close the thread if the answer is already known.
    Thank you for your compliance in this regard.
    Jason Boggans
    SAP SRM SDN Moderator

  • When we synch data from AD to FIM Portal 2010 r2 the data is not updates in FIM Portal.

    Hi,
    When we synch data from AD to FIM Portal 2010 r2 the data is not updates in FIM Portal.
    Active directory attribute co have value vietnam but in FIM Portal country attribute have value VIET NAM
    we simply mapped AD Attribite to FIM Attribute for inbound
    co===>country
    why this happen
    Regards
    Anil Kumar

    Anil, please check what do you have in metaverse. It seems that you have attribute flow precedence configured in a way that doesn't export to FIM Portal.
    Let's say you have flows like:
    (AD MA)
    Import flow: (AD) description -> (metaverse) description
    (FIM MA)
    Import flow (FIM) description -> (metaverse) description
    Export flow (FIM) description <- (metaverse) description
    And you have higher precedence from FIM. Then, you would never have FIM value updated - even if value in AD changes. It would be exported to FIM only when you don't have this attribute filled in FIM.
    If you found my post helpful, please give it a Helpful vote. If it answered your question, remember to mark it as an Answer.

  • How is the best way to read data from an iphone if you lost your itunes data after a crash?

    How is the best way to read data from an iphone if you lost your itunes data after a crash?

    How is the best way to read data from an iphone if you lost your itunes data after a crash?

  • TS4036 I added Icloud to join my calendar to another person. It erased all history date from previous months. how do I get that data back?

    I added Icloud to join my calendar on my phone to another person. It erased all history date from previous months. how do I get that data back?

    i found the answer to the first part: reboot and keep hold of command+r
    this gave me a list of options
    one of them was to reinstall lion from fresh
    i went for this
    dont know why... but all forum posts i read said u should delete hard disc? theres an option for this
    which is the right option?
    any suggesstion where i go to register new mac would be great
    thanks

  • I accidentally deleted the admin user and it wiped out everything, luckily it wasn't much, but is my computer going to be completely overloaded with data from the last user? for example, i had to redownload microsoft 2011 do i have little space now?

    i accidentally deleted the admin user and it wiped out everything, luckily it wasn't much, but is my computer going to be completely overloaded with data from the last user? for example, i had to redownload microsoft 2011 do i have little space now?

    i accidentally deleted the admin user and it wiped out everything, luckily it wasn't much, but is my computer going to be completely overloaded with data from the last user? for example, i had to redownload microsoft 2011 do i have little space now?

  • Date query doesn't show results for today's date

    Hello everyone. I use Jdeveloper 11.1.1.3.0 with ADF and I have a view named query with just one field, Date. The operator it is using is equal to a value written in the field. The problem is that when I insert a row into the table (the date is automatically set to the current date on insertion) and I look for today's date it returns nothing. However if I leave the field empty it will find me the row. I tried doing this with the timestamp option but it's not very user friendly as the user would have to type in the time the row was inserted in order to find it, or use the between operator for two fields which is something I want to avoid if at all possible
    The requirement is one field query that lets the user choose a date from a calendar and shows all rows inserted on that date (even if the date is today and the row was inserted a few minutes before).
    Edited by: Dino2dy on Apr 6, 2011 2:50 AM

    Dino2dy,
    My guess is that the data being stored in the DB has a time component associated with it (as it would if you were using something like SYSDATE to populate it). When you are trying to look for data with today's date, you are checking just for the date - which in Oracle is the equivalent of midnight on the start of the date. The dates don't match because the time is different.
    Either store the date with no time component (use TRUNC to remove the time), use a BETWEEN comparison, or TRUNC the date when comparing.
    John

  • HI,How can i set delta option for costumised Generic data source

    Hi Sir/Madam,
          How can i set delta option for costumised Generic data source.
    Regards,
    Vishali.R
    Please search the forum before posting a thread
    Edited by: Pravender on Aug 15, 2011 1:26 PM

    Hi,
    Go to RSO2 transaction and click on change then on the tool bar click on Generic Delta button. In the next popup you can set your delta.
    Regards,
    Durgesh.

  • Import Data from Office Control (Web Dynpro for ABAP) into internal-Table

    Hello,
    I have a question concerning the Office Control UI-Eelement in Web Dynpro for ABAP:
    How can I import spreadsheet data from the Office Control into  a internal-table?
    I have an Excel-sheet (without any data) which is shown initially in the Office Control. First the empty Excel-Sheet will be loaded and in the second step data from an alvxml-transformation will be loaded into the Excel-sheet with the method 'activatexmlsource'. This works so far. When I change the loaded data in the Office Control and save it it will be stored as XLS-File. The problem is that I'm not able to use existing Upload-FM because every function module I tried uses GUI-functions and WebDynpro has no GUI-functionality. I always get the error that data from clipboard cannot be imported.
    So now the question is:
    How can I import changed data from the Office control into a internal-table staying in Web Dynpro application?
    Please give some advice, if you have some useful code or ideas.
    Thanks
    ram
    Edited by: Ramakullay Challa on Sep 24, 2009 9:05 AM
    Edited by: Ramakullay Challa on Sep 24, 2009 9:07 AM

    Hi,
    Once you save to desktop again you have made some changes to that file, this file you want to upload it right.
    Then in that case you need to use the FILEUPLOAD UI element right.
    Regards,
    Lekha.

  • Import Data from Office Control (Web Dynpro for ABAP) into SAP-Table

    Hello,
    I have a question concerning the Office Control UI-Eelement in Web Dynpro for ABAP:
    How can I import spreadsheet data from the Office Control in a SAP-table?
    I have an Excel-sheet (without any data) which is shown initially in the Office Control. First the empty Excel-Sheet will be loaded and in the second step data from an alvxml-transformation will be loaded into the Excel-sheet with the method 'activatexmlsource'. This works so far. When I change the loaded data in the Office Control and save it it will be stored as XLS-File. The problem is that I'm not able to use existing Upload-FM because every function module I tried uses GUI-functions and WebDynpro has no GUI-functionality. I always get the error that data from clipboard cannot be imported.
    So now the question is:
    How can I import changed data from the Office control into a SAP-table staying in Web Dynpro application?
    Please give some advice, if you have some useful code or ideas.
    Thanks in advance,
    Philipp
    Edited by: Philipp Hiebler on Feb 11, 2008 10:15 AM

    Hi,
    Once you save to desktop again you have made some changes to that file, this file you want to upload it right.
    Then in that case you need to use the FILEUPLOAD UI element right.
    Regards,
    Lekha.

  • How to reduce the run time of ABAP code (BADI) when it is reading huge data from BPC Cube and thus writing  back huge data to the cube.

    Hi All ,
    In Case of reading huge amount of record from BPC Cube  from BADI code , performing calculations and writing back huge amount of data into the cube , It takes lot of time . If there is any suggestion to read the data  from Cube  or writing data into the cube using some Parallel Processing  methods , Then Please suggest .
    Regards,
    SHUBHAM

    Hi Gersh ,
    If we have a specific server say 10.10.10.10 (abc.co.in) on which we are working, Then under RZ12 we make the following entry  as :
    LOGON GROUP          INSTANCE
    parallel_generators        abc.co.in_10         ( Lets assume : The instance number is 10 )
    Now in SM59 under ABAP Connections , I am giving the following technical settings:
    TARGET HOST          abc.co.in
    IP address                  10.10.10.10
    Instance number          10
    Now if we have a scenario of load balancing servers with following server details (with all servers on different instance numbers ) :
    10.10.10.11   
    10.10.10.13
    10.1010.10
    10.10.10.15
    In this case how can we make the RZ12 settings and SM59 settings such that we don't have to hardcode any IP Address.
    If the request is redirected to 10.10.10.11 and not to 10.10.10.10 , in that case how will the settings be.
    I have raised this question on the below thread :
    How to configure RZ12  and SM59 ABAP connection settings when we have work with Load Balancing servers rather than a specific server .
    Regards,
    SHUBHAM

  • Migration CC and FF data from Virsa 4.0 to GRC 10.1 Data Inconsistency

    Hello Guru's
    We have done Migration from VIRSA 4.0 Compliance Calibrator (CC) and Firefighter (FF) data from  to GRCAC 10.1 system.
    After Migration, data inconsistency is coming while validation.
    Followed standard sap migration guide virsa 4.0 to 10.0
    Patch level  - GRC AC 10.1 system
    SAP_BASIS
    740
    0008
    SAPKB74008
    0000
    @6H\QAchieved with Support Package@
    SAP Basis Component
    SAP_ABA
    740
    0008
    SAPKA74008
    0000
    @6H\QAchieved with Support Package@
    Cross-Application Component
    SAP_GWFND
    740
    0008
    SAPK-74008INSAPGWFND
    0000
    @6H\QAchieved with Support Package@
    SAP Gateway Foundation 7.40
    SAP_UI
    740
    0010
    SAPK-74010INSAPUI
    0000
    @6H\QAchieved with Support Package@
    User Interface Technology 7.40
    PI_BASIS
    740
    0008
    SAPK-74008INPIBASIS
    0000
    @6H\QAchieved with Support Package@
    Basis Plug-In
    ST-PI
    740
    0000
    0000
    SAP Solution Tools Plug-In
    SAP_BW
    740
    0008
    SAPKW74008
    0000
    @6H\QAchieved with Support Package@
    SAP Business Warehouse
    GRCFND_A
    V1100
    0006
    SAPK-V1106INGRCFNDA
    0000
    @6H\QAchieved with Support Package@
    GRC Foundation ABAP
    GRCPINW
    V1100_731
    0006
    SAPK-11506INGRCPINW
    0000
    @6H\QAchieved with Support Package@
    SAP GRC NetWeaver Plug-In
    IW_FNDGC
    100
    0002
    SAPK-10002INIWFNDGC
    0000
    @6H\QAchieved with Support Package@
    SAP IW FNDGC 100
    WEBCUIF
    747
    0005
    SAPK-74705INWEBCUIF
    0000
    @6H\QAchieved with Support Package@
    SAP Web UI Framework
    IW_CBS
    200
    0009
    SAPK-20009INIWCBS
    0000
    @6H\QAchieved with Support Package@
    SAP IW CBS 200
    IW_CNT
    200
    0009
    SAPK-20009INIWCNT
    0000
    @6H\QAchieved with Support Package@
    SAP IW CNT 200
    IW_SCS
    200
    0009
    SAPK-20009INIWSCS
    0000
    @6H\QAchieved with Support Package@
    Screen Scraping
    POASBC
    100_731
    0001
    SAPK-10201INPOASBC
    0000
    @6H\QAchieved with Support Package@
    POA Shared Business Components
    Patch level VIRSA 4.0 system
    GRCPINW
    V1100_731
    0008
    SAPK-11508INGRCPINW
    SAP GRC NetWeaver Plug-In
    Kindly let us know after migration, any sap notes need to install.
    Regards,
    karunakar

    Hello Prasant,
    We have migrated VIRSA 4 0 to GRC 10.1 system, after migration we have below issues.
    1. In table GRACSODRISK (not able to see the medium risk, but in NWBC screen (Access Risks) we are seeing the medium risks.
    2. In Function Permission.txt file ( only AND is coming for all, but some OR is avaiable in VIRSA 4 0 system.
    And for gap (it automatically taken AND
    Example:
    AM02
    FB02
    F_BKPF_BED
    ACTVT
    2
    AND
    0
    AM02
    FB02
    F_BKPF_BED
    ACTVT
    3
    AND
    1
    AM02
    FB02
    F_BKPF_BED
    BRGRU
    AND
    1
    AM02
    FB02
    F_BKPF_BEK
    ACTVT
    2
    AND
    0
    AM02
    FB02
    F_BKPF_BEK
    ACTVT
    3
    AND
    1
    AM02
    FB02
    F_BKPF_BEK
    BRGRU
    AND
    1
    kindly suggest.
    Regards,
    Karunakar

Maybe you are looking for

  • Correlation in BPEL

    Hi, I was trying out a requirement in BPEL. I need to create a correlation set with a value that I generate within the process . I see that, when u define the correlation(property alias) it is mandatorily related to a message type and the Xpath point

  • Migration assistant and iphoto

    While transferring data from my ibook 3.9 Panther to my new mac mini with firewire migration assistant manually with i think a drag and drop technique, the photos transferred but the albums did not. Same with itunes playlists but not bothered with th

  • How to access XML files on public part of an external library DC?

    Hi, I would like to put xml and xsd files into a public part of an external library DC, so that I can access these files within other DCs. But I don't know the path which I have to use in the other DCs, e.g. for creating a File object from such xml o

  • Looking for oracleasm-1.4.0.rpm

    Hello Good People, My Environment: Windows XP (Host), RHEL4.5 (Guest on VMWare Server) While doing RAC installation on RHEL 4.5 on VMware, I got to a stage where I am to install oracleasmlib-2.0.2-1.i386.rpm and it's asking for oracleasm-1.4.0.rpm as

  • Aggregate compression

    Hi all,   I have small and easy question.  Is it true that when I compress the cube from collapse tab the aggregate gets compressed also.  Its kinda silly question because I dont think it is not possible to rollup without request number. Baseer