Error when adding an item to HU  using FM ADD_TO_EXISTING_HU

Please I need help, could some tell me what I am doing wrong I keep an error when I try to add an item to a HU, here is the code:
FUNCTION zrf_hu_add_pack.
""Local Interface:
*"  IMPORTING
*"     VALUE(HU_HEADER) LIKE  BAPIHUHDRPROPOSAL STRUCTURE
*"        BAPIHUHDRPROPOSAL
*"     VALUE(USERNAME) LIKE  SY-UNAME OPTIONAL
*"     VALUE(PRINTER) TYPE  RSPOLNAME OPTIONAL
*"  EXPORTING
*"     VALUE(RETURN) LIKE  BAPIRET2 STRUCTURE  BAPIRET2
*"  TABLES
*"      HU_ITEMS STRUCTURE  BAPIHUITMPROPOSAL
  DATA: ret TYPE STANDARD TABLE OF bapiret2,
        header TYPE bapihuhdrproposal,
        hukey TYPE bapihukey-hu_exid,
        huheader TYPE bapihuheader,
        itemsproposal TYPE STANDARD TABLE OF bapihuitmproposal,
        itm TYPE STANDARD TABLE OF bapihuitem,
        item_prop TYPE  huitm_prop,
        obj TYPE hum_object,
        del_type TYPE vbtyp,
        hu_ext TYPE  hum_exidv_t,
        hu_int TYPE hum_venum_t,
        out_msg TYPE huitem_messages_t,
        tmp_vbeln TYPE vbeln,
        hu_hdr TYPE huhdr_proposal,
        hu_mm TYPE hum_plant_stloc,
        itm_wa LIKE LINE OF itm,
        item_prop_wa LIKE LINE OF item_prop,
        hui_wa LIKE LINE OF hu_items.
  DATA: ls_handling_units TYPE hum_rehang_hu,
        ls_high TYPE vekp-venum.
  DATA: it_items LIKE huitm_proposal,
         hm_obj TYPE hum_object,
         hu_prop TYPE huhdr_proposal,
         hu_add TYPE huhdr_add,
         hu_add_wa LIKE LINE OF hu_add,
         hu_items1 TYPE huitm_prop,
         hu_items_wa LIKE LINE OF hu_items1.
  DATA: hu_msg TYPE huitem_messages_t,
          hu_msg_wa LIKE LINE OF hu_msg,
          hu_hdr1 TYPE     hum_hu_header_t,
          hu_hdr1_wa LIKE LINE OF hu_hdr1.
  DATA: i_mm_data  LIKE  hum_plant_stloc,
        hu_internal TYPE  hum_venum_t,
        hu_external TYPE  hum_exidv_t,
        handling_unit TYPE  huitem_from,
        h_unit_l TYPE huitem_from,
        is_item_proposal TYPE  huitm_proposal,
        i_delivery_type  TYPE  likp-vbtyp ,
        et_messages      TYPE  huitem_messages_t.
  DATA: venum TYPE venum.
  DATA: lt_hu LIKE bapihunumber OCCURS 0 WITH HEADER LINE,
        lt_huhdr LIKE bapihuheader OCCURS 0 WITH HEADER LINE.
  DATA: t_return TYPE TABLE OF bapiret2.
get header
  lt_hu-hu_exid = hu_header-hu_exid.
  APPEND lt_hu.
get HU header
  CALL FUNCTION 'BAPI_HU_GETLIST'
    EXPORTING
      onlykeys      = ' '
    TABLES
      hunumbers     = lt_hu
      huheader      = lt_huhdr
      return        = t_return
    EXCEPTIONS
      error_message = 2
      OTHERS        = 4.
  IF sy-subrc NE 0.
    CALL FUNCTION 'BALW_BAPIRETURN_GET2'
      EXPORTING
        type   = sy-msgty
        cl     = sy-msgid
        number = sy-msgno
        par1   = sy-msgv1
        par2   = sy-msgv2
        par3   = sy-msgv3
        par4   = sy-msgv4
      IMPORTING
        return = return.
    ROLLBACK WORK.
  ELSE.
get defaults
    PERFORM get_user USING username.
handling unit
    READ TABLE lt_huhdr INDEX 1.
    APPEND hu_header-hu_exid TO hu_external.
    APPEND lt_huhdr-hu_id TO hu_internal.
    h_unit_l-exidv = lt_huhdr-hu_exid.
    h_unit_l-venum = lt_huhdr-hu_id.
APPEND h_unit_l to handling_unit.
hold delivery number
    tmp_vbeln = hu_header-pack_mat_customer.
convert or pad
    CALL FUNCTION 'CONVERSION_EXIT_ALPHA_INPUT'
      EXPORTING
        input  = tmp_vbeln
      IMPORTING
        output = tmp_vbeln.
set up object key
    obj-object = '01'.
    obj-objkey = tmp_vbeln.
    CONDENSE obj-objkey.
get delivery type from delivery header
    SELECT SINGLE vbtyp INTO del_type
    FROM likp
    WHERE vbeln = obj-objkey.
set status
    hu_header-hu_status_init = '1'.
    MOVE-CORRESPONDING hu_header TO hu_mm.
    hu_mm-plant = hu_header-plant.
    hu_mm-stge_loc = hu_header-stge_loc.
    hu_mm-whse_no = '101'.
    hu_mm-stge_type = '916'.
    hu_mm-stge_bin = tmp_vbeln.
set up items
    LOOP AT hu_items INTO hui_wa.
      hu_items_wa-velin = '1'.
      hu_items_wa-belnr = tmp_vbeln.
      hu_items_wa-posnr = hui_wa-lower_level_exid.
      MOVE hui_wa-pack_qty      TO hu_items_wa-quantity.
      MOVE hui_wa-base_unit_qty TO hu_items_wa-meins.
      CALL FUNCTION 'CONVERSION_EXIT_MATN1_INPUT'
        EXPORTING
          input        = hui_wa-material
        IMPORTING
          output       = hu_items_wa-matnr
        EXCEPTIONS
          length_error = 1
          OTHERS       = 2.
      hu_items_wa-charg = hui_wa-batch.
      hu_items_wa-werks = hui_wa-plant.
      hu_items_wa-lgort = hui_wa-stge_loc.
     APPEND hu_items_wa TO hu_items1.
sort items
   SORT hu_items1 BY belnr posnr.
copy and change function ADD_TO_EXISTING_HU if neccessary
      CALL FUNCTION 'ADD_TO_EXISTING_HU'
        EXPORTING
          i_hu_id               = ''
          i_hu_ref_doc          = obj
          i_mm_data             = hu_mm
          i_hu_internal         = hu_internal
          i_hu_external         = hu_external
          is_handling_unit      = h_unit_l
          is_item_proposal      = hu_items_wa
          i_delivery_type       = del_type
        IMPORTING
          et_messages           = hu_msg
        EXCEPTIONS
          not_possible          = 1
          delivery_update_error = 2
          OTHERS                = 3.
      IF sy-subrc <> 0.
        CALL FUNCTION 'BALW_BAPIRETURN_GET2'
          EXPORTING
            type   = sy-msgty
            cl     = sy-msgid
            number = sy-msgno
            par1   = sy-msgv1
            par2   = sy-msgv2
            par3   = sy-msgv3
            par4   = sy-msgv4
          IMPORTING
            return = return.
        ROLLBACK WORK.
      ELSE.
        COMMIT WORK AND WAIT.
      ENDIF.
    ENDLOOP.
  ENDIF.
ENDFUNCTION.

It probably has something to do wit the kind of HU that you are using.
If you call a " where used " of the error message HUFUNCTIONS 261 you will see that there are several checks concerning the kind of HU.
The types of HU's can be found in domain VPOBJ.
Hope this helps,
Regards,
Dirk.

Similar Messages

  • Application Error when adding configurator item to shopping cart

    Hi All,
    We are getting application error while selecting the configurator model item in iStore pages in oracle apps R12.
    The view source shows following message:
    java.lang.NullPointerException
         at oracle.apps.ibe.shoppingcart.quote.ShoppingCart.addModelsToCart(ShoppingCart.java:7079)
         at oracle.apps.ibe.configurator.Configurator.addItemToCart(Configurator.java:272)
         at ibeCFgpLaunch.jspService(_ibeCFgpLaunch.java:1241)
         at com.orionserver.http.OrionHttpJspPage.service(OrionHttpJspPage.java:59)
         at oracle.jsp.runtimev2.JspPageTable.service(JspPageTable.java:390)
         at oracle.jsp.runtimev2.JspServlet.internalService(JspServlet.java:594)
         at oracle.jsp.runtimev2.JspServlet.service(JspServlet.java:518)
         at javax.servlet.http.HttpServlet.service(HttpServlet.java:856)
         at com.evermind.server.http.ServletRequestDispatcher.invoke(ServletRequestDispatcher.java:734)
         at com.evermind.server.http.ServletRequestDispatcher.forwardInternal(ServletRequestDispatcher.java:391)
         at com.evermind.server.http.ServletRequestDispatcher.unprivileged_forward(ServletRequestDispatcher.java:280)
         at oracle.oc4j.security.OC4JSecurity.doPrivileged(OC4JSecurity.java:284)
         at com.evermind.server.http.ServletRequestDispatcher.forward(ServletRequestDispatcher.java:219)
         at com.evermind.server.http.EvermindPageContext.forward(EvermindPageContext.java:395)
         at ibeCCtpBuyRoute.jspService(_ibeCCtpBuyRoute.java:2490)
    While selecting the normal standard item i got below error:
    Error:
    There is an error in order submission.
    ERROR_RETURNED (API=ASO_QUOTE_CUHK.Create_Quote_PRE)
    Also i checked all invalid objects , but i couldn't find any ASO or IBE related invalid objects.
    Please help, it was urgent..

    L S P.. wrote:
    Hi,
    Actually that notes says about invalid objects in ASO and IBE objects.
    But i couldn't found any invalid objects. Also i was cleared cache using functional administrator also.
    But still am getting this error.
    Please help on this.. It is on critical.Please log a SR if the doc did not help.
    Thanks,
    Hussein

  • Error when adding line items in a Contract

    Hi All,
    Need your help regarding the following issue.
    The business user is trying to edit (to add more line items/materials) a contract with customized T.Code ZGME31K.
    Getting error "Enter rate USD / rate type M for 11/24/2009 in the system settings" MSG No. SG105.
    However, the Vendor, Material all are maintained in the same currency i.e. USD.
    So, not finding a scope of rectification in OB28.
    Please advice.
    Regards,
    Milan.

    Hi,
    I closed
    Re: SBWP attachment link not diverting to Contract/P.O
    as my problem got resolved.
    And I put it "unanswered" as no one gave me the correct answer.
    It came out as a result of several testing in Quality by our team. Anyway, thanks to everyone who contributed.
    Regards,
    Milan.

  • C#: when adding listview items the screen flashes and only single listview column loads?

    When adding listview items, the listview1 items flash and only the first listview column loads (there are 5 columns in all)?
    Background...
    I was having cross-threading issues on 3 form components which I was able to resolve (see
    code here). Now I think the soluiton which involves creating a delegate and performing an "InvokeRequired" check (see
    what I used), I'm having an issue passing 5 values for each column. Below is the code involved calling this invoking check for each and their methods.
    Before having the cross-thread issue the "listview1.Items.Add(values.text) add the comma separated string values to the appropriate columns, but that doesn't happen through the cross-thread fix required.
    The "Loading()" method is handled through and async/await method causing the initial cross-thread issue.
    private void Loading()
    int t = 1;
    foreach (string line in scripts)
    string[] listValues = line.Split(',');
    ListViewItem values = new ListViewItem(listValues);
    if (t == 1)
    AddColumn("Script Name", 200); // Creates column headings
    AddColumn("Date and Time", 150);
    AddColumn("SID", 75);
    AddColumn("Environment", 75);
    AddColumn("Client", 75);
    t++;
    else
    if ((values.Text != "") && (values.Text != "Script Name"))
    //listView1.Items.Add(values);
    AddItem(values.Text);
    if (!dictScript.Contains(values.Text))
    dictScript.Add(values.Text);
    //cbxScriptList.Items.Add(values.Text);
    AddScript(values.Text);
    private void AddItem(object o)
    if (this.listView1.InvokeRequired)
    AddItemCallback d = new AddItemCallback(AddItem);
    this.Invoke(d, new object[] { o });
    else
    { // code that adds item to listView (in this case $o)
    listView1.Items.Add(o.ToString());
    private void AddScript(object o)
    if (this.listView1.InvokeRequired)
    AddCBXCallback d = new AddCBXCallback(AddScript);
    this.Invoke(d, new object[] { o });
    else
    { // code that adds item to listView (in this case $o)
    cbxScriptList.Items.Add(o.ToString());
    private void AddColumn(object o1, object o2)
    if (this.listView1.InvokeRequired)
    AddColCallback d = new AddColCallback(AddColumn);
    this.Invoke(d, new object[] { o1, o2 });
    else
    { // code that adds item to listView (in this case $o)
    listView1.Columns.Add(o1.ToString(), (int)o2); // Creates column headings
    SV

    Ok, I still have the flickering issue, I could use some guidance on that. And I should note that before I had the code-threading issue, I never had any flickering, it all appeared simultaneously.
    However, I was able to populate all columns (5 in all).  I had two corrections to make.
    1) My method should not have been passing the parameter as text but as the object ListViewItem:
    // Not This...
    AddItem(values.text)
    // This is Correct...
    AddItem(values)
    2) Then I needed to cast my object as a ListViewItem in my method call:
    private void AddItem(object o)
    if (this.listView.InvokeRequired)
    AddItemCallback d = new AddItemCallback(AddItem);
    this.Invoke(d, new object[] { (ListViewItem)o });
    else { // code that adds item to listView (in this case $o)
    listView1.Items.Add((ListViewItem)o);
    SV

  • Error when adding Essbase server...

    Hi,
    I installed Hyperion System 9.3.1 in my development machine and encounter the following error when adding a Essbase server in AAS for the first time.
    Error: 1042017: Network error: The client or server timed out waiting to receive data using TCP/IP. Check network connections. Increase the NetRetryCount and/or NetDelay values in the ESSBASE.CFG file. Update this file on both client and server. Restart the client and try again.
    I used the default user "admin" and password "password". I used my servername:10080 as the server name. I hope I am right.
    Why is this happening? I tried changing netdelay settings but still get the same. Is this something else? Does this have anything to do with my TCP/IP settings? I am installing this on a virtual PC.
    I couldn't find an answer in previous posts.
    regards
    h

    The things that come to mind:
    The server name you use should be the name of the virtual PC, not the machine it's running on. Also, depending on the settings for the Virtual PC environment, you may have to change the network options to allow it to be visible to the network, be in the right domain, etc...
    The above may or may not get you any closer, the error message itself is just saying it can't receive a response from the server, which means the server never got the request or can't send a response back.
    Good Luck,

  • Error when reading unassigned items on /CCM/MASTER_CATALOG

    Hello gurus,
    we upgrated CCM 2.0 from SP 06 to SP10.
    After we uploaded new schema on /CCM/MASTER_CATALOG and mapped newly
    Supplier Catalogs to Master catalog and Master to Procurements.
    When I connect on /CCM/MASTER_CATALOG in edit mode, on "Content" tab we
    saw an error "Error when reading unassigned items". In the catalog
    structure tree, yellow arrow is on MASTER CATALOG name.
    In the log there are error log with error information: "ERROR READING
    HEADER DATA".
    Is this problem dependent on upgrade or something else?
    These are our components on system:
    SAP_BASIS 700 0013 SAPKB70013
    PI_BASIS 2005_1_700 0013 SAPKIPYJ7D
    SAP_BW 700 0015 SAPKW70015
    FINBASIS 600 0010 SAPK-60010INFINBASIS
    BI_CONT 703 0007 SAPKIBIIP7
    SEM-BW 600 0010 SAPKGS6010
    CCM 200_700 0010 SAPK-27010INCCM
    Thanks for all
    Gerardo

    hi,
    See the foll related threads:
    Re: CCM - "error when reading master catalog"
    Re: Problem when upload content
    Error reading master data catalog (CCMv2)
    Re: Catalog item not found during publication master catalog
    Re: Uploading of Master Schema in CCM 2.0
    Error" Index of values is missing for characteristic " in mapping
    CCM automatic upload of CSV files
    Re: Uploading in CCM
    Re: CCM 2.0 Sample file CSV
    Re: How to change an existing line item in CCM catalog using CSV file?
    Re: Date Problem in CSV 2.0 Format in CCM
    Re: How to change an existing line item in CCM catalog using CSV file?
    BR,
    Disha.
    <b>Pls reward points for useful answers.</b>

  • Error when adding any menu - FRM-40735: ON-INSERT trigger raised unhandled

    When I try to add any new menu in my newly cloned instance I get this error:
    Error when adding any menu - FRM-40735: ON-INSERT trigger raised unhandled excpetion. ORA-04031.
    Using Oracle EBS version 12.1.3.
    Details:
    Menu JOB_STRUCTURE_MENU
    User Menu Name Job Strucure Menu
    Menu Type Standard
    Description Menu to add job, grade, and incentives
    Seq = 1
    Prompt = Enter and Maintain
    Function = Combined Person & Assignment Form WF="US SHRMS TSKFLW
    When I click save I get the error.
    Any assistance would be greatly appreciated.
    Thanks!

    Please post the details of the application release, database version and OS.
    When I try to add any new menu in my newly cloned instance I get this error:
    Error when adding any menu - FRM-40735: ON-INSERT trigger raised unhandled excpetion. ORA-04031.Is the issue with all menus or specific ones only?
    Did AutoConfig complete successfully?
    When I click save I get the error.
    Any assistance would be greatly appreciated.Do you have any invalid objects in the database?
    Any errors in the database log file?
    Please obtain FRD log file for details about the error -- https://forums.oracle.com/forums/search.jspa?threadID=&q=FRD+AND+R12&objID=c3&dateRange=all&userID=&numResults=15&rankBy=10001
    Thanks,
    Hussein

  • Error when starting work item

    Hi
    We are having SRM5.0.
    Trying to create Contract. Workflow Without approval of contract(WS1400086)is activated and start conditions also no workflow activated.
    Contract is created and getting message Contract created.
    But when tried to release the contract it shows "Awaiting approval".
    In Workflow log (SWI1)it shows error."Error when starting work item xxxx".
    What could be the reason. Please let me know the solution if anyone of you come across such error.
    Thanks in advance
    Jagadish

    Masa
    It is maintained as General task already.
    It seems the workflow task WS14000085 does not have definition.
    When checked in SWDD for the above teask there are no steps defined for that workflow.
    SAP says that we need to define and action for workflow WS14000085.
    But what is the procedure to define the workflow.
    I presume this is the standard workflow and it should be defined by default when it comes along with the SRM package.
    Anyone of you know how to define the workflow and activate the same?
    Regards
    Jagadish

  • Hello.  How do I keep the actual size of a photo when adding to a Keepsake?  Used to do this but have forgotten how!

    Hello.  How do I keep the actual size of a photo when adding to a Keepsake?  Used to do this but have forgotten how!  Need help please!
    T.

    Here is my suggestion:
    Open a blank, new file (File>new>blank file) size 8.5x11"
    Open the collage
    Go to Select>all
    Go to Edit>copy
    Go back to the blank file created in step #1
    Go to Edit>paste. The collage will be on its own layer
    Access the move tool, and with the corner handles resize the collage. Using the corner handles should preserve the aspect ratio. If you open the rulers, you will have a point of reference as you go along.
    Print a draft copy to see if it will be suitable in the frame..
    Please report back with your progress.

  • Error when adding a partition to a materlialized view

    Hi,
    I am getting this error when adding a partition to a materialized view.
    ALTER MATERIALIZED VIEW mvedw.MV_CLM_CAPITN_F ADD PARTITION MAR2013 VALUES LESS THAN ('201304')
    ERROR at line 1:
    ORA-14074: partition bound must collate higher than that of the last partition
    Please advise.
    Regards,
    Narayan

    SQL> select TABLE_OWNER,TABLE_NAME,PARTITION_NAME,HIGH_VALUE from dba_tab_partitions where table_name =
    'MV_CLM_CAPITN_F' order by PARTITION_NAME 2
    3 ;
    TABLE_OWNER TABLE_NAME PARTITION_NAME HIGH_VALUE
    MVEDW MV_CLM_CAPITN_F APR2009 '200905'
    MVEDW MV_CLM_CAPITN_F APR2010 '201005'
    MVEDW MV_CLM_CAPITN_F APR2011 '201105'
    MVEDW MV_CLM_CAPITN_F APR2012 '201205'
    MVEDW MV_CLM_CAPITN_F AUG2009 '200909'
    MVEDW MV_CLM_CAPITN_F AUG2010 '201009'
    MVEDW MV_CLM_CAPITN_F AUG2011 '201109'
    MVEDW MV_CLM_CAPITN_F AUG2012 '201209'
    MVEDW MV_CLM_CAPITN_F DEC2008 '200901'
    MVEDW MV_CLM_CAPITN_F DEC2009 '201001'
    MVEDW MV_CLM_CAPITN_F DEC2010 '201101'
    TABLE_OWNER TABLE_NAME PARTITION_NAME HIGH_VALUE
    MVEDW MV_CLM_CAPITN_F DEC2012 '201301'
    MVEDW MV_CLM_CAPITN_F FEB2009 '200903'
    MVEDW MV_CLM_CAPITN_F FEB2010 '201003'
    MVEDW MV_CLM_CAPITN_F FEB2011 '201103'
    MVEDW MV_CLM_CAPITN_F FEB2012 '201203'
    MVEDW MV_CLM_CAPITN_F FEB2013 '201303'
    MVEDW MV_CLM_CAPITN_F JAN2009 '200902'
    MVEDW MV_CLM_CAPITN_F JAN2010 '201002'
    MVEDW MV_CLM_CAPITN_F JAN2011 '201102'
    MVEDW MV_CLM_CAPITN_F JAN2012 '201202'
    MVEDW MV_CLM_CAPITN_F JAN2013 '201302'
    TABLE_OWNER TABLE_NAME PARTITION_NAME HIGH_VALUE
    MVEDW MV_CLM_CAPITN_F JUL2009 '200908'
    MVEDW MV_CLM_CAPITN_F JUL2010 '201008'
    MVEDW MV_CLM_CAPITN_F JUL2011 '201108'
    MVEDW MV_CLM_CAPITN_F JUL2012 '201208'
    MVEDW MV_CLM_CAPITN_F JUN2009 '200907'
    MVEDW MV_CLM_CAPITN_F JUN2010 '201007'
    MVEDW MV_CLM_CAPITN_F JUN2011 '201107'
    MVEDW MV_CLM_CAPITN_F JUN2012 '201207'
    MVEDW MV_CLM_CAPITN_F MAR2009 '200904'
    MVEDW MV_CLM_CAPITN_F MAR2010 '201004'
    MVEDW MV_CLM_CAPITN_F MAR2011 '201104'
    TABLE_OWNER TABLE_NAME PARTITION_NAME HIGH_VALUE
    MVEDW MV_CLM_CAPITN_F MAR2012 '201204'
    MVEDW MV_CLM_CAPITN_F MAR2013 '201304'
    MVEDW MV_CLM_CAPITN_F MAY2009 '200906'
    MVEDW MV_CLM_CAPITN_F MAY2010 '201006'
    MVEDW MV_CLM_CAPITN_F MAY2011 '201106'
    MVEDW MV_CLM_CAPITN_F NOV2009 '200912'
    MVEDW MV_CLM_CAPITN_F NOV2010 '201012'
    MVEDW MV_CLM_CAPITN_F NOV2012 '201212'
    MVEDW MV_CLM_CAPITN_F OCT2009 '200911'
    MVEDW MV_CLM_CAPITN_F OCT2010 '201011'
    MVEDW MV_CLM_CAPITN_F OCT2011 '201111'
    TABLE_OWNER TABLE_NAME PARTITION_NAME HIGH_VALUE
    MVEDW MV_CLM_CAPITN_F OCT2012 '201211'
    MVEDW MV_CLM_CAPITN_F SEP2009 '200910'
    MVEDW MV_CLM_CAPITN_F SEP2010 '201010'
    MVEDW MV_CLM_CAPITN_F SEP2011 '201110'
    MVEDW MV_CLM_CAPITN_F SEP2012 '201210'
    These are the list of partitions available.
    Regards,
    Narayan

  • I get this error when downloading key not valid for use in specified state what do i do

    i get this error when downloading key not valid for use in specified state what do i do

    What is your operating system?  What are you trying to download?

  • [svn:bz-trunk] 21394: bug fix for watson 2887837 Not getting duplicate session detected error when same flex client id is used from two different HTTP sessions in CRX .

    Revision: 21394
    Revision: 21394
    Author:   [email protected]
    Date:     2011-06-16 12:34:13 -0700 (Thu, 16 Jun 2011)
    Log Message:
    bug fix for watson 2887837 Not getting duplicate session detected error when same flex client id is used from two different HTTP sessions in CRX.
    get the sessions id before we invalidate the duplicate session.
    Checkintests pass
    Modified Paths:
        blazeds/trunk/modules/core/src/flex/messaging/endpoints/BaseHTTPEndpoint.java

    For our profect I think this issue was caused as follows:
    Believing that remoting was full asynchronous we fired a 2 or 3 remote calls to the server at the same time ( within the same function ) - usually when the users goes to a new section of the app.
    This seemed to trigger the duplicate http session error since according to http://blogs.adobe.com/lin/2011/05/duplication-session-error.html  two remote calls arriving before a session is created will cause 2 sessions to be created.
    Our current solution ( too early to say it works ) is to daisy chain the multiple calls together .
    Also there seemed to be an issue where mobile apps that never quit ( thanks Apple! )  caused the error when activated after a few hours.
    I guess the session expires on the server and the error above occurs on activation.
    So the mobile apps now ping the server with a remote call when activated after sleeping for more than one hour.
    All duplicate http errors are silently caught and reported.
    Fingers crossed we won't get any more!

  • Library error when adding contact or when logging in

    The messenger server has a replica of the partition holding the users.
    It's an OES 2 sp2 server, and the GW Messenger is 2.04.
    Sometimes we see an error that says 'Library error' when adding a contact, or it doesn't show all users that exists with the search parameter given.
    We also sporadically see a 'Library error' when some users log in to it.
    Looking in the log I see an error that says 0xAE16 when users log in fails.
    I can find the 0xAE11 error in the TID's but not the 0xAE16, I did find an article on the forums, mentioning this problem http://forums.novell.com/novell-prod...or-server.html, they mention memory problems, so it seems to me there is a bug that needs fixing.

    I've disabled the '/diruseralias-"Internet EMail Address"' setting that was set up in the strtup.ma and strtup.aa scripts.
    I've also, for now at least, chosen another replica.
    I haven't seen the errors yet, so here's hoping...

  • Workflow status web part gives error when going back to previous stage (using GO TO) in Project Server 2013 workflow

    Hi,
    Workflow status web part gives error when going back to previous stage (using GO TO) transition activity  in Project Server 2013 workflow.
    Please guide how to create a workflow which restarts from a desired stage.

    Thanks for your prompt reply....
    It gives following error
    Workflow Status
    This Web Part was unable to load.
    Information that may be useful in solving this problem was written to the Unified Logging Service (ULS) log on the Project Web App with the following ID: e95a9c9c-1f68-90d7-0a3e-5951df70fec6
    For more information, contact your Project Web App administrator.
    what do you mean to restart the Project Server 2013 with different project name, please elaborate....

  • HT203242 I get this error when launching itunes "the registry settings used by the itunes drivers for importing and burning CDs and DVDs are missing." I ahve reinstalled iTunes multiple times but the issue remains.....any suggestions?

    I get this error when launching itunes "the registry settings used by the itunes drivers for importing and burning CDs and DVDs are missing." I ahve reinstalled iTunes multiple times but the issue remains.....any suggestions?

    I'd start with the following document, with one modification. At step 12 after typing GEARAspiWDM press the Enter/Return key once prior to clicking OK. (Pressing Return adds a carriage return in the field and is important.)
    iTunes for Windows: "Registry settings" warning when opening iTunes

Maybe you are looking for