LSMW for booking participant

Dear experts,
I have a problem and I need help to find a solution to how upload a huge file of training historical data.
I've tried to create a LSMW using transaction LSO_PV00, but it doesn't wok.
I've also tried to create relationship between E - P, I was able to create it, but these relationships are not displayed in LSO_PSV1 and when I try to follow up the event I get a short dump.
Does anybody has a good solution to upload training attendances?
Thanks in advance!
Best regards,
Thais

Hi Thais P Pietscher 
Make sure that first upload all Objects (Business Event Group, Business Event, Course Group, Course, Participants etc.)
Then Relation between objects reg. structure upto Business Event Group, Business Event, Course Group, Course.
Check it everything is fine in the structure.
Then upload booking data between participant and course.
Regards
Venu

Similar Messages

  • Error in 'booking participation request' workflow

    Hi,
    I am facing a problem when i run the workflow for booking participation request.
    The following error happens when the workflow reaches a step which is a sub-workflow.
    Error when processing node '0000000425' (ParForEach index 000000)
    Error when creating a component of type 'Step'
    Error when creating a work item
    Error during result processing of work item 000000821879
    Unable to determine work item type for step at node 0000000425
    Work item 000000821875: Object FLOWITEM method EXECUTE cannot be executed
    Error when processing node '0000000425' (ParForEach index 000000)
    Error when processing node '0000000425' (ParForEach index 000000)
    the  step sub-workflow is defined as a general task.
    Any suggestions ?
    Regards,
    Sharadha

    Hello PR, no-one (I dare say) likes to see old threads closed many months ago surfacing again because someone has the same problem. I suggest you open a new thread - and link to this one if you please.
    Explain your problem in a bit more detail in your new question thread - e.g. which workflow container element you have bound to the rule container, and the rule ID (number) of the rule you are using.
    If your error message is exactly the same as in this thread it is sufficient to say so (if you have a link to this thread), otherwise you should include the error message (class/number as well as text is nice to have).

  • IDoc Error in LSMW for MB1C - Special stock type is E

    When we use MB1C for GR to enter initial entry of stock balance into unrestricted stock for special stock type is E.
    The document is Posted.
    But, when we use LSMW for the above Transaction, the document is not posted.
    In the Inbound processing of IDOC  has the status "Application document not posted".
    In the IDoc Status record gives
       current status : 51 ("SD Document XXXXXXXXX is not in the database or has been archived"
    Pl explain how this problem can be addressed.

    Hi,
    It seems that the stock indicator in E demands for a sales order in the MB1C transaction. The sales order provided by you in the flat file is getting validated by SAP and that sales order is not available in the system or might have been archived.
    It is better to provide a live Sales order to book the stock to that particular sales order. If in case if the Sales order mentioned by you is closed or not required, in such as case the material can be stored under unrestricted stock and not under the sales order stock
    Thanks and Regards,
    Dilli Babu R

  • Using Appointment Manager to create calendar items for course participation

    Is anyone using SAP's Appointment Manager in conjunction with LSO to create calendar entries in an external application (Lotus Notes) when people book participation in a training course?

    did you manage to solve this? we are looking for the same issue.

  • Lsmw for fixed asset

    Hi All,
    I am uploading data for fixed assets using LSMW with bapi -
    business object - BUS1022
    Method - FIXEDASSET_CREATEINCLVALUES
    Message Type - FIXEDASSET_CREATEINCLVALUES02
    According to project settings group asset and group asset subnumber are mandatory fields for depreciation area  15. When i am running the lsmw i am getting the error
    "DEPRECIATIONAREAS-GRP_ASSET ("Group asset") is a required entry field in depreciation area  15. The field was not supplied with data when the BAPI was called."
    Please help me how to solve the problem...
    I am copying the lsmw for which group asset and group asset sub number were not included and i am adding those two fields in my lsmw and i am not able to upload the data because of the error. Previously these two fields were not mandatory and LSMW was working fine.
    Thanks,
    Govinda

    Hi Govinda,
                      Please try with the following code , if it is useful then please allocate points to me
    *& Report  ZASSET_CREATE
    REPORT  zasset_create.
    DATA:
       input parameters to the bapi
        input_key       LIKE  bapi1022_key,
        gen_data        LIKE  bapi1022_feglg001,
        gen_datax       LIKE  bapi1022_feglg001x,
        posting_info    LIKE  bapi1022_feglg002,
        posting_infox   LIKE  bapi1022_feglg002x,
        posting_data    LIKE  bapifapo_gen_info,
        acquis_data     LIKE  bapifapo_acq,
        time_dep_data   LIKE  bapi1022_feglg003,
        time_dep_datax  LIKE  bapi1022_feglg003x,
        real_estate     LIKE  bapi1022_feglg007,
        real_estatex    LIKE  bapi1022_feglg007x,
        allocations     LIKE  bapi1022_feglg004,
        allocationsx    LIKE bapi1022_feglg004x,
        extensionin     TYPE TABLE OF bapiparex,
        origindata      LIKE bapi1022_feglg009,
        origindatax     LIKE bapi1022_feglg009x,
    it_depreciationareas TYPE TABLE OF bapi1022_dep_areas,
    wa_depreciationareas TYPE bapi1022_dep_areas,
                     occurs 0 with header line,
    it_depreciationareasx TYPE TABLE OF bapi1022_dep_areasx,
    wa_depreciationareasx TYPE bapi1022_dep_areasx,
                     occurs 0 with header line,
    it_investment_support TYPE TABLE OF bapi1022_inv_support,
                     occurs 0 with header line,
    output parameters from the bapi
        asset_number    LIKE bapi1022_1-assetmaino,
        sub_number      LIKE bapi1022_1-assetsubno,
        out_return      LIKE bapiret2,
        out_return2     LIKE bapiret2.
    input_key-companycode = 'CAT1'.
    gen_data-assetclass   = '00003000'.
    gen_datax-assetclass = 'X'.
    gen_data-descript = 'Testing BAPI'.
    gen_datax-descript   = 'X'.
    gen_data-serial_no    = '1111'.
    gen_datax-serial_no  = 'X'.
    gen_data-base_uom     = 'KG'.
    gen_datax-base_uom   = 'X'.
    *Append the Depreciation keY VALUE EQUAL TO LINA to the internal table.
    wa_depreciationareas-area = '01'.
    wa_depreciationareas-descript = 'Book deprec.'.
    wa_depreciationareas-dep_key = 'LINA'.
    wa_depreciationareas-ulife_yrs = '2'.
    wa_depreciationareas-ulife_prds = '3'.
    wa_depreciationareas-exp_ulife_yrs = '5'.
    wa_depreciationareas-exp_ulife_prds = '3'.
    *wa_depreciationareas-EXP_ULIFE_SDEP_YRS
    *wa_depreciationareas-EXP_ULIFE_SDEP_PRDS
    *wa_depreciationareas-ORIG_ULIFE_YRS
    *wa_depreciationareas-ORIG_ULIFE_PRDS
    wa_depreciationareas-change_yr = '3'.
    *wa_depreciationareas-dep_units = '3'.
    *wa_depreciationareas-odep_start_date = '01012005'.
    *wa_depreciationareas-sdep_start_date = '01012005'.
    *wa_depreciationareas-INTEREST_START_DATE
    *wa_depreciationareas-READINESS
    *wa_depreciationareas-INDEX
    wa_depreciationareas-AGE_INDEX
    wa_depreciationareas-var_dep_portion = '200'.
    wa_depreciationareas-scrapvalue = '20'.
    *wa_depreciationareas-currency = 'USD'.
    *wa_depreciationareas-currency_iso = 'USD'.
    *wa_depreciationareas-NEG_VALUES
    *wa_depreciationareas-GRP_ASSET
    *wa_depreciationareas-GRP_ASSET_SUBNO
    *wa_depreciationareas-ACQ_YR
    *wa_depreciationareas-ACQ_PRD
    *wa_depreciationareas-SCRAPVALUE_PRCTG
    APPEND wa_depreciationareas TO it_depreciationareas.
    CLEAR: wa_depreciationareas.
    wa_depreciationareasx-area = '01'.
    *wa_depreciationareasX-DESCRIPT = 'X'.
    *wa_depreciationareasX-DEACTIVATE = 'X'.
    wa_depreciationareasx-dep_key = 'X'.
    wa_depreciationareasx-ulife_yrs  = 'X'.
    wa_depreciationareasx-ulife_prds = 'X'.
    *wa_depreciationareasX-EXP_ULIFE_YRS = 'X'.
    *wa_depreciationareasX-EXP_ULIFE_PRDS = 'X'.
    *wa_depreciationareasX-EXP_ULIFE_SDEP_YRS = 'X'.
    *wa_depreciationareasX-EXP_ULIFE_SDEP_PRDS = 'X'.
    *wa_depreciationareasX-ORIG_ULIFE_YRS = 'X'.
    *wa_depreciationareasX-ORIG_ULIFE_PRDS = 'X'.
    wa_depreciationareasx-change_yr = 'X'.
    *wa_depreciationareasx-dep_units = 'X'.
    wa_depreciationareasx-odep_start_date = 'X'.
    wa_depreciationareasx-sdep_start_date = 'X'.
    *wa_depreciationareasX-INTEREST_START_DATE = 'X'.
    *wa_depreciationareasX-READINESS = 'X'.
    *wa_depreciationareasX-INDEX = 'X'.
    *wa_depreciationareasX-AGE_INDEX = 'X'.
    wa_depreciationareasx-var_dep_portion = 'X'.
    wa_depreciationareasx-scrapvalue = 'X'.
    *wa_depreciationareasx-currency = 'X'.
    *wa_depreciationareasx-currency_iso = 'X'.
    *wa_depreciationareasX-NEG_VALUES = 'X'.
    *wa_depreciationareasX-GRP_ASSET = 'X'.
    *wa_depreciationareasX-GRP_ASSET_SUBNO = 'X'.
    *wa_depreciationareasX-ACQ_YR = 'X'.
    *wa_depreciationareasX-ACQ_PRD = 'X'.
    *wa_depreciationareasX-SCRAPVALUE_PRCTG = 'X'.
    APPEND wa_depreciationareasx TO it_depreciationareasx.
    CLEAR wa_depreciationareasx.
    *Append the Depreciation keY VALUE EQUAL TO LINb to the internal table.
    break mukherar.
    CALL FUNCTION 'BAPI_FIXEDASSET_CREATE1'
      EXPORTING
        key                        = input_key
      REFERENCE                  =
      CREATESUBNUMBER            =
      POSTCAP                    =
      CREATEGROUPASSET           =
      TESTRUN                    =
       generaldata                = gen_data
       generaldatax               = gen_datax
      INVENTORY                  =
      INVENTORYX                 =
      POSTINGINFORMATION         =
      POSTINGINFORMATIONX        =
      TIMEDEPENDENTDATA          =
      TIMEDEPENDENTDATAX         =
      ALLOCATIONS                =
      ALLOCATIONSX               =
      ORIGIN                     =
      ORIGINX                    =
      INVESTACCTASSIGNMNT        =
      INVESTACCTASSIGNMNTX       =
      NETWORTHVALUATION          =
      NETWORTHVALUATIONX         =
      REALESTATE                 =
      REALESTATEX                =
      INSURANCE                  =
      INSURANCEX                 =
      LEASING                    =
      LEASINGX                   =
    IMPORTING
      COMPANYCODE                = company_code
       asset                      = asset_number
       subnumber                  = sub_number
      ASSETCREATED               =
       return                     = out_return
    TABLES
       depreciationareas          = it_depreciationareas
       depreciationareasx         = it_depreciationareasx.
      INVESTMENT_SUPPORT         =
      EXTENSIONIN                =
    CALL FUNCTION 'BAPI_TRANSACTION_COMMIT'
              EXPORTING
                WAIT          =
              IMPORTING
                RETURN        =
    WRITE: / 'Asset Number:',asset_number.

  • Creation Of LSMW for Actions..........

    Dear ALL
    Recorded an LSMW for PA40 hiring actions which includes infogroup - [ IT 0000, 0001, 0002, 0105-ZVEN (Sub type)]
    This is for external vendor employees hiring actions.
    While recording or manually running the process, it is working fine.
    When in foregroud or background process, the alternate pernr is getting generated. Say for 1st record , pernr generated is 80023, then for next it is 80025, 80027so on.
    Kindly suggest me in this issue.
    Thanks
    MJ

    Hi,
    1-you keep no range as external and assign PERNR sequentially so that it remains same as you want it
    2-kindly go through the LSMW abain to see what have you assigned in field mapping & conversion rules
    3- check one record created thru LSMW and see if next (alternate number gets assigned to Ref PERNR in IT0000)
    Check the alternate number to see if anything gets assigned to it.
    salil

  • Can you use a Laser Card to pay for books on ibooks?

    Can you use a Laser Card to pay for books on ibooks or is only VISA acceptable?

    No. iTunes Store only.
    "An iTunes Gift Card lets you shop for anything at the iTunes Store "  >  http://store.apple.com/us/browse/home/giftcards/itunes/gallery

  • How to create LSMW for a transaction having scroll bar

    Hi all,
    I am trying to create an LSMW for MP)! transaction for Uploading AMPL (Approved Manufacturer Parts list data) data.
    For this LSMW is not working fine when i need to upload more number of records. Suggest me some way to solve it out,Also provide me some code samples and process if it can be handled with BDC.
    Thanks,
    Pavan.

    you can solve it with bdc:
    e.g. a table control contains only 10 entries , you've to program the dynpro-change ( in german "Bildwechsel")
    with sth like this:
    ERG = BUZEI MOD 10 .
      IF ERG = 1.
    Dynpro darf nur alle 10 Zeilen prozessiert werden -
        PERFORM BDC_DYNPRO USING 'SAPMF10B' '0150'.             "ins
      ENDIF.
    add 1 to buzei.
    A.

  • Error in the LSMW for vendor master using standard batch/direct input

    I am facing the problem in the LSMW for the Vendor master data. The vendor is initially created for the company code 350 by using LSMW. NOw when I try to uploasd the same vendor using the same LSMW for the company code 450 then I get the error in the Bach input creation as follows:
    Batch Input Interface for Vendors
    FB012                    Session 1 : Special character for 'empty field' is /
    FB007                    Session 1 session name VNDR_CREATE_ was opened
    FB104                    Trans. 2 XK01 : Acct already exists; general area not being processed
    FB125                    ... Data in table BLFA1 cannot be processed
    FB016                    ... Last header record ...
    FB014                    ... BLF00-STYPE 1
    FB014                    ... BLF00-TCODE XK01
    FB014                    ... BLF00-LIFNR 300951
    FB014                    ... BLF00-BUKRS 402
    FB014                    ... BLF00-EKORG /
    FB014                    ... BLF00-KTOKK VEND
    FB017                    ... Last data record ...
    FB014                    ... BLFA1-STYPE 2
    FB014                    ... BLFA1-TBNAM BLFA1
    FB014                    ... BLFA1-ANRED /
    FB014                    ... BLFA1-NAME1 SAVOIE AUTOMATISME DEXIS
    This is because when we use XK01 to create the vendor by using the

    Please check this answered link:
    Re: LSMW for Vendor Master
    LSMW Upload vendor master data
    Edited by: Afshad Irani on May 5, 2010 12:42 PM

  • Error in LSMW for MM41 - "No batch input data for screen SAPLMGMW 0100"

    I'm trying to create an LSMW for MM41 to create new Retail articles en Mass. This will be used to only create the Basic view as other LSMW's already exist to maintain the other views. I've created the Recording and setup the LSMW already. My data is read correctly from the source file. When I execute the batch session it fails with the following error - "No batch input data for screen SAPLMGMW 0100".
    I assume the fields in MM41 screen are not setup for batch processing. Could someone with more knowledge or experience in SAP Retail please confirm my assumption and explain where this is setup or provide an alternative to creating new articles en Mass via MM41? The direct input method is more suited for MM01 and not MM41.
    Regards
    Fawaaz

    Hi Guys,
    Thanks so much for all the prompt responses. My issue is now resolved.
    The issue, I'm sure, was my default settings in the MM41 screen which the recording probably took into account or the batch program didn't like. I deleted my recording and created a new one but before I started the recording, I went into the MM41 screen and removed all default values AND view selections. I made my Basic view selection constant in my recording and also in my field mapping. My LSMW for MM41 is now working perfectly.
    Just to answer some of the questions above, my LSMW was Reading and Converting the data in my source file fine. When I display the Read and Converted data, it shows the data fields in the correct place.
    Thanks again.
    Regards
    Fawaaz

  • Classification view creation via LSMW for Material master

    Hi,
    We are planning to have an LSMW for creation of material master along with classification view for configurable materials.
    Though we see a flag to indicate classification view  - XEIC1                        Indicator: take Classification view into account
    We do not see a structure where in we can pass all the characteristics and the corresponding values.
    Is this something possible only with BAPIs such as -> BAPI_OBJCL_CREATE after creation of other view for that material.
    Regards,
    HR

    Hi,
    Thanks for the response. This is helpful.
    However, we were intending to use a single LSMW for creation of all views of material master including classification view. Right now we are using Program RMDATIND as direct input method in LSMW.
    Please let me know if there is a way to use single LSMW for creation of all views of material master.
    Thanks
    HR
    Edited by: Hema Rao on Jan 8, 2009 7:58 AM

  • Issue in LSMW for material master using standard input program RMDATIND!!

    Hello guys,
    I have a issue in LSMW for material master.
    I have a custom field in MARA table. which I want to add in my LSMW.
    I added the field in BMMH1 structure. I'm passing the value to this field, But it is not populated in the table when I run it.
    Is there anything else I need to do apart from addition of field in the structure BMMH1.
    Thanks in advance for your help.
    Regards,
    Sumeet....

    see oss note 44410, it gives you a step by step overview.
    https://service.sap.com/sap/support/notes/44410

  • Creation of lsmw for updation of position and pers area

    Hi friends,
    I am tried many time to update position and personnel area through lsmw for all employees ,at time of recording its coming.But once compltion of lsmw preparation i am uploaded my inputs through tabfile that time its updating only personnel number and infotype  and its asking the save the action screen (At the same time its showing one popup below screen like there is no recording for mp000000).Can you tell any one there whats the problem.At the same time is it possible to upload the position and personnel area through lsmw.
    Thanks,
    arjun.

    Hi Arjun
    Are you performing a hiring actions, if you are performing a hiring action, when you start with LSMW, the recording should be correct with hire date or start date, personnel number, reason for hire, position number, personal area, employee group and subgroup.
    The source field you specific should contain the required field name, type, length and field discription.  The field mapping should be done perfectly and assign the specified file in txt format and try to upload.
    If you are facing any problem, let me know.  I think I can help you
    Regards
    Santhosh.S

  • Is it possible to create LSMW for PQ10, PQ13?

    Hi Fridz,
    I have created the OM actions, now I'm trying to create LSMW for the actions PQ10 (creation of org unit), PQ13 (Creation of Position) but while recording LSMW relationships are not creating under - Maintain Field Mapping and Conversion Rules in LSMW. Please advice on this whether these transactions are possible to create LSMW with fore & backgroung.
    $Narayana

    Hi Narayana,
    Use BDC's for better maintainance of relationship. which worked fine for me.
    thanks,
    vasu.

  • LSMW for Outbound Delivery

    Hi,
    I am not able to find an LSMW for creating GR for outbound delivery. I tried using recording in MIGO but it did not work. Also MB1C is not working for outbound delivery. Please help.
    Regards,
    Anubhav

    Hi
    I think it is better to write a Z program/ BDC to have a mass GR creation of an outbound delivery.
    or
    You have an Auto Goods receipt using confimations. If we activate Auto GR in customizing for Confirmation control key. Once confirmations(ASN) is created a GR will be created automatically.
    Hope this helps
    Regards,
    Sasi

Maybe you are looking for