Bapi upload of service pr data

Hi Experts,
I am new to bapi and am uploading service pr data using bapi while updating program is activated but data is not updating, in debugging it comes errors like this,
  LPR0000002 instance of object type purchase requisation has been created.external reference #1,
  LPR0000002Please enter material number or account assignment category,
  LPR0000002Item category  not allowed with document type ZSER,
  LPR0000002Please enter document number and item together.
i tried in many ways but still its coming can you help me in this way.
Thnaks,

Hi Joe,
I am not using Service Charge Settlement, but I had a look in RE-FX course book and I found the following info:
     You use the participation group to group together rental objects participating in a service charge settlement. You can use the participation group as a reference for the service charge settlement and address each group of rental objects individually.
     The participation group is a group of rental objects that participate in a particular settlement.
     Example: Charges for water are only relevant for the apartments. You define a participation group containing just these rental objects.
     The following objects can be assigned to participation groups:
     Rental objects
     Business entities
     Buildings
     Property
     Participation groups
     If objects containing rental objects are assigned, these rental objects are automatically assigned to the participation group. This means that if a building is assigned to the participation group, all the rental objects contained in it are also automatically assigned.
     The participation group specifies if the rental object participates in service charge settlement. All rental objects that are assigned to a participation group participate in the distribution of costs.
     If there is no occupancy contract for a rental object, then the costs are posted either to the rental object, or to the cost center for vacancy costs (if it is entered in the posting parameters).
     If there is an occupancy contract for the rental object, then the costs are automatically passed on to the tenant.
Have you created such participation groups and assigned them to your RE objects?
Hope this helps
KR,
Severina

Similar Messages

  • I am unable to upload the customer master data using BAPI.?

    Hi Guru's,
    i am unable to upload the customer master data using BAPI.(BAPI_CUSTOMER_CREATEFROMDATA1)
    Please guide me how upload the data...
    Thanks in iadvance
    Srinivas...

    Hello Srinivas
    This BAPI does not allow to create a new customer from scratch but only to copy an existing customer to a new one and change its address data.
    The reference customer has to be provided using IMPORTING parameter PI_COPYREFERENCE. See also the BAPI documentation for more details.
    The BAPI does the same like transaction XD01 with Reference.
    Regards
      Uwe

  • Error in BAPI RETURN for Service Contract

    Hi,
      I get an error in the BAPI Return for the Uploading the Service Contracts by LSMW. The Error Message is E BS No status object is available for &.Also want to know can we upload multiple line of header text for a Contract by this BAPI. If so then how would I do this , as the BAPI structure BAPISDTEXT has textline upto 132 characters. And I am take only one file in LSMW where the header & details come alongwith text. Or could also tell me the file structure of for the data upload. The legacy system sends multiple text in the header for a Contract.For Eg.
    Header1 Detail1 Text1
    HEader1 Detail2 Text2
    Header1 Detail3 Text3
    So I would need this text1TEXT2text3 in the Header Text of the Contracts. Or do I need the change the file structure. Many thanks for your time and help.

    Thanks Nablan, I could do that for multiple header coming in file. But I have a question for you on BAdI ALM_ME_006_GOODSMVT. I have implemented this BAdI , and this BAdI is called by a function Module ALM_MEREP_006_CREATE. When I test this FM giving the Material , Orderid and Movement type entries, this BAdI is triggered when giving a breakpoint. I've given this code for changing the movement type to 961. Cause the stanadrd scenario does not maintain Movement type 961 in Mobile Asset Management. The Movement type 961 for unplanned Materials comes to SAP and changes to 261 as maiantained by TCOKO table. To bypass this & retain the movement type 961 in SAP I'm using this BAdI. Currently this is what I'm doing and am stuck in the method interface how do I call the method.
    method IF_EX_ALM_ME_006_GOODSMVT~CREATE .
    break-point.
    *DATA : i_ce_goodsmovement TYPE REFERENCE
              ALM_ME_CUSTOMER_ENHANCEMENT.
    DATA : lr_badi_goods_movement TYPE REF TO if_ex_alm_me_006_goodsmvt.
    DATA : ls_user_data TYPE ALM_ME_USER_DATA-USERID.
    *DATA : goods_movement TYPE ALM_ME_MATERIAL_MOVEMENT.
    CALL METHOD lr_badi_goods_movement->create
      EXPORTING
           ce_goodsmovement = ce_goodsmovement
      IMPORTING
           user_data        = ls_user_data
           custom_user_data = ls_ce_user_data
           goods_movement   = goods_movement
      changing
           return           = return[].
    CALL FUNCTION 'ALM_ME_COMMIT_OR_ROLLBACK'
           TABLES
                return = return.
    endmethod.
    Please help me to get the data in this method. How do I call this.

  • How to get CRM service order data in R/3

    Hi,
    I want to retrieve service order data from CRM system to R/3, is there any FM for this. Please help as i am new to CRM
    Thanks
    Bobby

    Hi Bobby,
    It is very much possible to upload CRM service orders to SAP R/3 or SAP ECC via standard CRM middleware.
    Please refer to the below SAP help document for complete list of configuration activities for service order upload.
    http://help.sap.com/saphelp_crm50/helpdata/en/f0/5d583c65399965e10000000a114084/frameset.htm
    <b>Do not forget to reward if it helps</b>
    Regards,
    Paul Kondaveeti

  • Sales Order Inquiry bapi upload problem

    Hi All..
    when iam trying to upload SO inquiry sample data through bapi iam getting these Errors :
    Material 1423 is not defined for sales org.1000,  distr.chan.12,  language DE
    Error in SALES_ITEM_IN 000000
    Sales document  was not changed.
    but i defined 1423 material in sales org.1000,  distr.chan.12.
    here is my abap code.
    *& Report  ZSAMPLE
    REPORT  zsample.
    DATA:lt_header LIKE bapisdhd1 OCCURS 0 WITH HEADER LINE,
         lt_inquiry_items_in LIKE bapisditm OCCURS 0 WITH HEADER LINE,
         lt_inquiry_items_inx LIKE bapisditmx OCCURS 0 WITH HEADER LINE,
         lt_header_x LIKE bapisdhd1x OCCURS 0 WITH HEADER LINE,
         lt_partners LIKE bapiparnr OCCURS 0 WITH HEADER LINE,
         lt_return LIKE bapiret2 OCCURS 0 WITH HEADER LINE.
    lt_header-doc_type = 'ZSJ1'.
    lt_header-sales_org = '1000'.
    lt_header-distr_chan = '12'.
    lt_header-division = '00'.
    lt_header-purch_date = '20081121'.
    lt_header-purch_no_c = '7654321'.
    APPEND lt_header.
    CALL FUNCTION 'CONVERSION_EXIT_ALPHA_INPUT'
      EXPORTING
        input  = lt_header-doc_type
      IMPORTING
        output = lt_header-doc_type.
    APPEND lt_header.
    lt_header_x-updateflag = 'U'.
    lt_header_x-doc_type = 'X'.
    lt_header_x-sales_org = 'X'.
    lt_header_x-distr_chan = 'X'.
    lt_header_x-division = 'X'.
    lt_header_x-purch_date = 'X'.
    lt_header_x-purch_no_c = 'X'.
    APPEND lt_header_x.
    *lt_inquiry_items_in-currency = 'USD'.
    *lt_inquiry_items_in-ITM_NUMBER = '0010'.
    *lt_inquiry_items_in-plant = '0001'.
    lt_inquiry_items_in-material = '000000000000001423'.
    lt_inquiry_items_in-itm_number = '000010'.
    *lt_inquiry_items_in-exchg_rate = '1000000'.
    APPEND lt_inquiry_items_in.
    lt_inquiry_items_inx-updateflag = 'U'.
    lt_inquiry_items_inx-ITM_NUMBER = 'X'.
    lt_inquiry_items_inx-PLANT = 'X'.
    lt_inquiry_items_inx-material = 'X'.
    lt_inquiry_items_inx-itm_number = 'X'.
    APPEND lt_inquiry_items_inx.
    lt_partners-partn_role = 'SH'.
    lt_partners-partn_numb = '0000000149'.
    APPEND lt_partners.
    CALL FUNCTION 'BAPI_INQUIRY_CREATEFROMDATA2'
      EXPORTING
    SALESDOCUMENTIN               = ' '
        inquiry_header_in             = lt_header
        inquiry_header_inx            = lt_header_x
      SENDER                        =
      BINARY_RELATIONSHIPTYPE       =
      INT_NUMBER_ASSIGNMENT         =
      BEHAVE_WHEN_ERROR             =
      LOGIC_SWITCH                  =
      TESTRUN                       =
      CONVERT                       = ' '
    IMPORTING
      SALESDOCUMENT                 =
      TABLES
       return                        = lt_return
       inquiry_items_in              = lt_inquiry_items_in
       inquiry_items_inx             = lt_inquiry_items_inx
        inquiry_partners              = lt_partners
      INQUIRY_SCHEDULES_IN          =
      INQUIRY_SCHEDULES_INX         =
      INQUIRY_CONDITIONS_IN         =
      INQUIRY_CONDITIONS_INX        =
      INQUIRY_CFGS_REF              =
      INQUIRY_CFGS_INST             =
      INQUIRY_CFGS_PART_OF          =
      INQUIRY_CFGS_VALUE            =
      INQUIRY_CFGS_BLOB             =
      INQUIRY_CFGS_VK               =
      INQUIRY_CFGS_REFINST          =
      INQUIRY_TEXT                  =
      INQUIRY_KEYS                  =
      EXTENSIONIN                   =
      PARTNERADDRESSES              =
    READ TABLE lt_return WITH KEY type = 'E'.
    WRITE : /5 lt_return-type, 20 lt_return-id , 30 lt_return-number , 50 lt_return-message.
    IF sy-subrc NE 0.
      CALL FUNCTION 'BAPI_TRANSACTION_COMMIT'
      EXPORTING
        WAIT          =
      IMPORTING
        RETURN        =
    ENDIF.
    Thank you,
    Madhu Rao.

    hi
    Use FM conversion_exit_alpha_input... and give the number exactly as the size of the field.. if there are any prefix 0's which are not given in the field.. the BAPI wont execute..
    if it is in the database as 00001423 and ur giving it as 1423...it wont take it...
    Check the master table of material to see how it is stored in database.
    and pass exact value.
    Regards,
    Vishwa.

  • How to upload mass characteristic & class data.

    Hi Team,
    How to upload mass characteristic & class data. Is any BAPI or program available for this. LSMW is not working for this upload. Pls suggest.
    Thanks

    Hi,
    Following are BAPI available-
    1) BAPI_CLASS_CREATE Create Class BAPI
    2) BAPI_CHARACT_CREATE BAPI for Characteristics u2013 Create
    For more BAPI List go to link [http://www.sapbapi.com/bapi-list/|BAPI LIST]  
    You can use Ecatt for upload mass characteristic & class data. For Ecatt you go through this link  [http://www.****************/Tutorials/eCATT/SAPGUIRecording/demo.htm|Ecatt Link]
    Regards,
    Ashish
    Edited by: A. A. Vaidya on Aug 14, 2009 9:20 AM

  • Web Service as Data Service of a Combo Box?

    Hi,
    I tried to use a Web Service as Data Service for a dynamic entry list of a Combo Box. The problem is that I can’t see any entry in the resulting iView.
    The Web Service is working for sure; I can present the containing data in a table. I also tested BAPIS as Data Service for my Combo Box they are working properly.
    Has anyone an idea how to solve this problem?
    Thanks in advance
    Robert

    Hi Jarrod,
    I tried a drop down list instead, still the same Problem. The connection to the web service works properly there is no problem. I can choose it and the data service test is working fine.
    I also tried to use a value help instead of a drop down list, there encounters the problem that it’s not possible to select any of my data services, neither web services nor BAPI’s.
    Any idea?
    Robert

  • Upload the "Equipment" related data

    Hi all,
    I need to Upload the "Equipment" related data into the SAP syatem.
    Am having the data for the following fields,
    1.Equipment(EQUNR)
    2.Maintenance Plant(SWERK)
    3.Technical Object Type(EQART)
    4.Material Actual(MATNR)
    5.Serial Number from the Tag(SERNR)
    6.Barcode No.used to scan the Equipment(TIDNR)
    7.Plant(B_WERK)
    8.Storage Location(B_LAGER)
    9.Batch (B_CHARGE)
    10.Master Batch(CHARGE)
    Could you please tel me the T-code/Any Information to upload the data through the LSMW.
    Thanks in Advance.
    Regards,
    Kalam A.

    Hi Kalam,
    The Tcode is IE01 and the master table is EQUI, EQBS etc.
    You can also use Bapi to create the equipment.
    BAPI_EQUI_CREATE
    BAPI_EQUI_CREATE_BY_REFERENCE
    <b><REMOVED BY MODERATOR></b>
    Lokesh
    Message was edited by:
            Lokesh Aggarwal
    Message was edited by:
            Alvaro Tejada Galindo

  • Any BAPI for Infotype 0015(Additional Data)

    Hi,
    Can anyone provide information on BAPI for Infotypes 0015(Additional Data).
    Your help will be appreciated !!!
    Vijayanand.

    To upload data into infotype 0015
    Use HR_INFOTYPE_OPERATION to create your a wrapper BAPI. You would also have to use BAPI_EMPLOYEE_ENQUEUE and BAPI_EMPLOYEE_DEQUEUE for locking and unlocking of the record in your BAPI or program.
    Enqueue personnel number
    call function 'BAPI_EMPLOYEE_ENQUEUE'
    create 0015
    call function 'HR_INFOTYPE_OPERATION'
    Use FM :  HR_MAINTAIN_MASTERDATA to update IT 0015
    check bapi : BAPI_HRMASTER_SAVE_REPL_MULT
    Dequeue personnel number
    call function 'BAPI_EMPLOYEE_DEQUEUE'
    You could also use LSMW Tool to upload the data.
    Regards
    Vasu

  • How to transfer service ticket data from ECC6.0 to CRM 7.0 using LSMW?

    how to transfer service ticket data from ECC6.0 to CRM 7.0 using LSMW?
    Plz suggest me any BAPI or IDOC for that ..
    thanks in Advance .

    You have to convert your long string to a table of shorter strings.
    There may be other ways, but one possibility is to use a loop to process you string.
    while (there is something left)
       put the next e.g. 1024 characters in a new row of your table
    endwhile
    If you need to reconstruct your string from the table, don't use simple concatenation since it will remove blanks at the end of lines. Believe me (from experience) sooner or later this will happen.
    Instead you need to either set the subsections of your long string, or insert from the end of your table and keep shifting the contents (probably less efficient) right

  • Uploading of cost center data with additional fields

    Hi Gurus,
    I have uploaded the cost center data. now my client has given same data with additional fields data(ORT01, ORT02, TXJCD). first time I have uploaded with LSMW IDOC methos COSMAS1. but in the same idoc the extra field not available. So i have tried recording method for KS02 to upload the data. but the data is not changed. in the sence the additional fields data not loading. while uploading i getting the probelm at TXJCD. it is getting a popup window. i was not able to handle that. Is there any other Basic IDOC to upload the data with all the fields in cost center. BAPI or Direct input program? Thanks in advance

    hi,
    you can  avoid the popup screen by using  OK code.
    ~linganna.

  • How can we upload the asset transactionn data

    how can we upload the asset transactionn data pls let me know

    There are several ways to upload asset transaction data,
    <b>- Automatic legacy data transfer using batch input
    - Automatic legacy data transfer using direct input
    - Automatic legacy data transfer using BAPI
    - Manual legacy data transfer transaction
    - Legacy data transfer using Microsoft Excel</b>
    You may reference to SAP help by the following link for details.
    http://help.sap.com/saphelp_47x200/helpdata/en/01/dfd83705c0c931e10000009b38f842/frameset.htm

  • Upload Excel sheet using Data Integrator 6.1?

    hi all ,
    Upload Excel sheet using Data Integrator? and how to create ODBC for the PC and jobserver i am using version 6.1? i am using excel as my one of the data source and tell me how to use different types of data sources in DI . after uploading the xl file if i apply any transform on the excel data i will give error like
    Posted: 25 Sep 2008 04:30
    Post subject: Re: Upload Excel sheet using Data Integrator? 
    I am getting the error like
    3128 292 CON-120302 09-25-08 09:59:40 ODBC call <SQLDriverConnect> for data source <sas> failed: <[Microsoft][ODBC Driver Manager] Data source name not found and no
    3128 292 CON-120302 09-25-08 09:59:40 default driver specified>. Notify Customer Support.
    1512 2992 CON-120302 09-25-08 09:59:41 ODBC call <SQLDriverConnect> for data source <sas> failed: <[Microsoft][ODBC Driver Manager] Data source name not found and no
    1512 2992 CON-120302 09-25-08 09:59:41 default driver specified>. Notify Customer Support.
    Please help me out
    Thank u

    Hi Shonti,
    The DI 11.7 installer can be used to upgrade a DI 6.1 local repository (e.g. the upgrade is supported).  This will migrate all jobs and flows.  They will remain intact, however, this is always a major migration effort and should not be taken lightly.  If you do upgrade, please make sure this is a planned effort with rigorous testing and validation.  You should also ensure that you consult the release notes and [supported platforms documentation|https://websmp110.sap-ag.de/~form/sapnet?_SHORTKEY=01100035870000712240&_SCENARIO=01100035870000000202] for the 11.7 package you intend to install.  The DI 11.7 documentation also contains info about how to install and configure the Excel Adapter, and what functionality it provides.
    Thanks,
    ~Scott

  • *Journal Entries while uploading the vendor master data from legacy system*

    hi SAP Folks,
    can any one of you tell me the journal entries while uploading the vendor master data from legacy system to SAP system.
    Eg: legacy system is having 10000 vendors list, 1 reconciliation account and $ 1000000. while uploading all these data from legacy system to SAP what are the journal entries we get.
    thanks in advance.
    Edited by: ravindranath manikonda on Nov 24, 2008 1:12 PM

    Hi
    you will be having  only one entry logically
    i.e. Opening Bal. clrng A/c Dr.
           To Vendor A/c Cr.
    regards

  • Service Orders ,Complaints,Sales Orders,Service Requests, data in Accoun fact sheet screen?

    Hi Team,
    Account related data is not populated in the service order data view and sales order data view and service request view in the account fact sheet screeen?
    We are using account factsheet BP_ACCOUNT_FS...In this account sheet,data is not populated .Service order assignment blocks is not populated..
    Thanks
    Kalpana

    Hi Arden,
    Thanks For your reply.
    They are maintainig the account fact sheet ZCC_FS_ACT in work center ,PFCG role id - SAP_CRM_UIU_IC_AGENT ,.Now account fact sheet is avialbe in work center of icagent.Now if we open any account- then click account fact sheet there is no data is not displayed in assignment blocks of service orders,service sales and ibase all....
    Data is not populating in accoutn fact sheet..,..if  you possible tell me steps and how to do it.?and if you share any information its great and help ful for me?
    Thanks
    kalpana

Maybe you are looking for

  • Xf86-video-intel 2.6.3-2 problem

    Hello, after upgrade from 2.6.3-1 to 2.6.3-2 of xf86-video-intel driver I have got problem with 3D. For example - KDE4-2 hangs (the kayboard stop working) When I test it with twm -t then I have no problem with keyboard, but with 3D. The glxgears show

  • Issue in Setting up MySQL DB with ATG 10.0.3

    Hi All, I am facing the below issue while setting up the MySQL DB with the ATG 10.0.3 version. **** Error Thu Aug 30 23:45:25 CDT 2012 1346388325927 /atg/dynamo/service/jdbc/JTDataSource an exception was encountered while trying to populate the pool

  • Java 7 Update 25 Client App Downloaded From Web Start Can't Connect Out

    Since Java 7 update 25, I have an issue where my client Java application, downloaded with Java Web Start, can no longer connect to a remote server. (The client uses remote EJB to connect various servers). The issue I believe is that the client applic

  • ADF Faces - access to content in WEB-INF directory

    Hello, I create simple JSF application that use ADF Faces and deploy it to Oracle iAS. But why can i also access files in WEB-INF directory? For example, the following URL - http://myserver.si/MyApp/faces/WEB-INF/web.xml - will return the content of

  • PLEASE HELP ME , I really Get tired of this !!!!!

    Well , I don't how to start . I have a Server with the following specifications : Supermicro super Server6011H 1 - Dual PIII 1.4 Processors 2 - Adaptec AIC-7899W dual channel Ultra 160(320) SCSI controller 3 - Adaptec 2005S Zero RAID Configured with