Extraction from ECC

Hi,
I have a problem. i add some logic in Functional location cmod. every things are wroking fine but the problem is now it is taking 4h to load data before it takes 45min, most of the time taken to fill the internal tables  please someone help me to fix this.
Thanks
   TYPES: BEGIN of S_VIQMEL,
         QMNUM type  QMNUM,       "Notification No.
         ERDAT type ERDAT,         "Date on Which Record Was Created.
         STRMN type STRMN,         "Required start date.
         LTRMN type LTRMN,          "Required End Date.
         QMDAB type QMDAB,          "Date for Notification Completion.
         QMART type QMART,          "Notification Type.
         QMGRP type QMGRP,          "Code Group - Coding.
         BEZDT TYPE BEZDT,           "Notification Reference Date.
         TPLNR type TPLNR,           "Functional Location.
      END of S_VIQMEL.
DATA: I_VIQMEL1 TYPE STANDARD TABLE OF S_VIQMEL.
DATA: WA_VIQMEL1 TYPE S_VIQMEL.
TYPES: BEGIN OF S_OPEN,
       QMNUM type  QMNUM,       "Notification No.
       ERDAT type ERDAT,         "Date on Which Record Was Created.
       STRMN type STRMN,         "Required start date.
       LTRMN type LTRMN,          "Required End Date.
       QMDAB type QMDAB,          "Date for Notification Completion.
       QMART type QMART,          "Notification Type.
       QMGRP type QMGRP,          "Code Group - Coding.
       BEZDT TYPE BEZDT,          "Notification Reference Date.
       TPLNR type TPLNR,          "Functional Location.
END OF S_OPEN.
DATA: I_OPEN TYPE STANDARD TABLE OF S_OPEN,
      WA_OPEN TYPE S_OPEN.
TYPES: BEGIN OF S_Close,
       QMNUM type  QMNUM,       "Notification No.
       ERDAT type ERDAT,         "Date on Which Record Was Created.
       STRMN type STRMN,         "Required start date.
       LTRMN type LTRMN,          "Required End Date.
       QMDAB type QMDAB,          "Date for Notification Completion.
       QMART type QMART,          "Notification Type.
       QMGRP type QMGRP,          "Code Group - Coding.
       BEZDT TYPE BEZDT,          "Notification Reference Date.
       TPLNR type TPLNR,          "Functional Location.
END OF S_Close.
DATA: I_Close TYPE STANDARD TABLE OF S_Close,
      WA_Close TYPE S_Close.
TYPES: BEGIN OF S_QMIH,
  QMNUM TYPE QMNUM,          "Notification No.
  ILOAN TYPE ILOAN,
  TPLNR TYPE TPLNR,         "Location and account assignment for technical object.
END OF S_QMIH.
DATA: IT_QMIH TYPE STANDARD TABLE OF S_QMIH.
data: wa1_QMIH type S_QMIH.
TYPES: BEGIN OF S_ILOA,
  ILOAN TYPE ILOAN,                 "Location and account assignment for technical object.
  TPLNR TYPE TPLNR,                      "Functional Location.
END OF  S_ILOA.
DATA: IT_ILOA TYPE STANDARD TABLE OF S_ILOA.
data: wa1_ILOA type S_ILOA.
field-symbols: <fs_QMIH> type S_QMIH.
field-symbols: <fs_VIQMEL> type S_VIQMEL.
   * getting dates from Notification for flttyp is R and G.
  i_funct_loc1[] = i_funct_loc[].
  Refresh: IT_ILOA,
           IT_QMIH,
           I_VIQMEL1.
  Clear: IT_ILOA,
         IT_QMIH,
         I_VIQMEL1.
  DELETE i_funct_loc1[] WHERE
                        fltyp NE 'R' AND
                        fltyp NE 'G'.
* B will be uncomment line when the Briges start
*                        fltyp NE 'B' .
  IF i_funct_loc1 IS NOT INITIAL.
    SORT i_funct_loc1 by tplnr.
    SELECT ILOAN TPLNR
           FROM ILOA INTO TABLE IT_ILOA
           FOR ALL ENTRIES IN i_funct_loc1
           WHERE TPLNR = i_funct_loc1-tplnr.
    IF IT_ILOA IS NOT INITIAL.
      sort IT_ILOA by ILOAN.
      SELECT QMNUM ILOAN from QMIH into table IT_QMIH
         FOR ALL ENTRIES IN IT_ILOA
         WHERE ILOAN = IT_ILOA-ILOAN.
      Sort IT_QMIH by ILOAN.
      Loop at IT_QMIH  ASSIGNING <fs_QMIH>.
        read table IT_ILOA into wa1_ILOA with key ILOAN = <fs_QMIH>-ILOAN
        Binary search.
        if sy-subrc = 0.
          <fs_QMIH>-tplnr = wa1_iloa-tplnr.
        endif.
      endloop.
      delete IT_QMIH where TPLNR is initial.
      iF IT_QMIH IS NOT INITIAL.
        Sort IT_QMIH by QMNUM.
        select
                   QMNUM        "Notification No.
                   ERDAT         "Date on Which Record Was Created.
                   STRMN         "Required start date.
                   LTRMN         "Required End Date.
                   QMDAB         "Date for Notification Completion.
                   QMART          "Notification Type.
                   QMGRP          "Code Group - Coding.
                   BEZDT          "Notification Reference Date.
          from QMEL  into table I_VIQMEL1
          for all entries in IT_QMIH
            WHERE  QMNUM = IT_QMIH-QMNUM
            and
            QMART = 'TP'.
        delete I_VIQMEL1 where QMGRP <> 'R-INSPFE'.
        Clear: A_index.
        if I_VIQMEL1 is not initial.
          Loop at I_VIQMEL1 assigning <fs_VIQMEL>.
            read table IT_QMIH into wa1_qmih with key QMNUM = <fs_VIQMEL>-QMNUM
       Binary search.
            if sy-subrc = 0.
              <fs_VIQMEL>-tplnr = wa1_qmih-tplnr.
            endif.
          endloop.
          delete I_VIQMEL1 where TPLNR is initial.
          SORT I_VIQMEL1 BY TPLNR ascending ERDAT DESCENDING.
          IF I_VIQMEL1 IS NOT INITIAL.
            I_OPEN[] = I_VIQMEL1[].
            DELETE I_OPEN WHERE QMDAB IS not INITIAL.
            SORT I_OPEN BY TPLNR ascending ERDAT DESCENDING.
            I_CLOSE[] = I_VIQMEL1[].
            DELETE I_CLOSE WHERE QMDAB IS INITIAL.
            SORT I_CLOSE BY TPLNR ascending ERDAT DESCENDING.
          ENDIF.
        ENDIF.
      endif.
    ENDIF.
  ENDIF.
   * getting dates from Notification for flttyp is R and G.
      IF
                           wa_funct_loc-fltyp = 'R' OR
                           wa_funct_loc-fltyp = 'G'.
*                           wa_funct_loc-fltyp = 'B' OR.
        if I_OPEN is not initial.
          READ TABLE I_OPEN INTO WA_OPEN with key tplnr = wa_funct_loc-tplnr
          Binary search.
          IF SY-SUBRC = 0.
            wa_funct_loc-ZZNEXT_INSPFRM_T = WA_OPEN-STRMN.
            wa_funct_loc-ZZNEXT_INSPTO_T = WA_OPEN-LTRMN.
          endif.
        endif.
        CLEAR: WA_CLOSE.
        LV_COUNT1 = 0.
        if I_CLOSE is not initial.
          READ TABLE I_CLOSE INTO WA_CLOSE with key tplnr = wa_funct_loc-tplnr
          Binary search.
          IF SY-SUBRC = 0.
            wa_funct_loc-ZZLAST_INSP_T = WA_CLOSE-BEZDT.
            L_index1 = sy-tabix.
            LV_COUNT1 = L_index1 + 1.
            READ TABLE I_CLOSE INTO WA_CLOSE index LV_COUNT1.
            IF SY-SUBRC = 0.
              if WA_CLOSE-tplnr =  wa_funct_loc-tplnr.
                wa_funct_loc-ZZPREV_INSP_T = WA_CLOSE-BEZDT.
              endif.
            endif.
          endif.
        ENDIF.
      ENDIF.

Did you try debug your code to find the exact line with problem?

Similar Messages

  • One Time Flat File load in a Cube that extracts from ECC

    Hi,
    I have a cube that is already extracting data from ECC on a daily basis. I am asked to load some historical data into the cube from their legacy system. My question is, how do i prepare that file from the legacy system to match the fields in the Cube? What are the technicalities that i need to look at?
    For Example:
    0MATERIAL in the Cube:  Material Number in the Flat File
    ZAMOUNT in the Cube: Cost of Product in the Flat File
    How do I arrange to match these?
    Thanks

    Hi
    Create DS and enter the required objects
    Preview the Data
    Create Transformations (Map DS fields to Targets Objects - direct assignemnt)
    Create Infopack and extract data upto PSA
    Create DTP and run - it will extract data from PSA to Target
    No of Heade rows to be ignored : 1
    File type : CSV
    Data seperator : ;
    Escape Sign: "
    Thanks,

  • PO data extraction from ECC to BI in Classic vs extended classic scenerio

    HI guyz,
    In my project, we are using exteneded classic scenerio for our srm implementation where we fetch shopping cart, purchase order and confirmations data from srm system and invoice data from ecc system BI. also its succesfully running in production system till now.
    but a requirement came where for one country we need to use classic scenerio only i.e. we need to fetch po data from ecc system to bi.
    please suggest.
    regards,
    raps.

    Hi
    please use 2lis_02_hdr, itm and scl for po information and filter the infopackage by country.
    Thanks
    Krishnan.

  • Extraction from ECC 6.0 and R/3

    Hi Experts,
    i am new to sap .I have few questions.can anyone please explain below questions with your experience.
    1.What is the difference between ECC 6.0 and r/3.What are Pros and cons in using each one.
    2.what are the extraction steps for ECC 6.0 .(in r/3 we use rso2,rsa5,rsa6 transactions what do we use in Ecc 6.0).
    Please respond.Points will be assigned.
    Thanks,
    Sai

    Sai,
    As far as the T codes go, there is not change in R/3 and ECC. Just like in BW where there is an upgrade from 3.5 to BI 7.0, there is an upgrade on the R/3 from 4.7c to ECC 5.0 -
    > Ecc 6.0.
    As an SAP BW person, we would not see a whole lot of changes in that aspect.
    As far as extraction goes, LO ectraction remains the same.

  • Load transaction data from ECC to BPC 10.1 using US GAAP starter kit SP3

    I need to understand a bit more the process to load transactional data into BPC 10.1. We have US GAAP Starter Kit SP 3. Below is an screenshot from the config guide:
    It explains how transactional data can be extracted from ECC system to the SAP Netweaver BW data source 0FI_GL_10 and then transform it
    to get it loaded into BPC. The Objects /PKG/FC_C01 and PKG/FC_DS01 are just mentioned here as reference because they come in the RDS for Financial Close and Disclosure Management, which not all companies have.
    I believe the upwards data flow should be from Data Source 0FI_GL_10 to Data Store Object 0FIGL_O10 and then to InfoCube 0FIGL_R10. There is also a data flow that goes from 0FI_FL_10 to InfoCube 0FIGL_R10. Can anyone with experience with US GAAP starter kit answer this?
    Thank you.

    Hello, we were able to load actuals to our environment with the US GAAP Starter Kit, SP03. I followed the Operating Guide document up to section 5.2 and ran the Consolidation Data Manager Package with no issue. We are using the A20 Input  and A20 Consolidation process flows based on flows F00, F10, F20, F30, F99,  etc... According to the documentation, the Statemnet of Cash Flow and Changes  in Equity should be automatically calculated and available from the changes
    in Balance Sheet accounts once Consolidation is completed . However, when I  ran the corresponding reports, they bring no data.
    We loaded actual  data for the whole 2013 and Jan 2014. Our intention is
    to run the first  consolidation for Jan 2014. The closing balance for period 12.2013 in flow 99  was copied to flow 00 2014 (opening balance). Flows 20 and 30 were updated with the corresponding balance sheet movements (increase/decrease), according to the delivered controls in the starter kit. However, cash flow is still showing no results.
    I found the following text in the operating guide,  but I am not clear if I am missing a step. Can you please clarify? This is  telling me that I need to copy my 01.2014 opening balance (F00) to 12.2013  closing balance (F99, which is done by the copy opening data manager package, but in the opposite direction, from Y-1 F00 to Y F99) and in addition to also copy that balance to 12.2013 F00 (previous year  opening balance)??
    "5.2.2 First Consolidation
    When operating the  consolidation for a given Scope for the first time in the application, it is  necessary to populate and process the prior year-end time period for this Scope, in addition to the first required consolidation period. This is because the flows dedicated to the scope change analysis are properly populated by the consolidation engine provided that at least one automatic journal entry has been detected in the consolidation used as opening consolidation, which by default is the prior year end (December, Y-1). To accomplish this, it is recommended that you copy all input-level opening data of the first required consolidation (flow “F00”) into the closing data  (“F99”) and opening data (“F00”) of the prior year-end time period, including intercompany breakdowns.
    This breakdown by intercompany in the balance  sheet triggers automatic eliminations, which are carried over to the closing position. After the consolidation process, the closing data of the prior year
    end time period will contain the appropriate source data for the opening data of the following consolidation, notably the opening automatic journal entries.

  • Transferring the cost centers from ECC to Sourcing

    Hello Experts
    I have a requirement to synchronize cost centers between ECC and Sourcing systems . . The approach I am thinking is-
         Schedule a import job in sap sourcing which will be pointed to FTP and can import data.
         ECC will  trigger the XML data from  for any change / creation of cost centers .
         This data will come to FTP and from there this would be imported by Sourcing .
    Can anyone let me know if there is any particular XML format for Cost centers for  importing to Sourcing ?
    Thanks
    Sudipta

    Hi Sudipta,
    If Cost Center data extracted from ECC is rendered in CSV format, then XML file may not be required for the import job.
    The CSV file format should be available in the Enterprise/Company workbook.
    Regards,
    Parankush

  • Unable to extract the data from ECC 6.0 to PSA

    Hello,
    I'm trying to extract the data from ECC 6.0 data source name as 2LIS_11_VAHDR into BI 7.0
    When i try to load Full Load into PSA , I'm getting following error message
    Error Message: "DataSource 2LIS_11_VAHDR must be activated"
    Actually the data source already active , I look at the datasource using T-code LBWE it is active.
    In BI  on datasource(2LIS_11_VAHDR) when i right click selected "Manage"  system is giving throughing below error message
    "Invalid DataStore object name /BIC/B0000043: Reason: No valid entry in table RSTS"
    If anybody faced this error message please advise what i'm doing wrong?
    Advance thanks

    ECC 6.0 side
    Delete the setup tables
    Fill the data into setup tables
    Schedule the job
    I can see the data using RSA3 (2LIS_11_VAHDR) 1000 records
    BI7.0(Service Pack 15)
    Replicate the datasource in Production in Backgroud
    Migrate Datasource 3.5 to 7.0 in Development
    I did't migrate 3.5 to 7.0 in Production it's not allowing
    When i try to schedule the InfoPakage it's giving error message "Data Source is not active"
    I'm sure this problem relate to Data Source 3.5 to 7.0 convertion problem in production. In Development there is no problem because manually i convert the datasource 3.5 to 7.0
    Thanks

  • Extraction of data from ECC to 3rd Party systems

    Hi All,
    I want to know all the options available for extracting data from ECC to a 3rd party system (custom datawarehouse like Teradata, hyperion etc). Also, I want know if there is a best practice documentation available for extraction of data from ECC to any 3rd party system?
    Thanks,
    SB.

    Hi SB,
    Check the following link
    http://expertisesapbi.blogspot.com/2010/06/how-to-transfer-data-from-sap-system-to.html
    Ranganath.

  • Master data extraction from SAP ECC

         Hi All,
    I am a newbie here and teaching myself SAP BI. I have looked through the forums regarding master data extraction from SAP ECC in all forums but could not answers for my question. Please help me out.
    I want to extract customer attributes from SAP ECC. i have identified the standard data source 0customer_attr and replicated in SAP BI. I have created infopackage for full update. I validated the extractor checker(RSA3) and found 2 records for 0customer_attr.
    When I run the info package, the info package remains in yellow state until it times out. Please let me know in case i am missing anything, Please let me know if there is any other process for master data extraction similar to transaction data extraction.

    Hi All,
    i did the below and afte clicking execute in the Simple job, it takes me back to the Monitor Infopackage screen.
    From your info pack monitor --> menu environment-->job overview--> job in the source system--> prompts for source system(ECC) user id and password, enter them, you will get your job at SM37(ECC), select job and click on log details icon. there you can see details about your error. please share that error screen shot.
    Please find the screenshots.
    I did an Environment -->Check connection and found the below,

  • Extraction from SAP ECC to SAP BI

    What are the steps for Extraction from SAP ECC to SAP BI? Thanks.

    Hi,
    we have two types of extractions 1) Application specific 2)cross application
    under applicatin specific -->we have customer genenrated and business content extractions
    under customer generated means LIS, CO-PA, FI-SL(i.e no ready made data source in business content so we have to generate datasource)
    Business content means there is ready made business content datasource so we can use it
    LIS,LO --> when ever we go for extracting logistics informatin
    LO steps
    http://www.sap-img.com/business/lo-cockpit-step-by-step.htm
    LO Cockpit (Use transaction LBWE)
    /people/vikash.agrawal/blog/2006/12/18/one-stop-shop-for-all-your-lo-cockpit-needs
    https://www.sdn.sap.com/irj/sdn/weblogs?blog=/pub/u/21406 [original link is broken] [original link is broken]
    /people/sap.user72/blog/2005/09/05/sap-bw-and-business-content-datasources-in-pursuit-of-the-origins
    To understand LO extraction go through these weblogs by Roberto
    /people/sap.user72/blog/2004/12/16/logistic-cockpit-delta-mechanism--episode-one-v3-update-the-145serializer146
    /people/sap.user72/blog/2004/12/23/logistic-cockpit-delta-mechanism--episode-two-v3-update-when-some-problems-can-occur
    /people/sap.user72/blog/2005/01/19/logistic-cockpit-delta-mechanism--episode-three-the-new-update-methods
    /people/sap.user72/blog/2005/02/14/logistic-cockpit--when-you-need-more--first-option-enhance-it
    /people/sap.user72/blog/2005/04/19/logistic-cockpit-a-new-deal-overshadowed-by-the-old-fashioned-lis
    under cross Applicaion
    Generic extraction-->table, view, infoset query, function module
    Generic extractors are of 3 types:
    1. Based on table/view
    2. Based on Infoset Query
    3. Based on Function module
    GenericSteps
    Log on sap R/3.
    Step 1. create a table or view for generic extraction in se11.
    Step 2. Goto  t-code RSO2
    Step 3. Here u have to decide whether to extract transaction data or master data attributes or texts.
    Step 4. suppose if u have opted for transaction data,then give name in the column ex:ztd_m(data source name)
    Step 5. select create button,this will take u to another screen.
    Step 6. Here u have to decide from which application component u r extacting data.Ex: SD,MM,..
    Step 7. in this screen u have to fill short disciption,medium,long( these r mandatory).
    Step 8. then U have to Table name or view name which u have created in se11.
    Step 9. I f u want to maintain generic delta then u can select generic delta in top left hand side corner.
    Step 10. in next screen u have to give some field which is primary key.
    step 11. here u to specify whether time stamp or cal day or numeric pointer depending on u r requirement.
    step 12. then u have to specify  whether new status for changed records or additive delta.
            If u choose additive delta ,then u have to load data to infocube or ods object.
            If u choose new status for changed records, then u to load data  to ods object only.
    Step 13. then save it.
    Step 14. then logon to sap bw ,then replicate the data source then as usuall.
    COPA
    CO-PA--> for financial info
    http://help.sap.com/printdocu/core/Print46c/en/data/pdf/COPA/COPA.pdf
    You can browse forum for more detailed info..
    Regards,
    B

  • Extracting data from ECC tables in BODS

    Hello all,
    I'm trying to extract data from ECC tables. I have created a data store and imported the necessary tables(FAGLFLEXT) that i will be using.  I have used the table in a job as a source and tried to execute the job but i was only able to extract 28 records from the extractor when there are many more records present in the table and  also when i view the data in BODS i can only see 28 records.
    Plz help me in resolving this. How to extract the whole data?
    Thanks in advance.

    The table layouts can be found in the [documentation for EPMA|http://www.oracle.com/technetwork/middleware/bi-foundation/epm-data-models-11121-354684.zip] . If this doesn't work, there are other options to export hierarchies to text files. You can use life cycle management or the [EPMA File Generator|http://docs.oracle.com/cd/E17236_01/epm.1112/epma_file_gen_user/launch.html].
    Kyle Goodfriend
    http://www.in2hyperion.com
    Please make sure you assign your post as answered when an appropriate answer is provided (or helpful when applicable) so others benefit.

  • Create Info objects after extracting ds from ecc

    Hi All,
    I have replicated ds from ecc to bi and executed the infopackage. Now the data is upto psa level. How to create info objects after loading data to psa level to load the info objects to data targets like infocubes and dso. I have done to sucessfully to a flat file.
    Thank you.

    Hi Sudhir,
    You can go into 2 directions: use as much as possible Business Content InfoObjects or use custom InfoObjects. A combination is also possible.
    Especially in conjunction with SAP ECC extractions the Business Content InfoObjects are a safe choice. However, please consider the advantages it can have to use custom InfoObjects.
    If you would like to go into the direction of custom InfoObjects, then I suggest reading the following blogs:
    Generating Data Warehouse InfoObjects - Part 1: Introduction;
    Generating Reporting InfoObjects based on Business Content - Part 1: Introduction.
    Best regards,
    Sander

  • Extract data from ECC to Oracle using Data Services 4.0

    How to extract data from ecc6.0 Business content extractors  to oracle using sap bo data services 4.0

    Are you trying to use the SAP BW Business Content to extract data out of ECC and load into Oracle tables with Data Services? If that's the case, then you cannot do that. The SAP BW Business Content was developed to only be used in conjunction with SAP BW. When using Data Services to access the extractors in ECC, it has to have an SAP BW InfoPackage associated with it to execute. In this architecture, Data Services is only a pass through from ECC to BW and allows the ability to do some transformations of data prior to loading into the EDW layer (staging tables basically) on SAP BW.
    To connect ECC to Oracle, you're going to have to have all of the SAP BusinessObjects supplied Function Modules loaded onto ECC, along with a non-dialog logon account that has the ability to pass dynamic ABAP programs, generate the programs and schedule them. Depending on how you want to process the output, you may also have to have the ability to write to files on the ECC application servers and have an FTP account created on the application servers that can GET flat files and potentially DELETE them (you're going to need to delete periodically, otherwise your jobs will crash when the file space allocation has been consumed).

  • I am extracting the data from ECC To bw .but Data Loading taking long tim

    Hi All,
                     i am extracting the data from ECC To BI Syatem..but Data Loading Taking Long time. from last   6 hoursinfopackage is running.still it is showing yellow.Manually i made the red.and delete again i applied repeat of the last delta.but same proble is coming .in the status job is showing bckground job is not finished at source system.we requested to basis.basis people killed that job.again we schedule the chain also again same problem is coming.how can i solve this issue.
    Thanks ,
    chandu

    Hi,
    There are different places to track your job. Once your job is triggered in BW, you can track your load job where exactly it is taking more time and why. Follow below steps:
    1) After InfoPackage is triggered, then take the request number and go to source system to check your extraction job status.
    You can get the job status by taking the request number from BW and go to transaction SM37 in ECC. Then give the request number with begining '' and ending ''.  Also give '*' to user name.
    Job name:  REQ_XXXXXX
    User Name: *
    Check the job status whether job is completed or cancelled or short dump. If the job is still running check in SM66 whether you can see any process. If not accordingly you got to check in ST22 or SM21 in ECC. If the job is complete, then the same in BW side now.
    2) Check the data arrived in PSA, if not check whether Transfer routines or start routines are having bad SQL or code. Similarly in update rules.
    3) Once it is through in Source system (ECC), Transfer rules , Update Rules, then the next task is updating the data might some time take more time which might be based on some parameters ( Number of parallel process to update database ). Check whether updating the database is taking more time and may be you got to check with the DBA guy also.
    At all the times you should see minimum of atleast once process running all the time in SM66 till the time your job gets complete. If not you will see a log in ST22.
    Let me know if you still have questions.
    Assigning points is the only way of saying thanks in SDN.
    Thanks,
    Kumar.

  • Error when Extracting Metadata from ECC

    Hello,
    DS 4.2 was working fine with ECC after the creation of RFC connection. I was able to pull some of the tables. but after Basis team made some security changed with the objects, I am not able to pull the metadata from ECC.It is showing the following error. Can any one help me with this.

    Hi Navinchandar Selvaraj,
    As per there discussion
    Yeah it is not a best practice to assigning SAP_ALL. You should create a new role with authorization. Please contact your basis team. Ask them to create a New role and grant Authorizations. But in some cases SAP recommended to assign SAP_ALL authorization. 
    Hope this will help you out
    Authorization Profile SAP_ALL - Identity Management - SAP Library
    This composite profile contains all SAP authorizations, meaning that a user with this profile can perform all tasks in the SAP system. You should therefore not assign this authorization profile to any of your users. We recommend that you create only one user with this profile. You should keep the password of this user secret (store it in a safe) and only use it in emergencies (see also Protective Measures for SAP*).
    Instead of using the SAP_ALL profile, you should distribute the authorizations it contains to the appropriate positions. For example, instead of assigning your system administrator (or superuser) the authorization SAP_ALL, assign him or her only those that apply to system administration, namely the S_* authorizations. These authorizations give him or her enough rights to administer the entire SAP system, without allowing him or her to perform tasks in other areas such as Personnel.
    Best Practice - How to analyze and secure RFC connections - Security and Identity Management - SCN Wiki
    Regards,
    Akhileshkiran

Maybe you are looking for

  • How do i make system fonts look better?

    i am attempting to use univers, which is a system font and so exports as an image. i am using it at a larger size. when i preview in browser, it looks choppy. is there a way to make these system fonts less so, closer to the regular look of web safe f

  • Support for Exchange/MessageMirror in Mail app -

    is there any way to give the native mail application access to a MessageMirror mailbox on an Exchange server?  Based on what I can find, the answer is "no," because the mail application doesn't support delegated mailboxes.  I have two Exchange accoun

  • Why does iCal change my listed categories

    On my iCalendar I've got the different categories of lists with the different events, to organise myself. However they keep renaming themselves and not saving. Or just changing within 10 seconds. For days now new calendars/categories have been added.

  • Unable to refresh parent swing  form components after returning from child

    Hi, Not able to refresh the parent swing form components after returning from the child form. I am having problem in setting/resettig values to the parant swing form components after returning from child form. In parent form, I am entering values in

  • Getting SPICE netlist error in schematic...: Invalid subckt definition '21' and '33' on user added component

    In some design work I was doing I needed to use a vacuum tube type that is not available in Multisim. After some research on how to add a component I tracked down a spice model of this part and used the component wizard to add it. After adding it and