Problem in MI 2.5 Customisation

Hi,
   While creating a new time confirmation in the MI application, the line
private TimeConfirmationFactory tconfFactory = (TimeConfirmationFactory)naming.lookup(TimeConfirmationFactory.class.getName());
is not getting executed in MI2.5. But it working in MI2.1.
In MI 2.5 it producing the following error,
Error has occurred 
Error Code E103
Error Message Cannot find implementation for: com.sap.mbs.mam.order.process.TimeConfirmationFactory. 
com.sap.mbs.core.api.CAFException: Cannot find implementation for: com.sap.mbs.mam.order.process.TimeConfirmationFactory. 
Can you please suggest me what may be the reason behind this error.

hello sub,
i think the CAF framework for 2.1 differs from 2.5 in the
sense that 2.1 and 2.5 MI APIs are not compatible. thus
your should use proper CAF version.
regards
jo

Similar Messages

  • I have problem with deployment of my customised module in oracle applications

    Hai,
    I have started working with oracle application just recently as I started to customise Forms & Reports.
    If I am developing forms and reports from the existing modules it is working fine.
    But as we can develop our own customized module in oracle applications.I did the following steps for the same..
    This is in Rel.11.0.28
    1.I registered my own schema in the back-end.
    2.then registered the same in AOL.
    3.Registered the custom application in the Aol.
    4.while registering gave the Base Path..XX_top.
    5.Defined Datagroup with APPS as the user ID.
    6.created the directories in the server..oa\applprod\custom_app_name\11.0.28\us\
    6.went to the environment file ...it is Prod.en
    7.gave the base path.
    8.restarted the server.
    9.created forms based on my schema tables & views
    10.generated the forms
    11.pasted them in the base path directory
    ...and then did all the registrations in aol.and allocated the menu to the concerned responsibility and that to the user.
    Now the problem is ...
    when I am logging in to the coressponding user..
    it is getting logged in..
    I can see my menu..
    but the function i.e. the form is not getting opened.
    I am not able to understand where the problem is lying...please if any one could solve the problem it would be highly appreciated.
    Thanking u in advance.
    Sushma.

    Not familiar w/ 11.0.28, but if this is on NT, I've found you need to add your xx_top path to the appropriate place in the NT registry.

  • Problem with delta update on customised export data source.

    Hi all BW gurus,
    I have created several customised export data sources in the R/3 system. And I have made use of the utility program <Z_CHANGE_DELTA_PROCESS> to update the ROOSOURCE table.
    While this can result in being able to do initial update (instead of full update), the subsuquent delta update is not working.
    In RSA7, the datasource is with green light and in RSA3, the extractor can extractor data out of it.
    Does anybody have some idea on this?
    I heard that there is a way to change the Business Transaction Event (BTE), but I don't quite understand how this is performed. And wonder if this is the only way out. To me, the triggering point would be the same, meaning the InfoPackage would be executed, then call the extractors in R/3 to extract the delta update in order to load into the InfoCube.
    And how do others do for executing delta update of the customised data source?
    Thanks a lot!!
    The utility program of <Z_CHANGE_DELTA_PROCESS>:
    =================================================
    report z_change_delta_process .
    *P_DATAS DataSource
    *P_DELTAP Delta Process for DataSource
    parameters:
      p_datas type roosource-oltpsource,
      p_deltap type roosource-delta.
    tables:
      roosource.
    data:
      ls_roosource type roosource.
      if p_datas(2) ne 'Z_'.
       message 'The DataSource needs to begin with ''Z_''.'  type 'E'.
      endif.
    select single * from roosource into ls_roosource
           where oltpsource = p_datas
           and objvers = 'A'.
    if sy-subrc eq 0.
       ls_roosource-delta = p_deltap.
       update roosource from ls_roosource.
    message 'The DataSource has been updated successfully.' type 'I'.
    else.
       message 'The DataSource entered is not valid, try again.' type 'E'.
    endif.

    Doesn't anyone have any idea on this topic?
    Appreciate for all the help. Thanks.

  • Problem calling XML Report Publisher from Oracle Reports

    Hi,
    I'm facing a problem in calling XML Report Publisher from Oracle Reports.
    Basically, I'm trying to customise Dunning Letter program. The program which is submitted calls another program. I have customised the second program and added a call to a stored procedure which in turn calls XML Report Publisher.I have created a template and attached it to the second program as well.
    The procedure code is as follows.
    v_request_id := FND_REQUEST.SUBMIT_REQUEST(application => 'AR'
    ,program => 'ARDLP_NON_SRS'
    ,description => 'Dunning Letter Print from Dunning Letter Generate'
    ,sub_request => FALSE
    l_status := fnd_concurrent.WAIT_FOR_REQUEST
    ( REQUEST_ID => v_request_id,
    INTERVAL => 15,
    MAX_WAIT => 180,
    PHASE => l_phase,
    STATUS => l_status_code,
    DEV_PHASE => l_dev_phase,
    DEV_STATUS => l_dev_status,
    MESSAGE => l_message );
    v_xml_req_id := FND_REQUEST.submit_request(application => 'XDO',
    program => 'XDOREPPB',
              argument1 => v_request_id,
    argument2 => 'FLS DE AR Dunning Letter Print - German',
    argument3 => 603, -- changed 665 -- was 551,
    argument4     => NULL,
    argument5 => 'N',
    argument6     => 'RTF',
              argument7     => 'PDF');
    Now, there are two problems I'm facing...
    1. when the second program('Dunning Letter Print from Dunning Letter Generate') gets called it executes this procedure ... logically the 'Dunning Letter Print from Dunning Letter Generate' should get called twice ... second time from the procedure. Its getting called multiple times .. as many as 15 - 20 times.
    2. The Xml Report Publisher program ultimately gets called but its erroring out with the following error:
    java.sql.SQLException: No corresponding LOB data found :SELECT L.FILE_DATA FILE_DATA, DBMS_LOB.GETLENGTH(L.FILE_DATA) FILE_LENGTH, L.LANGUAGE LANGUAGE, L.TERRITORY TERRITORY, B.DEFAULT_LANGUAGE DEFAULT_LANGUAGE, B.DEFAULT_TERRITORY DEFAULT_TERRITORY,B.TEMPLATE_TYPE_CODE TEMPLATE_TYPE_CODE, B.USE_ALIAS_TABLE USE_ALIAS_TABLE, B.START_DATE START_DATE, B.END_DATE END_DATE, B.TEMPLATE_STATUS TEMPLATE_STATUS, B.USE_ALIAS_TABLE USE_ALIAS_TABLE, B.DS_APP_SHORT_NAME DS_APP_SHORT_NAME, B.DATA_SOURCE_CODE DATA_SOURCE_CODE, L.LOB_TYPE LOB_TYPE FROM XDO_LOBS L, XDO_TEMPLATES_B B WHERE (L.LOB_TYPE = 'TEMPLATE' OR L.LOB_TYPE = 'MLS_TEMPLATE') AND L.APPLICATION_SHORT_NAME= :1 AND L.LOB_CODE = :2 AND L.APPLICATION_SHORT_NAME = B.APPLICATION_SHORT_NAME AND L.LOB_CODE = B.TEMPLATE_CODE AND ( (L.LANGUAGE = :3 AND L.TERRITORY = :4 ) OR (L.LANGUAGE = :5 AND L.TERRITORY = :6) OR (L.LANGUAGE= B.DEFAULT_LANGUAGE AND L.TERRITORY= B.DEFAULT_TERRITORY ) )
    I have checked from database that the XDO_LOBS/ XDO_TEMPLATES_B table has corresponding registration data.
    I don't know what's creating the problem.
    If anyone has customised the Dunning Letter program before or having any idea about this problem, please help me out ..
    Thanks

    satrajit,
    Now I am getting the same error you got, Can you please tell me the solution you found?.
    XML Report Publisher 5.0
    Updating request description
    Waiting for XML request
    Retrieving XML request information
    Preparing parameters
    Process template
    --XDOException
    java.sql.SQLException: No corresponding LOB data found :SELECT L.FILE_DATA FILE_DATA, DBMS_LOB.GETLENGTH(L.FILE_DATA) FILE_LENGTH, L.LANGUAGE LANGUAGE, L.TERRITORY TERRITORY, B.DEFAULT_LANGUAGE DEFAULT_LANGUAGE, B.DEFAULT_TERRITORY DEFAULT_TERRITORY,B.TEMPLATE_TYPE_CODE TEMPLATE_TYPE_CODE, B.USE_ALIAS_TABLE USE_ALIAS_TABLE, B.START_DATE START_DATE, B.END_DATE END_DATE, B.TEMPLATE_STATUS TEMPLATE_STATUS, B.USE_ALIAS_TABLE USE_ALIAS_TABLE FROM XDO_LOBS L, XDO_TEMPLATES_B B WHERE L.LOB_TYPE = :1 AND L.APPLICATION_SHORT_NAME= :2 AND L.LOB_CODE = :3 AND L.APPLICATION_SHORT_NAME = B.APPLICATION_SHORT_NAME AND L.LOB_CODE = B.TEMPLATE_CODE AND ( (L.LANGUAGE = :4 AND L.TERRITORY = :5 ) OR (L.LANGUAGE = :6 AND L.TERRITORY = :7) OR (L.LANGUAGE= B.DEFAULT_LANGUAGE AND L.TERRITORY= B.DEFAULT_TERRITORY ) )
         at oracle.apps.xdo.oa.schema.server.TemplateInputStream.initStream(TemplateInputStream.java:309)
         at oracle.apps.xdo.oa.schema.server.TemplateInputStream.<init>(TemplateInputStream.java:187)
         at oracle.apps.xdo.oa.schema.server.TemplateHelper.getTemplateFile(TemplateHelper.java:776)
         at oracle.apps.xdo.oa.schema.server.TemplateHelper.processTemplate(TemplateHelper.java:1269)
         at oracle.apps.xdo.oa.cp.JCP4XMLPublisher.runProgram(JCP4XMLPublisher.java:807)
         at oracle.apps.fnd.cp.request.Run.main(Run.java:148)

  • Can't customise External Application (WWC 41610)

    hi,
    I am using Oracle Portal 3.0.9.
    I have a problem which I can't customise my External Application
    portlet.
    The error msg is "Error: The list of External Applications is
    too large. (WWC-41610)"
    However, I can configure the external applications in Login
    Server. It only has 2 applications.
    Any idea??
    Another question: I accidentally delete the left region of the
    homepage. Is it possible for me to create a new region on the
    left instead of on the right?
    thanks.

    Thanks. No error if I clear the proxy server.
    However, I wonder what's wrong with the setting of the proxy
    server.
    The setting is as below:
    HTTP Server: xxx.xxx.xxx.x
    HTTP Server Port : xxxx
    No Proxy Servers for Domains beginning with: (null)
    URL Connection Time-Out (seconds): 30
    Thanks in advance

  • Firefox crashes when I load any youtube video on the latest version, it not only crashes firefox but my whole computer goes blank and I have to restart, why is this?

    Backstory: There are two possible events that could be causing this
    1: At some point I may have followed a ''Tinyurl' link that consquently lead me to a youtube video, to which youtube worked perfectly fine before hand, and this is where i witnessed the first crash. Theories into whether this link, previously stated, may have done something to my system have been thought about, but the fact that youtube still works on the latest Microsoft Internet Explorer seems to present the idea of a virus or an error redundant. I own the latest Macfee antivirus software and Ccleaner(running the registry check) and have run them complete with disc defragment and scan disc error recovery along with an additional malware scanner. Nothing seems to have come up on anything. After doing all this, my last resort was System restore and this seemed to solve the problem, mainly because i had an earlier version of firefox. therefore i resisted updating for aslong as possible whenever it told me to update. but the otherday i thought i'd risk it again thinking it may have been a problem alot of people have been having and it would of been fixed, but sadly it hasn't. this lead me to google the problem and was advised to start firefox on 'safe mode' as there may have been a confliction between add ons or plugins with youtube or some thing like that, but sadly that hasn't worked either. The plugins i had installed with it were the ones firefox has told me to get, or recommended and the only two addons i had on firefox was Adblock plus (fanboy subscrip) and Noscript.
    Details of what actually happens: go to a youtube link, video loads for about 2 seconds(both video and audio), screen freezes, and flashes maybe once with some small lines across the bottom half of the screen horizontally towards the right corner, then the screen goes blank and makes my laptop dorment, but still running, thus I restart my system.
    Sadly now when I system restore there isn't a point far back enough before this problem. So its either i downgrade(which seems to be the only option) or simply stop using firefox, as internet explorer works perfectly fine. however running firefox with no scrip and adblock plus is the ideal browser customisation, which is why this is rather annoying.
    so number 1 was the tinyurl theory and i must admit i was abit foolish to follow such a random link, but whats happened has happened.
    2: basically there is a major disfunction with the latest firefox that has to with the addons i have included onto firefox and this seems to be causing a terrible effect on my system.
    in a nutshell: firefox worked perfectly before upgrading to the new firefox and before i followed this link, the rest of my system is completely normal and virus and error free or so it says, Other browsers seem to work also. safe mode does not cure the problem.
    Running on a customised Dell laptop, which is pretty midrange-toprange and hasn't been active long, so it has the general HD video card thats included in all Studio 15 Dell laptops.
    any help appreciated.
    cheers.
    == User Agent ==
    Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.1; WOW64; Trident/4.0; SLCC2; .NET CLR 2.0.50727; .NET CLR 3.5.30729; .NET CLR 3.0.30729; Media Center PC 6.0; MDDC; OfficeLiveConnector.1.5; OfficeLivePatch.1.3; Creative AutoUpdate v1.40.02; AskTbMYC-SRS/5.7.1.11118)

    I have had a similar problem with my system. I just recently (within a week of this post) built a brand new desktop. I installed Windows 7 64-bit Home and had a clean install, no problems. Using IE downloaded an anti-virus program, and then, because it was the latest version, downloaded and installed Firefox 4.0. As I began to search the internet for other programs to install after about maybe 10-15 minutes my computer crashes. Blank screen (yet monitor was still receiving a signal from computer) and completely frozen (couldn't even change the caps and num lock on keyboard). I thought I perhaps forgot to reboot after an update so I did a manual reboot and it started up fine.
    When ever I got on the internet (still using firefox) it would crash after anywhere between 5-15 minutes. Since I've had good experience with FF in the past I thought it must be either the drivers or a hardware problem. So in-between crashes I updated all the drivers. Still had the same problem. Took the computer to a friend who knows more about computers than I do, made sure all the drivers were updated, same problem. We thought that it might be a hardware problem (bad video card, chipset, overheating issues, etc.), but after my friend played around with my computer for a day he found that when he didn't start FF at all it worked fine, even after watching a movie, or going through a playlist on Youtube.
    At the time of this posting I'm going to try to uninstall FF 4.0 and download and install FF 3.6.16 which is currently on my laptop and works like a dream. Hopefully that will do the trick, because I love using FF and would hate to have to switch to another browser. Hopefully Mozilla will work out the kinks with FF 4 so I can continue to use it.
    I apologize for the lengthy post. Any feedback would be appreciated, but is not necessary. I will try and post back after I try FF 3.16.6.

  • Attachments added to the Interactive form is lost after submit

    Hi All,
    I have a scenario where the user can add attachments to the Interactive Form Online and click on Submit to archive the filled form. The problem is that i am not able to retrieve the attachments added to the form.
    The datasource of the ITF is bound to the View Context node and the pdfsource is bound to an attribute of XSTRING type.
    Here i am able to see the changed values of the Input fields in my context node. But, any attachments added is lost.
    How can i retrieve the attachments? I tries calling the Methods SET_TASK_GETATTACHMENTS and GET_ATTACHMENTS of PDF Objects but it always returns null.
    FYI,
    if i use file upload UI Element and upload an existing form with attachments then i am able to get the list of attachments by calling the Methods SET_TASK_GETATTACHMENTS and GET_ATTACHMENTS of PDF Objects before this PDF is displayed in the next view. (binding the XSTRING of FIle Upload UI to the PDFSOURCE of the ITF).
    Here also if i add some new attachments to the PDF and click on submit then these new docs are  lost.
    In short whenever i add attachments to the pdf dynamically via add attachment option after the PDF is displayed the new attachments are lost.
    Please let me know how to correct this.
    Thanks,
    Abhishek

    There is a default functionality provided by Adobe... If all your fields are field, you can not submit. It will prompt .. to fill the form.
    Only you have to mark those field as mandatory.
    So select the field -> Go to Object Pallet -> Value Tab -> select the type as User entered Required
    This will solve your problem.
    You can also customise the requirements through scripting language.
    cheers
    Satya

  • ME2O transaction for delivery

    HI,
    I created a subcontracting PO . Then i need to do delivery through ME2O transaction. BUt i am not able to see the material for which i created the subcontracting Purchase order . PLease suggest what must be the problem . Is there any customising  required for this .
    Then i tried to do delivery for some other materail (which was previously present in the ME2O output) ,but i got an error that "Delivery type for that material is not set ..." . Please help in customising.
    Waiting for your kind reply.
    Thanks
    Rohit Chavan

    Hi,
    For your 1st question, you have to check whether the BoM of the subcontracting part is maintained correctly, or not? Then run MRP for the subcontracting part again, maybe that will be okay!
    For 2nd quesiton, if you want to create the delivery note to transfer the component stock to subcontractor via ME2O, you must do the following things:
    Create a customer master data for the vendor, then assign the customer number to the vendor master data on the "Control" view;
    Extend the "Sales Org data" and "Sales plant data" views in the material master data of the components.
    After that, you can create the delivery note smoothly!
    Good day
    Tao

  • Applying customized template

    I have a problem trying to apply a customised template.
    1 I customized the Modern Type template by changing the cover image and chapter 1 image to a different jpg, and also by changing the font and font colour, and finally by changing the colour of the dividing lines in the section pages
    2 I gave this template a name and saved it, and it now shows up in the Template Chooser
    3 when I choose it, it opens correctly
    4 however, when I insert a chapter from a Word or Pages document and I am prompted to pick a layout for the imported content, the only options I see are those for the original Modern Type template (teal, blue, orange etc, with black Helvetica font) - it doesn't offer me my customised version
    5 therefore, I can't choose the customised chapter page (= with the new background), nor can I choose the customised Sections (= with the new font & font colour etc) - all I'm offered are the pre-set versions (= the teal, blue, orange etc chapter pages, and the black Helvetica font, with black lines)
    So, how do I apply a customised template so that when I import a document and create a new chapter, this new chapter (and its sections) follow the customised template?
    Thanks in advance.

    K T wrote:
    Not sure what happened, exactly, but....when you made changes and worked towards your custom template, did you apply them throughout in any manner or did you just drop them in and saved w/new template name?
    The latter - I just made the changes and saved with a new template name.
    I've been doing some research, and I've seen that I should follow a different process at least as far as sections and pages are concerned, by using the View > Show layouts path. 
    However, I still haven't managed to get the cover page and chapter pages to adopt the new background image - View > Show layouts offers only the stock covers/colours.

  • Report name LOV in Submit request form in Oracle Applications

    One of my client have a requirement to make modification in List of Values of Report Name on Submit Request form in Oracle Applications.
    Currently or by default it displays the reports order by Applications name, but the requirement is that It should display reports Order by Report Name instead of Applications Name.
    Any one have idea how to customized the form, can it is possible through custom.pll or any other method.
    THanks in Advance
    Muhammad Ali

    The Report Submission screen is FNDRSRUN. The LOV for the concurrent program name is based on the PROGLOVDEF record group, which has the "order by a.application_name, p.user_concurrent_program_name" order by clause.
    As far as I know, you cannot modify the query for a "static" record group (defined in the form) at run time, so I can't see that you could do anything with the CUSTOM.pll.
    However, you could create a customised version of the form (same name) with a different order by on the record group, but then you have to reapply the customisation every time the form is patched (or you lose the customisation).
    You can create a custom copy of the form (different name) and then update all of the functions that call the standard form to call your custom form, but there are lots of functions that call this standard form and you have the problem with patches overwriting the customised function anyway.

  • (URGENT) Check if fields in Interactive Form is empty before submit.

    Hi all,
    I need to validate my form to make sure that when a user clicks on the submit button, it should check if all the fields are being filled up, if fields are left empty, a message/error should promt telling the user to fill up the form before submitting the form.
    Once all fields are filled then proceed with submitting.
    Does anyone have any codes that u can provide me or help me with?
    Thanks In Advance.
    Regards,
    JingXuan

    There is a default functionality provided by Adobe... If all your fields are field, you can not submit. It will prompt .. to fill the form.
    Only you have to mark those field as mandatory.
    So select the field -> Go to Object Pallet -> Value Tab -> select the type as User entered Required
    This will solve your problem.
    You can also customise the requirements through scripting language.
    cheers
    Satya

  • Color  settings issue

    I am using CS3 under Vista Ultimate.
    I'd be grateful for help with a couple of problems:
    1. When I customise my color settings the customisarion is not sticking - that is, when I save the customisation, close the settings box and reopen it - the settings have returned to North America General Purpose 2. Similarly, if I load a customised setting it has always reverted to North American General Purpose 2 when I next look at the color settings.
    2. For reasons I don't understand, recent photos have started to look over saturated with a blue shift when I Save (them) For The Web. My work is all for the internet and my workflow is all sRGB. That's why I am surprised by the colour problem. It's definitely something to do with the colour profile of the photo I am working on - when I take photos I have worked on a few weeks ago there is no colour shift when I Save for Web. I have converted the problem photo to sRGB but that has not solved the problem. I know I'm doing something dumb but I can't work out what it is or how to rescue the photo I have been working on.
    Thanks for any help.
    David

    I spoke too soon.
    The impermanent color settings have returned.
    The reinstall did not solve the problem. Whenever I open the Colour Settings box the settings are all back to the North America General Purpose 2 profile.
    I have contacted Adobe tech support who replied that it was not a technical problem but a usage problem (pilot error). At my request they had another look at the issue and have replied:
    "Try to resett the preferences as you can see in the following doc.
    http://kb.adobe.com/selfservice/viewContent.do?externalId=kb400950
    if preferences did not solver your issue, create a new admin account and try to recreate the problem in the new admin account."
    I have tried resetting the preferences a number of times and that did not work. I will create a new admin account as suggested but I am not hopeful that this will solve the problem.

  • JDev10.1.2-ADF UIX Customization of errors

    Iam a forms developer who has been exploring Jdev.
    Have to a certain extent managed to create the browse pages and edit pages.
    My problem is how do i customise the errors thrown by JDev?
    Like in forms i can capture and customise the errors in On-Error trigger is there any similar way i can do the same in UIX?
    Regards,
    Vineet

    For UIX lov page, there are two event: "lovSelect" and "lovUpdate".
    The Lov Page handles the "lovSelect" event, and main page handles "lovUpdate" event.
    You can add attribute value bindings you need pass to main page,
    and In main page, add "lovUpdate" event handler. Example as below:
    <event name="lovUpdate" source="LOVInput1">
    <compound>
    <set property="inputValue" value="${data.lovUIModel.SelectAttribute1.inputValue}" target="${bindings.LOVIniput1}"/>
    <set property="inputValue" value="${data.lovUIModel.SelectAttribute2.inputValue}" target="${bindings.LOVIniput2}"/>
    <set property="inputValue" value="${data.lovUIModel.SelectAttribute3.inputValue}" target="${bindings.LOVIniput3}"/>
    </compound>
    </event>
    Through this method, the main page can get multi values from lov page.
    But We have to handle the clear lov input action manuly.
    Hope this can help you.

  • ISR ERROR

    Hi I have an adobe form problem. I have an customised ISR and i want the notification number (in this test case 600001106) to be filled in into the Bapi and give me the data.
    java.lang.ClassCastException
         at com.shell.shellpeople.wd.isr.wdp.IPrivateISRView$IContextElement.wdSetObject(IPrivateISRView.java:624)
         at com.sap.tc.webdynpro.progmodel.context.AttributePointer.setObject(AttributePointer.java:223)
         at com.sap.tc.webdynpro.clientserver.uielib.adobe.impl.InteractiveForm.afterHandleActionEvent(InteractiveForm.java:198)
         at com.sap.tc.webdynpro.clientserver.cal.ClientApplication.afterHandleActionEvent(ClientApplication.java:1154)
         at com.sap.tc.webdynpro.clientserver.task.WebDynproMainTask.handleActionEvent(WebDynproMainTask.java:402)
         at com.sap.tc.webdynpro.clientserver.task.WebDynproMainTask.execute(WebDynproMainTask.java:649)
         at com.sap.tc.webdynpro.clientserver.cal.AbstractClient.executeTasks(AbstractClient.java:59)
         at com.sap.tc.webdynpro.clientserver.cal.ClientManager.doProcessing(ClientManager.java:248)
         at com.sap.tc.webdynpro.serverimpl.defaultimpl.DispatcherServlet.doWebDynproProcessing(DispatcherServlet.java:154)
         at com.sap.tc.webdynpro.serverimpl.defaultimpl.DispatcherServlet.doContent(DispatcherServlet.java:116)
         at com.sap.tc.webdynpro.serverimpl.defaultimpl.DispatcherServlet.doGet(DispatcherServlet.java:48)
         at javax.servlet.http.HttpServlet.service(HttpServlet.java:740)
         at javax.servlet.http.HttpServlet.service(HttpServlet.java:853)
         at com.sap.engine.services.servlets_jsp.server.HttpHandlerImpl.runServlet(HttpHandlerImpl.java:390)
         at com.sap.engine.services.servlets_jsp.server.HttpHandlerImpl.handleRequest(HttpHandlerImpl.java:264)
         at com.sap.engine.services.httpserver.server.RequestAnalizer.startServlet(RequestAnalizer.java:347)
         at com.sap.engine.services.httpserver.server.RequestAnalizer.startServlet(RequestAnalizer.java:325)
         at com.sap.engine.services.httpserver.server.RequestAnalizer.invokeWebContainer(RequestAnalizer.java:887)
         at com.sap.engine.services.httpserver.server.RequestAnalizer.handle(RequestAnalizer.java:241)
         at com.sap.engine.services.httpserver.server.Client.handle(Client.java:92)
         at com.sap.engine.services.httpserver.server.Processor.request(Processor.java:148)
         at com.sap.engine.core.service630.context.cluster.session.ApplicationSessionMessageListener.process(ApplicationSessionMessageListener.java:33)
         at com.sap.engine.core.cluster.impl6.session.MessageRunner.run(MessageRunner.java:41)
         at com.sap.engine.core.thread.impl3.ActionObject.run(ActionObject.java:37)
         at java.security.AccessController.doPrivileged(Native Method)
         at com.sap.engine.core.thread.impl3.SingleThread.execute(SingleThread.java:95)
         at com.sap.engine.core.thread.impl3.SingleThread.run(SingleThread.java:160)
    Code on the view:
    public void wdDoInit()
        //@@begin wdDoInit()
         wdThis.wdGetIsrCustController().executeYisr_Special_Data_Get_Input();
        //@@end
    code on the Cust controler
    public void wdDoInit()
        //@@begin wdDoInit()
    Yisr_Special_Data_Get_Input input4 = new Yisr_Special_Data_Get_Input();
              wdContext.nodeYisr_Special_Data_Get_Input
    ().bind(input4);
            Yisr_Special_Data_Get_Input tab;
            for (int i=0; i<10;i++){
                 tab = new Yisr_Special_Data_Get_Input();
                 tab.setNotification_No("600001106");
        //@@end
    public void executeYisr_Special_Data_Get_Input( )
        //@@begin executeYisr_Special_Data_Get_Input()
         try
                   wdContext.currentYisr_Special_Data_Get_InputElement().modelObject().execute();
                     catch (Exception ex){
                     wdComponentAPI.getMessageManager().reportException(ex.toString(),false);
                                      wdContext.nodeOutputIsr().invalidate();
        //@@end

    Hi I have an adobe form problem. I have an customised ISR and i want the notification number (in this test case 600001106) to be filled in into the Bapi and give me the data.
    java.lang.ClassCastException
         at com.shell.shellpeople.wd.isr.wdp.IPrivateISRView$IContextElement.wdSetObject(IPrivateISRView.java:624)
         at com.sap.tc.webdynpro.progmodel.context.AttributePointer.setObject(AttributePointer.java:223)
         at com.sap.tc.webdynpro.clientserver.uielib.adobe.impl.InteractiveForm.afterHandleActionEvent(InteractiveForm.java:198)
         at com.sap.tc.webdynpro.clientserver.cal.ClientApplication.afterHandleActionEvent(ClientApplication.java:1154)
         at com.sap.tc.webdynpro.clientserver.task.WebDynproMainTask.handleActionEvent(WebDynproMainTask.java:402)
         at com.sap.tc.webdynpro.clientserver.task.WebDynproMainTask.execute(WebDynproMainTask.java:649)
         at com.sap.tc.webdynpro.clientserver.cal.AbstractClient.executeTasks(AbstractClient.java:59)
         at com.sap.tc.webdynpro.clientserver.cal.ClientManager.doProcessing(ClientManager.java:248)
         at com.sap.tc.webdynpro.serverimpl.defaultimpl.DispatcherServlet.doWebDynproProcessing(DispatcherServlet.java:154)
         at com.sap.tc.webdynpro.serverimpl.defaultimpl.DispatcherServlet.doContent(DispatcherServlet.java:116)
         at com.sap.tc.webdynpro.serverimpl.defaultimpl.DispatcherServlet.doGet(DispatcherServlet.java:48)
         at javax.servlet.http.HttpServlet.service(HttpServlet.java:740)
         at javax.servlet.http.HttpServlet.service(HttpServlet.java:853)
         at com.sap.engine.services.servlets_jsp.server.HttpHandlerImpl.runServlet(HttpHandlerImpl.java:390)
         at com.sap.engine.services.servlets_jsp.server.HttpHandlerImpl.handleRequest(HttpHandlerImpl.java:264)
         at com.sap.engine.services.httpserver.server.RequestAnalizer.startServlet(RequestAnalizer.java:347)
         at com.sap.engine.services.httpserver.server.RequestAnalizer.startServlet(RequestAnalizer.java:325)
         at com.sap.engine.services.httpserver.server.RequestAnalizer.invokeWebContainer(RequestAnalizer.java:887)
         at com.sap.engine.services.httpserver.server.RequestAnalizer.handle(RequestAnalizer.java:241)
         at com.sap.engine.services.httpserver.server.Client.handle(Client.java:92)
         at com.sap.engine.services.httpserver.server.Processor.request(Processor.java:148)
         at com.sap.engine.core.service630.context.cluster.session.ApplicationSessionMessageListener.process(ApplicationSessionMessageListener.java:33)
         at com.sap.engine.core.cluster.impl6.session.MessageRunner.run(MessageRunner.java:41)
         at com.sap.engine.core.thread.impl3.ActionObject.run(ActionObject.java:37)
         at java.security.AccessController.doPrivileged(Native Method)
         at com.sap.engine.core.thread.impl3.SingleThread.execute(SingleThread.java:95)
         at com.sap.engine.core.thread.impl3.SingleThread.run(SingleThread.java:160)
    Code on the view:
    public void wdDoInit()
        //@@begin wdDoInit()
         wdThis.wdGetIsrCustController().executeYisr_Special_Data_Get_Input();
        //@@end
    code on the Cust controler
    public void wdDoInit()
        //@@begin wdDoInit()
    Yisr_Special_Data_Get_Input input4 = new Yisr_Special_Data_Get_Input();
              wdContext.nodeYisr_Special_Data_Get_Input
    ().bind(input4);
            Yisr_Special_Data_Get_Input tab;
            for (int i=0; i<10;i++){
                 tab = new Yisr_Special_Data_Get_Input();
                 tab.setNotification_No("600001106");
        //@@end
    public void executeYisr_Special_Data_Get_Input( )
        //@@begin executeYisr_Special_Data_Get_Input()
         try
                   wdContext.currentYisr_Special_Data_Get_InputElement().modelObject().execute();
                     catch (Exception ex){
                     wdComponentAPI.getMessageManager().reportException(ex.toString(),false);
                                      wdContext.nodeOutputIsr().invalidate();
        //@@end

  • ISR/ADOBE error

    Hi I have an adobe form problem. I have an customised ISR and i want the notification number (in this test case 600001106) to be filled in into the Bapi and give me the data.
    java.lang.ClassCastException
         at com.shell.shellpeople.wd.isr.wdp.IPrivateISRView$IContextElement.wdSetObject(IPrivateISRView.java:624)
         at com.sap.tc.webdynpro.progmodel.context.AttributePointer.setObject(AttributePointer.java:223)
         at com.sap.tc.webdynpro.clientserver.uielib.adobe.impl.InteractiveForm.afterHandleActionEvent(InteractiveForm.java:198)
         at com.sap.tc.webdynpro.clientserver.cal.ClientApplication.afterHandleActionEvent(ClientApplication.java:1154)
         at com.sap.tc.webdynpro.clientserver.task.WebDynproMainTask.handleActionEvent(WebDynproMainTask.java:402)
         at com.sap.tc.webdynpro.clientserver.task.WebDynproMainTask.execute(WebDynproMainTask.java:649)
         at com.sap.tc.webdynpro.clientserver.cal.AbstractClient.executeTasks(AbstractClient.java:59)
         at com.sap.tc.webdynpro.clientserver.cal.ClientManager.doProcessing(ClientManager.java:248)
         at com.sap.tc.webdynpro.serverimpl.defaultimpl.DispatcherServlet.doWebDynproProcessing(DispatcherServlet.java:154)
         at com.sap.tc.webdynpro.serverimpl.defaultimpl.DispatcherServlet.doContent(DispatcherServlet.java:116)
         at com.sap.tc.webdynpro.serverimpl.defaultimpl.DispatcherServlet.doGet(DispatcherServlet.java:48)
         at javax.servlet.http.HttpServlet.service(HttpServlet.java:740)
         at javax.servlet.http.HttpServlet.service(HttpServlet.java:853)
         at com.sap.engine.services.servlets_jsp.server.HttpHandlerImpl.runServlet(HttpHandlerImpl.java:390)
         at com.sap.engine.services.servlets_jsp.server.HttpHandlerImpl.handleRequest(HttpHandlerImpl.java:264)
         at com.sap.engine.services.httpserver.server.RequestAnalizer.startServlet(RequestAnalizer.java:347)
         at com.sap.engine.services.httpserver.server.RequestAnalizer.startServlet(RequestAnalizer.java:325)
         at com.sap.engine.services.httpserver.server.RequestAnalizer.invokeWebContainer(RequestAnalizer.java:887)
         at com.sap.engine.services.httpserver.server.RequestAnalizer.handle(RequestAnalizer.java:241)
         at com.sap.engine.services.httpserver.server.Client.handle(Client.java:92)
         at com.sap.engine.services.httpserver.server.Processor.request(Processor.java:148)
         at com.sap.engine.core.service630.context.cluster.session.ApplicationSessionMessageListener.process(ApplicationSessionMessageListener.java:33)
         at com.sap.engine.core.cluster.impl6.session.MessageRunner.run(MessageRunner.java:41)
         at com.sap.engine.core.thread.impl3.ActionObject.run(ActionObject.java:37)
         at java.security.AccessController.doPrivileged(Native Method)
         at com.sap.engine.core.thread.impl3.SingleThread.execute(SingleThread.java:95)
         at com.sap.engine.core.thread.impl3.SingleThread.run(SingleThread.java:160)
    Code on the view:
    public void wdDoInit()
        //@@begin wdDoInit()
         wdThis.wdGetIsrCustController().executeYisr_Special_Data_Get_Input();
        //@@end
    code on the Cust controler
    public void wdDoInit()
        //@@begin wdDoInit()
    Yisr_Special_Data_Get_Input input4 = new Yisr_Special_Data_Get_Input();
              wdContext.nodeYisr_Special_Data_Get_Input
    ().bind(input4);
            Yisr_Special_Data_Get_Input tab;
            for (int i=0; i<10;i++){
                 tab = new Yisr_Special_Data_Get_Input();
                 tab.setNotification_No("600001106");
        //@@end
    public void executeYisr_Special_Data_Get_Input( )
        //@@begin executeYisr_Special_Data_Get_Input()
         try
                   wdContext.currentYisr_Special_Data_Get_InputElement().modelObject().execute();
                     catch (Exception ex){
                     wdComponentAPI.getMessageManager().reportException(ex.toString(),false);
                                      wdContext.nodeOutputIsr().invalidate();
        //@@end

    Hi Dresen
    Did you solve your problem?. The ClassCastException is due to the set method u used, since the value u sent in the set method is not what the set method is expecting.
    remove the quotes, and try to check that.
    /Raj.

Maybe you are looking for