Calling a .fmx in AS 10gR3

I've installed AS 10gR3 (10.1.3.0.0) on Windows 2000, installation ends OK, when I try to call my form as I used to do in (9.0.4.0.0):
http://server:7779/forms90/f90servlet?form=path/mysystem.fmx&obr=yes&array=YES&quiet=YES
get "Page cannot be displayed".
The question is, how can I call my .fmx form?
Thanks,
Raúl

Hmmm... What installation documentations and other docs did you read prior to installing 10.1.3? And did you try to edit the Forms config file $ORACLE_HOME/forms/server/formsweb.cfg? ;)
AS10g (10.1.3) is a Java release only! What you are looking for is the AS10g (10.1.2.0.2)!
Regards,
Martin

Similar Messages

  • Calling form .fmx or report .rep from database trigger. (URGENT PL.)

    can we call an form (.fmx) or a report (.rep) from a database trigger. that is when there is some insertion in the table i want to call a report which will take the parameters from the table changed.
    regards
    vishal

    JDeveloper and ADF

  • Hot to call  forms11g  fmx file  through Java executable

    Hi,
    Iam having one file in some folder which will come through FTP , whenever file comes to the folder i should call the some form fmx file through JAVA so that my form will take care rest of the things .
    My question is how to call fmx through Java executable in windows environment.
    thanks in advance
    GV

    Hi All,
    Thnaks for the Info. But my requirement is different.
    1) whenever i received a file through FTP from other server to my server , some folder say d:\Test
    a) some batch program has to trigger and first it should take the backup of the received file to some other folder say d:\archive
    b) some batch program has to trigger to call the forms fmx file so that form will take care of reading from the file and put the data to database for the received file in d:\Test.
    Assume that it is in windows environment/Linux Environment . How i can achieve these tasks. There should not any user intervention in this , everything is automatic.
    Please guide me any solutions
    Thanks in advance
    GV

  • How to Call Fmx file in the Linux Server

    Hi All,
    Iam having a server when ever i receive a file through FTP to the server , server will trigger to call a fmx file in another server. so that it reads the data of the file and insert into database .
    How this can be achieved in Linux server, at present it is working in Windows
    Please any solutions appreciated.
    Gunisetty Venkatesulu

    Using Forms to insert data from a file into a table is the wrong way to do this. It would be much more efficient and appropriate to use SQL Loader to insert the file data. Another option, depending on your database version, would be to use an external table. External tables are basically an interface that uses SQL Loader to read and write to the file just like you would a table. You must have RDBMS 10g or higher to use external tables.
    Hope this helps,
    Craig B-)
    If someone's response is helpful or correct, please mark it accordingly.

  • Workflow design questions: FM vs WF to call FM

    Hereu2019s a couple of workflow design questions.
    1. We have Workitem 123 that allow user to navigate to a custom transaction TX1. User can make changes in TX1.  At save or at user command of TX1, the program will call a FM (FM1) to delete WI 123 and create a new WI to send to a different agent. 
    Since Workitem 123 is still open and lock, the FM1 cannot delete it immediately, it has to use a DO loop to check if the Workitem 123 is dequeued before performing the WI delete.
    Alternative: instead of calling the FM1, the program can raise an event which calls a new workflow, which has 1 step/task/new method which call the FM1.  Even with this alternative, the Workitem 123 can still be locked when the new workflowu2019s task/method calls the FM1.
    I do not like the alternative, which calls the same FM1 indirectly via a new workflow/step/task/method.
    2. When an application object changes, the user exit will call a FMx which is related to workflow.  The ABAP developer do not want to call the FMx directly, she wants to raise an event which call a workflow .. step .. task .. method .. FMx indirectly.  This way any commit that happens in the FMx will not affect the application objectu2019s COMMIT.
    My recommendation is to call the FMx using u2018in Update tasku2019 so that the FMx is only called after the COMMIT of the application object.
    Any recommendation?
    Amy

    Mike,
    Yes, in my first design, the TX can 1. raise a terminating event for the existing workitem/workflow and then 2. raise another event to call another workflow.   Both 1 and 2 will be in FM1. 
    Then the design question is: Should the FM1 be called from TX directly or should the TX raise an event to call a new workflow which has 1 step/task, which calls a method in the Business object, and the method calls the FM1?
    In my second design question, when an application object changes, the user exit will call a FMx which is related to workflow.  The ABAP developer do not want to call the FMx directly, she wants to raise an event which call a workflow, which has 1 step/task, which calls a method, which calls the FMx indirectly.  This way any commit that happens in the FMx will not affect the application objectu2019s COMMIT.
    My recommendation is either call the FMx using u2018in Update tasku2019 so that the FMx is only called after the COMMIT of the application object or raise an event to call a receiver FM (FMx).
    Thanks.
    Amy

  • DBAdapter called by EJB

    Hello,
    I'm trying to call DBAdapter used by OSB 10gR3 in WLS by a SLSB.
    1) I get connection factory:
    # Context ic = new InitialContext();
    # cf = (DBConnectionFactory) ic.lookup("eis/DB/logdb");
    2) read interaction specs supported:
    # ResourceAdapterMetaData metaData = cf.getMetaData();
    ... and see oracle.tip.adapter.db.DBStoredProcedureInt
    eractionSpec is supported
    3) get connection:
    # con = cf.getConnection();
    4) initialize interaction:
    # DBInteraction ix = (DBInteraction) con.createInteraction();
    # DBStoredProcedureInteractionSpec dbSpec = new DBStoredProcedureInteractionSpec();
    # dbSpec.setConnectionFactory(cf);
    5) read OSB project XML schema describing data structure and th rest of specs parts:
    # XMLSchema schema = (XMLSchema) xsdBuilder.build(url);
    # dbSpec.setNXSDSchema(schema);
    # dbSpec.setSchemaName("MW");
    # dbSpec.setPackageName("MW_API_PCKG");
    # dbSpec.setProcedureName("INSERTLOGFEREQUEST");
    # Properties epProps = new Properties();
    # epProps.setProperty("platformClassName ", "oracle.toplink.internal.databaseaccess.Oracle9Platform");
    # epProps.setProperty("dataSourceName", "eis/DB/ds/logdb");
    # epProps.setProperty("xADataSourceName", "eis/DB/ds/logdb");
    # dbSpec.setEndpointProperties(epProps);
    # dbSpec.setOracleApps(false);
    (I don't know if the code above makes sense, I've fopund no documentation about it)
    6) create XML records
    7) execute interaction:
    # ix.execute(dbSpec, reqRecord, resRecord);
    and I receive this error:
    Could not create/access the TopLink Session.
    Caused by:
    javax.naming.NameNotFoundException: While trying to look up comp/pm/TransactionManager in ...; remaining name 'comp/pm/TransactionManager'
    When I search for WLS JNDI path of TransactionManager the proper value is javax/transaction/TransactionManager.
    What is wrong here? Should I use a different approach? I'd like to conform to CCI standard as much as possible.
    Maybe I could use session context somehow? Usually the adapter is configured in OSB presentation layer only (using WSDL schema) but I need to make it work in Java. IMHO there is no API documentation for that (?).
    Thanks for any advice.
    Vladimir

    Hello,
    the reason is that we have developed a java application being called in OSB flow already. Now we need to map application data structures to a database schema including stored procedures. I'd like to use DBAdapter (used in OSB transport) because it's able to handle cursors in data provided by database - which I understand is difficult in pure JDBC way. Receiving such data in OSB flow would cost us probably a lot of CPU time. This funcionality is time-critical so we need to avoid using a lot of flow-related steps. Also we would like to use the possibility to configure the adapter easily.

  • Oracle fmx files from ASP

    Hi
    How can I call oracle fmx files from ASP program
    Rgds
    Dev

    Hello,
    Any (Web)Forms application can be launched through an Internet browser URL.
    (http://machine:port/forms/frmservlet?config=...)Francois

  • WEB.SHOW_DOCUMENT don´t start Firefox 3.5

    Hi @all,
    I want to call a report through Forms per web.show_document but Firefox don´t start. The URL is correct (I´ve tested it). I tried also to disable the Popup-Blocker but this didn´t solve the problem, too.
    I call the fmx with a JNLP File.
    There is no other browser installed on my system.
    Are there any other settings in the browser (or maybe in the OS (WinXPPro SP3)) which could be responsible for this problem.
    Thanks for your suggestions.
    Thomas

    Hi,
    no, I run my forms in a Java Virtual Machine ( I start it with a JNLP-File) not directly in a browser. Adobe 9 is installed. In "showmyjobs" there are no report jobs listed, because the browser don´t start and try to open the report. When I copy manually the URL (which should call the report) from web.show_document into the browser the report starts. There is no problem in calling the report.
    The problem is that web.show_document don´t start the browser or if the browser is already open a new tab to call the URL which I have written in web.show_document.
    e.g.
    web.show_document('http://www.google.de'. '_blank') should call google in a new browser tab or, if the browser is not opened already, in a new browser. But in my case the browser don´t start or don´t start a new tab page. This problem occurs in IE and in Firefox.
    I use JDK 6 Update 16 and Forms works fine with that version.
    I´ll try it tomorrow with another Java Version but I don´t think that this solve the problem.
    Thomas

  • How can I pass parameter value into first form?

    hello all
    I have one form called logon.fmx
    I have parameter in that form called "common_home".
    when I run that form browser I need to trasfer the value for parameter "common_home".
    how can I do this?
    From
    Chirag Patel

    Hi all
    1) I am used to config='myconfig' in my application to run the application from browser.
    2) in formsweb.cfg I have add one more parameter like as follows
    otherparams=common_home=c:\chirag\erp
    3) you can add n number of user defined parameter here.
    it is working fine.
    From
    Chirag Patel

  • Registering Forms in Oracle Apps 11i

    Hi hussein,
    This is the docs for registering an Oracle Form in Oracle Apps 11i.
    To Register a custom form in Oracle Applications, take the following steps.
    (As practice, copy the form FNDRSRUN.fmx under the $FND_TOP/forms to a file
    called RUNRPT.fmx. The form RUNRPT.fmx will now be used in the following steps.)
    1.Log into the Applications Developer responsibility
    2.Navigate to Application > Form
    3.Enter the form name under the "Form" column
         RUNRPT
    4.Enter the Application under the "Application" column using the list of value
      button, or the "List of Values" function under the "Edit" menu option.
         Application Object Library
    5.Enter a name for the form under the "User Form Name" column
         My Report Run Form
    6.Enter a description for the form under the "Description" column
         Custom Report Run Form
    7.Save
    [\code]
    My question is, how do I run the form in the Oracle Apps? After registering it.
    And this is also another doc:Rgistering form will takes following steps
    1) Create custom form
    2) place it in CUSTOM_TOP in unix box
    3) compile form with f60 gen and check whether compiled form .fmx is generated.
    4) register your from
    Registering a Form
    Navigation – Application Developer -> Application->Form
    5) Register Form Functions
    Navigation – Application Developer -> Application->Function
    6) attach it to menu.
    7) menu must be submenu to menu or attached as to responsibility from which you are going to run form.
    For report we are attaching concurrent program to responsibility but here form function must be attached to Menu.
    My question is, how do I know if a form has a function that needs to be registered?
    Thanks a lot
    msk

    Hi,
    My question is, how do I run the form in the Oracle Apps? After registering it.You already have the steps in your post, just add the form to the menu and attach it to the responsibility.
    My question is, how do I know if a form has a function that needs to be registered?Sorry, I cannot be of much help here, but you may check the Developer Guide and see if it helps.
    Oracle Applications Developer's Guide
    http://download.oracle.com/docs/cd/B25284_01/current/acrobat/115devg.pdf
    Regards,
    Hussein

  • Form service not available for few users

    Dear all,
    we have nearly 500 users connected to Oracle App server 9i Release " ".
    We have a main form called "main.fmx" .
    In middle of the day a change my "main.fmx".
    As user are connected i cannot replace it.
    So what i do is
    1) I first rename the "main.fmx" on application server to main_1.fmx" which it allows to do on application server.
    2) Copy the modified "main.fmx" directly to application server.
    What we observed is all the users which were connected before renaming where able to acceses all the options of "Main.fmx" .
    The user which logged in after the file was rename were getting following error :
    1) "FRM-92050 : Failed to connect to the server : webdb-01:9001".
    Kindly let me know what is the problem.
    Thanking you in anticipation.
    Regards,
    Devendra

    the app-server did let you delete the file, because the OAS did need the file.
    when you use this trick - then don't ask yourself, why the OAS has a problem after the rename and ...
    it's easier to find out, which user are actually using this form and shut down this users. After that you can overwrite the file and no problems will occur.
    I have created a technique, in which each form stores the actual form-name in the session-environment. So I can look in the database-sessions which users are connected, and which forms they are working in - actually.
    Then you can email them to leave the form and after that you can do the copy
    try it
    Gerd

  • Operating System Problem? FRM-400100

    We are encountering a problem accessing forms via the web as follows:
    We have an ERP system for our institution comprised of several modules. The system launches through a main form called usermenu.fmx; what is happening is that when we try to modify this form (this is done on a client machine) and the original fmx (on the server) is replaced by the new one, the forms servlet returns with FRM-400100 "cannot read form usermenu.fmx".
    What I am guessing is that somehow the fmx copy on the local machine is not being generated in a way that allows clients to access it when it is on the server (a privileges issue).
    Am I on the right track?
    What checks can I do to troubleshoot the problem?
    Ammar
    Edited by: elmousa68 on Apr 22, 2010 5:35 PM
    Sorry, Client is Windows XP SP3, Application Server Windows Server 2003

    Andreas,
    You are correct - according to Oracle support, if the development OS is 32 bit and the App Server OS is 64 bit, you must recompile the fmb's. It is for this reason that I asked if the deployed environment as 64 bit. :0
    InoL - as to your comment :0 - you might want to do a little research into Oracle Best Practices. Oracle has always recommend you compile the FMB on the deployed OS. As to Commercial Off The Shelf (COTS) application, you have to purchase a version compatible with your App Server OS. I use to work for a Company that produced a COTS application based on Oracle Forms and part of the software installation routine was to compile the fmx files from the fmb's.
    Craig...

  • Just installed 10g: Main form cannot find subforms or menus

    I just added 10g FOrms Builder to my PC. I was running 9i and it still exists on the machine.
    Problem: My main form, when run locally from Forms Builder cannot find any of its menus or subforms unless the FULL PATHs are defined in the properties or CALL_FORMs.
    This was not a problem when running from 9i FOrms Builder.
    I am assuming its a parameter somewhere in the FORMSWEB.CFG file which sets the default path to whatever path the main form uses.
    Can anyone steer me in the right direction?
    THANKS!

    Hi,
    Well, I assume that if 9i was installed, you also had FORMS90_PATH set in the registry.
    Perhaps what is happening is Forms is running your main form, and then when you are calling other forms, it is using the 9i versions, and then failing because they are not 10g versions.
    For example:
    d:\app\9i\form1.fmx
    d:\app\10g\form1.fmx
    When trying to call form1.fmx, Forms follows the FORMS90_PATH first and uses the form in d:\app\9i\. Change your FORMS90_PATH and see what happens.
    This is just a theory, I am new to 9i and 10g myself.
    Cheers

  • How can i notice the name of global variable ?

    When the customizing.fmx calls the standard.fmx, I came accross an error "FRM-41067 Can not find menu Item".
    customizing.fmx --> call --> standard.fmx
    So, I want to assign a global variable to standard.fmx in the customizing.fmx.
    How can i find out the name of global variable ???
    Can I catch the name of global variable??
    For expamle..
    :global.menu_id was not the answer.
    :global.mn_id was not the answer.
    :global.mnid was not the answer.
    HOW!!!!!!!!!!!!!!!!!!!!
    Please HELP ME!!!

    Hi
    Can I catch the name of global variable?? yes u can , if u use a message after each type like...
    :global.menu_id
    MESSAGE (' global.menu_id = ' || global.menu_id );
    SYNCHRONIZE; Hope this helps...
    Regards,
    Abdetu...

  • WEBUTIL  Error WUC-15: "Your Form must contain the following Bean ...

    Dear Colleague,
    Up until now, I have installed WebUtil in my DEV environment (Designer Suite) and successfully used it to develop and run a form called DOCU_MGMT.fmx that performs various document management tasks like:
    1. File Upload into a DB BLOB column
    2. File Download and display
    3. Full text search (via Oracle Text) etc.
    In the meantime, I installed WebUtil in my TEST environment (Application Server) and successfully started the DOCU_MGMT.fmx form. However, when I press the button that executes the webutil_file_transfer.DB_To_Client function, I get the "WUC-15" error message, namely:
         "WUC-15 Your Form must contain the following Bean for this function to be available.
    oracle.forms.webutil.file.FileFunctions"
    According to the error message guide:
    "WUC-15 Your Form must contain the following Bean for this function to be available."
    Description: WebUtil uses Bean areas to carry out client side functionality and these must be present.
    Resolution: Drag the WEBUTIL object group into your Form.
    But this form was compiled with the WEBUTIL pll attached and the WEBUTIL object group subclassed into it.
    Any ideas or tips on the problem and how I should proceed? Any support would be appreciated.
    Thanks and best regards,
    Randy

    I am facing the same problem...
    Please help me out with this problem .it’s urgent
    Requirment:- I have to display open_dialog box.
    Software:-Oracle10g suite
    Formweb.cfg
    WebUtilArchive=frmwebutil.jar,jacob.jar
    WebUtilLogging=off
    WebUtilLoggingDetail=normal
    WebUtilErrorMode=Alert
    WebUtilDispatchMonitorInterval=5
    WebUtilTrustInternal=true
    WebUtilMaxTransferSize=16384
    baseHTMLjinitiator=webutiljini.htm
    baseHTMLjpi=webutiljpi.htm
    archive_jini=frmall_jinit.jar
    archive=frmall.jar
    lookAndFeel=oracle
    default.env
    WEBUTIL_CONFIG=D:\DevSuiteHome_1\forms\server\webutil.cgf
    CLASSPATH=D:\DevSuiteHome_1\j2ee\OC4J_BI_Forms\applications\formsapp\formsweb\WEB-INF\lib\frmsrv.jar;D:\DevSuiteHome_1\jlib\repository.jar;D:\DevSuiteHome_1\jlib\ldapjclnt10.jar;D:\DevSuiteHome_1\jlib\debugger.jar;D:\DevSuiteHome_1\jlib\ewt3.jar;D:\DevSuiteHome_1\jlib\share.jar;D:\DevSuiteHome_1\jlib\utj.jar;D:\DevSuiteHome_1\jlib\zrclient.jar;D:\DevSuiteHome_1\reports\jlib\rwrun.jar;D:\DevSuiteHome_1\forms\java\frmwebutil.jar;D:\DevSuiteHome_1\forms\java\jocab.jar
    Form Code
    declare
    x varchar(234);
    begin
    x:= WEBUTIL_FILE.FILE_OPEN_DIALOG ( 'c:\', '*.*', '|All files|*.*|', 'My Open Window' ) ;
    end;
    Compilation no Error. Error while running the form…Java Console say’s
    Oracle JInitiator: Version 1.3.1.22
    Using JRE version 1.3.1.22-internal Java HotSpot(TM) Client VM
    User home directory = C:\Documents and Settings\perwaiz
    User has overriden browser's proxy settings.
    Proxy Configuration: no proxy
    JAR cache enabled
    Location: C:\Documents and Settings\perwaiz\Oracle Jar Cache
    Maximum size: 50 MB
    Compression level: 0
    c: clear console window
    f: finalize objects on finalization queue
    g: garbage collect
    h: display this help message
    l: dump classloader list
    m: print memory usage
    q: hide console
    s: dump system properties
    t: dump thread list
    x: clear classloader cache
    0-5: set trace level to <n>
    Loading http://biju-nxg.wjtowell.com:8890/forms/java/frmall_jinit.jar from JAR cache
    Loading http://biju-nxg.wjtowell.com:8890/forms/java/my_icons.jar from JAR cache
    Loading http://biju-nxg.wjtowell.com:8890/forms/java/frmwebutil.jar from JAR cache
    java.io.FileNotFoundException: File not found: http://biju-nxg.wjtowell.com:8890/forms/java/jacob.jar
    at sun.plugin.protocol.jdk12.http.HttpURLConnection.getInputStream(Unknown Source)
    at oracle.jre.protocol.jar.HttpUtils.followRedirects(Unknown Source)
    at oracle.jre.protocol.jar.JarCache$CachedJarLoader.download(Unknown Source)
    at oracle.jre.protocol.jar.JarCache$CachedJarLoader.load(Unknown Source)
    at oracle.jre.protocol.jar.JarCache.get(Unknown Source)
    at oracle.jre.protocol.jar.CachedJarURLConnection.connect(Unknown Source)
    at oracle.jre.protocol.jar.CachedJarURLConnection.getJarFile(Unknown Source)
    at sun.misc.URLClassPath$JarLoader.getJarFile(Unknown Source)
    at sun.misc.URLClassPath$JarLoader.<init>(Unknown Source)
    at sun.misc.URLClassPath$2.run(Unknown Source)
    at java.security.AccessController.doPrivileged(Native Method)
    at sun.misc.URLClassPath.getLoader(Unknown Source)
    at sun.misc.URLClassPath.getLoader(Unknown Source)
    at sun.misc.URLClassPath.getResource(Unknown Source)
    at java.net.URLClassLoader$1.run(Unknown Source)
    at java.security.AccessController.doPrivileged(Native Method)
    at java.net.URLClassLoader.findClass(Unknown Source)
    at sun.applet.AppletClassLoader.findClass(Unknown Source)
    at sun.plugin.security.PluginClassLoader.findClass(Unknown Source)
    at java.lang.ClassLoader.loadClass(Unknown Source)
    at sun.applet.AppletClassLoader.loadClass(Unknown Source)
    at java.lang.ClassLoader.loadClass(Unknown Source)
    at java.lang.ClassLoader.loadClassInternal(Unknown Source)
    at java.lang.Class.forName0(Native Method)
    at java.lang.Class.forName(Unknown Source)
    at oracle.ewt.util.FocusUtils.<clinit>(Unknown Source)
    at oracle.ewt.lwAWT.LWComponent.<clinit>(Unknown Source)
    at oracle.ewt.laf.oracle.OracleLookAndFeel._initCommonFixedDefaults(Unknown Source)
    at oracle.ewt.laf.oracle.OracleLookAndFeel._getCommonDefaults(Unknown Source)
    at oracle.ewt.laf.oracle.OracleLookAndFeel._getIndexedDefaults(Unknown Source)
    at oracle.ewt.laf.oracle.OracleLookAndFeel.getDefaults(Unknown Source)
    at oracle.ewt.lwAWT.BufferedApplet.getUIDefaults(Unknown Source)
    at oracle.ewt.lwAWT.BufferedApplet.<init>(Unknown Source)
    at oracle.ewt.swing.JBufferedApplet.<init>(Unknown Source)
    at oracle.forms.engine.Main.<init>(Unknown Source)
    at java.lang.Class.newInstance0(Native Method)
    at java.lang.Class.newInstance(Unknown Source)
    at sun.applet.AppletPanel.createApplet(Unknown Source)
    at sun.plugin.AppletViewer.createApplet(Unknown Source)
    at sun.applet.AppletPanel.runLoader(Unknown Source)
    at sun.applet.AppletPanel.run(Unknown Source)
    at java.lang.Thread.run(Unknown Source)
    WARNING: Unable to cache http://biju-nxg.wjtowell.com:8890/forms/java/jacob.jar
    proxyHost=null
    proxyPort=0
    connectMode=HTTP, native.
    Forms Applet version is : 10.1.2.0
    java.lang.NoClassDefFoundError: com/jacob/com/ComException
    at java.lang.Class.forName0(Native Method)
    at java.lang.Class.forName(Unknown Source)
    at oracle.forms.handler.UICommon.instantiate(Unknown Source)
    at oracle.forms.handler.UICommon.onCreate(Unknown Source)
    at oracle.forms.handler.JavaContainer.onCreate(Unknown Source)
    at oracle.forms.engine.Runform.onCreateHandler(Unknown Source)
    at oracle.forms.engine.Runform.processMessage(Unknown Source)
    at oracle.forms.engine.Runform.processSet(Unknown Source)
    at oracle.forms.engine.Runform.onMessageReal(Unknown Source)
    at oracle.forms.engine.Runform.onMessage(Unknown Source)
    at oracle.forms.engine.Runform.sendInitialMessage(Unknown Source)
    at oracle.forms.engine.Runform.startRunform(Unknown Source)
    at oracle.forms.engine.Main.createRunform(Unknown Source)
    at oracle.forms.engine.Main.start(Unknown Source)
    at sun.applet.AppletPanel.run(Unknown Source)
    at java.lang.Thread.run(Unknown Source)
    Thanks

Maybe you are looking for

  • Leopard 10.5.1, Lightroom 1.3.1, Epson R1800 w/612a drivers

    Okay - I have been beating my head against the wall for a while now and with the newly release drivers from Epson I HAD renewed hope that things would start printing correctly. So, with above listed configuration I still am not getting correct prints

  • Schedule Segment execution

    Hi! After integrating and configuring Siebel Marketing 8 with OBIEE 10g, I can now create segments using OBIEE metadata. But how can I schedule the Segment execution, in order to load S_CAMP_CON at a schedule date/time, so it does not load it during

  • Passing an Internal table to a "Z" class

    Hi, I am new to ABAP Objects. I am developing a "Z" class and would like to pass an internal table to this "Z" class. How do I pass it. What declarations do I need to make in the "Z" class and where? Thanks in advance. Mick

  • HT5957 why cant i restore my iphone 4s from ios 7

    I am currently on ios 7 beta 5 and when i go to check for updates it says im currently up to date (which im not) i thought restoreing my iphone would help the problum but its not even letting me restore. Can someone plese help me with this problum

  • CAN'T REMOVE A GAME THAT DIDN'T FINISH DOWNLOADING !

    When downloading a game on my itouch, my internet crashed and now it doesnt continue downloading and i cant remove it. ive tried alot of stuff so i am happy if you can help me Thanx in advance,