FM / BAPI for get component overview

Hi all
Let me know FM / BAPI for get component overview based on production order?

Could you please tell us which was the FM? It should be useful for other people -;)
Greetings,
Blag.

Similar Messages

  • What's the bapi for getting document details ?

    hi,
    i'm trying to do F-22 things through BAPI, but there's one field in some screen that i can't find relative field in any structure of BAPI para., so i tried to get the details of the document created by F-22 to find where the field i'm looking for is stroed.
    so would you please tell me the bapi for getting document info.?
    thanks!

    Hi,
    Have you solved your problem?
    If not:
    Have you tried to debug your application and see what you have in your object just after doing GetByKey?
    The GetByKey method returns true if it founds the object, false if the key does not exist.
    In the DI Help File it is specified the key for a payment is the DocEntry...
    Regards
    Trinidad.

  • BAPI for getting contract details

    Hi,
    I need a BAPI for getting contract details. Please let me know if there is any such BAPI.
    Regards,

    hi,
    Check this FM FI_DOCUMENT_READ

  • SAP BAPI to get Component of any SAP Transaction

    Dear All,
    I Want to get the Component Id of any given SAP Transaction Code, with the help of some SAP RFC.
    I tried to get the Component, I got it too but I need some SAP BAPI to do this task.
    Some details are available over here,
    Component of any SAP Transaction
    Please Help.

    Hi Cvrian,
    There is no BAPI for this but there are some RFC functions to get what you want (since they are not BAPIs they may change without notice but probably won't).
    First get the transaction dev class info with RFC AKB_GET_TADIR. 
    For example if you give it OBJECT_TYPE = TRAN  and NAME = SU01 you will get the dev class info for transaction SU01. 
    The dev class info includes a component (in this example HLB0100102).  Now call RFC RH_GET_APPLICATION_COMPONENTS to get the list of component to map it to the human-readable component (in this example BC-SEC-USR-ADM). 
    Hope that solves your requirement.  This is not really a SolMan question but I wanted to be helpful

  • Function module or BAPI for getting all the Idoc numbers of a sales order

    Hi Folks,
    Is there any function module or BAPI exists for getting all the Idoc numbers which are generated for a Sales order.
    Thanks in advance.
    Regards,
    Sarath.....

    Hi Sarath,
    try this function module...
    BAPI_IDOCAPPL_DISPLAY
    Regards,
    Prabhudas

  • RFC / BAPI for getting Directly Subordinate Employees

    Hi Experts,
    I have a simple query. Do we have any standard RFC or BAPI in ABAP which will take the pernr of Manager as input and return list of all subordinate employees.
    In fact, I am developing one MSS report. In this report, I have to display directly subordinate employees of the manager.
    If standard RFC or BAPI is not available, then kindly let me know how to know the directly subordinate employees of a manager.
    Please help.
    Regards,
    Gary

    Hi Bernd,
    I followed the below mentioned steps:
    1) Read orgeh from pa0001
    2) Passed following parameters in RH_STRUC_GET
    ACT_OTYPE      O
    ACT_OBJID        value obtained from orgeh-pa0001
    ACT_WEGID      o-o-s-p
    ACT_INT_FLAG 
    ACT_PLVAR       01
    ACT_BEGDA       26.04.2011
    ACT_ENDDA       26.04.2011
    ACT_TDEPTH      5
    ACT_TFLAG       x
    ACT_VFLAG       x
    AUTHORITY_CHECK     x
    TEXT_BUFFER_FILL
    BUFFER_MODE
    The RFC is returing 2118 records. The Manager have only 13-14 direct report. I changed the value of act_tdepth to 3 and 4. However the RFC is still giving wrong no of records.
    I am wondering why SAP does not have a standard RFC for getting direct reports. This is a very common functionality needed for any MSS development/
    Regards.
    Gary

  • BAPI for getting Equipment and Resources for a WORK CENTER

    Hi All,
    I have a requirement where i need to get all the equipment list for a given work center. So its Interface should be like
    Input -- Work center
    Output -- Table filled with Equipment list
                   Table filled with Resource(Person) list
    Please let me know if i need to provide other additional information also.
    Thanks ,
    Abhishek

    Hello,
    I think What you providing input is right.Just would like know how will you get Person Responsible out put list??
    Please Use The table ITOB to fetch the Equipment List according to Work Center as Input.
    OBJID=Put work center ID in CRHD Table you will get the OBJID then you have use the OBJID in table ITOB for  getting the equipment data.
    Regards,
    Rakesh
    Edited by: RAKESH ASHOK MANE on Oct 1, 2010 9:13 AM
    Edited by: RAKESH ASHOK MANE on Oct 1, 2010 1:20 PM

  • Bapi for getting openitems with in the date range

    Hi experts,
                     Can anybody suggest me or is there any bapi for calculating balances for vendor with in the given date range.
    Thanks in advance,
    Regards,
    Murali Krishna T

    Hi,
    Please check
    BAPI_AP_ACC_GETBALANCEDITEMS Vendor Account Clearing Transactions in a given Period
    BAPI_AP_ACC_GETCURRENTBALANCE Vendor Account Closing Balance in Current Fiscal Year
    BAPI_AP_ACC_GETKEYDATEBALANCE Vendor Account Balance at Key Date
    BAPI_AP_ACC_GETPERIODBALANCES Posting Period Balances per Vendor Account in Current Fiscal Year
    Regards
    Hiren K.Chitalia

  • BAPI for Getting details of outbound delivery or VL03N

    Hi,
    Can any one tell me whether there is a BAPI for display of outbound delivery.
    Can any one help me?
    thanks.

    Hi,
    Why do you need BAPI for displaying the delivery?
    Below 2 lines of code is enough.
    SET PARAMETER ID 'VL' FIELD 'delivery number'.
    CALL TRANSACTION 'VL03N' AND SKIP FIRST SCREEN.
    Thanks,
    Vinod.

  • Need of bapi for getting details of material strage locations

    hi all,
    i need one bapi which gives details of for how many storage locations the material has been extended for particular plant..

    hi
    this is a sample bapi for getdetails.
    DATA : P0008 LIKE P0008.
    DATA : ONDATE TYPE SY-DATUM.
    SELECT SINGLE * FROM PA0008
    INTO CORRESPONDING FIELDS OF P0008
    WHERE PERNR = ITAB-PERNR
    AND BEGDA <= ONDATE
    AND ENDDA >= ONDATE.
    DATA : WAGETYPES LIKE BAPIP0008P OCCURS 0 WITH HEADER LINE.
    CALL FUNCTION 'BAPI_BASICPAY_GETDETAIL'
    EXPORTING
    EMPLOYEENUMBER = PERNR
    SUBTYPE = P0008-SUBTY
    OBJECTID = P0008-OBJPS
    LOCKINDICATOR = P0008-SPRPS
    VALIDITYBEGIN = P0008-BEGDA
    VALIDITYEND = P0008-ENDDA
    RECORDNUMBER = P0008-SEQNR
    TABLES
    WAGETYPES = WAGETYPES.
    regards
    sravani yendru

  • BAPI for get info for technical objects

    Hi experts!
    I need you help... I'm lookin for a FM or BAPI because I need to get info for a functional location.
    I wish this FM or BAPI exporting me all info of functional location; characteristics, equipments....
    could you help me?
    thank you
    regards

    Hi, try some of these function modules:
    AIP2_TPLNR_GETDETAIL
    FUNC_LOCATION_READ
    INSTALLED_EQMTS_ON_LOCATION
    EQUIPMENT_READ
    ALM_ME_EQUIPMENT_GETDETAIL
    AIP2_TPLNR_GETDETAIL
    Rgds
    JP

  • BAPI for get last few month's stock of material

    hi gurus,
    From T-code mc.9, we can see the last few month stock of material. I want a BAPI that can help me to get a gata for last few months.
    Anybody has an idea.
    regards
    Nirdesh

    HI,
    Refer to the link.
    RFC bapi function to get stock quantity
    This Might Help.
    Regards
    Sumit Agarwal

  • Bapi for getting activity cost

    hi experts,
    is there a bapi that can get network or activity costs,need your help,please
    best regards
    zlf
    Moderator message: please search for available answers before asking.
    Edited by: Thomas Zloch on Nov 6, 2010 9:44 AM

    Hi Ebrahime,
    You can have a look at MARA, MARC, MARD and MBEW..
    MBEW-VERPR ==> Moving Average Price
    MBEW-LBKUM ==> Total Stock
    Hope it will solve your problem..
    Thanks & Regards
    ilesh 24x7
    ilesh Nandaniya

  • BAPI for Getting Project Profiles in Project System

    hi,
         Can any 1 tell me the BAPI to invoke to get project profiles from project system.
    Thanks,
    Debashish Sarkar

    see if this thread is of any help
    Re: File Inputfield - ABAP functions to store files?

  • Need a bapi for change component in CO02

    hi!
    i need to change  mass old material in production order(CO02) .
    so i need a bapi or FM to do it but i can't find it!
    thank you very much!

    Hi,
    Looks like we might not have the one...and you might need to go with BDC.....Check in Txn BAPI also.
    Refer:
    http://abaplog.wordpress.com/2007/10/10/navigating-component-screen-of-co02-with-bdc/
    http://abaplog.wordpress.com/2007/10/10/navigating-component-screen-of-co02-with-bdc/

Maybe you are looking for

  • Is Import to DRM by action script the only way to build hierarchies?

    Hi, If I am getting by source file as a big generation wise excel format and even properties in excel sheet with large number of custom property field values. Is making a Import action script out of the excel to load to DRM is the only way, or do we

  • 24" 2008 iMac with busted video card, advice needed.

    I have a 2008 24" iMac in which the video card is busted. The machine will turn on, get to the log in screen with no issues, however there is absolutely no video output to the screen. I have attempted connecting it to an external monitor using mini D

  • 3D graph how to get axis real ratio

    Hi all, what I am trying to accomplish is that if I have x axis that represents lets say 15um and y axis also representing 15um plus z axis representing 5um to see the real-life ratio between these axis. So the size of the z axis would be 1/3 of the

  • Change names from ECR/ECO system status screen (cc01, cc02)

    Hi all, I’m working with ECM main screen (CC01, CC02…) and the names assigned in the Standard process are not meeting tour needs and some steps are missing in order to cover all the specifications. If in a easy way I could change the name of the syst

  • Drill down in report

    I am looking to add some drill down functionality in one of my reports. Does anyone have an references (books, tutorials, or otherwise) that could provide an example. I'm running Reports 9i. TIA.