FM to Read InfoCube

Experts,
Is there a Function Module in R/3 that can be used to Read an Infocube?
Thanks.

Hi,
Check out the below threads:
How to read data ?
Re: Read data from 0BWTC_C02 via ABAP
BW/read Infocube
Sample code of  FM RSDRI_INFOPROV_READ
FM Rsdri_Infoprovider_read
The first thread has some sample code also.
Thanks.

Similar Messages

  • Function module to read Infocube data?

    Hi,
    I would like to know if there is any functional module which aids in reading the data directly from the basic infocube?
    Please respond.
    rgds,
    SR

    Hi SR,
    Use the function module RSDRI_INFOPROV_READ.
    For more info check this weblog:
    /people/dinesh.lalchand/blog/2006/06/07/reading-infocube-data-in-updatetransfer-rules
    Bye
    Dinesh

  • Reading InfoCube contents in ABAP

    Dear,
    I'm reading the contents of an InfoCube using FM RSDRI_INFOPROV_READ. This works fine, characteristics & keyfigures are coming through, only when I want the currency keys and units, the returned itab (E_T_DATA) contains additional records in stead of the currencies and units filled in the corresponding entries. Probably beacuse units are in a separate dimension. Does anyone know how I can populate the currency keys & units in the same records as where the keyfigures are stored?
    Thanx in advance for your help!
    Regards,
    Marco

    Hi Lakshman,
    1.Files in application server are called 'Sequential files'. they are also called as 'Dataset'.
    2.To handle sequential file we can follow the below said procedures.
       a.  To open sequentioal file:
              OPEN DATASET <FILENAME> FOR { OUTPUT/INPUT/APPENDING}
              IN {TEXT MODE/BINARY MODE}
       b. To process ( reading/writing):
           TRANSFER <FIELD> TO <FILE NAME>,
           READ DATASET <FILENAME> INTO <FIELD>.
      c.  To close:
            CLOSE DATASET <FILENAME>
    3. To see  the application files tcode: AL11
    4. Download the files from application server to presentation server : CG3Y
    5. Presentation server to application server : CG3Z
    Regards,
    Sakthivel.VT

  • Restrict Data by Reading Infocube from ABAP

    Hi SDN Community
    I have written ABAP in order to read the contents of the ODS.  This code is in a BADI, and against a customer exit variable that is placed in the query.
    Is it possible to write similar ABAP code to query a cube
    and retrieve same Funct_loc1.
    Thank you.
    Simon
           Read Production Cube to determine all the Alternative Labels
           (Functional Locations)
               SELECT  Funct_loc1
                FROM   /bic/aearo_o5000
                INTO   lst_range-low
                WHERE  /BIC/ZDATIVAR = '0000000030'
                AND    /BIC/ZCCFUNCCD = ls_ccfunccode
                AND    /BIC/ZSOURSYS = 'CQ'
                AND    FISCYEAR = ld_fiscyear
                AND    SOURSYSTEM = ls_soursystem.
                lst_range-sign     = 'I'.
                lst_range-opt      = 'EQ'.
                append lst_range to e_s_export-e_t_range.
                lv_count = lv_count + 1.
               ENDSELECT.

    Hi Sunmit
    Thank you for your reply.
    I try "TEST" in SE37 on this function module but it fails to execute.
    I will try as you suggest to put this in ABAP code and see how it works.
    If you can provide sample code that would be much appreciated.
    Thank you.
    Simon

  • Getting an Infocube name from Appset / Application ID

    Hi,
       I am working on BPC 7.0 NW version and trying to read infocube technical name from Appset id and application ID in the BADI. Can anyone help me on the same.
    Regards,
    meiy

    Hello,
    The best way to do this is to use the UJ class model.
    data:
        lo_model type ref to if_uj_model,
        lo_application type ref to if_uja_application_data,
        ls_app_info type uja_s_appl_info.
    cl_uj_model=>get_model( exporting i_appset_id = i_appset_id
                                               receiving ro_model = lo_model ).
    lo_application =  lo_model->get_appl_data( exporting i_application_id = i_appl_id ).
    call method lo_application->get_application_info
         exporting i_application_id = i_appl_id
         importing es_appl_info = ls_app_info.     
    Once you have ls_app_info simply reference the infocube property of that structure to determine the infocube name.
    Hope this helps.
    Cheers, Scott

  • End Routine in Transformation

    Hi Experts,
    We have a scenario wherein we need to write END Routine in the transfromation between  two cubes. While doing so we need to Look up at a DSO to fetch Financial Document Number.
    Details:
    We will be loading the Invoice data from 0LIV_DS01 ODS to the target cube ZLIV_DS01. We have a field called Invoice Clearing Date(0clear_date) in the target cube which is not present in this  0LIV_DS01 ODS. We have Invoice clearing date in the second cube(ZCSOINV). We need to write an END routine in the transformation between ZCSOINV and the target cube.
    We need to select Financial Document Number from Active table of 0liv_ds01 ods and store it in an internal table.
    Then compare this Financial Document Number with the Financial Document Number in the ZCSOINV cube. If there a match we need to select 0clear_date from ZCSOINV cube and assign it to result package.
    Please let me know what code needs to be written to achieve the above requirement in End Routine. Thanks
    Regards,
    Kavitha Jagannath

    In order to read the info cube you can use this function module: RSDRI_INFOPROV_READ
    This is the link in order to help you to use that function :
    /people/dinesh.lalchand/blog/2006/06/07/reading-infocube-data-in-updatetransfer-rules
    SAP also have the demo about it:
    You can open it in this program : RSDRI_INFOPROV_READ_DEMO
    1. go to tcode : se38
    2. type : RSDRI_INFOPROV_READ_DEMO then execute it.
    Edited by: Ananda Theerthan on Apr 12, 2010 6:20 PM

  • Regarding BW topics

    Hello Gurus!!!
    Presently I am into BW since 1month. I would be working on BW archiving.
    I finished with basics of BW from Fu Fu .
    I have practically implemented extraction of data from flat files,R/3 etc etc.
    Cud U all please suggest me which concept should I go for ...................
    Kindly give me roadmap so that my BW basics shud get clear
    Helpful answers will b rewarded.........
    Regards,
    Aryan

    Hi
    1.      To archive data from an InfoProvider, you firstly need to create an archiving object for the InfoProvider.
    See also: Archiving Object
           2.      Archiving is carried out in the Archive Administration.
    You can call up the following commands from here.
    ·         Maintain archiving variants.
    ·         Schedule archiving run; here you can firstly start a test run before starting the actual archiving run.
    ·         Schedule a delete run
    §         Store and retrieve from a storage system.
    Also refer to the detailed documentation in Archive Administration.
    Special technical features in the BW system:
    The following graphic shows the BW data archiving architecture:
    Description of special technical features in the BW system:
    Variants maintenance:
    In order to schedule the writing program, you have to first create a variant. Depending on the archiving method that you chose with the definition of the archiving object, the selection screen is built in different ways. With the archiving of time slots (time periods with beginning and end points), you can only use selection conditions for the selected time characteristic. See also: Time Restrictions In doing so, maintenance is kept to a minimum.
    Writing to the archive
    Access to data for reading or writing from the archiving processes then occurs by means of the data manager interface. When data is read from InfoCubes, it is transformed from the star-shaped table structure into a flat format that only contains the actual characteristic attributes. Thus, the archive is independent of a possible reorganization of IDs used in the star schema. The disadvantage is an increase in the volume of data that is at least partially cleared again by means of the data compression in the archive file.
    For each archiving object, an executable ABAP program is generated to write to the archive. The program generates and processes archiving requests.
    First of all, it generates an archiving request. The selection criteria and archiving run information is stored in the archiving request, and a status is administered. The system uses the InfoProvider interface to read InfoCube- and ODS data according to the grouping characteristics that were set. With InfoCubes, data is stored in the I- Structure in the archive (no MDIDs, no navigation attributes or table-enabled field names). For ODS objects, it is written to archive files in the A-table structure.
    Deleting archived data:
    A background process is started for each archive file when the archived data is deleted. Depending on the archiving object settings, it is either automatically started in the write phase, started manually in Archive Administration or is triggered by a particular event. Each productive delete process has three steps:
    1.       In the first step, the archive file is verified in the test mode. The system checks here whether the archive file is complete and whether it can be accessed. Successful verification of the file is stored persistently in the corresponding archive request. The background process is ended if the write phase is still running, or if the system has not verified all archive files in the associated archiving run.
    2.       The second step begins when the archiving run write phase has ended successfully, and all generated archive files have been successfully verified. In this step, data is deleted from the database with the selection criteria of the archiving run. An optimal delete strategy is displayed for the selection criteria (also see Selective Deletion from an InfoCube and from an ODS-Object). For InfoCubes, this step also involves the aggregates being adjusted.
    3.       When the data has been successfully deleted, all archive files in the archiving run are confirmed. This is the third step. As a result, the data is seen as successfully deleted with regards to the ADK.
    Here is a schematic display of the deletion process:
    For more information on the strategies that the system chooses for deletion, read the Background Information.
           3.      You can use the Extractor Checker (transaction RSA3) to check an archive file.
    Also refer to Check Archive File.
           4.      You can extract data from BW archives in order to reload it into the InfoProvider.
    We do not recommend you  reload data directly into the original object. As an alternative, you can use the archive connection for the Export DataSource of an InfoCube or ODS object. Archived data can then be extracted from the archive of the original object and loaded into an InfoProvider with the same (or a similar) structure using the data mart interface. Reporting permits a combination of data that has yet to be archived with data that has been extracted from the archive using the MultiProvider function.
    Also refer to Reload Data from Archive File.
    You can find detailed step-by-step instructions under Archiving Data.
    For more information about possible errors during the archive run and their removal, read the Background Information.
    http://help.sap.com/saphelp_nw04/helpdata/en/b2/e50138fede083de10000009b38f8cf/frameset.htm
    Assign points if it helps u.

  • ABAP code (Update rule)

    Hi Gurus,
    I need to load data from R/3 to infocube A. In update rule  I need to do a small calculation that is A.KF1  x  B.KF1  =  A.ZKF1. B.KF1 is a key figure in Infocube B. In update rule I need to read Infocube B and get B.KF1 and multiply with A.KF1(Infocube A) to fill the value in A.ZKF1. Please help me how to write ABAP code to do this calculation.
    Thanks
    Liza

    Liza,
    Check whether the function module RSDPL_CUBE_DATA_READ which will help  to read data from cube B.
    I guess, APD will be useful for your scenario.
    Thanks
    Viswa

  • SE 38 Program

    Hi Folks,
      It will be much helpful ,if anyone of us share the SE38 programs names and its Corresponding uses.
    Will assign points to all helpful answers

    Hi,
    Program name
    RSCDS_NULLELIM Delete fact table rows where all Key Figure values are zero. See Note 619826.
    RSDG_CUBE_ACTIVATE Activation of InfoCubes
    RSDG_CUBE_COPY Make InfoCube Copies
    RSDG_CUBE_DELETE Delete InfoCubes
    RSDG_DODS_REPAIR Activation of all ODS Objects with Navigation Attributes
    RSDG_ODSO_ACTIVATE Activation of all ODS Objects
    RSDG_IOBJ_ACTIVATE Activation of all InfoObjects
    RSDG_IOBJ_DELETE Deletion of InfoObjects
    RSDG_IOBJ_REORG Repair InfoObjects
    RSDG_IOBJ_REORG_TEXTS Reorganization of Texts for InfoObjects
    RSDG_MPRO_ACTIVATE Activating Multiproviders
    RSDG_MPRO_COPY Make Multiprovider Copies
    RSDG_MPRO_DELETE Deleting Multiproviders
    RS_COMSTRU_ACTIVATE_ALL Activate all inactive Communication Structures
    RS_TRANSTRU_ACTIVATE_ALL Activate Transfer Structure
    RSAU_UPDR_REACTIVATE_ALL Activate Update Rules
    RRHI_HIERARCHY_ACTIVATE Activate Hierarchies
    SAP_AGGREGATES_ACTIVATE_FILL Activating and Filling the Aggregates of an InfoCube
    SAP_AGGREGATES_DEACTIVATE Deactivating the Aggregates of an InfoCube
    RS_PERS_ACTIVATE Activating Personalization in Bex(Inactive are highlighted)
    RSSM_SET_REPAIR_FULL_FLAG Convert Full Requests to Repair Full Requests
    SAP_INFOCUBE_DESIGNS Print a List of Cubes in The System and Their Layouts
    SAP_ANALYZE_ALL_INFOCUBES Create DB Statstics for all InfoCubes
    SAP_CREATE_E_FACTTABLES Create Missing E-Fact Tables for InfoCubes and Aggregates
    SAP_DROP_EMPTY_FPARTITIONS Locate/Remove Unused or Empty partitions of F-Fact Table
    SAP_DROP_TMPTABLES Remove Temperory Database Objects
    Listed below are some of the frequently used Function Modules within BW.
    Function Module Description (Function Group RRMX)
    RRMX_WORKBOOK_DELETE Delete BW Workbooks permanently from Roles & Favourites
    RRMX_WORKBOOK_LIST_GET Get list of all Workbooks
    RRMX_WORKBOOK_QUERIES_GET Get list of queries in a workbook
    RRMX_QUERY_WHERE_USED_GET Lists where a query has been used
    RRMX_JUMP_TARGET_GET Get list of all Jump Targets
    RRMX_JUMP_TARGET_DELETE Delete Jump Targets
    Function Module Description
    MONI_TIME_CONVERT Used for Time Conversions.
    CONVERT_TO_LOCAL_CURRENCY Convert Foreign Currency to Local Currecny.
    CONVERT_TO_FOREIGN_CURRENCY Convert Local Currency to Foreign Currency.
    TERM_TRANSLATE_TO_UPPER_CASE Used to convert all texts to UPPERCASE
    UNIT_CONVERSION_SIMPLE Used to convert any unit to another unit. (Ref. table : T006)
    TZ_GLOBAL_TO_LOCAL Used to convert timestamp to local time
    FISCPER_FROM_CALMONTH_CALC Convert 0CALMONTH or 0CALDAY to Financial Year or Period
    RSAX_BIW_GET_DATA_SIMPLE Generic Extraction via Function Module
    RSAU_READ_MASTER_DATA Used in Data Transformations to read master data InfoObjects
    RSDRI_INFOPROV_READ
    RSDRI_INFOPROV_READ_DEMO
    RSDRI_INFOPROV_READ_RFC Used to read Infocube or ODS data through RFC
    DATE_COMPUTE_DAY
    DATE_TO_DAY Returns a number what day of the week the date falls on.
    DATE_GET_WEEK Will return a week that the day is in.
    RP_CALC_DATE_IN_INTERVAL Add/Subtract Years/Months/Days from a Date.
    RP_LAST_DAY_OF_THE_MONTHS
    SLS_MISC_GET_LAST_DAY_OF_MONTH Determine Last Day of the Month.
    RSARCH_DATE_COVERT
    Used for Date Converstions. We can use in Info Package routines.
    RSPC_PROCESS_FINISH To trigger an event in process chain
    Refer
    https://wiki.sdn.sap.com/wiki/pages/viewpage.action?pageId=35458
    All the info you want.
    Thanks,
    JituK

  • How to select  data from cube by BAPI

    Hi
    now i want to select data from cube by selection
    and the parameter is BAPI'S import.
    I want to know how can i select data from which table the storage  the cube's data
    Thank you for your help !!

    Hi,
    You can use FM: RSDRI_INFOPROV_READ.
                               BAPI_CUBE_GETDETAIL
    Pls Check the below weblog
    /people/dinesh.lalchand/blog/2006/06/07/reading-infocube-data-in-updatetransfer-rules
    Regards,
    CSM Reddy

  • FM to read yellow status requests from transactional InfoCube

    Hi,
    I am using the FM RSDRI_INFOPROV_READ to read data from the transactional InfoCube. My problem is that my code using this FM should be able to read data requests that have the yellow status for the transactional InfoCube.
    My code using this FM is able to read data from the green requests only but not the yellow requests. I was told in BPS, the yellow requests should turn green automatically after 50K of records have been queue up and ready to be turned green by itself.
    Has anyone come across this and help me solve this issue of reading data using FM RSDRI_INFOPROV_READ to read yellow request data. Is there another FM to read both the green and yellow requests?
    Please advise. Thanks
    RT

    Hi Rob,
    The function module mentioned by you is correct and it will read the yellow requests please try this, by default the parameter i_rollup_only is set as true set it to false (blank) while calling the function module.
    Please see the attached code
    CALL FUNCTION 'RSDRI_INFOPROV_READ'              
       EXPORTING                                      
         i_infoprov             = p_infocube          
         i_th_sfc               = t_sfc               
         i_th_sfk               = t_sfk               
         i_t_range              = lt_range            
         I_PACKAGESIZE          = p_pksize            
         i_rollup_only          = rs_c_false          
       IMPORTING                                      
         e_t_data               = <fsl_data_read>     
         e_end_of_data          = w_end_of_data       
       CHANGING                                       
         c_first_call           = l_first_call        
       EXCEPTIONS                                     
         illegal_input          = 1                   
         illegal_input_sfc      = 2                   
         illegal_input_sfk      = 3                   
         illegal_input_range    = 4                   
         illegal_input_tablesel = 5                   
         no_authorization       = 6                   
         ncum_not_supported     = 7                   
         illegal_download       = 8                   
         illegal_tablename      = 9                   
         trans_no_write_mode    = 10                  
         inherited_error        = 11                  
         x_message              = 12                  
         OTHERS                 = 13.                 
    Hope this was helpful.
    thanks

  • Error reading data from Infocube using shell script.

    Dear all ,
    I am facing a problem while reading data from an infocube using a shell script.
    The details are as follows.
    One of the shell script reads the data from the infocube to extract files with the values.
    The tables used for extraction by the shell script are :
    from   SAPR3."/BIC/F&PAR_CUBE.COPA"     FCOPA,
           SAPR3."/BIC/D&PAR_CUBE.COPAU"    COPAU,
           SAPR3."/BIC/D&PAR_CUBE.COPAP"    COPAP,
           SAPR3."/BIC/D&PAR_CUBE.COPA1"    CCPROD,
           SAPR3."/BIC/D&PAR_CUBE.COPA2"    CCCUST,
           SAPR3."/BIC/D&PAR_CUBE.COPA3"    COPA3,
           SAPR3."/BIC/D&PAR_CUBE.COPA4"    COPA4,
           SAPR3."/BIC/D&PAR_CUBE.COPA5"    COPA5,
           SAPR3."/BIC/MCCPROD"      MCCPROD,
           SAPR3."/BIC/SCCPROD"      SCCPROD,
           SAPR3."/BIC/MCCCUSTOM"    MCCCUSTOM,
           SAPR3."/BIC/SCCCUSTOM"    SCCCUSTOM,
           SAPR3."/BIC/SORGUNIT"     SORGUNIT,
           SAPR3."/BIC/SUNIMOYEAR"   SUNIMOYEAR,
    /*     SAPR3."/BI0/SFISCPER"     SFISCPER, */
           SAPR3."/BI0/SREQUID"      SREQUID,
           SAPR3."/BI0/SCURRENCY"    SCURRENCY,
           SAPR3."/BIC/SSCENARIO"    SSCENARIO,
           SAPR3."/BIC/SSOURCE"      SSOURCE
    The problem is that the file generation by this script (after reading the data from teh infocube) is taking an unexpected time of 2 hours which needs to be maximum 10 mins only.
    I used RSRV to get the info about these tables for the infocube:
    Entry '00046174', SID = 37 in SID table is missing in master data table /BIC/MCUSLEVEL2
    Entry '00081450', SID = 38 in SID table is missing in master data table /BIC/MCUSLEVEL2
    and so on for SID = 39  and SID = 35 .
    Checking of SID table /BIC/SCUSLEVEL2 produced errors
    Checking of SID table /BIC/SCUSLEVEL3 produced errors
    Can you please let me know if this can be a reason of delay in file generation (or reading of data from the infocube).
    Also , Please let me know how to proceed with this issue.
    Kindly let me know for more information, if required.
    Thanks in advance for your help.
    -Shalabh

    Hi ,
    In continuation with searching the solution to the problem , I could manage to note a difference in the partition of the Fact table of the infocube.
    Using SE14 -> Storage Parameters, I could find the partition done for the fact table as :
    PARTITION BY: RANGE
    COLUMN_LIST: KEY_ABACOPA
    and subsequently there are partitions with data in it.
    I need to understand the details of these partitions .
    Do they correspond to each requests in the infocube(which may not be possible as there are 13 requests in infocube and much more partitions).
    Most importantly, since this partition is observed for this onfocube only and not for other infocubes, it is possible that it can be a reason for SLOW RETRIEVAL of data from this ionfocube( not sure since the partition is used to help in fast retreival of data from the infocubes).
    Kindly help.
    Thanks for your co-operation in advance.
    -Shalabh

  • How can i Read and Delete data in Infocube

    Can some help me how to read and delete data in infocube before loading data from direct DSO.
    I should be able to read and delete condition with combination (0FISCPER, 0COMP_CODE).
    Let us say we load JAN, comp _ code : 0001 (10 records )and JAN comp _ code :003 (30 records ) and JAN, comp _ code : 004 (20 records ) to infocube
    second time if DSO gets data of JAN, comp _ code : 0001 (40 records ) it doent need to be 10 old + 30 new, it can be 9 old 21 new lay i need to delete 1 old rec which i dont need. so that is the reason i want delet all JAN, comp _ code : 0001  recods before loading.
    Can some one help me

    Hello,
    You could use the selective deletion available with the cube to get the selective data for 0FISCPER, 0COMP_CODE combination deleted.
    If you go in the manage of cube & Content tab, you would find the selective deletion option at the bottom of screen.
    If you enter the option, you could give your selections for deleting the records and run the job.
    Please let me know if you need any more help.
    Regards,
    Pankaj

  • Read data from an Infocube

    Hi,
    I'm writing a program to read data from an infocube, usfin FM RSDPL_CUBE_DATA_READ, but I can't get a result.
    This are the parameters I'm using:
    I_INFOCUBE                                = 'ZGE_CUB10'
    I_REFERENCE_DATE                  = sy-datum
    I_S_RFCMODE-ID                        = BIDCLNT100
    I_S_RFCMODE-RFC_RECEIVER  = RSDPL_CUBE_DATA_READ                
    I_S_RFCMODE-PACKAGESIZE    = 100
    I_S_DELTAMODE-SYSID             = BID
    I_S_DELTAMODE-DELTAMODE   =''
    I_T_CHA-chanm    = 'ZGE_KPI'
    I_T_CHA-chaalias  = 'ZGE_KPI'
    I_T_CHA-orderby    = 0
    I_T_KYF-kyfnm   = 'ZGE_VALOR'
    I_T_KYF-kyfalias = 'ZGE_VALOR'
    I_T_KYF-aggr      = 'SUM'
    i_t_range-chanm       = 'ZGE_KPI'.
    i_t_range-sign           = 'I'.
    i_t_range-compop     = 'EQ'.
    i_t_range-low            = 'FTL_GLC10_0331'.
    i_t_range-high          = 'FTL_GLC10_0331'.
    E_T_COLUMN-colname   = 'salida_zge_valor'
    E_T_COLUMN-iobjname  = 'salida_zge_Valor'
    E_T_COLUMN-keyflag    = 'X'
    but I keep getting DELTAMODE_ERROR.
    any help??? any sample-code you may share??
    thanks
    MAuricio

    found some sample code...
    http://www.web-dreamer.de/blog/2009/04/reading-on-sap-bi-infocubes-via-rsdri_infoprov_read.html.
    SAP also gives you sample programs on how to use the same...
    RSDRI_INFOPROV_READ_DEMO
    from thread :
    Re: RSDRI_INFOPROV_READ and compound selection conditions
    Edited by: Arun Varadarajan on Jun 5, 2009 7:24 PM

  • How to Read data from Infocube

    Dear Friends,
    I have requirement to read data from Infocube.
    I know the Function module(FM) which SAP provided. The FM name is RSDRI_INFOPROV_READ.
    But when i am trying to execute this FM in SE37, it giving "Error generating the test frame" message.
    I called this FM in start routine, it giving error while loading.
    If any using this please let me know, how to use this. If any have sample code, please share.
    Thx
    Raj

    Hi,
    i used to check documentation all time, but this time I forgot to check.
    It is well documented. thx for igniting my mind.
    bye
    Raj

Maybe you are looking for

  • How to put Company logo in the report?

    Hi, How am i going to include the company logo or a image file into my report? What is the best tools? I have try to use the "Link File" tool and it required me to specify the "Source Filename". So if I put the file path and filename in the "Source F

  • Webservices migration from weblogic to oracle 10.1.3.0.4

    Hi, Can any one help me regarding the below error iam getting while iam deploying the webservices application . This error is comming only for these classes and not comming for other classes which have date parameters. D:\jdevstudio1013\jdev\system\o

  • DIR creation from routing

    Hello All, I have a requirement to generate a document in SAP DMS (CV01N) for the assembly instruction using the process steps from routing(CA01).This would include inserting an assembly picture (JPEG) into original file which would reside in DMS and

  • Use of logbook or PM in high volume context

    Hello, is "logbook" suitable for managing big volume of data (i.e. 3 to 10 millions of events like measurements per day) ? An idea could be to create a log entry per event of this type and only log measurement(s) when relevant and necesary ? Any insi

  • Procedure for update ACS 5.4.0.46.0a with cumulutative patch in large deployment

    Hi, I try to find the info within the CCO website but fail. All docs I found on the site is Upgrading for 5.3 to 5.4  or 5.4 to 5.5 In my case I would like just apply cumulutative patch to my existing 5.4 running deployment. 5.4.0.46.0a to 5.4.0.46.6