BAPI for the Tcode Xk03

Hi
What is the BAPI for the Tcode XK03
Regards
saba

Hi  All
Thanks .
In Xk03 transaction the screen field vendor has input help. If  I choose vendor by material tab in input help and enter material id then i get vendor id automatically ...
I need BAPI for that..
In short I need BAPI that takes input material id and returns vendor details
Regards
Saba

Similar Messages

  • BAPI for o4f1 tcode

    hi all,
            I am working on the bdc for tcode o4f1 belongs to OIL domain.
    Facing the problem while uploading the data into table controls.
    Can anyone suggest the BAPI for the tcode o4f1?

    T.code ORF1 is maintenence view for the view V_TVST_RF. This view contains more than one table in it. I dont think there would be BAPI available to update data into this view. Please go to transaction se93 and view the details of this transaction. This transaction calls SM30 with the viewname as parameter.
    Thanks,
    LK.

  • Bapi for the transaction FBRA, FB08, FB01 anf FD02

    hi,
    can any one please help me with BAPI for the following transaction?
    FBRA - reset cleared items
    FB08 - reversal of the documents
    FB01 - post documents
    FD02 - change customer.
    regards kriti

    Hi
    Copy the below  program in se38 and execute the program and along with the transaction code you need to specify the program name to obtain the program name all you have to do is execute the t-code and go to system--> status and copy the program name from the screen and paste it in the above program.
    tables : tstc,
             tadir,
             modsapt,
             modact,
             trdir,
             tfdir,
             enlfdir,
             sxs_attrt ,
             tstct.
    data :
       jtab like tadir occurs 0 with header line.
    data : field1(30).
    data : v_devclass like tadir-devclass.
    parameters : p_tcode like tstc-tcode,
    p_pgmna like tstc-pgmna .
    data wa_tadir type tadir.
    start-of-selection.
      if not p_tcode is initial.
        select single * from tstc where tcode eq p_tcode.
      elseif not p_pgmna is initial.
        tstc-pgmna = p_pgmna.
      endif.
      if sy-subrc eq 0.
        select single * from tadir
        where pgmid = 'R3TR'
        and object = 'PROG'
        and obj_name = tstc-pgmna.
        move : tadir-devclass to v_devclass.
        if sy-subrc ne 0.
          select single * from trdir
          where name = tstc-pgmna.
          if trdir-subc eq 'F'.
            select single * from tfdir
            where pname = tstc-pgmna.
            select single * from enlfdir
            where funcname = tfdir-funcname.
            select single * from tadir
            where pgmid = 'R3TR'
            and object = 'FUGR'
            and obj_name eq enlfdir-area.
            move : tadir-devclass to v_devclass.
          endif.
        endif.
        select * from tadir into table jtab
        where pgmid = 'R3TR'
        and object in ('SMOD', 'SXSD')
        and devclass = v_devclass.
        select single * from tstct
        where sprsl eq sy-langu
        and tcode eq p_tcode.
        format color col_positive intensified off.
        write:/(19) 'Transaction Code - ',
        20(20) p_tcode,
        45(50) tstct-ttext.
        skip.
        if not jtab[] is initial.
          write:/(105) sy-uline.
          format color col_heading intensified on.
          * sorting the internal table
       sort jtab by object.
          data : wf_txt(60) type c,
          wf_smod type i ,
          wf_badi type i ,
          wf_object2(30) type c.
          clear : wf_smod, wf_badi , wf_object2.
          * get the total smod.
          loop at jtab into wa_tadir.
            at first.
              format color col_heading intensified on.
              write:/1 sy-vline,
              2 'Enhancement/ Business Add-in',
              41 sy-vline ,
              42 'Description',
              105 sy-vline.
              write:/(105) sy-uline.
            endat.
            clear wf_txt.
            at new object.
              if wa_tadir-object = 'SMOD'.
                wf_object2 = 'Enhancement' .
              elseif wa_tadir-object = 'SXSD'.
                wf_object2 = ' Business Add-in'.
              endif.
              format color col_group intensified on.
              write:/1 sy-vline,
              2 wf_object2,
              105 sy-vline.
            endat.
            case wa_tadir-object.
              when 'SMOD'.
                wf_smod = wf_smod + 1.
                select single modtext into wf_txt
                from modsapt
                where sprsl = sy-langu
                and name = wa_tadir-obj_name.
                format color col_normal intensified off.
              when 'SXSD'.
                * for badis
             wf_badi = wf_badi + 1 .
                select single text into wf_txt
                from sxs_attrt
                where sprsl = sy-langu
                and exit_name = wa_tadir-obj_name.
                format color col_normal intensified on.
            endcase.
            write:/1 sy-vline,
            2 wa_tadir-obj_name hotspot on,
            41 sy-vline ,
            42 wf_txt,
            105 sy-vline.
            at end of object.
              write : /(105) sy-uline.
            endat.
          endloop.
          write:/(105) sy-uline.
          skip.
          format color col_total intensified on.
          write:/ 'No.of Exits:' , wf_smod.
          write:/ 'No.of BADis:' , wf_badi.
        else.
          format color col_negative intensified on.
          write:/(105) 'No userexits or BADis exist'.
        endif.
      else.
        format color col_negative intensified on.
        write:/(105) 'Transaction does not exist'.
      endif.
    at line-selection.
      data : wf_object type tadir-object.
      clear wf_object.
      get cursor field field1.
      check field1(8) eq 'WA_TADIR'.
      read table jtab with key obj_name = sy-lisel+1(20).
      move jtab-object to wf_object.
      case wf_object.
        when 'SMOD'.
          set parameter id 'MON' field sy-lisel+1(10).
          call transaction 'SMOD' and skip first screen.
        when 'SXSD'.
          set parameter id 'EXN' field sy-lisel+1(20).
          call transaction 'SE18' and skip first screen.
      endcase.
    Regards
    Pavan

  • How can I find a bapi for perticular tcode?

    hi,
    How can I find a bapi for perticular tcode?
    Thank you
    ASHOK KUMAR

    HI Ashok
    If you mean that you need to know what BAPI's a particular tranx uses, which I can only assume that's what you mean, then you should access the code behind the transaction and search for 'CALL'. That normally is the standard method that think that most people use. 
    Suppose you want to find the bapi for creating a sales order, you usually use transaction VA01 for this. 
    <b>1. Find out the package of the transaction.</b> 
    Start Va01 go to system --> status. 
    Double click on transaction 
    Package is VA 
    Open this package in SE80 
    Open business engineering-->Business object types 
    Find the BO which sounds the most appropriate 
    I would suggest BUS2032 Sales Order 
    Double click. 
    Open methods. 
    Find the released method with from data or something similar in the name 
    , Createfromdat2 
    Position the cursor in it and click the program button 
    Scroll down to find the bapi used in this method 
    With this way you can also find out programs and FM's 
    <b>2. Start va01 go to system-->status </b>
    Double click transaction VA01 
    Double click on package 
    Read the application component. (this is SD-SLS Sales) 
    Then open the transaction BAPI 
    Sales and distribution>Sales>sales order 
    createfromdat2 
    Regards
    Preeti
    <b>
    Please reward for useful reply</b>

  • Is there any BAPI for QE51 Tcode?

    Is there any BAPI for QE51 Tcode?

    Hi,
    I think there is no Bapi for this QE51.
    Just check the fun Modules:
    IEQCM_WORKLIST_CHECK
    IEQCM_WORKLIST_REALIZE
    IEQCM_WORKLIST_CONFIRM_STEP2
    IEQCM_WORKLIST_DELETE
    IEQCM_WORKLIST_GET_DETAIL
    IEQCM_WORKLIST_GET_LIST
    IEQCM_WORKLIST_SAVE
    IEQCM_WORKLIST_UPDATE_MODULE
    Regards,
    Anji

  • FM or BAPI for AIAB Tcode

    Hi All,
    I have a requirement to automatate AUC settlement Process (AIAB). I have done recording for AIAB. but second screen for AIAB tcode is ALV grid. This screen does not capture in recording due to which I cannot proceed for BDC.
    Can any one help me with FM or BAPI for AIAB tcode.
    Regards,
    Sheetal.

    Hi,
    Search for functions with K_SETTLEMENT*
    The specified transaction uses K_SETTLEMENT_RULE_CALL,,K_SETTLEMENT_RULE_SAVE & ANEK_UPDATE_BUREG
    So when further searched for the functions this [link|http://www.sapfans.com/forums/viewtopic.php?f=7&t=349855] was found. May be it will help you.
    Kesav

  • BAPi for IK11 Tcode

    hai friends,
                can anyone  tell  BAPIS available for IK11 tcode.
                 Thanks in advance

    hi
    try out the procedure to find the bapi for a tcode
    Suppose you want to find the bapi for creating a sales order, you usually use transaction VA01 for this.
    1. Find out the package of the transaction.
    Start Va01 go to system --> status.
    Double click on transaction
    Package is VA
    Open this package in SE80
    Open business engineering-->Business object types
    Find the BO which sounds the most appropriate
    I would suggest BUS2032 Sales Order
    Double click.
    Open methods.
    Find the released method with from data or something similar in the name
    , Createfromdat2
    Position the cursor in it and click the program button
    Scroll down to find the bapi used in this method
    With this way you can also find out programs and FM's
    2. Start va01 go to system-->status
    Double click transaction VA01
    Double click on package
    Read the application component. (this is SD-SLS Sales)
    Then open the transaction BAPI
    Sales and distribution>Sales>sales order
    createfromdat2

  • BAPI for FV60 tcode

    Hi,
    Can somebody give the BAPI for FV60 tcode.
    Also, can you please confirm that it has all functionalities.
    Thanks in advance.
    Regards,
    Arun Mohan

    Hi,
    BAPI_INCOMINGINVOICE_PARK, This replicate MIR7 functionality. TCode FV60 for parking FI docs hover doesn;t have an associated BAPI.
    SAP does have a BAPI for Parking Documents under MM. At least it does for Invoices and related documents, Check out BAPI_INCOMINGINVOICE_PARK and the entire list of BAPIs under:
    Material Management > Purchase Order > Incoming Invoice
    It does not, however provide any BAPIs (as I know) under FI (corresponding to transactions FV60 etc).
    However, The Fv60 calls POST_DOCUMENT function module to post the document.Take a look at the FM
    Regards
    Sudheer

  • BAPI for MC62 tcode - change planing hierarchy.

    Hi All,
    Can anybody tell me the BAPI for MC62 tcode - change planing hierarchy.
    It will be greatful if you send a sample code also.
    Thanks,
    Usha.P

    It is better if u can raise this issue in SCM-PP forum

  • Display access for the tcode SCC4

    Hi all,
    I want only the display access for the tcode SCC4. In which authorization object I can do this.
    Regards,
    R.Suganya

    Good Afternoon yes you can goto transaction SU24 insert transaction SCC4 and execute, click on display indicator, and you will see the object S_TABU_DIS assign activity value (03) to your role for this object which has that transaction SCC4 assigned to it. Also make sure that no other roles for that user has this object other wise the values will overwrite it.
    Make sure you have locked transaction code OY24 as its a duplicate of SCC4.
    Hope this helps
    Edited by: nadim razaq on Sep 17, 2008 4:13 PM

  • BAPI for FB50 tcode

    hi all,
    Can any body please give me report using BDC or BAPI for FB50 Tcode.......
    Regards,
    Imran

    hi
    List of all BAPIs
    http://www.planetsap.com/LIST_ALL_BAPIs.htm
    http://www.sappoint.com/abap/bapiintro.pdf
    http://www.sappoint.com/abap/bapiprg.pdf
    http://www.sappoint.com/abap/bapiactx.pdf
    http://www.sappoint.com/abap/bapilst.pdf
    http://www.sappoint.com/abap/bapiexer.pdf
    http://service.sap.com/ale
    http://service.sap.com/bapi
    http://www.geocities.com/mpioud/Abap_programs.html
    http://www.sapdevelopment.co.uk/reporting/reportinghome.htm
    regards
    ravish
    <b>plz dont forget to reward points if helpful</b>

  • Problem in uploading data for the Tcode CA02

    Hi,
    I am trying to upload the data for the Tcode ca02  and i am facing a problem i.e. the uploading for the for the 18th  inspection characterstic is not able to being uploaded. I had checked the code of it  and the logic is there.
    It was previously uploading the data for it,but iit is not doing now. I had cheked the program of the screen also the fields are also present..

    would u plz send code.so i can check

  • To make the User group Filed mandatory for the Tcode SU01

    Hi Gurus,
    I need to make the 'User Group' Filed mandatory for the Tcode  'SU01'.
    I know we can do it using Transaction variant.
    But i do not want to create a new custom Tcode (e.g ZSU01) for the same.
    I understand we have a User Exit  'SUSR0001' for the Tcode SU01.
    Can we use this to make the User Group field mandatory.
    Or is there is some alternative way to do this ?
    Please advice.
    Thanks in Advance.
    Regards,
    Anubhav Mishra

    Hi Anubhav Mishra,
    > I know we can do it using Transaction variant.
    > But i do not want to create a new custom Tcode (e.g ZSU01) for the same.
    You don't need to create a custom Tcode to assign a transaction variant, just declare it as being a "standard variant" (in the SHD0 transaction too), and you'll make it assigned automatically to SU01 when this last is started.
    BR
    Sandra

  • Output type for the tcode f.27

    Hi All,
    Can any body please suggest what is the standard output type for the tcode f.27(Customer Statements).
    Thanks in advance,
    Nagendra

    Hi Brad,
    Thanks for reply.
    My requirement is to get the out put of f.27 in pdf format in french or english.
    Please let me know is there any FM and how to start work on this issue.
    Thanks in advance,
    Nagendra

  • Related BAPIs for the Infotypes

    Dear Friends ,
                         I have got an issue to post the following details to external system  Can anyone please provide me the related BAPIs for the following Infotypes.
    Infotype 02 - Personel details
    Infotype 06 - Adress details
    Infotype 09 - Bank details
    Infotype 33 - Statistics
    Infotype 21 - Family details
    Infotype 08 - Basic Pay
    Infotype 28 - Internal Medical Service
    Infotype 22 - Education details
    Regards,
    Gopi.

    Hi,
    System can work even if target system not always online. The IDoc will be created and sendingcontinue  once the system has coneected to other system
    System can work that target system always online and active then only it interacts both system  use bapi. It will be disadvantage of bapi
    The tabe TBDBA stores the relavant message type, IDOC type, OUtbound function module,inbound module that are generated as part of the ALE BAPI interface for a particular Business object method
    Edited by: sekharch on Jan 9, 2011 4:17 PM

Maybe you are looking for

  • Java permission errors

    I'm running loadjava logged in as sys and I keep running into errors creating : class org/joda/time/tz/DateTimeZoneBuilder$OfYear loading : class org/joda/time/tz/DateTimeZoneBuilder$OfYear Error while creating class org/joda/time/tz/DateTimeZoneBuil

  • Mail password suddenly rejected

    Hello, For reasons unknown, after having my email delivered all morning, I came back from an errand and the Apple mail icon was bouncing. It stated essentially that the server rejected my password and to re-enter the password. That accomplished nothi

  • Losing my mind

    OK gang... I know I need to replace my WDC WD2500JS-40MVB1, which is failing. Is this a 2.5" SATA drive ? What specs do I need to ensure are on the replacement drive so that it will function in my computer ? 2.1 GHz PowerPC G5 Thanks Frank

  • SSF - verify digital signatures in C ( or other Microsoft language )

    Hi Experts, Could you please tell me where to find examples of / information on verifying a digita signature from SAP externally using C ( or other microsoft language ). The SSF Progrsammers Guide refers to header files such as ssfxxlib.h and a c pro

  • Can't create 4/3 ratio movies anymore!

    Am I missing something? It appears that this new iMovie (v10) forces you to create widescreen only projects. Gone is the 4/3 option (alongside with the number of frames per second) I have tons of home movies transfered from tapes (I am sure plenty of