Front end application error after import script run successfully in R12

Hi ,
i got an exception in R12 environment.
i developed one simple OAF page and deployed in apps import script run successfully.
but when i am opening that page in Front end it will give an exception.
That is
Exception Details.
oracle.apps.fnd.framework.OAException: Could not load application module 'tflsm.oracle.apps.po.per.server.TflsmAM'.
## Detail 0 ##
JBO-30003: The application pool (cph-oadb-tst22.dk.flsmidth.netTST221543tflsm.oracle.apps.po.per.server.TflsmAM) failed to checkout an application module due to the following exception:
oracle.jbo.JboException: JBO-29000: Unexpected exception caught: oracle.jbo.JboException, msg=JBO-29000: Unexpected exception caught: oracle.jbo.NoDefException, msg=JBO-25002: Definition tflsm.oracle.apps.po.per.server.TflsmAM of type ApplicationModule not found
     at oracle.jbo.common.ampool.ApplicationPoolImpl.doCheckout(ApplicationPoolImpl.java:2002)
     at oracle.jbo.common.ampool.ApplicationPoolImpl.useApplicationModule(ApplicationPoolImpl.java:2793)
     at oracle.jbo.common.ampool.SessionCookieImpl.useApplicationModule(SessionCookieImpl.java:453)
## Detail 0 ##
oracle.jbo.JboException: JBO-29000: Unexpected exception caught: oracle.jbo.NoDefException, msg=JBO-25002: Definition tflsm.oracle.apps.po.per.server.TflsmAM of type ApplicationModule not found
     at oracle.jbo.pool.ResourcePool.createResource(ResourcePool.java:545)
     at oracle.jbo.common.ampool.ApplicationPoolImpl.prepareApplicationModule(ApplicationPoolImpl.java:2094)
     at oracle.jbo.common.ampool.ApplicationPoolImpl.doCheckout(ApplicationPoolImpl.java:1961)
## Detail 0 ##
oracle.jbo.NoDefException: JBO-25002: Definition tflsm.oracle.apps.po.per.server.TflsmAM of type ApplicationModule not found
     at oracle.jbo.mom.DefinitionManager.findDefinitionObject(DefinitionManager.java:441)
JBO-30003: The application pool (cph-oadb-tst22.dk.flsmidth.netTST221543tflsm.oracle.apps.po.per.server.TflsmAM) failed to checkout an application module due to the following exception:
oracle.jbo.JboException: JBO-29000: Unexpected exception caught: oracle.jbo.JboException, msg=JBO-29000: Unexpected exception caught: oracle.jbo.NoDefException, msg=JBO-25002: Definition tflsm.oracle.apps.po.per.server.TflsmAM of type ApplicationModule not found
     at oracle.jbo.common.ampool.ApplicationPoolImpl.doCheckout(ApplicationPoolImpl.java:2002)
     at oracle.jbo.common.ampool.ApplicationPoolImpl.useApplicationModule(ApplicationPoolImpl.java:2793)
## Detail 0 ##
oracle.jbo.JboException: JBO-29000: Unexpected exception caught: oracle.jbo.NoDefException, msg=JBO-25002: Definition tflsm.oracle.apps.po.per.server.TflsmAM of type ApplicationModule not found
     at oracle.jbo.pool.ResourcePool.createResource(ResourcePool.java:545)
## Detail 0 ##
oracle.jbo.NoDefException: JBO-25002: Definition tflsm.oracle.apps.po.per.server.TflsmAM of type ApplicationModule not found
     at oracle.jbo.mom.DefinitionManager.findDefinitionObject(DefinitionManager.java:441)
i will check all the class files and xml files of Application Module below top, all are there in the server top(below top)
/u02/TST22/apps/apps_st/comn/java/classes/xxfls
but i got the exception.
is there any different structure in R12.
i.ein the server top /u02/TST22/apps/apps_st/comn/java/classes/xxfls (Here my all class files in Binary mode and xml files in ASCII mode)
only CLASS files are needed or XML files are also need.(i am moving all CLASS and XML files)
could you please help me on this.
Thanks with Regards,
Muthu

Muthu,
This issue usually occurs when the AM.class file is not available at the given location. Try to find out on the server whether this
tflsm.oracle.apps.po.per.server.TflsmAM exists.
If still the problem persists then go for redeployement by deleting the existing one.
Regards,
Gyan

Similar Messages

  • Got an error while import script run in command prompt in R12

    hi '
    i am running the below script in command prompt in R12, but it will give an error
    that error name:
    'import' is not recognized as internal or external command,
    operable program or batch file.
    import C:\JDeveloper10g\jdevhome\jdev\myprojects\flsm\oracle\apps\po\per\webui\FlsmCreationPG.xml -rootdir C:\JDeveloper10g\jdevhome\jdev\myprojects -username XXFLS -password xxfls -dbconnection "(DESCRIPTION=(ADDRESS=(PROTOCOL=tcp)(HOST=cph-oadb-tst22.dk.flsmidth.net)(PORT=1543))(CONNECT_DATA=(SID=TST22)))"
    could you please help me on this.
    Regards,
    Muthu

    Muthu,
    The import file directory is not in the path,
    So run the script with full path,
    <JDEV_DIR>\jdevbin\jdev\bin\import
    Eg.
    <JDEV_DIR>\jdevbin\jdev\bin\import <JDEV_DIR>\jdevbin\jdev\myclasses\xxt\oracle\apps\pon\registration\webui\XXTSupplierRegistrationPG.xml -username apps -password apps -dbconnection "(DESCRIPTION=(ADDRESS=(PROTOCOL=tcp)(HOST=<DB_HOST_NAME>)(PORT=<DB_PORT>))(CONNECT_DATA=(SID=<DB_SID>)))" -rootDir <JDEV_DIR>\jdevbin\jdev\myclasses\ -rootPackage /
    For scripts check this URL,
    http://apps2fusion.com/at/61-kv/331-oa-framework-scripts
    Thanks,
    With regards,
    Kali
    OSSI.

  • Error While returning CLOB back to Front End Application

    Hi All,
    I have stored procedure which generate XML CLOB and returns CLOB back to front end application.
    But when my CLOB exceeds some limit the front end application is not able get the CLOB.
    Following is the error i am getting.
    Procedure call to stored procedure
    _len number;
    l_buf VARCHAR2(32767);
    v_ret_clob CLOB:=' ';
    begin
    Orcl_Proc_Ctrl_4_Xml.EXECUTE_CONTROL(v_clob,v_ret_clob);
    l_len := dbms_lob.getlength(v_ret_clob);
    dbms_output.put_line('the return size OF CLOB------> '||l_len);
    dbms_lob.read(v_ret_clob, l_len, 1, l_buf);
    virsa_dbms_output(l_buf,100);
    end;
    Error Output
    the return size OF CLOB------> 113906
    BEGIN test_oraact1019; END;
    ERROR at line 1:
    ORA-21560: argument 2 is null, invalid, or out of range
    ORA-06512: at "SYS.DBMS_LOB", line 715
    ORA-06512: at "APPS.TEST_ORAACT1019", line 16
    ORA-06512: at line 1
    I am able to get the Size of CLOB but when i try give back to Front end application it is not properly passing CLOB.
    Any help on this.
    Thanks in advance
    Prashant

    Please also post this in the XML DB forum:
    XML DB

  • User sites unreachable after weekly script run

    Server 10.3.9 on both my webserver and on my Xserve with RAID where my user sites are hosted.
    I have sites hosted directly on my webserver and my user sites are served through the webserver but site on the Xserve, shared through Open Directory.
    Everything works awesome except every Saturday morning, after the weekly script runs on both machines at 4:30 a.m., my users sites are no longer available through the webserver. If I reboot the webserver they come back just fine.
    I've looked through the weekly script and nothing was obvious to me that would break this connection.
    Has anyone else seen this?
    Thanks
    Eric

    Thanks for these tips. I've tried them and a few other things...
    It sounds, and I may be wrong, like you're proxying
    through your webserver to your file server for the
    user sites. The first thing will be to find out
    which machine is getting goofed up.
    Tomorrow, see if your regular websites are accessible
    after the script runs.
    The user sites are not available this morning through my webserver, as has been the case since installing the server in January. The regular (local) sites on the webserver are just fine.
    Try the user's sites directly
    from the file server, eliminating the webserver
    proxying.
    I don't usually run the webserver on my file server but I did fire it up this morning and was able to reach the user sites through it.
    If both of those are okay, then setup a
    terminal window on each machine, and on both machines
    do:
    tail -f /var/log/httpd/error_log
    and try hitting the user's sites through the
    webserver and see what messages come up on each
    machine, and post them.
    I don't get any error messages when accessing the user sites through the fileserver. I do get errors on the webserver when accessing user sites, saying "File does not exist:" then the path to the Network directory where the users site is. ( /Network/Servers/fileserver.address/Volumes/Home/username/Sites )
    This prompted me to try accessing user sites from one of my desktop machines (running OS X client 10.4.5) that is also connected to the fileserver with OD, and is running a webserver. That worked fine!
    I then tried to traverse the filesystem at the command line on my webserver to reach the users home sites and couldn't do it. I could do it on my desktop machine.
    So it appears that something on Server is breaking the AFP communication between the webserver and the fileserver when the periodic weekly scripts are run. I did try restarting AFP on the webserver just in case but that made no difference. I can't really restart AFP on the fileserver as I have users actively connected, but my guess is that is working just fine since I can access those shared volumes from my desktop machines.
    Instead of restarting whichever machine you've been
    restarting, try stopping and starting just the
    webserver to see if that takes care of the problem.
    I did try this and everything was the same as above.
    Strange that Server has this problem losing connection to AFP shares, but my clients don't. There isn't anything obvious to me in the weekly scripts that could cause this but I'll look again in case I missed this.
    Seems like others would have run across this??
    Note: a reboot of the webserver again this morning (after this testing) returned the users sites to my webserver. Doing an automatic reboot each week would be a kludge solution, but one that I really want to avoid if possible.
    Thanks for the troubleshooting tips. I hope you or someone else has some further advice...
    Eric
    iBook G4, iMac G5, Dual 2.5 GHz G5   Mac OS X (10.4.4)  
    Dual G4 and single Xserve with RAID   Mac OS X (10.3.9)  

  • First I got a wrong password for the network and the application error after a while that I wanted to enter the correct password no longer have access to network settings

    First I got a wrong password for the network and the application error after a while that I wanted to enter the correct password no longerhave access to network settings

    Unfortunately, it says I can't delete anything without the missing password.

  • How to return data from Ejb as collection to Front End application.

    Hi,
    I am creating a J2ee application. Here i am accessing BAPIs using stateless session bean through JCO connection. Now the BAPI is returning a return Table and return Structure to the EJB.
    I have coded the following code in one of the Ejb Method as follows:
    JCO.Table returnTable = null;
    JCO.Structure returnStructure = null;
    JCO.ParameterList paramList = siteBAPI.getExportParameterList();
    JCO.ParameterList paramList2 = siteBAPI.getTableParameterList();
    returnTable = paramList2.getTable("SITE_SUBSITE_INSTL");
    returnStructure = paramList.getStructure("BAPIRET2");
    Now i want to sent this data( returnTable & returnStructure) to front end application where front end developer accessing this returned data using Jsp.
    My scenario is that , first i want to convert this returnTable & returnStructure in a single collection and then sent this collection to Front end.
    My aim is that , the front end the application should not receive the Data, using JCO.table Variable but as a single Collection.
    I am using NWDI-2004s sps10.
    i need urgent help on this issue and i would really appreciate if somebody can put the answer with some sample code on how to return the data as Collection.

    if you want to return a result, then you probably shouldn't be using a message bean. message beans for for asynchronous tasks. session beans for for synchronous tasks. thus it would make much more sense to have your jsp call the session bean directly.

  • Integrate reports with c sharp front end application

    Hi i m very new bie at reporting world.
    i do not know how to integrate reports with c sharp front end application.
    can anyone explain or provide me good url
    for explaining  how to merge or integrate reports with c shapr front end application ?
    thanks.

    Hi Nirav,
    It seems that you want to integrate crystal reports with SDK's
    Have a look to [DevLibrary|https://www.sdn.sap.com/irj/boc/sdklibrary] and [samples|https://www.sdn.sap.com/irj/boc/samples].
    Regards,
    Shweta

  • How to display error message in front end application

    Hi Expert,
         I have one concurrent program that used to activate and deactivate the responsibilities ,
    I want that if any error occured in this program then how can I display the error message in application front end.
    Thanks in advance.

    Hi Paul,
    In the DOC_CHECK or DOC_SAVE BADI, you have a global internal table named et_messages. The structure of this table is 'bbp_smessages_badi'. You can append your error message here by inputting the message type, ID and number. The message type is either 'E' for error or 'W' for warning and the number would depend on your message class(ID). You will be able to see the error message on top of the screen, can be a red or yellow highlight depending on your appended message. I don't think creating the error message via the MESSAGE syntax will be successful, maybe this is why you are getting a runtime error.
    Regards,
    Noel

  • Lync Mobile client signs out - Error- IIS reset on Front End - WAS Errors

    I have a very limited understanding of Lync dependency's & how to trace the issue I'm now seeing. Would appreciate any direction or information to assist.
    We have Primary & Secondary Pools - both pools seem to be effected at different times. The Mobile Clients will error & not sign in until iisreset
    is done on the effected Front End.
    This issue has started a few weeks ago. Before that this has happened maybe twice in a year.
    A few weeks ago we did move the FileStore location of the Primary Front End only (off a Siffs Application store to the local drive of the Primary Front End)– AV scan
    exclusion was set for FileStore location.
    Also some Windows 2008R2 patches were applied.
    The Deployment Wizard has been rerun incase something was broken by MS updates.
    The Window Event log is clean apart from:
    WAS events: (1 to 4 are grouped)
    5013 - A process serving application pool 'LyncUcwa' suffered a fatal communication error with the Windows Process Activation Service. The process id was '24076'. The data field
    contains the error number.
    5011- The Windows Process Activation Service failed to generate an application pool config file for application pool 'LyncExtFeature'. The error type is '7'.
    5189 - A process serving application pool 'LyncIntFeature' suffered a fatal communication error with the Windows Process Activation Service. The process id was '17216'. The data
    field contains the error number.
    5011 - A process serving application pool 'LyncUcwa' exceeded time limits during shut down. The process id was '12520'.
    The Windows Process Activation Service failed to generate an application pool config file for application pool 'LyncIntReach'. The error type is '7'. To resolve this issue, please
    ensure that the applicationhost.config file is correct and recommit the last configuration changes made. The data field contains the error number.
      Schannel: Same Error event happens twice within a few seconds
    ID 36888 -
    The following fatal alert was generated: 10. The internal error state is 1203.
    ID 36888 -
    The following fatal alert was generated: 10. The internal error state is 1203.
    From What I’ve read SChannel doesn’t seem to be an issue.
    Another set of WAS events:
    5011 - A process serving application pool 'LyncUcwa' suffered a fatal communication error with the Windows Process Activation Service. The process id was '19132'.
    5011 - A process serving application pool 'LyncIntFeature' suffered a fatal communication error with the Windows Process Activation Service. The process id was
    '23876'.
    5011 - A process serving application pool 'LyncIntReach' suffered a fatal communication error with the Windows Process Activation Service. The process id was
    '9876'.
    5011 - A process serving application pool 'LyncExtFeature' suffered a fatal communication error with the Windows Process Activation Service. The process id was
    '21804'.
    5138 -
    A worker process '6620' serving application pool 'LyncUcwa' failed to stop a listener channel for protocol 'http' in the allotted time.
    5013 - A process serving application pool 'LyncUcwa' exceeded time limits during shut down.
    Our Exchange UM started to generate errors recently but not sure if that’s a result of the iisreset for WWW Pub – but these events don’t match any timing of Front End events:
    Windows Process Activation Service
    11/13/2014 04:06:37 PM
    LogName=System
    SourceName=Microsoft-Windows-Service Control Manager
    EventCode=7031
    EventType=2
    Type=Error
    ComputerName=Pxxx.xxx.com.au
    TaskCategory=The operation completed successfully.
    OpCode=The operation completed successfully.
    RecordNumber=62445
    Keywords=Classic
    Message=The Windows Process Activation Service service terminated unexpectedly.  It has done this 1 time(s).  The following corrective action will be taken in 0 milliseconds: Run the configured recovery program.
    World Wide Web Publishing Service
    11/13/2014 04:06:37 PM
    LogName=System
    SourceName=Microsoft-Windows-Service Control Manager
    EventCode=7034
    EventType=2
    Type=Error
    ComputerName= Pxxx.xxx.com.au
    TaskCategory=The operation completed successfully.
    OpCode=The operation completed successfully.
    RecordNumber=62444
    Keywords=Classic
    Message=The World Wide Web Publishing Service service terminated unexpectedly.  It has done this 2 time(s).
    I’m not sure where to go with this now. Any direction would be appreciated.
    Thank you
     

    Hi Davej006,
    Web sites and Web applications depend on the availability of Internet Information Services (IIS) application pools. IIS application pools in turn depend on the Windows Process Activation Service (WAS). If WAS is not running or errors occur
    during the startup or shutdown of an application pool, Web sites and Web applications may not be available.
    And based on my understanding, if some program works sometime and does not in other times, RAM is the problem.
    You could refer to the following article to troubleshoot your problem.
    http://technet.microsoft.com/en-us/library/cc735271(v=ws.10).aspx
    Hope it can be helpful.
    Best regards,
    Eric

  • Error after import external webservice(RFC) wsdl url to Process Composer

    Hi all,
    I try to use RFC webservice in my BPM as below:
    1. Expose RFC as webservice using CAF (import external service RFC and then create application service use this external service)
    2. Define Destination in NWA.
    3. Create a Process Composer project, and import the external webservice(RFC) wsdl file as service interface in the project.
    After importing, i get error : the port type specified for the ...binding is undefined. Check port type name and ensure it is defined.
    If i import another external service, not RFC (such as business object), there is no error.
    My system is NWCE 7.11
    Thanks in advance,
    Sinh.
    Edited by: Sinh Nguyen Van on Jul 20, 2009 8:29 AM

    Hi Bharath,
    Below is content of wsdl url and error message, thanks
    Error message:
    The 'zfm_rfc_caf_as' port type specified for the 'zfm_rfc_caf_asBinding' binding is undefined. Check the 'zfm_rfc_caf_as' port type name and ensure it is defined.
    wsdl url :
    - <definitions xmlns="http://schemas.xmlsoap.org/wsdl/" targetNamespace="http://www.sap.com/caf/demo.sap.com/s00_caf_rfc/modeled/zfm_rfc_caf_as" xmlns:b0="http://www.sap.com/caf/demo.sap.com/s00_caf_rfc/modeled/zfm_rfc_caf_as">
      <import namespace="http://www.sap.com/caf/demo.sap.com/s00_caf_rfc/modeled/zfm_rfc_caf_as" location="http://sinhnv-lap:50000/zfm_rfc_caf_as/zfm_rfc_caf_asBeanImpl?wsdl=binding&mode=ws_policy" />
    - <service name="zfm_rfc_caf_as">
    - <port name="zfm_rfc_caf_asBindingPort" binding="b0:zfm_rfc_caf_asBinding">
      <address xmlns="http://schemas.xmlsoap.org/wsdl/soap/" location="http://sinhnv-lap:50000/zfm_rfc_caf_as/zfm_rfc_caf_asBeanImpl" />
      </port>
      </service>
      </definitions>
    Edited by: Sinh Nguyen Van on Jul 22, 2009 4:18 AM

  • How to upload an Image in the front end application

    Hi friends,
    I have a requirement in the sense, soon after i login into the application with the username and password....
    I will be having an file browse item, in which i need only to upload the images, soon after selecting the picture and if i give upload means, the picture has to populate immediately above the browse item in the front end itself......
    How to achieve it friends, i dont have idea in uploading the images in the front end itself......
    for example: suppose if i want my photo to keep in the front end Soon after i login into the application means, i will select my picture from the file browse item and immediately after giving upload button, i has to come above the browse field in the front end itself.........
    Inorder for getting the image in the front, whether i need to create a separate region where the image has to come soon after given the upload button....
    help me friends, how to achieve it from the scratch........
    Thanks
    Vel Rs

    Hi peter,
    Thanks for the detailed explanation, i have got an link for doing it and this is that
    http://www.dba-oracle.com/t_easy_html_db_file_browse_item.htm
    While referring that link i couldnt able to understand one thing peter, that is
    While creating the Upload button, in the 7th point in the link it is mentioned like
    On the Branching page enter &APP_PAGE_ID. for the Branch to Page field and click Create Button.  Remember the ending period!i couldnt understand what he is trying to say over there......Can you explain that point by going through that link clearly...Whether he is asking me to create what....
    Thanks
    Vel Rs

  • Avitek Sample Application - problems after imported to Eclipse

    I downloaded "Avitek™ Medical Records Sample Application" and started a domain successfuly with this aplication. Then I imported its to my Eclipse Juno with the interest to debug this sample application. I included every lib are need. Now I am getting the error "Default target install does not exist in this project" in every build.xml on the target "<project name=".
    Other error I got is "The type javax.jms.Message cannot be resolved. It is indirectly referenced from required .class files" in the PatientNotifierBroker project. I looked for javax.jms_1.1.2.jar and I had already added this library.
    Have someone face both problems after imported this sample?

    11g by default is case sensitive username/password.
    You can disable that with setting parameter SEC_CASE_SENSITIVE_LOGON to false.
    SQL> SHOW PARAMETER SEC_CASE_SENSITIVE_LOGON
    SQL> ALTER SYSTEM SET SEC_CASE_SENSITIVE_LOGON = FALSE;

  • Opera mini 6 says application error after some bro...

    hello, i am using a nokia x2-01 device. I have downloaded opera mini 6.5 from m.opera.com , when i run the app, it runs well. After e while (after browing some pages) , it shows "application error: reason : out of memory error" . Can you tell me, what should i do now ?

    please anybody reply me. Please

  • 'Unable to Launch Application Error' - Java Web Start Running Under MS IIS.

    I am attempting to render the following .jnlp in MS IE:
    <?xml version="1.0" encoding="utf-8"?>
    <!-- JNLP File for LottoMadness Application -->
    <jnlp
       codebase="http://localhost/LottoMadness/"
       href="LottoMadness.jnlp">
       <information>
         <title>LottoMadness Application</title>
         <vendor>Rogers Cadenhead</vendor>
         <homepage href="http://localhost/LottoMadness/"/>
         <icon href="lottobigicon.gif"/>
       </information>
       <resources>
         <j2se version="1.5"/>
         <jar href="LottoMadness.jar"/>
       </resources>
       <application-desc main-class="LottoMadness"/>
    </jnlp>I've deployed the .jnlp, .gif, and .jar to MS IIS, running locally on my PC.
    When I attempt to render the .jnlp in IE I obtain an 'Application Error' window stating 'Unable to Launch Application'. Clicking details gives me:
    com.sun.deploy.net.FailedDownloadException: Unable to load resource: http://localhost/LottoMadness/LottoMadness.jnlp
         at com.sun.deploy.net.DownloadEngine.actionDownload(Unknown Source)
         at com.sun.deploy.net.DownloadEngine.getCacheEntry(Unknown Source)
         at com.sun.deploy.net.DownloadEngine.getResourceCacheEntry(Unknown Source)
         at com.sun.deploy.net.DownloadEngine.getResourceCacheEntry(Unknown Source)
         at com.sun.deploy.net.DownloadEngine.getResource(Unknown Source)
         at com.sun.deploy.net.DownloadEngine.getResource(Unknown Source)
         at com.sun.javaws.Launcher.updateFinalLaunchDesc(Unknown Source)
         at com.sun.javaws.Launcher.prepareToLaunch(Unknown Source)
         at com.sun.javaws.Launcher.launch(Unknown Source)
         at com.sun.javaws.Main.launchApp(Unknown Source)
         at com.sun.javaws.Main.continueInSecureThread(Unknown Source)
         at com.sun.javaws.Main$1.run(Unknown Source)
         at java.lang.Thread.run(Unknown Source)I have configured MS IIS for Web Start, by setting the Extension/Content Type fields to .jnlp and application/x-java-jnlp-file.
    (The .jnlp is basically from 'Programming with Java in 24 Hours', as this is the book I am learning Java from.)

    AndrewThompson64 wrote:
    I am not used to seeing references to a local server that do not include a port number.
    E.G. http://localhost:8080/LottoMadness/
    I have deployed the following HTML (HelpMe.html) to the web server:
    <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
    <html>
    <head>
         <title>Untitled</title>
    </head>
    <body>
    Help Me!
    </body>
    </html>When I attempt to render the URL in IE, I see the page just fine. The URL is use is:
    http://localhost/LottoMadness/HelpMe.htmlSo, I think my web server setup and usage is ok.
    >
    As an aside, what happens if (your MS IIS is running and) you click a direct link to..
    [http://localhost/LottoMadness/LottoMadness.jnlp|http://localhost/LottoMadness/LottoMadness.jnlp]
    When I click this link I get the error and exception I cited in my previous post.

  • Automatic creation of WBES element using front end application

    Hi,
    i am looking at developing a front end tool where user will provide the required data and project name/wbes lement in the request. upon approval from project manager, sytem must creation requird WBE element in the requested project automatically. there will be multiple requests supplied to create wbes lements under the existing projects.
    for Eg. assume that there is a project AB11.00001 
    i have already have one 4th level wbes element like displayed below:
    AB11.00001
    AB11.00001.01
    AB11.00001.01.01
    AB11.00001.01.01.01
    AB11.00001.01.01.02
    AB11.00001.01.01.03
    now i would like to add new 3rd level and 4th level for above project as mentioned below:
    AB11.00001
    AB11.00001.01
    AB11.00001.01.01
    AB11.00001.01.01.01
    AB11.00001.01.01.02
    AB11.00001.01.01.03
    AB11.00001.01.02
    AB11.00001.01.02.01
    AB11.00001.01.02.02
    AB11.00001.01.02.03
    AB11.00001.01.03
    AB11.00001.01.03.01
    AB11.00001.01.03.02
    AB11.00001.01.03.03
    this must be done either using bapi or any other programme, i tried with bapi, but not able to solve, pls help me with best way of executing this auto application rather creating manually one by one using CJ20N. i am very sure we have finest ABAP'rs in this forum who will build this programme..
    thanks
    naveen lewis
    Edited by: naveennl on Aug 16, 2010 11:39 AM

    Hi Rifaee,
    appplogies for misunderstanding..
    i want only the clues how i can execute this using some of the available SAP functionalities.. ofcourse finest ABAP'rs only think out of the box to solve this and rest will usually answer it as not feasible.
    Edited by: naveennl on Aug 16, 2010 11:51 AM

Maybe you are looking for

  • P35 Neo-F

    Beta BIOS for P35 Neo-F (MS-7360, PCB 1.0) BIOS ver. V1.1B7 BIOS Sign-on message: A7360IMS V1.1B7 051807 (Date: 05/18/2007) Attachment name: P35 Neo-F V1.1B7.zip Make and ensure PC is stable before proceed. Remove any OC if you have it.flash BIOS fro

  • Audio drop out while playing DVD

    I import a quick time file from Final Cut Pro into DVD Studio Pro. I burn my DVD and it plays just fine in my MacPro. However, when I play it in my home DVD player (and other people's home DVD player), the audio drops real low when there are not two

  • SSO: HeaderVariableLoginModule

    Hello experts, I am facing an issue with the headervariableloginmodule. Currently the header value is set as USER_ID and the portal is authenticating any valid user if we are passing the user ID in the header variable USER_ID. We recently decided to

  • Full screen backgorund

    Hi Guys, If you check the site prada.com you will see that the background image sitting on a full screen without any borders around it , no matter the monitor size/resolution . I am trying to achive the same effect and for some reason i am always get

  • Making a image boolean???

    How can you make an image boolean with 5 spots??? this: BufferedImage img[5]; dosn't seem to work, and I need a BufferedImage in my program. Jake