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

Similar Messages

  • 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.

  • 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

  • BAPI for complete details of Process Order including characterstic

    Hi All,
    I need a BAPI for getting complete information of Process order including characterstics and its process instruction. I have got BAPI BAPI_PROCORD_GETDETAIL which returns all the information except order operation characterstics and "characterstics process instructions".
    Is there is any BAPI which can return these 2 details for a given process order.
    Thanks ,
    Abhishek

    Thanks Rajesha for your reply , but here i need Process instruction and its corresponding characterstics for a particular process order.
    Let me explain you the scenario , I have a Process order PO-001 , for PO-001 i have defined 1 operation OP-001 and a phase PH-001.
    For the phase PH-001 i have assigned process instructions PI-001 (You can assign process instructon by selecting a phase and then click on the button Process Instruction below).
    By double clicking on PI-001 you can get process characterstics for that selected PI-001.
    Now i need a BAPI which can return me PI-001 and its corresponding characterstics if i pass PO-001 in that BAPI.
    Thanks & Regards,
    Abhishek
    Edited by: ABHISHEK BAJPAI on Sep 29, 2010 7:30 AM

  • I need a bapi  for material management advance shipping notifications

    i need a bapi  for material management advance shipping notifications  for developing powls which includes below fields and some more fields.
    •     Inbound delivery number
    •     Due date (GR date)
    •     Vendor delivery number
    •     Material
    •     Name of material
    •     Quantity
    •     Vendor
    •     Name of vendor
    thanks and regards,
    jameer.p

    Hi Jameer,
    This is a hard one, my friend. I understand what you are trying to do.. Try BAPI_DELIVERYPROCESSING_EXEC. It is tricky though.
    Moreover you might want to use a FM to fill the IDOC data. something like IDOC_INPUT_**. this might be a better option.
    cheers,
    Hema.

  • 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.

  • I need a bapi  for service order

    i need a bapi for serviceorders  the fields which i required in the output should be 
    GLTRI(Actual finish date),
    FTRMP(Planned release date),
    RMANR(     SD Document Number),
    POSNV_RMA(Item number of the SD document),
    PM_OBJTY,
    ARBPL.

    Dear Jammer,
    This question can be put in ABAP forum. You can also try SD forum. Chances of getting a reply on this query is almost nil in this forum.
    Please let me know in case of any query and keep revisiting this forum.
    Regards,
    Rakesh

  • Need a BAPI for Tcode 'OX19'

    Hi,
      I need a BAPI for Tcode 'OX19' so that the comapny codes for that Controlling area gets updated in the database.
    Regards,
    Deepthi.

    Hi,
    Using the  BAPI "BAPI_COAREA_GET_RELATED_CCODES" , I am able to view the company codes for that Controllling area. I need for Creation of Company codes for the controlling area. can you tell me please.
    Regards,
    deepthi.

  • Bapi for mrp wfich has material quantity as import parameter

    hi to all,
    i need a bapi for mpr run  which has material quantity as import paramaeter so that we can create pr for given material quantity.
    Regards,
    Manoj Rwat.

    HI!
    Try,
    MD_MRP_SINGLE_MAT_REPLAN
    BAPI_ALM_ORDER_MAINTAIN
    hope this will helps you.
    regards,
    Kiran

  • I need a bapi  for workdownstructure elements

    i need a bapi  for workdownstructure elements 
    •     WBS number
    •     WBS descriptions
    •     WBS start date
    •     WBS end date
    •     Status
    thanks and regards,
    jameer.p
    Edited by: Jameer P on Jan 30, 2008 12:59 PM

    Hai.
    It may help you.
    can use WS_DOWNLOAD like this:
    L_T_HEADERS TYPE TABLE OF TEXT40.
    IF SP_LOCAL = 'X'.
    Headings: TEXT-U01 ... TEXT-U28
        DO 28 TIMES.
          CLEAR: L_F_INDEX,L_F_NAME,L_F_HEADERS.
          L_F_INDEX = SY-INDEX.
          CONCATENATE 'TEXT-U' L_F_INDEX INTO L_F_NAME.
          ASSIGN (L_F_NAME) TO <FS_HEADER>.
          L_F_HEADERS = <FS_HEADER>.
          APPEND L_F_HEADERS TO L_T_HEADERS.
        ENDDO.
        CALL FUNCTION 'WS_DOWNLOAD'
             EXPORTING
                  FILENAME                = SP_FILE
                  FILETYPE                = 'DAT'
             TABLES
                  DATA_TAB                = L_T_OUT
                  FIELDNAMES              = L_T_HEADERS
             EXCEPTIONS
                  FILE_OPEN_ERROR         = 1
                  FILE_WRITE_ERROR        = 2
                  INVALID_FILESIZE        = 3
                  INVALID_TYPE            = 4
                  NO_BATCH                = 5
                  UNKNOWN_ERROR           = 6
                  INVALID_TABLE_WIDTH     = 7
                  GUI_REFUSE_FILETRANSFER = 8
                  CUSTOMER_ERROR          = 9
                  OTHERS                  = 10.
        IF SY-SUBRC <> 0.
          MESSAGE ID SY-MSGID TYPE 'I' NUMBER SY-MSGNO
                  WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
          LEAVE PROGRAM.
        ELSE.
          DESCRIBE TABLE L_T_OUT LINES L_F_COUNT.
          MESSAGE I145 WITH L_F_COUNT SP_FILE.
        ENDIF.
    Regards.
    Sowjanya.b.

  • Need FM/BAPI for production order

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

    hi
    check this
    BAPI_ALM_ORDER_GET_DETAIL
    or check from SPRO>Production>Shop Floor Control-->System Modifications->Enhancement in the Adding and Changing of Components
    -ashok

  • 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.

  • Can Audit Vault be used for getting detailed read type information from the siebel database?

    Can Audit Vault be used for getting detailed read type information from the siebel database?

    Kramer wrote:
    saurabh wrote:
    check below cmd to see where archive are generated.
    SQL> archive log list
    And also check the following
    SQL> select flashback_on from v$database;
    Hi
    Here is the out put
    SQL>  select flashback_on from v$database;
    FLASHBACK_ON
    NO
    SQL>  archive log list
    Database log mode              Archive Mode
    Automatic archival             Enabled
    Archive destination            USE_DB_RECOVERY_FILE_DEST
    Oldest online log sequence     11
    Next log sequence to archive   12
    Current log sequence           12
    The flashback is not enabled. But archive log list shows archive destination is specified to use_db_recovery_file_dest.  And I checked the log_archive_dest_10 still empty
    Flashback off or on has nothing to do with it. 

  • Need FM/BAPI to get matdocs and mvt history by material, plant and batch...

    Hello Experts,
    Are there any available FMs or BAPIs to get the material documents and its movement type?
    Just like in transaction MB5B(Stocks on posting date)
    Hope you can help me guys. Thank you and take care!

    As I said, I need an FM or BAPI and not a standard transaction.
    Thanks.

  • VB11 - CREATE MATERIAL DETERMINATION. need a BAPI for this

    i have to develop an inbound interface program to create VB11 - CREATE MATERIAL DETERMINATION.
    Can any one suggest me if there is any BAPI for doing this insted of going to BDC program .
    Regards
    Raadha

    I don't think there will be any BAPI to do the update as material determination is itself dynamic depending upon which determination type you chose from - the key field combination changes accordingly. Just like updating pricing doesn't have any general purpose BAPI.
    I think BDC is the only way out here

Maybe you are looking for

  • Why can't i watch a rent movie on my apple tv while it downloads on my mac computer

    why can't i watch a rent movie on my apple tv while it downloads on my mac computer

  • Why can't I see the applications set in the Excell client

    I can log into the APPSET in Admin console, Also I can loginto the APPSET in MS Excel client. But I can not see the Applications in the APPSET. I have tried every trick on the book for this SAP BPC MS7 version. Any clue will be highly appreciated. Th

  • Oracle SOA Suite 10g and Vista

    Hi All, Is the SOA Suite 10g is avaliable now for Vista. Does the Itanium 654 MB on [http://www.oracle.com/technology/software/products/ias/htdocs/101310.html] under means that this download is for MS Vista. ~Vikram

  • Faulting Application

    Hello, I appear to be having an interesting problem. For some reason, both Flash and Photoshop are crashing when I'm attempting to load them. Flash crashes around the time when it is building the workspace. Photoshop is crashing around when it is ini

  • ITunes Folder on Time Capsule missing after MATCH

      To Start, I will explain my set-up.  I have an Extreme, connected to my Cable Modem, in my Computer-Room, which is hardwired to my primary Mac Pro computer.  I then have the Extreme wirelessly bridged to my Time Capsule, in my Family-Room, which is