Life in months is not populating from interface in Mass Additions Post

Hi,
We have one critical issue in FA conversion.We have popultaed the life_in_months in fa_mass_additions table.When we run the Mass Additions Post,it is defaulting the life_in_months from category and not from fa_mass_additions interface table.As per intended functionality,it should populate from interface table.
If any of you encounter the issue,Please let me know the soultinon.
Thnaks
Praveen

>
DATA showing on front end,but it is not populating into base table AP_INVOICE_DISTRIBUTIONS_ALL.
>
Are you saying you can see the distributions from front end but not in the table?
Did you populate the distribution related columns in AP_INVOICE_LINES_INTERFACE (e.g. DIST_CODE_COMBINATION_ID)?
Sandeep Gandhi

Similar Messages

  • Switch Code Not Populating from Dropdown

    I am using below code on exit property of dropdown (actual has about 4 locations/names).  The SiteMgr and SiteLoc fields are not populating when a selection is made.  The dropdown is in a subform named sfrmProjNo, it is located on the main/1st page of form.  Any ideas where I'm going wrong?  Thank you!
    dataroot.#subform[0].Table1.Row1[1].sfrmProjNo.proj3dig::exit - (JavaScript, client)
    switch (this.rawValue)
        case "ABC":
        SiteMgr.rawValue = "Name 1";
        SiteLoc.rawValue = "Location 1";
        break;
        case "DEF":
        SiteMgr.rawValue = "Name 2";
        SiteLoc.rawValue = "Location 2";
        break;
        case "GHI":
        SiteMgr.rawValue = "Name 3";
        SiteLoc.rawValue = "Location 3";
        break;
        case "JKL":
        SiteMgr.rawValue = "Name 4";
        SiteLoc.rawValue = "Location 4";
        break;

    Its may be because of wrong path for the fields.
    SiteMgr ,SiteLoc fields are under the sfrmProjNo subform ? If they are not then
    Try to give complete path for the fields.If it doesnt work As Malcolm told share the file so that we can have a look ..

  • Item not populating from CCM into shopping

    Hi Gurus,
        The Excel file has been uploaded and published successfully into CCM but when the only one line is not getting populated when that item is used in the shopping function the source of supply box is blank and has to be manually populated. Early solution will be rewarded pl.
    Regards,
    Raj

    Hi,
    The field Supplier will be automatically carried to the procurement catalog from the Supplier Catalog, you should ensure the Supplier is a valid vendor in SRM - you can check this by implementing the coding from note 487917 and checking the OCI data in SLG1 for object BCT1.
    Regards,
    Jason

  • Cal year / Month is not populating correctly in Bex report

    Hi Experts,
    We have a bex query on virtual provider with only one column in it i.e 'cal year / month'. I'm having the problem with this column.
    In the excel output of this report the cal year /month is displaying in this sequence.
    01/0000     02/0000     03/0000     04/0000     05/0000     06/0000     07/0000     08/0000     09/0000     08/2008     09/2008     10/2008     11/2008     12/2008     01/2009     02/2009     03/2009     04/2009     05/2009     03/2010     04/2010     05/2010     06/2010     07/2010     08/2010     09/2010     10/2010     11/2010     12/2010     01/2011     02/2011     03/2011     04/2011     05/2011     06/2011     07/2011     08/2011     09/2011     10/2011     11/2011     12/2011     01/2012     02/2012     03/2012     04/2012     05/2012     06/2012     07/2012     08/2012
    I'm not getting why the first 9 columns its displaying as 01/0000     02/0000     03/0000     04/0000     05/0000     06/0000     07/0000     08/0000     09/0000     .
    It should display as
    08/2008     09/2008     10/2008     11/2008     12/2008     01/2009     02/2009     03/2009     04/2009     05/2009
    06/2009        07/2009        08/2009         09/2009         10/2009        11/2009        12/2009        01/2010         02/2010         03/2010     04/2010     05/2010     06/2010     07/2010     08/2010     09/2010     10/2010     11/2010     12/2010     01/2011     02/2011     03/2011     04/2011     05/2011     06/2011     07/2011     08/2011     09/2011     10/2011     11/2011     12/2011     01/2012     02/2012     03/2012     04/2012     05/2012     06/2012     07/2012     08/2012
    My data source is fetching the correct data including this cal year/ month.
    Thanks in advance for your help.
    Regards,
    Brahma Reddy

    It seems there are some records of "cal year/month" with value 01/0000 02/0000 03/0000 04/0000 05/0000 06/0000 07/0000 08/0000 09/0000
    2 possible solution:
    1) Check the data again, you may simply filter them by restrict the cal year/month to the specific value (01/0000)
    2) restrict the cal year/month, only allow 2008/8 + value in the result.

  • Value is not populating in field through search help f4

    Hello Expert,
    I have made one field as a search help but data is not populating from popup.
    Data is coming from BP_search_help. Here i did not create any search help in se11. not required here.
    i used Code in get_p method.
    Method GET_P_BP_NUMBER.
    CASE iv_property.
        WHEN if_bsp_wd_model_setter_getter=>fp_fieldtype.
          IF iv_display_mode EQ abap_true.
            rv_value = cl_bsp_dlc_view_descriptor=>field_type_event_link.
          ELSE.
            rv_value = cl_bsp_dlc_view_descriptor=>field_type_input.
          ENDIF.
        WHEN if_bsp_wd_model_setter_getter=>fp_onclick.
          rv_value = ' '.  "EC NOTEXT
      ENDCASE.
    ENDMETHOD.
    GET_V Method.
    DATA: ls_map TYPE if_bsp_wd_valuehelp_f4descr=>gtype_param_mapping,
            lt_inmap TYPE if_bsp_wd_valuehelp_f4descr=>gtype_param_mapping_tab,
            lt_outmap TYPE if_bsp_wd_valuehelp_f4descr=>gtype_param_mapping_tab.
      ls_map-context_attr = 'STRUCT.BP_NUMBER'.
      ls_map-f4_attr = 'PARTNER'.
      APPEND ls_map TO: lt_inmap,lt_outmap.
      CREATE OBJECT rv_valuehelp_descriptor TYPE cl_bsp_wd_valuehelp_f4descr
            EXPORTING
              iv_help_id        = 'BP_HEAD_SEARCH'                            "#EC NOTEXT
              iv_help_id_kind  = if_bsp_wd_valuehelp_f4descr=>help_id_kind_dtel
              iv_trigger_submit = 'X'
              iv_input_mapping  = lt_inmap
              iv_output_mapping = lt_outmap
    endmethod.
    But when i activate get_v method .i am getting 1 error.
    Error is
    Please help me how to rectify this error and any other way to populate data in field through f4 help.
    If u want more detail. Please follow attachment.

    Hi Madhuri,
    You can refer the below code for search help for partner. The code has to be written on GET_V_XXX method.
    DATA: ls_map TYPE if_bsp_wd_valuehelp_f4descr=>gtype_param_mapping,
             lt_outmap TYPE if_bsp_wd_valuehelp_f4descr=>gtype_param_mapping_tab.
       ls_map-context_attr = 'STRUCT.BP_NUMBER'.
       ls_map-f4_attr = 'PARTNER'.
       APPEND ls_map TO lt_outmap.
       CREATE OBJECT rv_valuehelp_descriptor TYPE cl_bsp_wd_valuehelp_f4descr
         EXPORTING
           iv_help_id        = 'UIF_BUPAP_WIDE_COL'    ""Search help name
           iv_help_id_kind   = if_bsp_wd_valuehelp_f4descr=>help_id_kind_comp
           iv_trigger_submit = abap_true
           iv_input_mapping  = lt_inmap
           iv_output_mapping = lt_outmap.
    Thanks,
    Ritu

  • Mac not picking up interface audio

    Ok i've had this problem before and I'm not sure why it came back. I have tried plugging in my synth to the interface from the two outputs on the synth to the line ins on the interface and then USB to the Mac. I've also tried a bass and a mic (at separate times of course). The problem is that I can hear the audio from whatever instrument i'm playing by monitoring through the interface and GB recognizes the interface when it plugs in (Tascam US-122L) but the sound is not getting from the interface to GB for some reason. Input and Ouput settings on GB are set to US-122L. For the Mic and bass I set it to mono and turned monitor on and for the synth i turned it to stereo. No input signal whatsoever found on GB. What am I doing wrong?

    It's set as a real instrument track. Both line outs from the synth are plugged in the line ins on the interface. Line levels are turned up. Switch is set to Mic/Line. Mon Mix knob is all the way to the right for computer (all the way to the left being Input). Plugging phones in to the interface allows me to hear the synth that way. USB light is on. GB recognizes the US-122L when I plug it in but no signal is coming through it all. Changed Output to built-in output and plugged phones in to the mac to see if I could hear anything. Nothing at all. US-122L is set to Input. The Sig/OL lights on the Tascam flash when I hit the keys on the synth. It should be noted that when I try to plug in a bass or a mic, the same thing happens.
    So bottom line: audio is traveling from synth to interface, mac is picking up USB connection from interface, but audio is not going from interface to mac for some reason. Note that it's not just a matter of hearing the sound being played on GB, there's not even a signal showing up on the mixer for that selected real instrument track.

  • Pharma: shelf life with remaining 4 months should not be considered for planning

    Hi,
    Implementation in Pharma : FG Shelf life with remaining 4 months should not be considered for FG planning.
    How to exclude this stock while planning for FG. FG planning is Make to stock.
    BR
    Subbu.

    Hi,
    Thanks to Caetano, Kumar & Mani..
    We have achieved this with below with customized program....
    Exclude those batches from MRP run whose difference between the (expiration date &
    current date ) is less than or equal to its procurement time mention in MRP-2
    view of material master.
    Before running MRP, one need to execute the program with following option:
    Input data will be plant, material type or list of material:
       System should execute following logic:
    1) In a plant list all material with given material type
    2) Execute the BAPI for find out the characteristic value of EXB_MRP from class
    type 001of material class (BAPI_OBJCL_GETDETAIL_KEY)
    3) If EXB_MRP = Y , then list out all such material.
    4) For such a material identity those batches which are available in stock other
    than ‘9999’
    5) All such batches characteristic of shelf life expiry date need to be derived
    from BAPI
    6) Calculate ( Expiry Date  - Today’s Date)
    = Difference
    PLIFZ  ), batch of
    the material will be transferred to the 9999 storage location which will be
    excluded from MRP run.
    PLIFZ  ), batch of the material will be transferred
    to the 9999 storage location which will be excluded from MRP run.
       7) Run the MRP on materials
       8) Transfer posting from 9999 storage location to original storage location :
    Selection criteria
       On execution transfer the material back to required storage location.
    BR
    Subbu.

  • How can I Print the next 4 or 5 weeks from iCal in month view (not simply complete months)

    How can I Print the next 4 or 5 weeks from iCal in month view (not simply complete months).
    I'd like to print the next (up an coming) weeks of my calendar from iCal in month view - The idea is to get this information on 1 sheet of A4.. just like the month view.. but as far as i can see the month view only gives you current or next complete months.. The ONLY time this give me the view I want is in the first week of any given month.. the rest of the month part of the print is in the past and not enough of the up and coming weeks are shown?
    I can believe  the app won't allow you to do this .. am I missing an easy fix.. or has it been rectified in Yosemite .. I'm using mavericks 10.9.5.
    Thanks

    Hope this helps.  
    -------------How do I give Kudos? | How do I mark a post as Solved? --------------------------------------------------------

  • Unique problem Screen is not Getting data populated from BDC_DATA itab

    Hi Gurus,
    I have an unique problem, I have an custom transaction (module pool) and which first runs an ALV report displays an QM Records, There is an command button at the top of the report to create new defect, where i provide the Material Number, Supplier and Defect Code, and then if i press create it should navigate to standard transaction QM01 and It should create a new defect code.
    Issue:
    The recording runs fine till providing Material Number, Supplier and Defect Code of ZTCODE when it navigates to QM01, the whole executions just stops, i dont know why it is moving ahead. If i try to skip and come out of standard transaction also no improvement and all manually i should come out.
    Comparision with recording Made in ZTCODe and QM01.
    If i record the same activity directly with QM01 and if i try to run the recording, it runs perfectly.
    if i am trying to record it through Z module pool where it will navigate to standard transaction code QM01, it stops when it reaches QM01, i am getting this error. i dont know why.
    I have attached the code for your reference, kindly suggest me what can be the problem.
    MY CODE:
    perform bdc_dynpro      using 'ZQRPCCOMEX_NEW_SWCB' '1000'.
    perform bdc_field       using 'BDC_OKCODE'
                                  '=FC_DEFC'.
    perform bdc_field       using 'P_VAR'
                                  '/VEHICLEPROJ'.
    perform bdc_field       using 'BDC_CURSOR'
                                  'S_NITG-LOW'.
    perform bdc_field       using 'S_QMDAT-LOW'
                                  '03.09.2010'.
    perform bdc_field       using 'S_QMDAT-HIGH'
                                  '03.03.2011'.
    perform bdc_dynpro      using 'ZQRPCCOMEX_NEW_SWCB' '1000'.
    perform bdc_field       using 'BDC_OKCODE'
                                  '=ONLI'.
    perform bdc_field       using 'P_VAR'
                                  '/DEFECT_CODE'.
    perform bdc_field       using 'BDC_CURSOR'
                                  'S_NITG2-LOW'.
    perform bdc_field       using 'S_NITG2-LOW'
                                  'G22C'.
    perform bdc_dynpro      using 'SAPLSLVC_FULLSCREEN' '0500'.
    perform bdc_field       using 'BDC_OKCODE'
                                  '=NEW_DC'.
    perform bdc_dynpro      using 'ZQRPCCOMEX_NEW_SWCB' '9507'.
    perform bdc_field       using 'BDC_CURSOR'
                                  'W_SCR_REFNUM'.
    perform bdc_field       using 'BDC_OKCODE'
                                  '=OK'.
    perform bdc_field       using 'W_SCR_MATNR'
                                  'G22C'.
    perform bdc_field       using 'W_SCR_LIFNR'
                                  '220947-00'.
    perform bdc_field       using 'W_SCR_REFNUM'
                                  'C_DEF_11'.
                it is not executing from here these screens belongs to QM01, it stops the whole execution
    perform bdc_dynpro      using 'SAPLIQS0' '7200'.
    perform bdc_field       using 'BDC_OKCODE'
                                  '/00'.
    perform bdc_field       using 'BDC_CURSOR'
                                  'RQM00-MAWERK'.
    perform bdc_field       using 'RQM00-MAWERK'
                                  'CTT'.
    perform bdc_field       using 'VIQMEL-QMCOD'
                                  '0120'.
    perform bdc_dynpro      using 'SAPLIQS0' '7200'.
    perform bdc_field       using 'BDC_OKCODE'
                                  '=BUCH'.
    perform bdc_field       using 'BDC_CURSOR'
                                  'RQM00-MAWERK'.
    perform bdc_field       using 'RQM00-MAWERK'
                                  'CTT'.
    perform bdc_field       using 'VIQMEL-QMCOD'
                                  '0120'.
    perform bdc_dynpro      using 'SAPLSLVC_FULLSCREEN' '0500'.
    perform bdc_field       using 'BDC_OKCODE'
                                  '=&F12'.
    perform bdc_dynpro      using 'ZQRPCCOMEX_NEW_SWCB' '1000'.
    perform bdc_field       using 'BDC_OKCODE'
                                  '/EECAN'.
    perform bdc_transaction using 'ZM11'.
    The screen gets hanged up in the QM01 screen and where the mandatory fields are not getting populated and thats it execution is not happening at any screens if i am trying to come out of transaction.
    Assumption - Correct me if iam wrong.
    There can be complication while calling a Ztcode (module Pool) which in turns calls a Standard Tcode.
    Thanks & Regards,
    S.Saravanan

    HI,
    Check the recording i think the recording does not contain the initial screen i.e SAPLIQS0 200.
    Re record the bdc or just add the initial screen in the BDC
    perform bdc_dynpro using 'SAPLIQS0' '200'.
    perform bdc_field using 'RIWO00-QMART' 'Q!' " What ever notification type u have
    perform bdc_field using 'BDC_OKCODE'  '/00'.
    This will sove ur problem .
    Regards,
    Madhukar Shetty

  • MM-Report to see the materials which is not used from last 3 months

    Dear All,
    I want to find out the materials which are not used from last 3 months.Is there any report?
    Thanks
    Vishal

    Hi
    check MB5B
    give material and plant there
    select valuates stock radio button and NON-Hierarchical representation layout  on selection screen
    give last three month duration period on selection screen and execute report
    and see total  Goods receipt and total goods issue for material
    Regards
    kailas ugale

  • Tabular form LOV's not populating correctly on edit from report

    My form has four LOV's and several text fields. Two of the LOV's will not populate (contains null value) from the report when i try to edit the row, however the other two Lov's populate correctly. Any ideas why i can't get the lov's to populate with the correct value from the report?
    each LOV is set to display null value as -- choose value -- with no return value. when i click edit from the report the form (page 2) comes up with the corresponding values from the report, but as i stated two of the LOV's contain -- choose value -- instead of the correct value from the corresponding reports row. All four LOV's items are set exactly the same 2 being static and 2 dynamic; one of each not populating right.
    any help would be greatly appreciated.

    Hi
    I've not used popup lovs in tabular forms for a few years now, but if your using the apex_item's to generate your tab form then I think you need to allow an idx number for the pass back value. e.g. (I have left idx value 2 for the pass back value)
    SELECT
    APEX_ITEM.POPUPKEY_FROM_LOV (1,deptno,'DEPT') dt,
    APEX_HIDDEN(3, EMPNO) en
    FROM emp
    I hope that helps
    Shunt

  • Baseline date not getting populated from SRM invoices posted to ECC 6.0

    Hi,
    We are currently in ECC 6.0. The SRM system is in 4.0. We have this particular problem that the baseline date is not getting populated from the Invoices posted from the SRM. The baseline date is blank and the document is saved.
    Did anyone face the same problem??? Can you please refer SAP note 541934 and expand........
    Thanks
    Aravind
    Edited by: Aitipamula Aravind on Aug 10, 2009 5:13 AM

    Hello,
    Yes, you could check the attached note 541934 and regard the implementation of the field ZFBDT in the invoicing document.
    Note 541934 provides a solution how to achieve the MM-customizing for payment baseline dates getting effective for invoices with SRM-origin. This note needs to be applied at your ERP-MM-side in the former plug-in-layer. As described in the note, this is a modification. It's recommended to apply in non-productive system first.
    Hope the above infor.are helps for you!
    Best Regards,
    Gladys xing

  • Export 7 months' worth of notes/comments from Outlook 2013 Calendar Events?

    Upon start-up, before we got our CRM suite installed, one of our sales reps was keeping all his call notes and comments in Outlook's Calendar Appointment boxes. Now we want to get those seven months' worth of notes exported from Outlook
    as text so we can import them into our CRM. I can't figure out how to get those 200+ notes exported from Outlook...a little help?

    They are in the calendar notes field? What format do you need them in and did you try File, Open & Export to bring up the export wizard?
    Diane Poremsky [MVP - Outlook]
    Outlook & Exchange Solutions Center
    Outlook Tips
    Subscribe to Exchange Messaging Outlook weekly newsletter

  • Mediator To Spring Error-Could not convert from java interface to interface

    Hi,
    I have a requirement to using a Spring component and my composite application would be File Read -> Mediator -> Spring Component -> File Write.
    I have to read a file and using mediator map the same to the Spring input and write the Spring component output to a file.
    I have created a Java interface ( Package Name - transformtospring , Interface Name - TransformInterface) and also created a Java Class ( TransformImpl ) which implements the Interface in this package. Saved all these artifacts in SCA-INF/src folder of the application.
    My Spring Bean configuration file is as follows ( saved the file in the same folder as composite.xml )
    <?xml version="1.0" encoding="windows-1252" ?>
    <beans xmlns="http://www.springframework.org/schema/beans"
    xmlns:util="http://www.springframework.org/schema/util"
    xmlns:jee="http://www.springframework.org/schema/jee"
    xmlns:lang="http://www.springframework.org/schema/lang"
    xmlns:aop="http://www.springframework.org/schema/aop"
    xmlns:tx="http://www.springframework.org/schema/tx"
    xmlns:sca="http://xmlns.oracle.com/weblogic/weblogic-sca"
    xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
    xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans-2.5.xsd http://www.springframework.org/schema/util http://www.springframework.org/schema/util/spring-util-2.5.xsd http://www.springframework.org/schema/aop http://www.springframework.org/schema/aop/spring-aop-2.5.xsd http://www.springframework.org/schema/jee http://www.springframework.org/schema/jee/spring-jee-2.5.xsd http://www.springframework.org/schema/lang http://www.springframework.org/schema/lang/spring-lang-2.5.xsd http://www.springframework.org/schema/tx http://www.springframework.org/schema/tx/spring-tx-2.5.xsd http://www.springframework.org/schema/tool http://www.springframework.org/schema/tool/spring-tool-2.5.xsd http://xmlns.oracle.com/weblogic/weblogic-sca META-INF/weblogic-sca.xsd">
    <!--Spring Bean definitions go here-->
    <bean class="transformtospring.TransformImpl" name="TransformBean"/>
    <sca:service name="TransformService" target="TransformBean"
    type="transformtospring.TransformImpl"/>
    </beans>
    I have created a Spring Context which uses the above Spring Configuration. When i tried to map the mediator output to Spring , i'm getting an error shown below.
    " Could not convert from java interface to interface type wsdl . Exception=java.lang.ClassNotFoundException transformtospring.TransformImpl "
    Please do let me know where exactly i'm doing wrong.
    Regards,
    Sri.

    Hi All,
    I could able to work this one out now !!!
    But i'm having an issue mapping the input to this service. The method signature for the service is as follows:
    public byte[] processData(byte[] input) throws Throwable{
    So the input for this Service is a byte array. Now i'm mapping the data from a File Input ( Read File - opaqueElement ) to this service directly ( using mediator ).
    Now when i have looked into the message in the Enterprise Manager, following is the message structure from Read File input to the service.
    <message>
    <properties>
    <property name="tracking.compositeInstanceId" value="10009"/>
    <property name="tracking.ecid" value="bcd04297e25136e7:4869a9c:13316255efc:-8000-0000000000001f79"/>
    <property name="tracking.conversationId" value="TJ9PCcbtu3S0DA0GuxsGx13RYUb1NxHNndfk2PC8ukk."/>
    </properties>
    <parts>
    <part name="parameters">
    <ns0:processCollaboration>
    <arg0>PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz48bnMwOkFkZDJJbnB1dCAgeG1s bnM6eHNpPSdodHRwOi8vd3d3LnczLm9yZy8yMDAxL1hNTFNjaGVtYS1pbnN0YW5jZScgeG1sbnM6 bnMwPSd1ay5jby5qZHdpbGxpYW1zLkFkZDJJbnB1dCcgeHNpOnNjaGVtYUxvY2F0aW9uPSd1ay5j by5qZHdpbGxpYW1zLkFkZDJJbnB1dCByZXF1ZXN0LnhzZCcPG5zMDpudW0xPjEwPC9uczA6bnVt MT48bnMwOm51bTI+MTY8L25zMDpudW0yPjwvbnMwOkFkZDJJbnB1dD4=+</arg0>
    </ns0:processCollaboration>
    </part>
    </parts>
    </message>
    and the corresponding response message ( No output ) back from the service is:
    <message>
    <properties>
    <property name="tracking.compositeInstanceId" value="10009"/>
    <property name="tracking.ecid" value="bcd04297e25136e7:4869a9c:13316255efc:-8000-0000000000001f79"/>
    <property name="componentName" value="ProcessCollab"/>
    <property name="tracking.conversationId" value="TJ9PCcbtu3S0DA0GuxsGx13RYUb1NxHNndfk2PC8ukk."/>
    <property name="compositeDN" value="default/CollaborationToSpring!1.0*soa_a8da1da7-f98f-4935-8d20-da9e7bc003cc"/>
    </properties>
    <parts>
    <part name="parameters">
    <processCollaborationResponse>
    <return/>
    </processCollaborationResponse>
    </part>
    </parts>
    </message>
    I have included System.out statements in my Java class , but its not printing anything in the logs.
    I'm under the impression that the underlying infrastructure ( mediator ) transparently encodes and decodes data from base64Binary to java byte array. So could anyone help me on this !!!
    Regards,
    Sri.

  • Could not convert from java interface to interface type wsdl ??

    i have a problem wheni have a problem when i develop bpel using mediator and wire to ejb service. When the mediator wire to ejb service, i found the error : Could not convert from java interface to interface type wsdl.... How to solve the problem?

    I followed the case closely (with the same name of classes, methods, etc), but still get the error: “Could not convert from java interface to interface type wsdl.Exception=nl.amis.calculator.Calculator”. I created a Java class to test the lookup and function correctly. However, when I try to wire a Mediator to this Reference, I run into an Interface Conversion Error. I’ve included the line javaInterface = “nl.amis.calculator.Calculator” in file composite.xml, but still get error. Could you help me?

Maybe you are looking for

  • Cancel the Signature

    Why does the postSign event still fire when the user presses "Cancel" instead of "Sign" in this box below? Shouldn't the preSign event fire on a click of the empty signature field of the form? Then if the user here cancels the signing process by pres

  • Error in SSIS projects

    Hi All, I have a SSIS package. Very Simple one. Two  OLEDB connection for SQL Server. I am trying to copy data from a server to another server by column mapping.The source Server is SQL 2000 and Destination is SQL 2005.Everything is ok.. like connect

  • Adobe Encore CS6 : écran noir en fin de boucle de menu

    Bonjour, Dans les menus (disques blu-ray créés avec Adobe Encore CS6) j'obtiens en fin de boucle de sous-menus, un écran noir et le dernier bouton sélectionné apparaît surligné. Selon le support d'Adobe (support aujourd'hui inaccessible par e-mail) l

  • Custom UserManager

    Hello, I´ve been trying to user a custom user manager and I followed the example at http://www.oracle.com/technology/sample_code/tech/xml/xmlnews/News_Security.html I cant, however make it work. I've created my UM subclassing the SimpleUserManager,

  • BDC generated by SHDB, changing so only session bdc allowed

    Hi, I've got a BDC program generated by SHDB. And it works fine. What I wanted to do, was get rid of the option to "Call transaction" and allow only session BDC, The selection screen info is in the include file bdcrecx1 which I don't mind having inli