Function module names to delete the Export Datasource

Hi Experts,
Can anyone please let me know what function modules are while deleting the export datasource. So far in my research i have found only
RSB1_DELETE_EXPORT_DATASOURCE. -- This fm does not deletes the export datasource, I want to know which fm is used exactly to delete the datasources.
To delete the virtual infocubes, the fm used is RSDG_CUBE_DELETE. Similarly there must be a fm to delete the export datasource.
Please help.
Thanks,
Prashant.

Hi Reddy,
         I hope there is no specific function module to delete the entries ( as of version 4.0). So you need to code a delete statement to perform the task.
Thanks,
Siva.

Similar Messages

  • Tell me the function module name

    Hi ,
       By using material in MSEG table I need to get BOM field from MAST table. Then using that BOM I have to retrieve BMENG from STKO table and POSTP (item category) in STOP table and here I need to search table STPO with BOM#; retrieve component quantity from field STPO/MENGE for all materials with Item category N     …
    I can do the above things by using select for all entries…
    But One function module is there to do all these things..
    Can any one tell me the function module name…
    Thanks,
    Navaneeth

    check this  BOM related
    CSAP_BOM_ITEM_MAINTAIN
    CSAP_DOC_BOM_CREATE
    CSAP_DOC_BOM_DELETE
    CSAP_DOC_BOM_ITEM_SELECT
    CSAP_DOC_BOM_MAINTAIN
    CSAP_DOC_BOM_READ
    CSAP_MAT_BOM_ALLOC_CREATE
    CSAP_MAT_BOM_ALLOC_DELETE
    CSAP_MAT_BOM_CLOSE
    CSAP_MAT_BOM_CREATE
    CSAP_MAT_BOM_DELETE
    CSAP_MAT_BOM_ITEM_SELECT
    CSAP_MAT_BOM_MAINTAIN
    CSAP_MAT_BOM_OPEN
    CSAP_MAT_BOM_READ
    CSAP_MAT_BOM_SELECT
    CSAP_ORD_BOM_CREATE
    CSAP_ORD_BOM_DELETE
    CSAP_ORD_BOM_ITEM_SELECT
    CSAP_ORD_BOM_MAINTAIN
    CSAP_STOCK_TYPE_CREATE
    CSAP_STOCK_TYPE_DELETE
    CAVC_I_CHANGE_BOM_ITEM_DATA
    CAVC_I_DELETE_BOM_ITEM
    Check Above function modules which all related to BOM
    And also Check function groups CSAP, CSAI, CSAR, CSBD etc...
    Check out the following:
    http://help.sap.com/saphelp_40b/helpdata/en/92/58b521417011d189ec0000e81ddfac/content.htm
    regards,
    prabhu
    reward if it is useful

  • DSO activation failed due to creation of the export datasource failed

    hi experts,
    i am activating DSO, but failed. Cause is "The creation of the export DataSource failed"
    there are many threads in the forum saying restoring the BI myself source system can address it, I tried many times, but failed.
    I used program RSDG_ODSO_ACTIVATE to activate an already activated DSO, it returned same error and the original activated DSO turned into inactivated. So I guess there must be something wrong with the setting.
    please advise, thanks!
    attach error info:
    The creation of the export DataSource failed
    Message no. RSBM035
    Diagnosis
    The system could not create DataSource .
    System Response
    The metadata for a DataSource must be created while the export InfoSouce is being generated. An error occurred at that time.
    Procedure
    Consult the appropriate developer (function module: RSA1_OLTPSOURCE_GENERATE).
    The delta process ODS does not exist
    Error when creating the export DataSource and dependent Objects
    Error when activating DataStore Object ZFIM_D09

    Hi,
    As I read the system RESTORE option should resolve your issue. From RSA1 try to restore your source system and try to active your DSO again.
    Regards,
    Durgesh.

  • The creation of the export DataSource failed 0FIGL_O06, 0FIGL_O02

    Hello Expert,
    I have an issue with the export data source creation,
    This is the detail,
    Thank you very much in advance for your kind help,
    The creation of the export DataSource failed
    Message no. RSBM035
    Diagnosis
    The creation of the DataSource &v1& was unsuccessful.
    System Response
    Whilst generating the export InfoSource, the metadata for a DataSource must be generated. An error arose when doing this.
    Procedure
    Consult the appropriate developer (function module: RSB1_OLTPSOURCE_GENERATE).

    Niurka,
    Is this datasource for a hierarchy? See if note - 403092 is relevant.
    Viren

  • Need Appointment Function Module Name to Read any Opportunity  No.

    Hello Gurus
    Can anyone  tell me the Appointment  type Function Module Name where Header_guid and  Appt_type are to be supplied .
    Means i want to only read(not to change or create)  an opportunity no for a particular Appointment type(Date_type).  I tried for the following FMs:
    1.CRM_APPOINTMENT_READ_OW
    2.CRM_APPOINTMENT_DETERMINE_OW
    3.CRM_APPOINTMENT_CHECK_OW
    thanks in advance
    Madhusudan

    Hello Madhusudan,
    for the activities you can use the following coding (example):
    -Beginn-
      CALL FUNCTION 'BAPI_ACTIVITYCRM_GETDETAILMULT'
        TABLES
          guid   = lt_guid
          header = lt_header
          date   = lt_bapibus20001_app_dis.
      CALL FUNCTION '/DKVES/SM_ACTIVITY_GETFROMBUPA'
        EXPORTING
          iv_partner  = lv_partner
        TABLES
          et_contacts = lt_sm_activity_simple.
      LOOP AT lt_sm_activity_simple INTO ls_sm_activity_simple.
        CLEAR ls_bapibus20001_app_dis.
        READ TABLE lt_bapibus20001_app_dis INTO ls_bapibus20001_app_dis
        WITH KEY ref_guid = ls_sm_activity_simple-activity_guid appt_type = 'ORDERPLANNED'.
          ls_order_aktiv-date_from = ls_bapibus20001_app_dis-date_from.
        APPEND ls_order_aktiv TO lt_order_aktiv.
      ENDLOOP.
    -end-
    If you want the other 'one order Objects' you can perhaps modify the selection.
    I hope that helps
    Torsten

  • Functional module name of smartform

    Hi,
    I have created a smartform and generated it.
    what will be the name of the Functional module?
    how to use it in abap
    Thanks,
    Mounika.

    hi,
    Use
    You trigger form printing by calling as few as two function modules. The first module uses the name of the form to determine the name of the generated function module. Then you call this module.
    The name of the generated function module is unique only within one system. Therefore, you must always call that function module first that uses the form name to determine the current name of the generated module.
    Prerequisites
    You defined the form interface in your form and activated the form.
    Procedure
    In the Form Builder call the function Environment ® Name of the function module and use STRG-Y and STRG-C to copy its name.
    In the application program define a variable of type RS38L_FNAM for the name of the generated function module:
    data fm_name type RS38L_FNAM .
    You can call the Smart Form in other parts of the application program as well. However, in that case you must make sure that the system can access the data to be passed from that location. We recommend to encapsulate the data retrieval in a function module as well.
    If desired, you can call the function module SSF_FIELD_LIST . It returns a list of the form parameters actually used in the form. You can use this information to limit data selection, if necessary.
    Call function module SSF_FUNCTION_MODULE_NAME . It returns the name of the generated function module:
    CALL FUNCTION 'SSF_FUNCTION_MODULE_NAME'
      EXPORTING
        FORMNAME             = '
    ENDIF.
    If the form is not active, SSF_FUNCTION_MODULE_NAME triggers the exception NO_FORM . There are two cases in which the function module generates an active version by itself:
    After a transport into another system
    After you changed the form interface of a previously activated form
    Call the generated function module. To do this, use the Insert Statement function for CALL FUNCTION in the ABAP Editor and use the name you copied in step 1 (to avoid having to copy all interface parameters manually). Then replace the function module name with the variable fm_name defined in step 2.
    CALL FUNCTION fm_name
      EXPORTING
      ARCHIVE_INDEX =
      ARCHIVE_PARAMETERS =
      CONTROL_PARAMETERS =
      MAIL_APPL_OBJ =
      MAIL_RECIPIENT =
      MAIL_SENDER =
      OUTPUT_OPTIONS =
      USER_SETTINGS = 'X'
        G_CARRID =
    IMPORTING
      DOCUMENT_OUTPUT_INFO =
      JOB_OUTPUT_INFO =
      JOB_OUTPUT_OPTIONS =
      TABLES
        GT_SBOOK =
    ENDIF.
    In this example, three variables and an internal table are passed. The parameters G_CARRID , G_CONNID , G_FLDATA , and GT_SBOOK have been defined before in the form interface.
    In the interface, pass all data you want to transfer to the form.
    Result
    The generated function module processes the form logic defined in the Smart Form. Its output is sent to spool processing.
    As long as you do not change the form interface, you can make any changes to the form. When you activate it again, the system generates the current version of the form as soon as you call the function module. Only if you change the form interface, you must adapt the interface in the application program.
    plzz reward if this information is usefull to u....
    plzz dont forget to reward

  • ODS activation error( The creation of the export DataSource failed

    Hi Friends,
             i have a problem activating the ODS. after defining the ODS, when i try to activate the following error is occured
    1.The creation of the export DataSource failed
    2.RFC connection to source system BWD100 is damaged ==> no Metadata upload
    3.Error when creating the export DataSource and dependent Objects     
    Any help would be appreciated
    Thanks

    Seems that there are one or more characteristics in the ODS for which one or more attributes may be new or inactive.
    Please see SAP Note 597326..Pasting the content below..Solution steps are also given..
    Symptom
    When you activate or transport ODS objects, the following errors appear in the log:
    "The creation of the export DataSource failed". Message number RSBM 035
    "Error &1 in function module &2". Message number RSBM 006
    "Error when creating the export DataSource and dependent Objects". Message number RSDODSO 169
    "Error when activating the ODS object &1". Message number RSDODSO 168
    Other terms
    RSBM 035, RSBM 006, RSDODSO 169, RSDODSO 168
    Reason and Prerequisites
    A characteristic involved is active but it is using new or inactive attributes.
    Characteristics involved are all characteristics used in the ODS object.
    Solution
    Check all characteristics involved as described in the following:
    Check the Compounding and Attributes tabs in the characteristics maintenance.
    All characteristics here must be active. This is displayed by a green icon.
    If this is not the case for a characteristic involved (a gray icon is displayed on one of the two tabs), activate the characteristic involved. This also activates the inactive dependent characteristics.
    After you have checked and repaired all the characteristics involved as described above, the loading/maintenance of master data should work again.
    cheers,
    Vishvesh

  • Identify tables from where the function module extracts data for the ES

    Hi All,
    For the datasource, 0CRM_SALES_ORDER_I in the CRM system, we need to add a new field (in the table level). This datasource's extraction type is 'F1 - function module'. Is the extractor itself is this function module? If it is a sepeate FM, where can we find the function module name used for this datasource?
    We need to identify the tables from where the fields in this datasource fetch data from. Where can we find this information?
    To be specific, in the sales order in tcode crmd_order, if we goto conditions tab and create a new condition, in what table this will get stored?
    Thank you in advance,
    Hari

    Ignore this thread! there is another thread I have created for the same problem.
    I created only one; wonder how it became two!!

  • Transport Error-The creation of the export DataSource failed

    Hi Experts,
    I am transporting a DSO from DEV to QA in 7.0 system.While transporting the DSo i am getting the below mentioned error.
    The creation of the export DataSource failed
    Reading the Metadata of APMD0009 ...
    Creating DataSource 8APMD0009 ...
    Password logon no longer possible - too many failed attempts
    Password logon no longer possible - too many failed attempts
    Error when creating the export DataSource and dependent Objects
    Error when activating DataStore Object APMD0009
    the request conatins just the DSO and not the Export datsource.i have also tried exporting both together still it failed.
    I have referred OSS note No.597326 for the same.But it didnt helped in resolving the issue.
    Has any one come across this kind of an issue.
    Thanks in advance!!!!!
    Regards,
    Umesh.

    No it didnt seem to work still got the same password error..                                                                               
    Start of the after-import method RS_ODSO_AFTER_IMPORT for object type(s) ODSO (Activation Mode)              
    /     The creation of the export DataSource failed                                                                 
          Name or password is incorrect (repeat lo gon)                                                                
          Name or password is incorrect (repeat lo gon)                                                                
          Error when creating the export DataSource and dependent Objects                                              
          Error when activating DataStore Object 0BBP_BID                                                              
    /     The creation of the export DataSource failed                                                                 
          Name or password is incorrect (repeat lo gon)                                                                
          Name or password is incorrect (repeat lo gon)                                                                
          Error when creating the export DataSource and dependent Objects                                              
          Error when activating DataStore Object 0BBP_QUO                                                              
    /     The creation of the export DataSource failed                                                                 
          User not authorized. Session terminated                                                                      
          User not authorized. Session terminated                                                                      
          Error when creating the export DataSource and dependent Objects                                              
          Error when activating DataStore Object 0PUR_DS03                                                             
    /     The creation of the export DataSource failed                                                                 
          Name or password is incorrect (repeat lo gon)                                                                
          Name or password is incorrect (repeat lo gon)

  • Function module name for routing fom production orders

    Function module name for routing fom production orders

    Hi
    There are lot of fun modules related to routing
    like
    BAPI_ROUTING_CREATE
    BAPI_ROUTING_EXISTENCE_CHECK
    goto SE37 Tcode
    enter routing press F4
    you will get a lot out of that use the required one
    Reward points for useful Answers
    Regards
    Anji

  • Function Module Name for Graph

    HI,
      Can any body tell me Function Module name for creating graph with horizontal scrollable.I dont want standard graph button.
    Thanks,
    Rakesh

    Hello,
    Check this standard programs they are using the same FM
    RFDOPR20                         Customer Payment History
    RFVD_COMPRESSION_01_I01
    RPRSTA01                         Travel Expense Reporting by Period
    RPSTA100                         Time-Related Statistical Reporting
    RPSTA200                         Time-Related Statistical Reporting
    RPSTA2GR
    RQALVF16
    RQETBI10                         Inspection lot selection
    RSDB4007                         iSeries: Display Wait Statistics by SAP Instance
    RSHOST10                         Monitor for OS Collector (ST06)
    RSORA003                         Statistics of Physical Accesses to Oracle Data Base
    RSORA007                         Statistics of Data Base Wait Situations
    RSORA138                         IO Stat for Each User Session (ORA7 V$SESS_10)
    Check this 3 FM
    GRAPH_2D                       Calling up the 2D business graphics
    GRAPH_2D_MENUE                 DO NOT USE (use 'GRAPH_2D' and 'GRAPH_BUSG_MENU_SET')
    GRAPH_MATRIX_2D                Calling up the 2D graphics (user-friendly version)

  • Function module to retrieve all the personnel numbers in the eval path

    Hi all,
    I want to retrieve all the personnel numbers that fall in the evaluation path.
    Like if my evaluation path is "B002" ( eval path for relationship is line supervisor of ), I want a function module that retrieves all the pernrs in this wval path up to the bottom level.
    if A reports to B and B reports to C and C reports to D . I want a function module to retrieve(either positions or pernrs) C, B and A when I run it for position D.
    any help??
    regards
    Sam
    regards
    Sam

    Hi
    U can use FM  RH_STRUC_GET to get the pernr in the evaluation path
    data : IT_RESULT_TAB     TYPE STANDARD TABLE OF SWHACTOR .
                CALL FUNCTION 'RH_STRUC_GET'
                  EXPORTING
                    ACT_OTYPE  = C_OTYPE
                    ACT_OBJID  = W_POSIT
                    ACT_WEGID  = C_WEGID (relation B002 like )
                    ACT_BEGDA  = W_BEGDA
                    ACT_ENDDA  = W_BEGDA
                   ACT_TDEPTH = 1 ( depath 1, 2, etc )
                  TABLES
                    RESULT_TAB = IT_RESULT_TAB .
    Nb : Give points if it worths

  • Function module that can give the last value or the highest value of a key

    hi,
    Is there any function module that can give the last value or the highest value of a key feild in a z table.
    regards,
    johnson

    Hi ,
    We have  aggregate functions in SQL. Some of the functions are as follows.
    MAX(col ) Determines the maximum value of the value in the column col in the resulting set or in the current group.
    MIN( col ) Determines the minimum value of the content of the column col in the resulting set or in the current group.
    AVG(  col ) Determines the average value of the content of the column col in the resulting set or in the current group. The data type of the column has to be numerical.
    SUM( col ) Determines the sum of the content of the column col in the resulting set or in the current group. The data type of the column has to be numerical.
    COUNT( col ) Determines the number of different values in the column col in the resulting set or in the current group.
    For further details , type the function name name and press F1 for further help.
    Eg: select count(mantr) from mara into workarea where condition.
    Reward points if helpful.
    Thanks and Regards.

  • Functional Module Name

    Hi Experts,
    I would like to do initial load of Business Objes (BUPA_MAIN) from R/3 to CRM. How to find the functional module name.
    Thanks in Advance

    Hi,
    I"m sorry but I didn't get your question. If your question was about the extractor function module which will be called on the R/3 when the initial laod takes place,you can goto the table CRMSUBTAB on the R/3 and check for the respective Function module name for BUPA_MAIN.
    Furthermore you can go to the transaction R3AC1 in CRM and look for the details of the adapter object BUPA_MAIN<see all tabs>
    Regards,

  • Where to define remote function module name in RFC adapter

    R/2(IDOC) <->XI <-> R/3 (RFC)
    I can only define remote server information in RFC receiver adpater, but where to define the function module on remote server&#65311;

    Hi,
    the communication channel need the request in an specific xml format.
    Part of this format is the function modul name.
    when you use an imported rfc module you have automaticly the right xml format which the communication channel understand.
    the Communication channel need as root tag the function module name
    like:
    <ns0:Z_MY_FUNCTION xmlns:ns0="urn.sap-com:document:sap:rfc:functions">
    so it is with xslt mappings (for example) as well possible to call a rfc modules without importing it into your repository.
    regards,
    Robin

Maybe you are looking for

  • Receiving an export file error: wrong type

    I have created a movie several times in FCP and then exported the movie to QT without any problems. Now all of a sudden, I can't get the movie to export correctly. After the 2 hour export, I'll check on FCP to find that the program has shut down with

  • How to add EP(DEV and QAS and PRD systems in solution manager)

    Dear Gurus, I want to include EP dev and qality and prodution systems in solution manager . While installation of EP(only ASJAVA it is not having ASABAP) i selected solution manager as a Central SLD. But i deleted the systems in solution manger and r

  • Socket with proxy

    guys, I have a raw socket server on a local computer communicating with its client on the same machine. Unfortunately, I can not use Wireshark or Ethereal because they will only works from the local TCP point to the outside world. In my case, all is

  • Bad quality playback from purchased songs

    Friends- I purchased an album from itunes. I played it from my iBook over airport to my stereo system. The quality was very poor. Any ideas? Thanks. -Robin

  • Nvarchar2 written incorrectly

    We use JSF with ADF BC and want to enable unicode support. We changed the varchar2 columns to nvarchar2 and updated entities to this datatype, but national data are stored as question marks. As a test, I want to store the Cyrillic character "Й" (\u04