Standard BAPI/RFC for in-transit shipments

All experts, I am new to SAP functional area. I am looking for a standard BAPI/RFC that will get me all in-transit shipments. Is it available and if so what is the name of the BAPI ? Or a custom one needs to be written?
Thanks in advance for you help

can u give us the transaction for that
cheers
s.janagar

Similar Messages

  • Standard BAPI/RFC for Search Knowledge Article in Knowledge Management-Interaction Center

    Hi All,
    I am not from SAP CRM, but I am using CRM Web UI to maintain Knowledge articles. Now I want to know where in the backend this data is getting saved. Which table ?
    Also as this is a standard process introduced in CRM 7.0 . I want to know, if standard bapi/ rfc is available for the same. If yes what is the name .
    Regards,
    Tejas Chouhan

    Hi Tejas Chouhan,
    In CRM Technically, Knowledge article is designed based on one order framework with business object category as BUS2000106  - CRM Knowledge Article.CRMD_ORDERADM_H table will give header details of KA (OBJECT_ID field would equal KA number).
    Knowledge Articles in SAP CRM
    Refer 
    1 CL_CRM_QKNOART_RUN_BTIL  & SEARCH method to see code how it is written (standard search for knowledge article) consider all scenario. you can keep external debugger in this method and perform search from Web UI.
    2. CL_CRM_KNOWLEDGE_ARTICLE_UTIL & SEARCH_REPORTING_FRAMEWORK method.
    Hope this is helpful.
    Regards,
    Arjun

  • Standard BAPI/RFC for customer specific pricing

    Hi all,
    We have a requirement for getting the customer specific pricing for a product. .We have few customers who are privelaged of procuring materials at a lesser price than others.We need a procedure or functionality that will pick this discounted price on the product that is raised by the privelaged customer.
    Please let me know if there is any Standard BAPI or RFC for this requirement
    Keerthi

    Hi,
    There is nothing called customer specific pricing in SAP and there is no BAPI to handle pricing for any specific entity.
    These things need to be configured in access sequence, condition tables, condition types etc and you have to configure  pricing in such a way that the pricing elements are common for everybody but depending on the situation, some customer will get materials for lesser price than others by creating condition records as applicable for each customer.
    You have to first configure the pricing procedure.
    Then while maintaining condition records, you have to maintain prices for specific customers where youcan maintain lesser prices. For all others you can maintain normal prices. For example for c.type PR00, you can have two tables in the access sequence. One table may be Sales org/D.C/Div/Customer/Material and the second table can be S.Org/D.C./Div/Material
    Now maintain a condition record like
    5001/00/00/CUSTOMER A/MATERIAL A  Value is 80
    5001/00/00/Material A  Value is 100
    If condition records are maintained like this, the customer A alone will get the material for Rs.80 while all others will get it for Rs.100
    Hope this helps you. If you have specific doubts, pls lemme know.

  • Standard BAPI/RFC for create and create material

    Hi All,
    Can you please let me know what standard RFC/BAPIs can be used to create and change Material Master from Portal/ WebDynrpo for Java.
    Thanks,
    Vamshi

    BAPI_MATERIAL_SAVEDATA

  • BAPI/RFC for Service Complaints Creation in CRM 5.0

    Hi,
    We are working on the Complaints and Returns module in CRM 5.0. We have found the Transaction Code for the same. (CRMD_BUS2000120).
    Not able to find the BAPI/RFC for the same.Let us know if any. Appreciate your comments on the same.
    Thanks,
    Moorthy

    Hi,
    Thanks for the response
    I am not talking about Service Order. I have requirement to create a Service Complaint. For that the transaction is CRMD_BUS2000120. Now I need to find the function modules/RFC available for this requirement.
    Hope it clarifies .
    Even I have found function module called -CRM_COMPLAINT_API_CREATE but not sure right one
    Thanks,
    Moorthy

  • BAPI/RFC FOR MB52

    PLS PROVIDE BAPI/RFC FOR MB52.
    OR
    PLS PROVIDE BAPI/RFC TO READ MARD-LABST.
    PLS HELP I AM NEW TO SAP.
    I tried
    BAPI_MATERIAL_AVAILABILITY
    but it wont provied al stock for some material it provided error
    EAG024No checking group is maintained for product 000000002000181306, plant JGE1 in matl master.
    my requiremts is
    material/plant/sloc/batch/fr_stk kid of table
    <MOVED BY MODERATOR TO THE CORRECT FORUM>
    Edited by: Alvaro Tejada Galindo on Feb 14, 2011 5:23 PM

    Hi Gautam,
    Check the bapi  BAPI_MATERIAL_STOCK_REQ_LIST. it contains various parameters like MATERIAL
    PLANT,MRP_AREA,0PLAN_SCENARIO,SELECTION_RULE,DISPLAY_FILTER,PERIOD_INDICATOR,GET_ITEM_DETAILS
    GET_IND_LINES,GET_TOTAL_LINES,IGNORE_BUFFER,MATERIAL_EVG
    Read the documentation of this Bapi . If you wont get all parameters what you require better to go for a Zbapi. Please tell if require more help on this
    Regards,
    Madhu.

  • Finding FM/BAPI/RFC for Create Inbound Delivery(vl31n).

    Hi all,
    i need for a FM/BAPI/RFC for Create Inbound Delivery(vl31n) or ASN
    where in import Parameter i have to pass -
    *vendor no*
    *PO no*
    *External ID no*
    *Delivery date*
    *TransPlanngDate*
    *BillOfLad*
    *GR/GI Slip*
    in Export i need ASN no and in tables we can use ITEM details.
    Regards,
    Sunil sahoo.

    Hi,
    Check the below link
    [https://forums.sdn.sap.com/click.jspa?searchID=16938983&messageID=5780492]
    Regards,
    Surinder

  • BAPI/RFC for Sales Order or Warehouse Order that retrives VBAK,VBAP,VBEP

    Hi,
       Is there any BAPI/RFC for Sales Order or Warehouse Order that retrives VBAK,VBAP,VBEP and VBPA tables for specified inputs.
       The BAPI or RFC should return the Sales Order details with tables VBAK,VBAP,VBEP and VBPA.
       Rewards if useful.
    Thanks,
    Mich

    Try creating an RFC calling FM: SD_SALES_DOCUMENT_PREFETCH with required details for Header, Item, Schedule and Partners.
    Below code can give you idea in handling the FM.
    PARAMETERS: p_vbeln TYPE vbeln_vl OBLIGATORY.
    CONSTANTS: c_x TYPE char01 VALUE 'X'.
    DATA: st_view TYPE order_view,
          i_vbak_key TYPE TABLE OF sales_key,
          i_vbak TYPE TABLE OF vbak,
          i_vbap TYPE TABLE OF vbapvb,
          i_vbep TYPE TABLE OF vbepvb,
          i_vbpa TYPE TABLE OF vbpavb.
    START-OF-SELECTION.
      MOVE c_x TO : st_view-header,
                    st_view-item,
                    st_view-sdschedule,
                    st_view-partner.
      APPEND p_vbeln TO i_vbak_key.
      CALL FUNCTION 'SD_SALES_DOCUMENT_PREFETCH'
        EXPORTING
          i_sales_view  = st_view
          i_memory_read = 'A'
        TABLES
          i_vbak_keytab = i_vbak_key " List of Sales Orders to extract
          fxvbak        = i_vbak     " Header
          fxvbap        = i_vbap     " Item
          fxvbep        = i_vbep     " Schedule Lines
          fxvbpa        = i_vbpa.    " Partners

  • Remote-Enabled BAPI/RFC for creating "Request Special Payment (SPSP)"

    Is there any Remote-Enabled BAPI/RFC for creating "Request Special Payment (SPSP)" which is one of the Personnel Change Requests under MSS ?
    Thanks.

    closing to post another question.

  • FI-FM : BAPI/RFC for Funds reservation Creation ?

    Hi,
    I was asked to web enable the creation of funds reservation (= web enable what transaction FMX1 does). I have searched for available BAPI's/RFC's for this but I didn't found one. Since I'm not familiar with FI and FI-FM I maybe didn't search well.
    Do BAPI/RFC's exist for creating Funds Reservations ?
    (My only other option is to create a BAPI myself which does a call transaction to FMX1).
    Best Regards,
    Igor Vernelen.

    the problem was an oss note for no BL on GR for EF

  • BAPI/RFC for WIP values

    Hi all,
    I would like to show production order WIP values in an external system dashboard.
    Is any BAPI/RFC/IDoc available to fetch the data from SAP? If not, please let me know corresponding table to view the data in SAP?
    Thanks
    Guru

    In view COVPB you should find WIP and variance information.

  • Need BAPI/RFC for Updating Category field of CRM_DNO_MONITOR  from SAP R/3.

    Hi SAP GURUS!!
    I need to have a new field category in "Create support message"  of the HELP menu in SAP server. This field values needs tobe updated with that of Category in Solution Manager ( CRM_DNO_MONITOR) .We have found a BADI (SBCOS001 ) where we designed the screen for having the new field. FOr updating the value of this field to sol man, is there any bapi or rfc ..
    Thanks in Advance,
    gopa.

    Hi
    Please check the following points.
    1. Please check the settings that you maintained in the table CRMSUBTAB in ECC. You need to have an entry as follows:
    User: CRM
    Object: VENDOR_MAIN
    U/D : DOWNLOAD
    Object Class: VEND ( & not BUPA for this entry)
    Function Module: PI_BP_VENDOR_MAIN_EXTRACT
    The other entry (for upload) has similar but different values. (Refer to the OSS note 883162.)
    2. Check if you have applied any filter settings in CRM for the adapter object VENDOR_MAIN.
    Regards,
    Srini.

  • Bapi or RFC for Scheduled production orders?

    Hi experts,
    I need to extract a list of the Scheduled production orders (for a specific plant)for integration purpose. Does anyone know if there is any BAPI or RFC for this purpose and could anyone tell me which one could be used.
    I noted that a similar topic "Retrieving production orders and material stock out R/3 system" posted Jan 16, 2006 has been discussed but the outcome was only that standard BAPI / RFC should be available for retrieving the production orders but there was no BAPI or RFC mentioned.
    Best regards,
    Niklas

    Hi,
    I found that the following BAPIs can be used with some parameters.
    BAPI_PRODORD_GET_LIST
    BAPI_PRODORD_GET_DETAIL
    Thanks
    Pavan

  • Looking for Standard BAPI's

    Hi All,
    1. If I give Sold-to,should return Payer, Bill-to and Ship-to Party...Can anyone please let me know is there any standard BAPI ?
    2.If I give Sold-to, Should return the Shipping Instruction text and so-on (Go to Sales Area data tab for a customer Trax VD03. Extras / Text. Function)...Is there any BAPI to retrieve the Text?
    Thanks in Advance...I will assgin reward points if anyone gives me the answer
    Thanks,
    Sai

    Thanks for your efforts. This approach will not wotk out for us becasue it gives us n number of records.
    We are looking for another BAPI which will pull-up INCO1 and INCO2(International Shipping Terms), if we pass sold-to, I know that we can retrieve these records from KNVV table but I am looking for standard BAPI.
    If any one can provide me standard Bapi's for any one of my questions, that would be greatful. I will assgin you the reward points.
    Thanks,
    Sai

  • Any standard BAPI for CHARM_CREATE

    Hello Experts,
    I have a scenario wherein the change request has to be created in SOLMAN from an external application. So, I would like to know if there are any standard BAPIs / interfaces for creating a change request in SOLMAN .
    Any pointers in this regard will be highly appreciated.
    Best regards..

    Hi,
    Please check this function module.
    SOCM_CHANGE_REQUEST_CREATE
    This will solve your problem feel free to revert back.
    --Ragu

Maybe you are looking for

  • Can we call main method in another class?

    Hi... can we call main method in another class? If no, please tell me the exact reason why can't we call that....

  • Problem with GTC flatfile recon

    Hi experts, When i run Flatfile recon i get an unparsable error. my date attribtue in xl.defaultDatefomat yyyy/MM/dd but the dates in my flat-file dd/MM/yyyy is there any way i can fix this error? thanks, murli

  • Mac book pro and bigpond email (australia)

    i just got my macbook back as the hard drive decided it did not want to work anymore. since then i have attempted to set up my email account and it just does not work, only one that works is my iCloud email. i would really appreciate some assistance

  • Logical Data Model Vs Physical Data Model

    Hi guys, what is the difference between, logical data model and physical data model.

  • Why rotation when printing to pdf?

    I have a form that when I print to pdf, the resulting pdf is rotated 90*. I have used and created other forms without this problem.