I need to know thelist of bapi's and function modules used for transaction

I need to know thelist of bapi's and function modules used for transaction in order to use these FM or BAPI in reading some fields of equipment master and functional loocation.Can any one suggest me some methods...or do i need to write  a report for the same.

Steps to find the BAPI/function modules used in a transaction
1) Find the package of the transaction thro' SE93.
For example the package for the transaction VA03 is VA
2) Go to Se80, key-in the package (say VA)
3) You can see the function modules under the folder finction group and
you can see the BAPI's under the folder Business Engineering-> Business Objects-> double click on the released methods of the Business Objects

Similar Messages

  • To know thelist of bapi's and function modules used for transaction IH10

    I need to know thelist of bapi's and function modules used for transaction in order to use these FM or BAPI in reading some fields of equipment master and functional loocation.Can any one suggest me some methods...or do i need to write a report for the same.

    hi,
    provide report name (here: RIEQUI20)
    goto se38 - utilities - cross reference - function modules
    or use report RPR_ABAP_SOURCE_SCAN
    with search string call function
    A.
    Message was edited by:
            Andreas Mann

  • I need to know how to change the identity (email address) used for the iTunes store as I no longer use that email

    I need to know how to change the identity (email address) used for the iTunes store as I no longer use that email.

    Settings > iTunes & App store.
    Tap AppleID, sign out then sign back in.
    The Apple ID is right everywhere else. I've synced the phone. I've reset it in Settings on the phone. I've changed it at Apple.
    When you write, "I've changed it at Apple, this means you updated yoru old AppleID or you ceated a new AppleID?

  • Any BAPI s or functional modules avilabe for Create BOM  -- CS01

    client using ECC6.0  ,, Actually we are converting legacy data (Excel) in to SAP R/3 . we are writing BDC program for this.
    Any functional modules or BAPI are avilabe for convert data in to SAP R/3 for CS01 transaction. If any one know exact information give example and
    parameters also..

    Check this BDC of CS01
    *& Report YCS01_TEST
    REPORT ycs01_test.
    TYPE-POOLS truxs.
    DATA:f_file TYPE string.
    *TYPES: BEGIN OF ty_flat, " structure for flat file
    *string(200),
    *END OF ty_flat.
    TYPES: BEGIN OF ty_head, " structure for header file
    ind(2) TYPE n,
    matnr(18) ,
    werks(4) ,
    stlan(1) ,
    stlal(2) ,
    datuv(10) ,
    ztext(40),
    bmeng(13) ,
    bmein(3),
    stlst(2) ,
    END OF ty_head.
    TYPES :BEGIN OF ty_item, "structure for item file
    ind(2) TYPE n,
    postp(1) ,
    posnr(4) ,
    idnrk(18) ,
    menge(13),
    meins(3) ,
    potx1(40),
    lgort(4) ,
    sanka(1),
    END OF ty_item.
    TYPES :BEGIN OF ty_flat, " structure for final file
    matnr(18) ,
    werks(4) ,
    stlan(1) ,
    stlal(2) ,
    datuv(10) ,
    ztext(40),
    bmeng(13) ,
    bmein(3),
    stlst(2) ,
    postp(1) ,
    posnr(4) ,
    idnrk(18) ,
    menge(13),
    meins(3) ,
    potx1(40),
    lgort(4) ,
    sanka(1),
    END OF ty_flat.
    INTERNAL TABLE DECLARATIONS *
    DATA : t_flat TYPE TABLE OF ty_flat,
    *t_flat1 TYPE TABLE OF ty_flat1,
    t_head TYPE TABLE OF ty_head,
    t_item TYPE TABLE OF ty_item,
    t_bdcdata TYPE TABLE OF bdcdata,
    t_bdcmsg TYPE TABLE OF bdcmsgcoll.
    WORK AREA DECLARATIONS *
    DATA : st_flat LIKE LINE OF t_flat,
    *st_flat1 LIKE LINE OF t_flat1,
    st_head LIKE LINE OF t_head,
    st_item LIKE LINE OF t_item,
    st_bdcdata LIKE LINE OF t_bdcdata,
    st_bdcmsg LIKE LINE OF t_bdcmsg.
    VARIABLES *
    DATA : v_ind(2) TYPE n, " value 1,
    v_fld(20),
    v_no(2) TYPE n.
    SELECTION SCREEN *
    SELECTION-SCREEN : BEGIN OF BLOCK b1 WITH FRAME TITLE text-001. "selection screen
    PARAMETERS: p_fnam TYPE rlgrap-filename OBLIGATORY.
    SELECTION-SCREEN : END OF BLOCK b1.
    AT SELECTION-SCREEN ON VALUE-REQUEST FOR p_fnam.
    CALL FUNCTION 'F4_FILENAME'
    EXPORTING
    program_name = syst-cprog
    dynpro_number = syst-dynnr
    field_name = ' '
    IMPORTING
    file_name = p_fnam.
    IF p_fnam IS NOT INITIAL.
    VALIDATE FILE TYPE
    PERFORM sub_validate_txt_type.
    ENDIF.
    START-OF-SELECTION.
    f_file = p_fnam.
    CALL FUNCTION 'GUI_UPLOAD'
    EXPORTING
    filename = f_file
    filetype = 'ASC'
    has_field_separator = '#'
    HEADER_LENGTH = 0
    READ_BY_LINE = 'X'
    DAT_MODE = ' '
    CODEPAGE = ' '
    IGNORE_CERR = ABAP_TRUE
    REPLACEMENT = '#'
    CHECK_BOM = ' '
    VIRUS_SCAN_PROFILE =
    NO_AUTH_CHECK = ' '
    IMPORTING
    FILELENGTH =
    HEADER =
    TABLES
    data_tab = t_flat
    EXCEPTIONS
    file_open_error = 1
    file_read_error = 2
    no_batch = 3
    gui_refuse_filetransfer = 4
    invalid_type = 5
    no_authority = 6
    unknown_error = 7
    bad_data_format = 8
    header_not_allowed = 9
    separator_not_allowed = 10
    header_too_long = 11
    unknown_dp_error = 12
    access_denied = 13
    dp_out_of_memory = 14
    disk_full = 15
    dp_timeout = 16
    OTHERS = 17
    IF sy-subrc 0.
    MESSAGE ID sy-msgid TYPE sy-msgty NUMBER sy-msgno
    WITH sy-msgv1 sy-msgv2 sy-msgv3 sy-msgv4.
    ENDIF.
    SORT t_flat BY posnr .
    LOOP AT t_flat INTO st_flat.
    MOVE :
    st_flat-matnr TO st_head-matnr,
    st_flat-werks TO st_head-werks,
    st_flat-stlan TO st_head-stlan,
    st_flat-stlal TO st_head-stlal,
    st_flat-datuv TO st_head-datuv,
    st_flat-ztext TO st_head-ztext,
    st_flat-bmeng TO st_head-bmeng,
    st_flat-bmein TO st_head-bmein,
    st_flat-stlst TO st_head-stlst.
    at new posnr.
    move:
    st_flat-posnr to st_item-posnr,
    st_flat-postp to st_item-postp,
    st_flat-idnrk to st_item-idnrk,
    st_flat-menge to st_item-menge,
    st_flat-potx1 to st_item-potx1,
    st_flat-lgort to st_item-lgort,
    st_flat-sanka to st_item-sanka.
    ADD 1 TO v_ind.
    ENDAT.
    MOVE v_ind TO st_head-ind.
    MOVE v_ind TO st_item-ind.
    APPEND st_head TO t_head.
    APPEND st_item TO t_item.
    CLEAR st_head.
    CLEAR st_item.
    *CLEAR v_ind.
    ENDLOOP.
    CLEAR v_ind.
    *perform open_group.
    SORT t_item BY ind.
    SORT t_head BY ind.
    DELETE ADJACENT DUPLICATES FROM t_head.
    DELETE ADJACENT DUPLICATES FROM t_item.
    LOOP AT t_head INTO st_head.
    PERFORM bdc_dynpro USING 'SAPLCSDI' '0100'.
    PERFORM bdc_field USING 'BDC_CURSOR'
    'RC29N-STLAN'.
    PERFORM bdc_field USING 'BDC_OKCODE'
    '/00'.
    PERFORM bdc_field USING 'RC29N-MATNR'
    st_head-matnr.
    PERFORM bdc_field USING 'RC29N-WERKS'
    st_head-werks.
    PERFORM bdc_field USING 'RC29N-STLAN'
    st_head-stlan.
    PERFORM bdc_field USING 'RC29N-STLAL'
    st_head-stlal.
    PERFORM bdc_field USING 'RC29N-DATUV'
    st_head-datuv.
    PERFORM bdc_dynpro USING 'SAPLCSDI' '0110'.
    PERFORM bdc_field USING 'BDC_CURSOR'
    'RC29K-ZTEXT'.
    PERFORM bdc_field USING 'BDC_OKCODE'
    '/00'.
    PERFORM bdc_field USING 'RC29K-ZTEXT'
    st_head-ztext.
    PERFORM bdc_field USING 'RC29K-BMENG'
    st_head-bmeng.
    PERFORM bdc_field USING 'RC29K-STLST'
    st_head-stlst.
    PERFORM bdc_dynpro USING 'SAPLCSDI' '0111'.
    PERFORM bdc_field USING 'BDC_CURSOR'
    'RC29K-LABOR'.
    PERFORM bdc_field USING 'BDC_OKCODE'
    '/00'.
    LOOP AT t_item INTO st_item WHERE ind = st_head-ind.
    ADD 1 TO v_no.
    PERFORM bdc_dynpro USING 'SAPLCSDI' '0140'.
    PERFORM bdc_field USING 'BDC_CURSOR'
    'RC29P-POSTP(02)'.
    PERFORM bdc_field USING 'BDC_OKCODE'
    '/00'.
    CONCATENATE 'RC29P-IDNRK(' v_no ')' INTO v_fld.
    CONDENSE v_fld.
    PERFORM bdc_field USING v_fld
    st_item-idnrk.
    CONCATENATE 'RC29P-MENGE(' v_no ')' INTO v_fld.
    CONDENSE v_fld.
    PERFORM bdc_field USING v_fld
    st_item-menge.
    CONCATENATE 'RC29P-MEINS(' v_no ')' INTO v_fld.
    CONDENSE v_fld.
    PERFORM bdc_field USING v_fld
    st_item-meins.
    CONCATENATE 'RC29P-POSTP(' v_no ')' INTO v_fld.
    CONDENSE v_fld.
    PERFORM bdc_field USING v_fld
    st_item-postp.
    PERFORM bdc_field USING 'BDC_SUBSCR'
    'SAPLCSDI'.
    v_no = 1.
    ENDLOOP.
    CLEAR v_no.
    PERFORM bdc_field USING 'BDC_OKCODE'
    '=FCBU'.
    CALL TRANSACTION 'CS01' USING t_bdcdata MODE 'A'
    UPDATE 'A' MESSAGES INTO t_bdcmsg.
    REFRESH t_bdcdata.
    CLEAR t_bdcdata.
    ENDLOOP.
    PERFORM fr_format_message.
    Start new screen *
    FORM bdc_dynpro USING program dynpro.
    CLEAR st_bdcdata.
    st_bdcdata-program = program.
    st_bdcdata-dynpro = dynpro.
    st_bdcdata-dynbegin = 'X'.
    APPEND st_bdcdata TO t_bdcdata.
    ENDFORM. "BDC_DYNPRO
    Insert field *
    FORM bdc_field USING fnam fval.
    IF fval space. "NODATA.
    CLEAR st_bdcdata.
    st_bdcdata-fnam = fnam.
    st_bdcdata-fval = fval.
    APPEND st_bdcdata TO t_bdcdata.
    ENDIF.
    ENDFORM. "BDC_FIELD
    FORM sub_validate_txt_type .
    DATA : str1 TYPE localfile,
    str2 TYPE char3.
    SPLIT p_fnam AT '.'
    INTO str1 str2.
    TRANSLATE str2 TO LOWER CASE.
    IF str2 NE 'txt'.
    please enter '.txt' file format
    MESSAGE i001(zmsg).
    LEAVE LIST-PROCESSING.
    ENDIF.
    ENDFORM. "sub_validate_txt_type.
    Regards.

  • Need simple ABAP OO reports, BAPI's and BDC upload using flat file.

    Hello experts,
    I am currently practicing ABAP and I would like to request some example codes for ABAP Objects, BAPIs, BDC's, etc.
    Thanks!

    hi viray,
    check these...
    BAPI'S..
    http://help.sap.com/saphelp_47x200/helpdata/en/e0/9eb2370f9cbe68e10000009b38f8cf/frameset.htm
    http://help.sap.com/saphelp_47x200/helpdata/en/3e/ecf226942511d2ad4b080009b0fb56/frameset.htm
    http://www.sapgenie.com/abap/bapi/index.htm
    Abap Objects
    http://www.sapgenie.com/abap/OO/index.htm
    http://sap.ittoolbox.com/documents/industry-articles/introducing-abap-objects-982
    http://help.sap.com/saphelp_nw04/helpdata/en/ce/b518b6513611d194a50000e8353423/content.htm
    bdc's...
    http://www.sappoint.com/abap/bdcconcept.pdf
    http://wiki.ittoolbox.com/index.php/Topic:ABAP_-_BDC
    http://www.sap-img.com/bdc.htm
    hope these help,
    do reward if it helps,
    priya.
    Message was edited by: Priya

  • Bapis and function modules

    Hi all,
    I need bapis and standard function modules used for shipment change and transportation . could any one of you give me.
    Thanks

    pls try this bapis
    BAPI_OUTB_DELIVERY_CHANGE
    BAPI_SHIPMENT_CHANGE
    it will work

  • CATS BAPI and Functional Module

    The BAPI list given here is used for transferring the data from CATS to HR.
    BAPI_CATIMESHEETMGR_INSERT -To Create Data records into CATS DB
    BAPI_CATIMESHEETMGR_DELETE -To Delete Data records in CATS DB
    BAPI_CATIMESHEETMGR_CHANGE - To change/edit existing Data records in CATS DB
    BAPI_CATIMESHEETRECORD_GETLIST - To Display Data records in CATS DB
    BAPI_CATIMESHEETRECORD_GETLIST Time Sheet: Data Record List
    BAPIEMPLOYEECATS BAPIs for BUS 7025
    BAPI_EECATIMESHEET_GETWORKLIST Time Sheet: Read Worklist
    Can you explain me what is FM for and what role it plays for BAPI.
    thanks
    Sunny

    hi
    BAPI is a function module used in specific cases and they are better
    in those particular ones cause they make many checks, so if you have two
    options: a function module and a BAPI i�d tell you to use a BAPI.
    If you have any other doubts about some BAPIS in particular, be sure to use
    transaction BAPI
    they have great documentation there.
    regards
    kunal

  • Need to know how to check the outbound queue in SAP for data flow into CRM

    Hi Specialist's,
    I have changed an entry in Customer Master Data in Sap r/3 and this change has come fine to CRM system.I checked the inbound BDOC in CRM ( Trn:SMW01) and it has come fine into CRM system.I am also able to see the affected field in CRM with new value.
    I need to know how to check this from SAP side i.e. I have checked the outbound IDOC list (WE02) but could not find the record.
    Is there any other way in SAP that i can check?
    Also please let me know if there is any other way except IDOC in SAP to send data from R/3 to CRM?
    Usefull answers will definitely be rewarded with points .
    Thanks,
    Abhinav.

    Hi Abhinav,
    There are no IDOCs generated in R/3 for replication. R/3 system calls BAPI and Function modules remotely on CRM system which are part of the Adaptors provided for middleware.
    Try to deregister the outbound queues in R/3 (Transaction SMQS) and see if you get an entry in the Outbound Queue (Transaction SMQ1). I have not tried this.
    If you don't get any entry in the outbound queue then definitely there would be some FM at R/3 end which would be calling CRM system remotely.
    <b>Reward points if it helps.</b>
    Regards,
    Amit Mishra

  • I NEED TO KNOW IF IN SAP WE HAVE THESE STANDARD REPORTS FOR PP Division.

    i NEED TO KNOW IF IN SAP WE HAVE THESE STANDARD REPORTS FOR PP Division. OR I NEED TO CREATE BI/ABAP REPORTS
    PLEASE HELP.
    Please tell me how to check in sap these reports exists if not on functional report how to give fields and table name etc.............i am pretty new and i need to submit this work by monday its matter of survivial please please help
    1. lOSS ORDER REPORT as PER GAAP
    2. wWORK IN PROCESS SUMMARY (FIELDS ARE JOB NUMBER,ORDER TYPE,CUSTOMER NAME, NET SELLING PRICE,MATERIAL,MATERIAL OVERHEAD,labor hrs,labor, labor ovehead, total)
    3. 1099 REPORT (VENDOR,VENDOR CODE,DISCRIPTION AND VENDOR AMOUNT)

    If you are collecting your responses outside of Formcentral your forms will continue to work past June. This can be done by email or the Acrobat Pro mechanism. If your data is being collected in a Formscentral response table then it will cease working in July.
    Andrew

  • Need to know of a method / process that can be used to send the same msg to all those appearing in my email listings with the same extension after the "@" sign in their address(es) on my macbook [e.g., with "@gov.ca"; Snow Leopard].

    Need to know of a method / process that can be used to send the same msg to all those appearing in my email listings with the same extension after the "@" sign in their address(es) on my macbook [Snow Leopard].

    If you simply want to send the exact same message to everyone in your address book with emails ending in "@whatever.com", you can do the following:
    Create an email with subject, message and attachments but no addresses
    Open Address Book, All Contacts
    Search in Address Book for @whatever.com
    Select the results and drag them into the To: or Bcc: field of the email. If Bcc: then put your email address in the To: field.
    Send the email
    This will not personalize the emails (such as with "Dear firstname:" at the top of the message) but it will let you send an idential message to everyone who meets your criteria.

  • I have Adobe Pro online monthly subscription. I need to know how to fill in and sign forms already downloaded as PDF's

    I have Adobe Pro online monthly subscription. I need to know how to fill in and sign forms already downloaded as PDF's

    Hi Schoolcoach1,
    Please see the following Help documents:
    Acrobat Help | Filling in PDF forms
    Acrobat Help | Signing PDFs with Adobe EchoSign Electronic Signature
    Please let us know if you have additional questions.
    Best,
    Sara

  • I need to know how I will create a dynamic website using php and mysql

    I need to know how will I create a dynamic website using php and mysql that people could have the abilities of registering in the website, and modify their profile where they can add their pictures and everything. apart from that, they should have the ability to search about other member. hope to here more from you.

    If you are a right-brained creative, and have no previous experience or propensity to be able to understand coding and database "stuff", and/or if your time can be better spent on other skills, I recommend you save your sanity and hire a developer... or at least the first time around. I have been attempting to grasp this for years... and have a library of marked up books to prove my efforts, all while trying to keep up with an ongoing client base that is always cramped. It's a wonder I still have my sanity... then again, I might not be the best person to determine that. Others might question it.
    That said, I still plan to master php... one of these days.

  • I can log into my icloud account but i need to know my iPod security questions and answers.. How can i get them and see them???

    I can log into my icloud account but i need to know my iPod security questions and answers.. How can i get them and see them???

    You need to ask Apple to reset your security questions; ways of contacting them include clicking here and picking a method for your country, phoning AppleCare and asking for the Account Security team, and filling out and submitting this form.
    (97586)

  • HT201472 hello, I did not know my Iphone serial number, i sold  it and I need to know the serial number. Is there any sullotion for this

    I did not know my Iphone serial number, i sold  it and I need to know the serial number. Is there any sullotion for this

    how to find serial number, etc
    http://support.apple.com/kb/HT4061?viewlocale=en_US&locale=en_US

  • How to Create Customer by BAPI or by Function Module

    Hi all,
    I am new to this forum...
    Please can anyone tell me how to Create Customer by BAPI or by Function Module.....?
    I have tried many of the function modules posted in the threads.. but it couldn't help me out...

    > The only official solution is batchinput and idoc (CREMAS).
    Note that when an IDoc exists, it is often possible to call the function module that is just behind it (see WE57 transaction). SAP would not support that direct call, but if you need to contact SAP support about an issue, you can create the IDoc manually and there's no reason that this issue doesn't arise.
    The only difference with the IDocs is that you don't have any IDoc stored in the database, and even no log in database (so you won't be able to see anything in WE02, etc.).
    Note that it is important to know if this function module does a database commit or not: you can look at the BDFG transaction (I assume there's no BAPI related as it is the initial assumption of my post) to see if IDoc packet processing is allowed or not: if packet processing is allowed, there's no database commit in the function module, otherwise there's one.

Maybe you are looking for

  • SAP B1 8.8 client taking long time to connect

    Dear all, We have recently upgraded from SAP B1 2007B to SAP B1 8.8 PL8. SP B1 Client connects very well on server but when trying to connect from client machine it takes more than 10 minutes to connect. We have disabled firewall on server as well as

  • Do I have all the parts to replace my HDD with a new SSD on my Macbook (late 2008)?

    Hey everyone, I am trying to figure out if have all the parts to replace my hdd with a new ssd on my macbook (late 2008 aluminum). I just bought a crucial mx100 SSD and plan on replacing my mac HDD. I have the appropriate screwdrivers, and a bootable

  • Can't Install Plugin in solaris 2.7 ( problem & solution )

    Dear all, I have install Java Plug 1.2 for Solaris/sparc , os is solaris 2.7 and netscape is 4.75 . When start netscape, it shows following error message. ERROR: ld.so.1 :netscape: fatal: /opt/NSCPcom/j2pi//COPYRIGHT: unknown file type Cant load plug

  • Implementing DAO Pattern in ABAP

    This discussion implement DAO pattern asked the question of how to develop a DAO pattern in ABAP but i'd like to go a little deeper. The only answer given suggested the following design pattern: I don't have an coded example here, but isn't it suffic

  • Trigger only after commit

    I should execute some logic every time when some insert, update or delete is happened on table. The only save way to do that is with trigger. But In case there is transaction I would like to execute it outside and after transaction. Is it possible to