Any function module available for updation of Configuration data

Hi experts,
i want to know the function module which updates the configuration data.Please help me regarding this,its very urgent..I have some configuration data which needs to be updated .This data is present in the item level configuration data..
Please help me ...
Regards,
Nagaraj

Hi Nagaraj
I assume that one of the Sales document(SO/DO/Billing/Shipping,etc) has this custom field YF_ZZZ_STATUS.
If so, this custom field would be available in any one of sales tables (VBAK/VBAP/VBRk/VBRP/LIKP/LIPS, etc)
You have to find out where exactly this field is existing.
If this field is avilable in sales document screen, simply you can write one BDC code to update this field at any one sales userexit.
For example if you want to update this field at the time of saving sales order, then use MV45AFZZ include..there you will find userexit_save_document (FM). There you can write simple BDC code OR direct update query to update particular table.
NOTE: YOU CAN NOT FIND OUT ANY FM TO UPDATE CUSTOM FIELDS (IN CONFIGURATION AND DEVELOPMENT)
Thanks
Bala

Similar Messages

  • Is there any Function module available for GR IR for purchase order

    Hi
    Is there any function module available in SAP to get the list of Goods Received and Invoice Reciept for a purchase order.
    One way to create a custom fuction to fetch the details from MSEG and BKPF.
    Can somebody suggest a better solution.
    Thanks in advance.
    Ruhi Hira

    Which table in BAPI_PO_GETDETAILS exactly has these information ?
    PO_HEADER_TEXTS
    PO_ITEMS
    PO_ITEM_ACCOUNT_ASSIGNMENT
    PO_ITEM_SCHEDULES
    PO_ITEM_CONFIRMATIONS
    PO_ITEM_TEXTS
    PO_ITEM_HISTORY
    PO_ITEM_HISTORY_TOTALS
    PO_ITEM_LIMITS
    PO_ITEM_CONTRACT_LIMITS
    PO_ITEM_SERVICES
    PO_ITEM_SRV_ACCASS_VALUES
    RETURN
    PO_SERVICES_TEXTS
    EXTENSIONOUT
    NFMETALLITMS
    Regards
    Ruhi Hira

  • Any function module available for...

    hi all,
    i need a function module to do a goods receipt for the PO using
    movement type 161,
    movement ind B,
    goodsmvt code '01'.
    i couldnt able to post using BAPI_GOODSMVT_CREATE as iam getting
    'NO GOODS RECEIPT POSSIBLE FOR PO XXXXXXXX XXXXX'.
    So is there any function module other than bapi to do a goodsmvt with my requirements.
    Thanks in advance,
    Prem.

    hi,
    the code i use is,
    loop at gt_final into gs_wa_final.
            gt_item-move_type     = '161'.
            gt_item-entry_uom     = gs_wa_final-meins.
            gt_item-stge_loc        = gs_wa_final-lgort.
            gt_item-entry_qnt      = gs_wa_final-menge.
            gt_item-entry_uom_iso = gs_wa_final-meins.
            gt_header-ref_doc_no                   = gs_wa_final-submi.
            gt_item-base_uom = gs_wa_final-meins.
            gt_header-doc_date                      = gv_last_date.
            gt_header-pstng_date                   = sy-datum.       
            gt_item-ind_propose_quanx           = 'X'.
            gt_item-serialno_auto_numberassignment = 'X'.
            gt_item-material                           = gs_wa_final-matnr.
            gt_item-plant                               = gs_wa_final-werks.
            gt_item-po_number                      = gs_wa_final-ebeln.
            gt_item-po_item                          = gs_wa_final-ebelp.
            gt_item-mvt_ind                          = 'B'.
          append gt_item.
          clear gt_item.
    *call bapi goodsmvt create to do the gr
        set update task local.
        call function 'BAPI_GOODSMVT_CREATE'
          exporting
            goodsmvt_header       = gt_header
            goodsmvt_code         = gt_bapigm_code
          importing
            goodsmvt_headret      = gs_headret
          tables
            goodsmvt_item         = gt_item
            goodsmvt_serialnumber = gt_serialno
            return                = gt_return.
    call bapi_transaction_commit to commit if success
        if gt_return-type <> 'E'.
          call function 'BAPI_TRANSACTION_COMMIT'
            exporting
              wait = 'X'.
        else.
          call function 'BAPI_TRANSACTION_ROLLBACK'.
        endif.
    After executing iam getting an error mess in gt_return[]
    'NO GOODS RECEIPT POSSIBLE FOR PO XXXXXXXXXX XXXXX'
    i cant understand y the function module is returning this error message,
    can any one help me in this issue,
    Thanks in adavance,
    Prem.

  • Is there any delivered BAPI or Functional modules available for MCHB table

    Hi Experts,
    I have a requirement where I have to pull inventory data from MCHB table without custom code. Is there any delivered BAPI or Functional modules available for MCHB table?
    Kindly help!
    Thanks
    Gopal

    Hi,
    Can you check using the Fun Modules
    MG_BATCH_CHECK_STOCK
    VB_READ_BATCH_WITHOUT_STOCK
    VB_BATCH_GET_ALL_STOCKS
    Regards,
    Anji

  • Is there any Android Application available for updating CATS Timesheet?

    Is there any Android Application available for updating CATS Timesheet?
    We need to enable to worldwide associates to clock the time from the cell phone. In case you have any suggestion please comment.

    None that I know of.
    It's more impressive and useful if you write an app and get it published in the App Store.
    That way you can show you aren't just a 'paper MCSD'.

  • RFC enabled function module to insert , update and delete data in a ZTABLE

    friends..
    Is there any standatd RFC enabled function module to insert , update and delete data in a custom database-table (Ztable)?
    if not how can we create it? plz give me the details steps..
    what are the import, export parameters and how to code and process it.. (for example: suppose fields in the table is Emp_Id, Name, Address. I need to develop a RFM which does the 3 tasks, insert update delete in the same RFM)
    Thanks and Regards

    create a f.n mod in se37 and make it rfc enabled.  ur import parameters are Emp_Id, Name, Address and TASK and u can have an export parameter like result which gives the status of the update. based on task u can insert using keyword INSERT....and update using UPDATE or MODIFY and delete using DELETE. these keyword are not compelte with syntax but need to refer the SAP documentation.

  • Function Module/BAPI for updating Document Status.

    Hi Experts,
    Is there any Function Module/BAPI available for updating the document status ?
    Thank You,
    Radhika.

    unresolved!

  • Any function module to retrieve all Payment Run Data

    I am looking for a RFC enabled function module which would retrieve all the data related to Payment Run.( Tables REGUH REGUP, PAYR, BKPF, BSEG)
    Any idea or pointers ?

    Hi
    U can use FM  RH_STRUC_GET to get the pernr in the evaluation path
    data : IT_RESULT_TAB     TYPE STANDARD TABLE OF SWHACTOR .
                CALL FUNCTION 'RH_STRUC_GET'
                  EXPORTING
                    ACT_OTYPE  = C_OTYPE
                    ACT_OBJID  = W_POSIT
                    ACT_WEGID  = C_WEGID (relation B002 like )
                    ACT_BEGDA  = W_BEGDA
                    ACT_ENDDA  = W_BEGDA
                   ACT_TDEPTH = 1 ( depath 1, 2, etc )
                  TABLES
                    RESULT_TAB = IT_RESULT_TAB .
    Nb : Give points if it worths

  • Is there any function Module available?

    Hi,
    Could you please tell me whether the function module is  available for the scenario below.
    If we pass RFC Name to the function module it should return success or failure message for the particular target server maintained in the RFC.
    We need to check with the help of RFC we just need to know whether the particular target server is running fine or not?
    Please help me in this regard.
    Thanks & Regards,
    Swathi

    Hi Swathi,
    Actually there is a program available that can check an RFC destination (regardsless of what type it is). In fact within transaction SM59, behind the "Connection Test" button this report is runned and the results shown on screen.
    I have made a small ABAP objects method to encapsulate this.
    This method has an interface and ABAP code:
    -->INTERFACE:
    import: RFCDEST  TYPE RFCDEST (OPTIONAL) - Destination to test
    change: REACHED  TYPE BOOLEAN            - Is destination active?
    change: DETAILS  TYPE RFCSI              - RFC system info (see FM RFC_SYSTEM_INFO)
    -->ABAP CODE:
    METHOD reach_rfc_destination .
    * Test RFC destination connection (all types)
      DATA:
        loc_rfcsi TYPE rfcsi.
    * Answer is unknown at the start of the method
      CLEAR:
        loc_rfcsi,
        reached.                  " In this way it is always set to GC_FALSE
    * Only if an RFC Destination is supplied
      IF  rfcdest IS SUPPLIED
      AND rfcdest NE space.
    *   Clear memory area before call
    *   so no details about previous RFC test calls do exist
        FREE MEMORY ID '%_rfctest'.
    *   Remote test call
        SUBMIT rsrfctes
          WITH dest = rfcdest AND RETURN.                    "#EC CI_SUBMIT
    *   Collect possible RFC information
        IMPORT rfcsi TO loc_rfcsi FROM MEMORY ID '%_rfctest'.
    *   Reached
        IF loc_rfcsi IS INITIAL.
    *     Answer is not reached
          reached = gc_false.
        ELSE.
    *     Answer is reached
          reached = gc_true.
          details = loc_rfcsi.
        ENDIF.
      ENDIF.
    * Housekeeping
      CLEAR:
        loc_rfcsi,
        sy-subrc.
    ENDMETHOD.
    This will supply you with gc_false (=constant value with space) or with gc_true (=constant value with X).
    When gc_true the destination is OK and reachable.
    Regards,
    Rob.

  • Any function module available to create return order?

    Hi Experts,
    Is there any Fucntion Module to create a return order? In my scenario, I want to make an RFC call to this FM from CRM system and create a return order.
    Is this scenario possbile?
    Waiting for your inputs!
    Thanks and Regards,
    Rohit

    Hi Rohit,
    As we all know that we can create standard orders by using this function module: IDOC_INPUT_ORDERS
    We can as well create returns order. We can copy the above FM into "Z" customize it as per requirements and use the same in RFC call.
    With this i think you can create returns order in the background.
    Hope this helps
    Regards,
    Syed Nasir

  • Function modules etc for Updating condition records

    Hi Guys ,
                   Anybody have any idea on how to update condition records in CRM . I have used CRMXIF_COND_REC_SLIM_SAVE but this only updates product conditions ( condition table SAP004 ) . I want to update condition table SAP012 which is maintained in transaction /SAPCND/GCM .
                   Any ideas ?
    Regards,
    Radha

    Hi Radha,
    Even I am using the FM CRMXIF_COND_REC_SLIM_SAVE   to update conditions in the conditions table SAP004 and SAPSC012 , but for me the conditions are getting updated in table SAPSC012 but not SAP004.
    I want to update using the conditoin record guid and want to
    update the condition rate value.
    Can you please help .
    Thanks,
    Poonam.

  • Are there any relay modules available for Compact Fieldpoint, and if not, what are the alternatives?

    I'm speccing out a Fieldpoint system, and although Compact Fieldpoint has many features that make it superior to Fieldpoint for my application, I'm wondering why no relay modules seem to be available for it.
    The cFP-RLY-420 is referenced in the manual it shares with the FP-RLY-420, and a search in the product section comes up with several pages that aren't viewable, but it doesn't seem to be currently available.
    More importantly, if there are no relay modules available at this time, what would be the alternatives for switching? A small Opto22 backplane wired to a DO module perhaps?

    Mako,
    Several of the more specialized modules in FieldPoint have not yet been released in Compact FieldPoint. However, National Instruments is presently working on releasing most of these traditional FieldPoint module in the future.
    Depending on your application, either the cFP-DO-401 or cFP-DO-410 (which are both providing sourcing outputs) may be a possible alternative. The DO-401 module can sustain up to 2 A per channel, 8 A squared per module whereas the DO-410 can sustain up to 1 A per channel. Please note that these modules only handle low voltage DC.
    Regards,
    Cyril Bouton
    Applications Engineer
    National Instruments
    Cyril Bouton
    Active LabVIEW Developper

  • BAPI/function module to create/update vendor master data

    Hi
       We are on ECC 50 and have a need to update vendor master data through a programatic interface ( non-dialog ) with ABAP. What is a good function module that can be used to create/update vendor master data - I looked at BAPI_VENDOR_CREATE and did not find any input interfaces that can be passed to this BAPI.
    Previous experiences with the right BAPI for this purpose that can be shared is appreciated. <REMOVED BY MODERATOR>
    Edited by: Alvaro Tejada Galindo on Feb 26, 2008 5:58 PM

    Hi Kiran,
    If you want to load the vendor data into sap its better to go with LSMW batch input program.
    object 0040
    method 0001
    program name RFBIKR00
    Program type B
    this would be a good choice. Recently i did the same.

  • Function Module required for getting Value Range data

    I need a function module where in i can get the data from a value range in a domain.
    Message was edited by:
            Gurpreet Singh

    Hi,
    You can use this code to get the Doman's fixed values.
    DATA:  lt_fixed_values     TYPE ddfixvalues,
      CALL METHOD cl_abap_typedescr=>describe_by_name
        EXPORTING
          p_data      = 'Domain_name' " Pass the domain name here
        RECEIVING
          p_descr_ref = lcl_abap_typedescr.
      TRY.
          lcl_abap_elemdescr ?= lcl_abap_typedescr.
        CATCH cx_sy_move_cast_error.
      ENDTRY.
      IF lcl_abap_elemdescr IS BOUND.
        CALL METHOD lcl_abap_elemdescr->get_ddic_fixed_values
          EXPORTING
            p_langu        = sy-langu " Give the language
          RECEIVING
            p_fixed_values = lt_fixed_values " This table will have the fixed values
          EXCEPTIONS
            not_found      = 1
            no_ddic_type   = 2
            OTHERS         = 3.
      ENDIF.
    Regards,
    Sesh

  • Is there any function module for converting text to hyperlink?

    Hello all,
              I am designing an application in BSP wherein the user can enter hypertext values for some
              of the data enteries in the database table. Is there any function module available for converting
              text into hypertext. Eg. if the user enters 'www.mypersonalwp.com' then it should convert this
              text value into a hyperlink.
    Thanks in advance.
    Gurmahima.

    Hi,
    Refer the given below link
    http://help.sap.com/saphelp_erp2004/helpdata/EN/85/ce25c2d7ae11d3b56d006094192fe3/content.htm
    Hope it helps you
    Thanks
    Arun Kayal

Maybe you are looking for

  • IOS 8 Photo Sharing not available

    After updating to iOS 8 Photo Sharing is not available on some iPads 4s while it is on others. I have checked setting to make sure Photo Sharing is turned on. On one iPad 4 running iOS 8.0 all is working fine. Under iCloud > Photos > I see iCloud Pho

  • How can I find the element with the closest value to a calculated "target value" in a 1D array?

    Hello all, may be the following question is very simple, but I am relatively new in labview and it would be great if somebody could help me: I have a acquaried 1D array of data-points. Now, I have to find the element in this array which value is the

  • Bridge doesn't open

    Bridge just installed says "the operation could not be completed " and I'm screwed with this product!!!

  • How to assign a method from another class to dropDown processValueChange

    Hi Thank you for reading my post. in normal way we use same backing bean for methods of components and our pages. now i want to set the method that called after a dropDown value changed to another claas method. for example if my page name is messages

  • CRVS2010 Beta - WPF Viewer and ReportSource

    I have been using the ReportSource from the viewer pre 2010 of visual studio.  Now that i upgraded and using the new crystal reports the ReportSource doesnt seem to be included with the WPF Viewer.  How do i bind my ReportDocument to the viewer.  I'm