Is there any FM/BAPI to create Device Information Record

HI all,
Is there any FM/BAPI to create Device Information Record.
with regards,
Sumanth.

Hi,
I want to install device info record. For this I have found FM "ISU_S_WORKLIST_INSTALL". But I am not able to use it properly. Could you please tell me how to use this FM.
Regards,
Vijay

Similar Messages

  • Bapi to create a condition record

    hi,
    is there any standard bapi for creating ,changing and deleting a pricing record using VK11,VK12.
    any other function module will solve the problem.

    Hi Ajith,
       You can use <b>IDOC approach</b> also for doing teh same solution. Yo get Create/Change/ Delete Option as per indicator passed:
    Refer Code below.
    *&      Form  map_idoc_structure
          Map E1KOMG, E1KONH, E1KONP segment fields
    FORM map_idoc_structure
                  USING fp_condition_table TYPE kotabnr
                        fp_rate            TYPE z_cs_cpp_rate
                        fp_condition_type  TYPE kschl
                        fp_rate_type       TYPE z_cs_file_type.
    *-- Local Data Declaration
      DATA: lw_e1komg TYPE e1komg, "Filter seg. with separated condition key
            lw_e1konh TYPE e1konh, "Data from condition header
            lw_e1konp TYPE e1konp, "Conditions Items
            lv_delete TYPE konp-loevm_ko. " Delete Indicator
    *-- IDoc data internal table
      DATA: i_idoc_data TYPE TABLE OF edidd
                        INITIAL SIZE 0
                        WITH HEADER LINE.
      CLEAR: lw_e1komg,
             lw_e1konh,
             lw_e1konp,
             lv_delete,
             v_segnum,
             w_e1komg,
             v_rate_type.
      REFRESH i_idoc_data.
      v_rate_type = fp_rate_type.
      PERFORM conversion_alpha_input
          USING w_crp_data-kunnr CHANGING w_crp_data-kunnr.
      PERFORM conversion_matn1_input
         USING w_crp_data-matnr CHANGING w_crp_data-matnr.
    E1KOMG: Filter segment with separated condition key
      i_idoc_data-segnam  = 'E1KOMG'.
      lw_e1komg-kvewe     =  c_usage_cond_tab.
      lw_e1komg-kotabnr   =  fp_condition_table.
      lw_e1komg-kappl     =  c_cond_type.
      lw_e1komg-kschl     =  fp_condition_type.
    CONCATENATE p_vkorg p_vtweg p_spart p_hienr p_matnr
      CONCATENATE w_crp_data-vkorg w_crp_data-vtweg
                  w_crp_data-kunnr w_crp_data-matnr
                  INTO lw_e1komg-vakey.
      lw_e1komg-vakey_long = lw_e1komg-vakey.
      lw_e1komg-vkorg      = w_crp_data-vkorg.
      lw_e1komg-vtweg      = w_crp_data-vtweg.
      lw_e1komg-spart      = w_crp_data-spart.
      lw_e1komg-kunnr      = w_crp_data-kunnr.
      lw_e1komg-matnr      = w_crp_data-matnr.
      i_idoc_data-sdata = lw_e1komg.
      APPEND i_idoc_data TO i_idoc_data.
    Segment E1KONH - condition header
      i_idoc_data-segnam  = 'E1KONH'.
      lw_e1konh-datab     = w_crp_data-datab.
      lw_e1konh-datbi     = w_crp_data-datbi.
      lw_e1konh-knuma_pi  = v_promotion.
      lw_e1konh-knuma_ag  = v_sales_deal.
      i_idoc_data-sdata = lw_e1konh.
      APPEND i_idoc_data TO i_idoc_data.
      IF fm_process_type EQ c_pt_dep.
        lv_delete = c_x.              " Deletion Indicator
      ENDIF.
    Segment E1KONP - condition items
      i_idoc_data-segnam = 'E1KONP'.
      lw_e1konp-kschl     = fp_condition_type.
      lw_e1konp-kbetr     = fp_rate.
      lw_e1konp-konwa     = w_crp_data-waers.
      lw_e1konp-kpein     = v_cond_pric.
      lw_e1konp-kmein     = v_cond_unit.
      lw_e1konp-knuma_pi  = v_promotion.
      lw_e1konp-knuma_ag  = v_sales_deal.
      lw_e1konp-loevm_ko  = lv_delete.
      i_idoc_data-sdata = lw_e1konp.
      APPEND i_idoc_data TO i_idoc_data.
    *-- Post Idoc for Creating Pricing Condition
      PERFORM post_idoc
             TABLES i_idoc_data.
    ENDFORM.                    " map_idoc_structure
    *&      Form  post_idoc TABLES i_idoc_data.
          Post Idoc for Creating Pricing Condition
    FORM post_idoc
              TABLES i_idoc_data STRUCTURE edidd.
    *-- Local data declaration
      DATA: lv_komg         LIKE komg,         " Condition Structures
            lv_subrc        LIKE sy-subrc,     " Sy-subrc
            lw_messages     TYPE rsuvm_msg,    " Message Description
            lw_idoc_status  TYPE bdidocstat.   " ALE IDoc status
      DATA: idoc_contrl                        " IDoc Control data
                LIKE edidc OCCURS 1 WITH HEADER LINE.
    *-- Initialize Internal Tables
      CLEAR:  t_konh,
              t_konp,
              t_konm,
              t_konw,
              i_idoc_status,
              t_kona.
      REFRESH: t_konh,
               t_konp,
               t_konm,
               t_konw,
               i_idoc_status,
               t_kona,
               i_messages.
    This code is taken from IDOC_INPUT_COND_A
      PERFORM fill_appl_structures(saplvkoi)
                      TABLES i_idoc_data
                             t_konh
                             t_konp
                             t_konm
                             t_konw
                             i_idoc_status
                             t_kona
                       USING lv_komg
                             lv_subrc
                             idoc_contrl-docnum
                             idoc_contrl-mestyp.
      IF lv_subrc = 0.
    This code is taken from IDOC_INPUT_COND_A
        PERFORM idoc_in_datenbank(saplvkoi)
                  TABLES idoc_contrl
                         t_konh
                         t_konp
                         t_konm
                         t_konw
                         i_idoc_status
                         t_kona
                  USING  lv_komg
                         lv_subrc
                         idoc_contrl-docnum.
        IF lv_subrc = 0.
          COMMIT WORK AND WAIT.
        Endif.
    Reward points if this Helps.
    Manish
    Message was edited by: Manish Kumar

  • Are there any standard BAPIs to change/create/delete quote data on CRM side

    Hello Friends
    I am getting prepared for the XI integration of the data (quotes related) from our application to CRM. Are there any specific BAPIs that you guys are using to create, modify, delete a quote in CRM.
    Any feedback or advice will be highly appreciated.
    Tks
    Ram

    Hi Ram,
    Check these BAPIs:
    BAPI_QUOTATION_CREATEFROMDATA2
    BAPI_CONTRACT_CREATEFROMDATA
    Hope this helps you.
    Regards,
    Chandra Sekhar

  • Is there any standard BAPI available to vendor , customer and G/L ?

    Hi all,
    any standard BAPI available to vendor , customer and G/L? I found BAPI_CUSTOMER_CREATE and BAPI_VENDOR_CREATE but when i traying to execute , then control directly taking to XD01 and XK01 initial screen's .i need to create vendor and customer master data using BAPI(data will come from legacy system).
    Other than these , is there any standard  BAPI available .Pl tell me
    Regard's,
    Pratap.

    Hello Pratap
    For customer the following BAPI is available:
    BAPI_CUSTOMER_CREATEFROMDATA1
    "This fm uses a reference customer as template for the new customer.
    " Using this BAPI you cannot create a new customer from scratch
    Regards
      Uwe

  • Is there any API's to create requisitions?

    Hi
    Is there any API's to create requisitions?
    Appreciated quick reply
    Regards,
    Ramesh.

    I am currently using a Sinetfactory thirdparty package from JScape for the Secure FTP functionality(FTP over SSH). But Sinetfactory package tranfer rate is much slower than the manual sftp(command-line run in linux server for manual ftp using ssh).
    Since it is very slower than ordinary sftp(ftp over ssh), I thought of using other thirdparty FTP package which supports FTP using ssh port. Can anyone please suggest me a thirdparty package which will has the sftp functionality and with better transfer rate.

  • Is there any simple way to create ods files (OpenOffice Calc)?

    Is there any simple way to create ods files (OpenOffice Calc) using ResultSet (from java.sql)?

    Mabe, you can create CVS files (plain text) Ej...
    ====test.cvs=====
    1, "aaa"
    2, "bbb"
    3, "ccc"
    ===============
    Using a "BufferedWriter"

  • IS THERE ANY SUITABLE BAPI'S To Upload data to F-02  ..OR we should use BDC

    HI FRIENDS,
    IS THERE ANY SUITABLE BAPI'S To Upload data to F-02  ..OR we should use BDC..
    WAITING FOR UR REPLY?
    THANKS.
    KIRAN

    Hi,
    I need to change the BDC program which is already written for F-02 in 4.7E.The changes are like I need to add 8 new posting keys, Kindly let me know how I can do it ,if already have the coding for the same please share with me.
    Thanks in advance,
    Jyoti

  • Is there any standard BAPI to update the standard transaction GS03 ?

    Is there any standard BAPI to update the standard transaction GS03 ?
    Moderator message: please do more research before asking, show what you have done yourself when asking.
    [Rules of engagement|http://wiki.sdn.sap.com/wiki/display/HOME/RulesofEngagement]
    [Asking Good Questions in the Forums to get Good Answers|/people/rob.burbank/blog/2010/05/12/asking-good-questions-in-the-forums-to-get-good-answers]
    Edited by: Thomas Zloch on Jun 16, 2011 2:02 PM

    hi,
    I think this link will help you to find that.
    list of all bapis:
    http://www.planetsap.com/LIST_ALL_BAPIs.htm

  • Is there any best Practice to create Local KF than CKF

    Hi All
    Just answer can do or cannot? What are the inconveniences we would face?
    I have requirement to apply some selections and formulas and then create query for every month from JAN-DEC>
    if I do Locally,
    I need to create every Selections and Formulas for every month, right?
    If do as CKF, I just create commonly the CKF and RKF,
    and create every month in the structure.
    is there any  wrong if we create as CKF and RKF??
    But my user say this is not the best practice since we use it only for this query...we dont use for other query..
    so try to do locally..just got ....
    Pls tell which is better way?

    Hi Srikanth,
    Thanks for your response,
    Nope see my requirement doesn't seems like it will not fit to LOCAL FORMULA OR STRUCTURES than using GLOBALLY which you have to create all FORMULAS and  SELECTIONS for every month..
    I create structure, in it create SELECTIONS and FORMULA I create locally.
    But I want to create for all months i.e JAN - DEC and for any year based on USER input..
    But I want to create locally for all SELECTIONS and FORMULAS for all months.
    which is long process.. Also I need to get the data for any year for all months based on user input CALYEAR/MONTH..
    1.CAN YOU provide solutions??
    2. Actually he is another IT consultant *** experience in respective organisation, so when I say why not we create this way which is easier and feasible to use and will you have any issues in reporting performance or any other, if we create CKF than creating locally?

  • Is there any effortless way to create accordion or sliding menu instead of incommodious AS3.0 Classes?

    For a simple accordion menu design in flash we have to writting classes that requires advanced knowledge in writting object oriented as3.0.
    But in javacsript we can make an accordion menu with jquery in just a minute.
    Is there any effortless way to create accordion or sliding menu instead of incommodious AS3.0 Classes?
    I have found classes for this animations that very hard to learn.
    Thanks in advance
    Felicita

    You can probably find a premade AS3 accordian menu that you can adpat fairly easily without having to create all of the AS3 code that plays the role that the jquery end of the code does. Here's one that may be useful (?) http://www.blog.noponies.com/archives/39

  • Is there any talk about adding a device to the ipad so that you can use it as camera like ipad2

    Is there any talk about adding a device to the ipad so that you can use it as camera like ipad2

    James-
    As Jeanne mentioned, it can work as long as the added device is a camera, and you have the iPad Camera Connection Kit.  The kit contains two adapters, one for an SD camera card and one that accepts a USB card adapter or cable from your camera.
    With regard to your basic question, Deggie is correct.  It does NOT work like a built-in camera, so you can't use it for video calls.  You have to take pictures with the external camera and transfer them to the iPad.
    Fred

  • Is there any Standard BAPI to handle  ' Change Parked Documents' .

    Hi,
      Is there any Standard BAPI to handle  ' Change Parked Documents'  or
      Transanction FBV2.
      Please Send reply to My mail id : [email protected]
      Please send ASAP.
    Thanks & Regards.
    Vanitha.

    hi,
    I think this link will help you to find that.
    list of all bapis:
    http://www.planetsap.com/LIST_ALL_BAPIs.htm

  • Is there any Function Module to create SERIAL NUMBER

    Hi All,
         I need to create "SERIAL NUMBER" by passing "Material & Equipment Category ('S' -Always) ".
    Plz Advise me , is there any Function Module to Create  "Serial Number ".
    Thanks in Advance.
    Vyshu.

    hi,
    check this function module
    'NUMBER_GET_NEXT
    Search with  NUMBER_GET_NEXT keyword
    Thanks & REgards

  • 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

  • Hi. Is there any way I can create a filter to see only discussions that I started?

    Hi. Is there any way I can create a filter to see only discussions that I started? I'd like to review questions I've had in the past and the answers to them.
    I recall that an earlier forum UI allowed me to filter on my own discussions. I can't see how to do this with the current UI.
    Thx.
    -Kurt Euler

    If that is possible, you should be able to find it at one of these links
    Jive Help https://forums.adobe.com/docs/DOC-4714
    -or http://docs.jivesoftware.com/jive/7.0/community_user/index.jsp

Maybe you are looking for

  • Smartform in Abap Webdynpro

    Hi Expert, I am new to SmartForm and WDP. I try to follow the below instruction to do, but got lots of error. Could anyone help me on this? http://www.sdn.sap.com/irj/sdn/go/portal/prtroot/docs/library/uuid/f0de1eb8-0b98-2910-7996-8a3c2fcf6785 My sma

  • Adobe reader app crashes every time I try to open documents

    On the latest update (10.3 I think), I have no way of accessing my documents outside of "recents" because the documents button in the top-left corner causes the following message: "Unfortunately, adobe reader has stopped. [Report | Ok]". I don't have

  • In trying to set up icloud  it says account not verified how can i fix this

    When I try to set up my I cloud account it says that account is not verified<how can I fix this ?

  • Oracle 10g (10.2.0.4), BDE Admin, Windows7 (x64)

    Hi, I cant seem to figure this one out. I really need to use this silly combination. 1) Install Oracle 10g (10.2.0.4) Client (RUNTIME INSTALLATION) 2) Install BDE Admin (5.02) to c:\Program Files\Common Files\Borland Shared\BDE (Since BDE will crash

  • 10 Gig distance and Modal Bandwidth on MMF

    I am struggling with a concept and not finding much in the way of answers.  The spec sheets for SFP+ 10 Gigbit Ethernet optics list the maximum cable distance as a funtion of the fiber type (MMF or SMF), Optical Wavelength, Core diameter and Modal Ba