Treasury Module: Multiple Excel Lines are not copying to SAP

Hi Experts,
I am facing a peculiar problem in Treasury Module.
The details are as below:
1. Transaction Code FTR_CREATE: I am providing all the details then go to interest condition. Here I am going to provide manually the interest amount.
2. In update Paragraph, I choose "Special" button & select "Single Dates". Here I can provide Date & amount manually. But system is allowing only one line at a time from the excel sheet.
That is a big bug in system or my laptop.
I need help from all of you because of this my go live stuck in between.
Please help.
Thanks,
Satya

Hello Niels,
I am very interested in having a deeper look at the example:
Concerning the "passive" issue I have the following question/note:
- Do you see the same behavior when you do a "quiet" install instead of a passive one?
- For some reason this makes me think about a bug in Visual Studio (old version) that I also personally experienced some time ago, but I do not think it is directly linked.
  I did a quick google search and  this is what I could directly find back about that bug. (http://community.flexerasoftware.com/archive/index.php?t-154037.html)
  Do note that I am not sure that it is linked to the issue. To be able to give some more feedback I would require the modified example that you are using.
Concerning the uninstall process:
- Can you share the modified version of the community example you are using? (to be able to reproduce exactly the same issue)
- The most common reason I know off that might cause files to not uninstall is that the linked GUIDs are causing "issues".
  Changing the GUIDs of the files/components that are not uninstalling might do the trick in that case.
  However, to have some certainty about this I should be able to have a look at your code (and test it)
Kind Regards,
Thierry C - Applications Engineering Specialist Northern European Region - National Instruments
CLD, CTA
If someone helped you, let them know. Mark as solved and/or give a kudo.

Similar Messages

  • Price and Pricing conditions are not copied to PO for a line item !!

    Hi
    I have created a PO w.r.t a PR which has only one line item.
    Now, I add another line item to this existing PO, i get an error message that the Price and Pricing conditions are not copied.
    How do i rectify this error !!
    Where might be the link for this Price and Pricing conditions to get copied in to this PO ??
    MaruthiRam

    What kind of PR and in the PO same material you enter for new line or new material and do you have any funcitonal authorization assigned o your user id
    please reply

  • Sub Line itmes are not copied out...

    Hi all,
    I am using BAPI ''BAPI_SALESORDER_CREATEFROMDAT2'' to create a sales order with refernce to Contract number. The creation of sales order is fine but the issue is when ever there are sub line items in the contract there are not copied into salesr order.
    Is any one know the reason and solution to reslove this issue.
    My code:
      DATA: lv_vbap  TYPE vbap.
      data: lv_inst_id(8) type n.
      wa_contract_header_in-refobjtype = gc_bus2032.
      wa_contract_header_in-refdoc_cat = 'G'.
      wa_contract_header_in-ref_doc    = wa_vbak-vbeln.
      wa_contract_header_in-refdoctype = wa_vbak-auart.
      wa_contract_header_in-doc_type   = gc_auart.
      wa_contract_header_in-sales_org  = wa_vbak-vkorg.
      wa_contract_header_in-distr_chan = wa_vbak-vtweg.
      wa_contract_header_in-division   = wa_vbak-spart.
    Header data check list
      wa_contract_header_inx-updateflag = gc_var_i.
      wa_contract_header_inx-refdoc_cat = gc_var_x.
      wa_contract_header_inx-ref_doc    = gc_var_x.
      wa_contract_header_inx-doc_type   = gc_var_x.
      wa_contract_header_inx-sales_org  = gc_var_x.
      wa_contract_header_inx-distr_chan = gc_var_x.
      wa_contract_header_inx-division   = gc_var_x.
    Fill Item details table
      LOOP AT t_vbap_copy INTO wa_vbap.
          wa_contract_items_in-itm_number   = wa_vbap-posnr.
          wa_contract_items_in-material     = wa_vbap-matnr.
          wa_contract_items_in-target_qty   = wa_vbap-kwmeng.
          wa_contract_items_in-target_val   = wa_vbap-netwr.
          wa_contract_items_in-refobjtype   = gc_bus2032.
          wa_contract_items_in-ref_doc      = wa_vbap-vbeln.
          wa_contract_items_in-ref_doc_it   = wa_vbap-posnr.
          wa_contract_items_in-ref_doc_ca   = 'G'.
         wa_contract_items_in-PO_ITM_NO    = wa_vbap-posnr.
         wa_contract_items_in-config_id    = '000001'.
         wa_contract_items_in-inst_id      = '00000001'.
          APPEND wa_contract_items_in TO t_contract_items_in.
      Fill item update table
          wa_contract_items_inx-itm_number  = wa_vbap-posnr.
          wa_contract_items_inx-material    = gc_var_x.
          wa_contract_items_inx-target_qty  = gc_var_x.
          wa_contract_items_inx-target_val  = gc_var_x.
          wa_contract_items_inx-refobjtype  = gc_var_x.
          wa_contract_items_inx-ref_doc     = gc_var_x.
          wa_contract_items_inx-ref_doc_it  = gc_var_x.
          wa_contract_items_inx-ref_doc_ca  = gc_var_x.
         wa_contract_items_inx-PO_ITM_NO   = gc_var_x.
         wa_contract_items_inx-config_id   = gc_var_x.
         wa_contract_items_inx-inst_id     = gc_var_x.
          APPEND wa_contract_items_inx TO t_contract_items_inx.
        Schedule Lines
          wa_contract_schedules_in-itm_number = wa_vbap-posnr.
          wa_contract_schedules_in-sched_line = sy-tabix.
          wa_contract_schedules_in-req_qty    = wa_vbap-kwmeng.
          append wa_contract_schedules_in to t_contract_schedules_in.
          wa_contract_schedules_inx-itm_number = wa_vbap-posnr.
          wa_contract_schedules_inx-sched_line = sy-tabix.
          wa_contract_schedules_inx-updateflag = 'X'.
          wa_contract_schedules_inx-req_qty    = wa_vbap-kwmeng.
          append wa_contract_schedules_inx to t_contract_schedules_inx.
        Configuration
          wa_contract_CFGS_REF-posex        = wa_vbap-posnr.
          wa_contract_CFGS_REF-CONFIG_ID    = '000001'.
          wa_contract_cfgs_ref-ROOT_ID      = '00000001'.
          wa_contract_cfgs_ref-sce          = '1'.
          wa_contract_cfgs_ref-kbname       = wa_vbap-matnr.
          wa_contract_cfgs_ref-kbversion    = '001'.
          append wa_contract_cfgs_ref to t_contract_cfgs_ref.
          wa_contract_CFGS_inst-config_id   = '000001'.
          wa_contract_cfgs_inst-inst_id     = '00000001'.
          wa_contract_cfgs_inst-OBJ_TYPE    = 'MARA'.
          wa_contract_cfgs_inst-class_type  = 300.
          wa_contract_cfgs_inst-obj_key     = wa_vbap-matnr.
          append wa_contract_cfgs_inst to t_contract_cfgs_inst.
        lv_inst_id = '00000001'.
        loop at t_vbap into lv_vbap where uepos = wa_vbap-posnr.
          add 1 to lv_inst_id.
          wa_contract_CFGS_inst-config_id   = '000001'.
          wa_contract_cfgs_inst-inst_id     = lv_inst_id.
          wa_contract_cfgs_inst-OBJ_TYPE    = 'MARA'.
          wa_contract_cfgs_inst-CLASS_TYPE  = 300.
          wa_contract_cfgs_inst-obj_key     = lv_vbap-matnr.
          append wa_contract_cfgs_inst to t_contract_cfgs_inst.
          wa_contract_cfgs_part_of-config_id = '000001'.
          wa_contract_cfgs_part_of-parent_id = '00000001'.
          wa_contract_cfgs_part_of-inst_id   = lv_inst_id.
          wa_contract_cfgs_part_of-part_of_no = wa_vbap-posnr.
          wa_contract_cfgs_part_of-obj_type  = 'MARA'.
          wa_contract_cfgs_part_of-CLASS_TYPE = 300.
          wa_contract_cfgs_part_of-obj_key   = lv_vbap-matnr.
          append wa_contract_cfgs_part_of to t_contract_cfgs_part_of.
        endloop.
        loop at t_zgd_v_vc_char into wa_zgd_v_vc_char
                               where instance = wa_vbap-cuobj.
          wa_contract_cfgs_value-config_id  = '000001'.
          wa_contract_cfgs_value-inst_id    = '00000001'.
          wa_contract_cfgs_value-CHARC      = wa_zgd_v_vc_char-atnam.
          wa_contract_cfgs_value-value      = wa_zgd_v_vc_char-atwrt.
          append wa_contract_cfgs_value to t_contract_cfgs_value.
        ENDLOOP.
      ENDLOOP.
    Fill Partner Table
      wa_contract_partners-partn_role    = gc_sp.
      wa_contract_partners-partn_numb    = wa_vbak-kunnr.
      APPEND wa_contract_partners TO t_contract_partners.
    Call Bapi to create sales order
      CALL FUNCTION 'BAPI_SALESORDER_CREATEFROMDAT2'
        EXPORTING
          order_header_in     = wa_contract_header_in
          order_header_inx    = wa_contract_header_inx
        IMPORTING
          salesdocument       = gv_sales_doc
        TABLES
          return              = t_return
          order_items_in      = t_contract_items_in
          order_items_inx     = t_contract_items_inx
          order_partners      = t_contract_partners
          ORDER_SCHEDULES_IN  = t_contract_schedules_in
          ORDER_SCHEDULES_INX = t_contract_schedules_inx
          ORDER_CFGS_REF      = t_contract_cfgs_ref
          ORDER_CFGS_INST     = t_contract_cfgs_inst
          ORDER_CFGS_PART_OF  = t_contract_cfgs_part_of
          ORDER_CFGS_VALUE    = t_contract_cfgs_value.
    Thanks in advance...
    Satya.

    Hi,
    Material document will get updated in reference field in FI by default.  If for any reason, want to get this updated in text field, you need to define a subsititution in GGB1.
    Best Regards,
    Madhu

  • SRM 7.0 PO Condition are not copied in ECC po

    Hi Experts!!!
    i am facing the problem SRM 7.0 PO Condition are not copied in ECC po, Net price is Coming instead of Gross price. & is there any BADI why which i can Fecth the Condition Data From SRM Quotation to ECC.
    pls help me it is go-live critical.
    regards
    vikas

    Hi Masa,
    1. Do the texts need to be mapped in the  node that you hjave mentioned. Sould not the SRM texts be mapped to ECC textx by default . After all , it shoud be standard predelivered feature . I have not done any mapping but still the SRM supplier text in shopping cart line item , flows into ECC Material Text in ECC PO line item.
    i.e by default SRM supplier text in shopping cart line item = ECC Material Text in ECC PO line item.
    No other text from SRM SC or PO ir flowing into ECC PO
    Rgds
    Sumendra

  • List of materials from the excel which are not posted

    I have written bdc,
    that ware house storage locations should not be allowed.
    All the storage locations in the table T320 are ware house storage locations.
    so i have written
    if not  it_data1 is initial.
    SELECT *  into table iT_320 FROM  T320
      for all entries in it_data1
    where WERKS = it_data1-werks and
               LGORT  = it_data1-lgort.
    endif.
    LOOP AT IT_DATA1 .
      read table iT_320 INTO wa_320 with key werks = it_data1-werks
                                              lgort = it_data1-lgort.
      IF sy-subrc = 0 .
        delete it_data1 index sy-tabix.
      ENDIF.
    endloop.
    So its working fine till then.
    but i wanted a list of materials from the excel wch are not posted,so tht the user is aware tht some items are not consumed.
    How to display that list in bdc.
    Please give the code for that.

    MY EXCEL DATA IS IN IT_DATA1.
    LOOP AT IT_DATA1 .
      read table iT_320 INTO wa_320 with key werks = it_data1-werks
                                              lgort = it_data1-lgort.
      IF sy-subrc = 0 .
        delete it_data1 index sy-tabix.
      ENDIF.
    endloop.
      LOOP AT IT_DATA1 .
        MOVE-CORRESPONDING IT_DATA1 TO IT_DATA_h.
        Collect it_data_h.
      ENDLOOP.
      Clear it_data_h.
    clear : it_data1.
    THEN MY BDC IS LIKE THIS.
    LOOP AT IT_DATA_H .
    perform bdc_dynpro      using 'SAPMM07M' '0400'.
    perform bdc_field       using 'BDC_CURSOR'
                                  'RM07M-WERKS'.
    perform bdc_field       using 'BDC_OKCODE'
                                  '/00'.
    perform bdc_field       using 'MKPF-BLDAT' LV_DATE  .
    perform bdc_field       using 'MKPF-BUDAT' LV_DATE.
    perform bdc_field       using 'RM07M-BWARTWA' '261'.
    perform bdc_field       using 'RM07M-WERKS' IT_DATA_H-WERKS.
    perform bdc_dynpro      using 'SAPMM07M' '0421'.
    perform bdc_field       using 'BDC_CURSOR'
                                  'MSEG-WERKS(03)'.
    CLEAR : FLAG1, W_FLAG.
    LOOP AT IT_DATA1 WHERE aufnr = it_data_H-aufnr.
    W_FLAG = 1.
    CONCATENATE 'MSEG-MATNR' '(' W_FLAG ')' INTO W_MATNR_C.
    perform bdc_field       using  W_MATNR_C
                                   IT_DATA1-MATNR.
    CLEAR : QTY.
    QTY = IT_DATA1-ERFMG.
    SHIFT  QTY LEFT DELETING LEADING SPACE.
    END LOOP.
    NOW HOW TO COMPARE THE MATERIALS IN EXCEL AND  BDC POSTED.
    PLEASE PROVIDE THE CODE FOR THAT AND HOW TO DISPLAY.

  • Schedule lines are not getting generated during MRP Run

    Schedule lines are not getting generated during MRP Run. I have maiantained source list for the material with proper validity date and also maintained scheduling agreement . MRP relevvant Indicator , I have marked - 2 which means -Record relevant to MRP. Sched. lines generated automatically.
    Still I am not able to get schedule lines and instead of that *Purchase Requisitions* are getting generated.
    Can any one help me and suggest me what to be done in this case .
    Thanks & Regards ,
    Nirmalya

    Dear,
    Welcome to SDN,
    In transaction OMDT you have to enable the indicator create schedule lines
    In MD02 MRP control Prameter here select the Delivery schedules -3- Schedule line. Processing Key as NETCH and Planning Mode - 3 delted and recreated.
    Maintain source list ME01, in that put MRP indicator as '2' i.e. schedule lines via MRP.Put your agreement no in that.
    If u run MRP properly u will get schedule lines automatically in ME38.
    Make the schedule agreement, make it source relevent in the source list make is FIX and MRP indicator as 3.
    Regards,
    R.Brahmankar

  • Schedule lines are not in sink for PO

    Hello Everyone,
    We are using ECS.
    So we create PO in SRM with some schedule lines and transfer it to the ECC system.
    But sometimes the schedule lines are not in sink on both the sides because buyer update the schedule lines on SRM side.
    So we need to check that is schedule lines in SRM and Basic quantity in SRM are same or not?
    So is there any OSS note to check this?
    Regards,
    Khushbu.

    Hi,
    In transaction OMDT you have to enable the indicator create schedule lines
    In MD02 MRP control Prameter here select the Delivery schedules -3- Schedule line. Processing Key as NETCH and Planning Mode - 3 delted and recreated.
    Maintain source list ME01, in that put MRP indicator as '2' i.e. schedule lines via MRP.Put your agreement no in that.
    If u run MRP properly u will get schedule lines automatically in ME38.
    Make the schedule agreement, make it source relevent in the source list make is FIX and MRP indicator as 3.

  • Lines are not generated for holidays and sundays

    Hi
    creating a sale order shcedule lines are not generated for sunday for a particular plant .
    Schedule lines are generated for subsequent monday only.
    the plant calander  is also  correct
    with regards
    partha

    Hi
    I would really double check the factory calendar ans the  of the plant and sales organisation
    regards,
    Sidi

  • Why won't the copying action stop? How do i quit it so i can shut down? Items i tried to copy to either my hard drive or my USB memory are not copying - why? And now can't quit them either!

    I have a Western Digital My Book hard drive which i use to store my media/data/back up. I tried to transfer some files on my desk top to it yestrday and it was taking forever so decided to stop it. Now it just shows under the Copying box, stopping but it isn't? I tried then to down load the same images t my USB memory stick and now that is doing the same. I wonder if i is to do with upgrading to Mavericks as no problems before?
    I have check my WD My book on another computer and thankfully all mmedia is still in tack!
    How can i quit this copying so i can shut down my computer?
    Any ideas as to why items are not copying to external memories and what if anything can i do to get it copying correctly again?
    I really need to back up my work by tonight - help! Any suggestions there too?

    option discovered in preferences. Really this and any feature that moves deletes or edits a users data should as far as possible be OFF BY DEFAULT. It shouldn't by default and without the users specific say do this dangerous and unnecessary thing without even letting the user know what it's doing!!! And then cause me a few hours (as i'm new to mac) searching for the option so as to switch it off. If i hadn't noticed the status cage declaring that it was copying files then i might never have twigged that this insane thing was occurring. And if i hadn't of noticed i would have been left maintaining the contents of the folder i copied the files to, the folder which as far as i was informed and so believed was also the location of the music files i was playing. How does Apple justify this 'genius' piece of software non-design? Surely it will hurt no one if this was off by default for new users - overall at least i dare say it would cause a lot less distress in the future for the unsuspecting public at large. Thanks for the support.

  • Getting error in return order as free goods are not copying

    Hi
    We are facing error as free goods are not copying in return orders,We have done upto the billing and creating return order with the reference of billing
    Many Thanks
    Rakesh Naveen

    Hi,
    Kindly check the copying control at IMG->Sales and Distribution->Basic Functions->Free Goods->Maintain Copying Control.
    Thank You,
    RB

  • Serial numbers are not copied to new storage location for 311 mvt type

    Hi Guys
    I have 10 stock of material A in 001 Storage location ,which all the quantity is serial number managed
    I have transfered 10 quantity of Material A to 002 location from 001 location using 311 MIGO
    But serial numbers are not copied to 002 location after transfer posting
    001 and 002 are both are WM linked and belongs to same plant
    Can any body suggest good solution,how it can be done

    Hi
    1.Check in material master whether serial number management is active in Plant data/stor Tab and serial number profile is assigned
    2. Check while doing MIGO once if u enter the material and transfer qty you are getting the serial number tab or not
    3. If everything is ok, then after posting the document check the serial number status in IQ09, check the stock type and the storgae location in the serdata tab
    Regards
    Amuthan M

  • Hello After upgrading iPhoto 9.1.2 when you synchronize the iphone / iphoto ipad events are not copied correctly (this option checked all the photos on itunes).

    Hello
    After upgrading iPhoto 9.1.2 when you synchronize the iphone / iphoto ipad events are not copied correctly (this option checked all the photos on itunes).

    I found this other thread discussing this topic, no fix, I will revert to 9.1.1 from Time Machine and wait for a new update.
    https://discussions.apple.com/thread/3023160?

  • Sales order quantities are not copied to Delivery

    Hi Friends,
    The sales order quantities are not copied to the delivery document. The order type is OR & delivery type is LF.
    We are using the BoM, for which a dwelivery group is created in the sales order. The schedulelines are confirmed as there is ample stock in storage location. The scenario is MTS.
    The copy control in VTLA is :
    At Header level
    order req : 001
    combination req : 051
    header req : 001
    header data ext sys : 0
    At Item Level for TAP
    order req : 102
    item data : 101
    item data ext sys : 0
    business data : 2
    update doc flow ( X ) 
    positive/negative : +
    At Item Level for TAN
    order req : 101
    item data : 101
    item data ext sys : 0
    business data : 2
    update doc flow ( X )
    positive/negative : +
    Please tell the solution
    regards,
    Yuvaraj.

    Hi,
    When you do the setting for item category, you need to maintain that the item is relevant for delivery. Kindly check.
    Regards,
    Jn

  • Changes to Excel files are not getting updated

    File updates not reflected. I modified content, added data validation and saved the file back - next day file is still the way it was before modification.
    Other file, another site but similar situation.
    Content changed - form added but next day the change is not reflected. File updates not reflected. I modified content, added data validation and saved the file back - next day file is still the way it was before modification.
    Other file, another site but similar situation.
    Content changed - form added but next day the change is not reflected.

    Hi,
    According to your post, my understanding is that changes to Excel files are not getting updated.
    I recommend to configure Excel Services data refresh by using Secure Store and an external Office Data Connection (ODC) file.
    For more information, you can refe to:
    Configure Excel Services data refresh by using external data connections in SharePoint Server 2013
    If you use PowerPivot, you can refer to:
    Refreshing PowerPivot Data in SharePoint 2013
    If you use Office Web Apps, you can use New-SPWOPISuppressionSetting -extension xlsx -action view to refresh data.
    You can refer to:
    PowerPivot for SharePoint - Browser Refresh Fails (Data Refresh not supported in Office Web Apps)
    In addition, here is a similar thread for your reference:
    http://social.technet.microsoft.com/Forums/office/en-US/2c4009f3-62bc-4af0-9e16-e40e9d418e3b/user-changes-to-sharepoint-documents-lost
    Best Regards,
    Linda Li
    Linda Li
    TechNet Community Support

  • G/L Accounts are not copied

    Hi Experts,
    I created a new company code and it is  copied from 1000.
    But the G/L Accounts are not copied from 1000 to new company code.
    i want to copy the existing G/L Accounts.
    Please guide me.
    Ramireddy

    Hi
    Although you would ask it in FI forums, have you used the tcode OBY2 without the test flag to copy GL acc. from one company to the other? Remember that in destiny company must not have any account,
    Regards
    Eduardo
    I copy the info from documentation in IMG:
    Copy Company Code
    In this activity you can copy G/L accounts from one company code to another.
    Requirements
    No G/L accounts may exist in the target company code.
    The chart of accounts for the target company code must be a copy of the source company code's chart of accounts.
    Note
    If no master data exists for G/L accounts in the chart of accounts area in the target company code, the system copies the master data from the source company code's chart of accounts.
    Activities
    Enter a target company code in the Company code field. In the Copy from company code field, enter the company code you want to copy.
    Edited by: E_Hinojosa on Oct 27, 2011 3:35 PM

Maybe you are looking for