POS question...

hi everyone...
i have a POS printer that come with OPOS drivers.....javaPOS drivers are not available from the manufacturer....my question is the following, is there is a way to make java interact with OPOS???
thanks in advance

Hi Bakulesh,
Direct procurement with ECS prevent from modifying the backend PO. This is the standard behaviour !
Because you have a PO in two system, you have a master system (SRM) and a slave system( backend).
In the slave system, the PO is jus a copy of the master PO which resides in SRM.
If possible, do not change this behaviour, as you will have some desynchronisation between SRM PO and backend PO content.
Why do you need to change the backend PO ? What data ?
Kind regards,
Yann

Similar Messages

  • Direct material POs question

    We are implementing a classic scenario with direct procurement (PDP) in EBP 5.0 (SRM 4.0) with 4.7 as the backend.
    The problem is that the POs generated are not changeable in R/3 because the buyer who is responsible for direct materials has been created locally (per SAP configuration notes).
    So, the question is  - is this standard functionality or not ?
    P.S. - The POs can be changed in EBP, though
    Thank you.
    -Bakulesh

    Hi Bakulesh,
    Direct procurement with ECS prevent from modifying the backend PO. This is the standard behaviour !
    Because you have a PO in two system, you have a master system (SRM) and a slave system( backend).
    In the slave system, the PO is jus a copy of the master PO which resides in SRM.
    If possible, do not change this behaviour, as you will have some desynchronisation between SRM PO and backend PO content.
    Why do you need to change the backend PO ? What data ?
    Kind regards,
    Yann

  • Setting up a cluster for the first time: newbie questions

    Any help appreciated with this situation:
              I'm trying to set up a cluster for the first time and running into
              issues (no big surprise). I'll outline my situation and pose questions
              as they arise. If/when I get things to work I'll post a step-by-step
              summary of what it took to get a simple cluster going.
              Here's what I have:
              machines:
              1 Windows 2000 machines with WL 6.1
              2 RedHat Linux machines with WL 6.1
              All machines are on the same Home LAN, can see each other, etc.
              IP addresses are:
              Windows box: 192.168.1.100
              Linux box 1: 192.168.1.102
              Linux box 2: 192.168.1.103
              servers:
              I've set up the Windows machine as my admin server, and set up
              a managed server on each Linux machine. I created a cluster that consists
              of the 2 Linux machines and deployed the web app and EJB to the cluster.
              The Windows machine is acting as a Proxy using ClusterServlet.
              The web application has been set as the Default Web Application on the
              two Linux machines. All 3 machines are listening on ports 80/443. I also
              set up session memory replication through the console.
              Application:
              I have an application that I package as an EAR file. I'm using it as a
              "reference" application designed to mimic a real world app as much as possible.
              The EAR file contains a web application that uses Struts. It also consists
              of a single Stateless Session Bean. The WAR file and EJB Jar are all
              packaged up into the EAR file. I've been able to run this application just
              fine on a single managed server on all 3 machines.
              The web application works fine, and it can invoke the EJB. I can also
              invoke the EJB from Java stand-alone clients. Struts works great. All is
              well with the world. Now I'm trying to "cluster-ize" this app using
              the environment described above and encountering issues.
              I've read the docs and followed the instructions according to the
              "Weblogic Bible" book. I can bring up all 3 servers and the Linux
              managed servers connect to the cluster just fine. I can also
              see the Struts messages in their logs which normally happens and tells me
              the webapp is initialized properly. The console tells me that the managed
              servers are running. I get no error messages starting up any of the serves.
              Here are the problems I am encountering.
              When I try to access the Web Application (through a browser on the
              Windows machine using http://localhost) I get the following error message:
              <Nov 19, 2002 6:44:33 AM EST> <Error> <HTTP> <HttpServer(1754841,null default ct
              x,admin) found no context for "/". This request does not match the context path
              for any installed web applications and there is no default web application confi
              gured.>
              Also, when I try to invoke the EJB through a stand-alone Java client,
              I get a JNDI lookup error on the EJB's home interface.
              Questions:
              Question1: I noticed when setting up the machines that console lets you
              define a "Machine" or a "Unix Machine". What's the difference? Should I
              define the Linux machines as Unix machines or machines, and what are the
              consequences of either choice?
              Question2:
              I'm not totally clear on how my web.xml should look to set up Struts,
              the ClusterServlet, and a servlet filter I'm using to test Servlet filters.
              Here is what I had before I tried to cluster and which works fine:
              <filter>
              <filter-name>MainFilter</filter-name>
              <filter-class>com.refapp.servlets.MainFilter</filter-class>
              <init-param>
              <param-name>myAttribute</param-name>
              <param-value>Foo</param-value>
              </init-param>
              </filter>
              <filter-mapping>
              <filter-name>MainFilter</filter-name>
              <url-pattern>/*</url-pattern>
              </filter-mapping
              <!-- Struts ActionServlet Configuration -->
              <servlet>
              <servlet-name>action</servlet-name>
              <servlet-class>org.apache.struts.action.ActionServlet</servlet-class>
              <init-param>
              <param-name>application</param-name>
              <param-value>refappstruts</param-value>
              </init-param>
              <init-param>
              <param-name>config</param-name>
              <param-value>/WEB-INF/struts-config.xml</param-value>
              </init-param>
              <init-param>
              <param-name>debug</param-name>
              <param-value>2</param-value>
              </init-param>
              <init-param>
              <param-name>mapping</param-name>
              <param-value>org.apache.struts.action.RequestActionMapping</param-value>
              </init-param>
              <load-on-startup>2</load-on-startup>
              </servlet>
              <servlet-mapping>
              <servlet-name>action</servlet-name>
              <url-pattern>*.do</url-pattern>
              </servlet-mapping>
              <welcome-file-list>
              <welcome-file>index.do</welcome-file>
              <welcome-file>index.jsp</welcome-file>
              <welcome-file>index.html</welcome-file>
              </welcome-file-list>
              (I have set up a "dummy" 0-length file called index.do that triggers
              Struts to go into its ActionServlet when first accessing the web site).
              Here is how I added ClusterServlet to web.xml:
              servlet>
              <servlet-name>ClusterServlet</servlet-name>
              <servlet-class>weblogic.servlet.internal.HttpClusterServlet</servlet-class>
              <load-on-startup>0</load-on-startup>
              <init-param>
              <param-name>defaultServers</param-name>
              <param-value>192.168.1.102:80:443|192.168.1.103:80:443</param-value>
              </init-param>
              <init-param>
              <param-name>DebugConfigInfo</param-name>
              <param-value>ON</param-value>
              </init-param>
              </servlet>
              <servlet-mapping>
              <servlet-name>InitServlet</servlet-name>
              <url-pattern>/servlet/InitServlet</url-pattern>
              </servlet-mapping>
              <servlet-mapping>
              <servlet-name>action</servlet-name>
              <url-pattern>*.do</url-pattern>
              </servlet-mapping>
              <servlet-mapping>
              <servlet-name>ClusterServlet</servlet-name>
              <url-pattern>/</url-pattern>
              </servlet-mapping>
              <servlet-mapping>
              <servlet-name>ClusterServlet</servlet-name>
              <url-pattern>*.html</url-pattern>
              </servlet-mapping>
              <servlet-mapping>
              <servlet-name>ClusterServlet</servlet-name>
              <url-pattern>*.jsp</url-pattern>
              </servlet-mapping>
              <servlet-mapping>
              <servlet-name>ClusterServlet</servlet-name>
              <url-pattern>*.do</url-pattern>
              </servlet-mapping>
              Clearly there is a problem with the Default Web application not being
              seen/mapped properly. Any chances my URL mappings for the filter servlet,
              Struts, and ClusterServlet are stepping on each other?
              With respect to the EJB, here is what my weblogic-ejb-jar looks like:
              <weblogic-ejb-jar>
              <weblogic-enterprise-bean>
              <ejb-name>Hello</ejb-name>
              <stateless-session-descriptor>
              <pool>
                   <max-beans-in-free-pool>100</max-beans-in-free-pool>
              </pool>
              <stateless-clustering>
              <stateless-bean-is-clusterable>true</stateless-bean-is-clusterable>
              <stateless-bean-load-algorithm>
              round-robin
              </stateless-bean-load-algorithm>
              <stateless-bean-methods-are-idempotent>
              true
              </stateless-bean-methods-are-idempotent>
              </stateless-clustering>
              </stateless-session-descriptor>
              <jndi-name>Hello.Home</jndi-name>
              </weblogic-enterprise-bean>
              I run this through ejbc and package everything up into the EAR file.
              However, I get a JNDI lookup failure when I try to access the Bean from
              a standalone Java client running on the Windows machine.
              Here is the jndi.properties file that I am using:
              java.naming.factory.initial=weblogic.jndi.WLInitialContextFactory
              java.naming.provider.url=t3://localhost:80
              Any ideas what I'm doing wrong here? I can post config.xml also if needed.
              Thanks in advance!
              

    Let me try to answer :)....
              A1> No need to name diff machines by default weblogic
              considers the servers are physically located in diff boxes.
              The names are used to differtiate the mang servers which are in
              multihomed
              Some things to chk
              1> Did u targeted the ear file Target as cluster.
              2> Can u see on the Admin console that both the man servers
              are participated in the cluster( u can see by clicking the monitoring
              tab on the Cluster node).
              3>Is the URL:PORT for the default web app correct?
              the reason: is I dont see the port# on the link u mentioned
              4> probably ur ejb might not been deployed on the target thats the
              reason u cant access thru java client. If u correct the targets that
              will probably fix it.
              Hope this helps
              Please post the result
              Thanks
              Sudhir
              [email protected] (Chris) wrote in message news:<[email protected]>...
              > Any help appreciated with this situation:
              > I'm trying to set up a cluster for the first time and running into
              > issues (no big surprise). I'll outline my situation and pose questions
              > as they arise. If/when I get things to work I'll post a step-by-step
              > summary of what it took to get a simple cluster going.
              > Here's what I have:
              >
              > machines:
              > 1 Windows 2000 machines with WL 6.1
              > 2 RedHat Linux machines with WL 6.1
              > All machines are on the same Home LAN, can see each other, etc.
              > IP addresses are:
              > Windows box: 192.168.1.100
              > Linux box 1: 192.168.1.102
              > Linux box 2: 192.168.1.103
              >
              > servers:
              > I've set up the Windows machine as my admin server, and set up
              > a managed server on each Linux machine. I created a cluster that consists
              > of the 2 Linux machines and deployed the web app and EJB to the cluster.
              > The Windows machine is acting as a Proxy using ClusterServlet.
              > The web application has been set as the Default Web Application on the
              > two Linux machines. All 3 machines are listening on ports 80/443. I also
              > set up session memory replication through the console.
              >
              > Application:
              > I have an application that I package as an EAR file. I'm using it as a
              > "reference" application designed to mimic a real world app as much as possible.
              > The EAR file contains a web application that uses Struts. It also consists
              > of a single Stateless Session Bean. The WAR file and EJB Jar are all
              > packaged up into the EAR file. I've been able to run this application just
              > fine on a single managed server on all 3 machines.
              > The web application works fine, and it can invoke the EJB. I can also
              > invoke the EJB from Java stand-alone clients. Struts works great. All is
              > well with the world. Now I'm trying to "cluster-ize" this app using
              > the environment described above and encountering issues.
              >
              > I've read the docs and followed the instructions according to the
              > "Weblogic Bible" book. I can bring up all 3 servers and the Linux
              > managed servers connect to the cluster just fine. I can also
              > see the Struts messages in their logs which normally happens and tells me
              > the webapp is initialized properly. The console tells me that the managed
              > servers are running. I get no error messages starting up any of the serves.
              >
              > Here are the problems I am encountering.
              >
              > When I try to access the Web Application (through a browser on the
              > Windows machine using http://localhost) I get the following error message:
              >
              > <Nov 19, 2002 6:44:33 AM EST> <Error> <HTTP> <HttpServer(1754841,null default ct
              > x,admin) found no context for "/". This request does not match the context path
              > for any installed web applications and there is no default web application confi
              > gured.>
              >
              > Also, when I try to invoke the EJB through a stand-alone Java client,
              > I get a JNDI lookup error on the EJB's home interface.
              >
              > Questions:
              > Question1: I noticed when setting up the machines that console lets you
              > define a "Machine" or a "Unix Machine". What's the difference? Should I
              > define the Linux machines as Unix machines or machines, and what are the
              > consequences of either choice?
              >
              > Question2:
              > I'm not totally clear on how my web.xml should look to set up Struts,
              > the ClusterServlet, and a servlet filter I'm using to test Servlet filters.
              > Here is what I had before I tried to cluster and which works fine:
              >
              > <filter>
              > <filter-name>MainFilter</filter-name>
              > <filter-class>com.refapp.servlets.MainFilter</filter-class>
              > <init-param>
              > <param-name>myAttribute</param-name>
              > <param-value>Foo</param-value>
              > </init-param>
              > </filter>
              >
              > <filter-mapping>
              > <filter-name>MainFilter</filter-name>
              > <url-pattern>/*</url-pattern>
              > </filter-mapping
              >
              >
              > <!-- Struts ActionServlet Configuration -->
              > <servlet>
              > <servlet-name>action</servlet-name>
              > <servlet-class>org.apache.struts.action.ActionServlet</servlet-class>
              >
              > <init-param>
              > <param-name>application</param-name>
              > <param-value>refappstruts</param-value>
              > </init-param>
              >
              > <init-param>
              > <param-name>config</param-name>
              > <param-value>/WEB-INF/struts-config.xml</param-value>
              > </init-param>
              >
              > <init-param>
              > <param-name>debug</param-name>
              > <param-value>2</param-value>
              > </init-param>
              >
              > <init-param>
              > <param-name>mapping</param-name>
              > <param-value>org.apache.struts.action.RequestActionMapping</param-value>
              > </init-param>
              > <load-on-startup>2</load-on-startup>
              > </servlet>
              >
              > <servlet-mapping>
              > <servlet-name>action</servlet-name>
              > <url-pattern>*.do</url-pattern>
              > </servlet-mapping>
              >
              > <welcome-file-list>
              > <welcome-file>index.do</welcome-file>
              > <welcome-file>index.jsp</welcome-file>
              > <welcome-file>index.html</welcome-file>
              > </welcome-file-list>
              >
              > (I have set up a "dummy" 0-length file called index.do that triggers
              > Struts to go into its ActionServlet when first accessing the web site).
              >
              > Here is how I added ClusterServlet to web.xml:
              >
              > servlet>
              > <servlet-name>ClusterServlet</servlet-name>
              > <servlet-class>weblogic.servlet.internal.HttpClusterServlet</servlet-class>
              > <load-on-startup>0</load-on-startup>
              > <init-param>
              > <param-name>defaultServers</param-name>
              > <param-value>192.168.1.102:80:443|192.168.1.103:80:443</param-value>
              > </init-param>
              > <init-param>
              > <param-name>DebugConfigInfo</param-name>
              > <param-value>ON</param-value>
              > </init-param>
              > </servlet>
              >
              > <servlet-mapping>
              > <servlet-name>InitServlet</servlet-name>
              > <url-pattern>/servlet/InitServlet</url-pattern>
              > </servlet-mapping>
              >
              > <servlet-mapping>
              > <servlet-name>action</servlet-name>
              > <url-pattern>*.do</url-pattern>
              > </servlet-mapping>
              >
              > <servlet-mapping>
              > <servlet-name>ClusterServlet</servlet-name>
              > <url-pattern>/</url-pattern>
              > </servlet-mapping>
              >
              > <servlet-mapping>
              > <servlet-name>ClusterServlet</servlet-name>
              > <url-pattern>*.html</url-pattern>
              > </servlet-mapping>
              >
              > <servlet-mapping>
              > <servlet-name>ClusterServlet</servlet-name>
              > <url-pattern>*.jsp</url-pattern>
              > </servlet-mapping>
              >
              > <servlet-mapping>
              > <servlet-name>ClusterServlet</servlet-name>
              > <url-pattern>*.do</url-pattern>
              > </servlet-mapping>
              >
              >
              > Clearly there is a problem with the Default Web application not being
              > seen/mapped properly. Any chances my URL mappings for the filter servlet,
              > Struts, and ClusterServlet are stepping on each other?
              >
              > With respect to the EJB, here is what my weblogic-ejb-jar looks like:
              >
              > <weblogic-ejb-jar>
              > <weblogic-enterprise-bean>
              > <ejb-name>Hello</ejb-name>
              > <stateless-session-descriptor>
              > <pool>
              >      <max-beans-in-free-pool>100</max-beans-in-free-pool>
              > </pool>
              > <stateless-clustering>
              > <stateless-bean-is-clusterable>true</stateless-bean-is-clusterable>
              > <stateless-bean-load-algorithm>
              > round-robin
              > </stateless-bean-load-algorithm>
              > <stateless-bean-methods-are-idempotent>
              > true
              > </stateless-bean-methods-are-idempotent>
              > </stateless-clustering>
              > </stateless-session-descriptor>
              > <jndi-name>Hello.Home</jndi-name>
              > </weblogic-enterprise-bean>
              >
              > I run this through ejbc and package everything up into the EAR file.
              > However, I get a JNDI lookup failure when I try to access the Bean from
              > a standalone Java client running on the Windows machine.
              > Here is the jndi.properties file that I am using:
              >
              > java.naming.factory.initial=weblogic.jndi.WLInitialContextFactory
              > java.naming.provider.url=t3://localhost:80
              >
              > Any ideas what I'm doing wrong here? I can post config.xml also if needed.
              >
              > Thanks in advance!
              

  • Where can I learn more about Siri?

    Siri works pretty well for me (for a Beta component) since I do not have a strong regional accent,  but I want to learn more about what it can do, how best to pose questions for successful interactions and follow its progress as it is updated by Apple. Any suggestions for good resources?

    Here's a place to start: Learn more about Siri

  • OBIEE - How to make one presentation variable dependent on the other

    Hi,
    I have the following requirement. In a prompt say there are two columns acting as filters:
    Columnfilter1 Columnfilter2
    Now the columnfilter2 is constrained based on columnfilter1.
    The user wants that, upon logging only the columnfilter1 should have default value set and not columnfilter2. And the report should run in the following way:
    If only columnfilter1 is entered at the prompt and not columnfilter2. Therefore it should give values for all the columnfilter2 values wrt columnfilter1.
    and
    if both the prompts are entered, then the report should filter on both the columnfilters.
    I dont know how to set the above to conditions in the report.Please let me know how should i proceed.
    Thanks

    Hi,
    Thanks for the reply.. I think i did not pose question properly.. In my report I have the following requirement:
    Column1 Prompt Column2 Prompt
    Where column2 prompt depends on the column1 prompt such that there is a hierarchy, column1 (parent) --> column2 (child)
    Now, if in my report i need to display measures by comparing column1 and column2 prompts with parallel set of column1 and column2 values of another hierarchy.
    now, if column1 prompt is chosen and no column2 prompts are chosen then, then alll values of column2 are considered. Now I want to put a condition of comparison when all values are considered and a different condition of comparison when a specific value for column2 prompt is entered. How do i do that?? I thought of using default value in the condition statement. But its not working. Maybe I am implementing it wrong.
    Could you let me know how to achieve the above?
    Let me know if you need any other details.
    Thanks,

  • Recovering Data from a Oracle DBF only

    Hey, I believe I know the answer but like to pose question anyway.
    We had a database which the server crashed. The last backup was
    in January. No archivelog at that time. The flash recovery worked
    great....But the information between the backup and crash is not
    there... All I saved was the DBF files in the oracledata directory...
    Is there anyway to look or recover that data from some on the tables in
    this file...
    Now....we enabled achivelog and have a schedule task to backup and
    off load daily.....
    Just would like to know if there is anything we can do with the datafile...
    Thank you....Any guru out there......

    Yes, you can recover your data only from DBF files.
    For that you need to create controlfile statement like you would get from an alter database backup controlfile to trace.
    Also on one of your other instances do an alter database backup controlfile to trace and you will get lots of example ;-)
    Cheers!

  • ECM project, what to do with MSS? Please guide me what to do?

    Hello Everyone,
                          I have set myself a goal to learn and implement ECM at my company by myself. I have started reading very informative documents posted on my old friend/colleague u201CKevin Nguyen-Tu u201Cwebsite. Kev, you are doing great man. I have your email, will write you sometime in details.
    Here is the deal, my company is running ESS and we are using bunch of services. In order to implement ECM, I need to have MSS? right ?If so, what is the minimum thing I can do so I can spend more time reading and configuring ECM then MSS?
    Please share your experiences, thoughts, suggestion that how should I proceed. I set myself a target of one year. We are running some other application and bunch of excel sheets to do that all stuff and compensating employees.  I want to prepare a demo, so I can show it to management and tell them that what SAP ECM can do.
    I also set my eyes on following book about ECM releasing in October 2008.
    http://www.sap-press.com/product.cfm?account=&product=H2961
    I also look at HR540, but it doesnu2019t seem like good one.
    http://www.sap.com/usa/services/education/catalog/usacourse.epx?context=%5b%5b%7cHR540%7c%7c1%7c051%7cUS%5d%5d%7c
    I will appreciate your help and concern.
    Thanks,
    Saquib Khan

    If u agree [this|General administration in sap; is the right way to answer a question for someone who is equally lost like you...
    Then my answer to this question of urs wld be
    to quote ur own words
    "donot know , but I can tell you one thing . I`d go to t-code SPRO cross my fingers and find it there ..." as everything is indeed  there.
    Friend Saquib,Sometime i understand people ask questions which are well..what can i say..we see all kinds of posts in here..
    but our role here is to guide as much as possible..or atleast redirect them to other links..or even pose questions in return asking for more detailed explaination..coz sometimes people even dont know what they need exactly..
    so pls abstain for giving such reponses,especially while still being in same boat.

  • My CS4 keeps shutting down when I try to use it,why?

    How can I stop my CS4 from shutting down when I try to save or even open a file in it?
    I have tried resetting the preferences file. This worked once but so far has not worked again(I found this solution just by googling). It is obviously a common problems but I cannot find a solution that works or an explanation as to why it happens.
    Please could someone at least explain what causes it? And preferably how to fix it?
    It cost a lot of money and I don' yet understand why I should lose the right to have a functional programme. I'm not interested in having any new features etc. It takes me ages to work out how to do easy thing each time a new programme comes out!
    Thanks
    I do not know how community forum works and am very afraid I won't know even if anyone has answered this. I don't us any social media and am not familiar with the sorts of abbreviations and conventions associated with them, sorry if this is inconvenient but I don't know what 'tags' is.

    I don’t know why this happens and with the information you have provided I doubt anyone can do so so with accuracy.
    Please read these (they concern general trouble-shooting and how to pose questions on these fora):
    http://blogs.adobe.com/crawlspace/2012/07/photoshop-basic-troubleshooting-steps-to-fix-mos t-issues.html
    http://forums.adobe.com/docs/DOC-2325

  • NEED ADVISE QUICKLY!!!!

    My fellow forum geniuses: I don't usually pose questions but you all are so great in knowledge that I need you all's help. Due to financial constraints I wanted to know what is the best choice of purchasing a Refurb Macbook 13.3 2.4 gHz for $949 or a Macbook Pro 15 inch 2.16 gHz for $1099? I want to get the best for the money. I'm not able to go any higher monetary wise. Can you please respond ASAP. Trying to make that purchase by 10am today or when i wake up. Running Logic Pro 8.02, Pro Tools 8 along with a host of virtual synths like complete catalog of Spectrasonics, Battery 3, Sample Tank 2.5, Reason 3, Ivory, Sonik Synth...I think you get my drift....Appreciate it so much for the feedback....God Bless you all

    That is a good thing you brought up: that one specific machine has an odd defect, it can hold two 2 GB's of RAM, for an obvious total of four. However the machine itself can only see three gigabytes of that total. Apple has recommended that you can use one of the 1 GB's in there already and add a 2 GB stick, which goes against their usual "matched pairs only" policy, but either way you won't get that machine to access more than 3 GB's.
    It's only that one machine, though, the later ones don't have that limitation and the earlier ones can't go past two GB's that I'm aware of. My advice would be to skip the 2.16 GHz model and find another used Macbook Pro that is newer- even one generation newer. I decided I really didn't care, that 2 GB's would be fine on the laptop, since I had simultaneously bought a Mac Pro for any mixing I would do and needed to have more RAM in that as my priority.
    As I recall, if you get the Macbook Pro's that end in rounder numbers- the 2.2 and 2.4 GHz, or anything after them, then you'll get around that limitation.
    Here is a Macworld article that makes this clear:
    http://www.macworld.com/article/58476/2007/06/macbookprorev.html
    This Wikipedia article will also help you to align processor speed with RAM capability:
    http://en.wikipedia.org/wiki/Macbook_pro
    Or you can live with 3 GB's, or the two. I can say I haven't used anywhere near the two I've got while recording, after all, I have it to where the laptop itself is simply writing audio to another drive. But if you plan to mix (heavily, light mixing is fine with 2 GB's), or use a lot of software instruments (at the same time), anything other than light video work, then I'd get a machine that will be capable of the 4 GB's of RAM.
    But really, 3 GB's is still a lot. But do make sure you get the "Core 2 Duo"! Big difference there. Good luck, happy New Year.

  • PDA Keyboard Mapping Problem

    Hi All,
             I am involved in a project in which my coding revolves around MI AWT client application part. I had no problem in extraction of data from MI middle ware, thanks to MI sync APIs and this forum.
             My problem is more of Java centric and will like to pose questions to those developers who may have encountered similiar problems.
            I am testing MI AWT application on emulator using Intermec 700c skin as well as on Desktop. Our client wants to enable keyboard handling also so that user will be able to execute operations on application without much use of stylus. I have applied keyListener to all the components of my application including HomeFrame's instance. But still my keyboard handling is working sometimes and sometimes it's not working. This is due to fact that  application is losing focus on certain occasions which I am unable to track. But even if  application is losing focus,according to my understanding, focus must be at least on HomeFrame and any of it's child component. I have added keyListener to HomeFrame and all of its child components also.
         Have anybody encountered similiar problem? Can anyone help me in this regard? This keyboard thing is an important aspect of client side application, which I am finding difficult to solve.
    Thanks and Regards,
    Gopal

    Hi Jo,
           Thanks for the response.
           By implementation of AWTEventListener (Not available in Java 1.1.8, just implemented for debug basis), I found out that, if focus is on any hidden component, key events on such component will not work. That is what was happening with our application. I was able to solve this problem after this discovery. But still problem remains in one account which now we have to put in bugs of our application.
         On MI home page,  when user clicks on button to execute our application, our application opens up but still focus remains with that button on MI home page due to which key event is not firing for first time as that button now becomes hidden. I tried request focus for our application's first screen's panel when that panel is shown but still it's not working. So still problem persists only on this account. Now we will ship our application with this bug. No other go.
       Hope I have not complicated the explanation....:-)
    Regards,
    Gopal

  • Supplier Collaboration with SRM Bidding Engine

    Hi All,
    I'm looking at the SAP BIdding Engine with regards to supplier collaboration in the bidding process, my undertsanding is that SUS can be used for a single point of access for suppliers to submit their bids. I also understand that cFolders can be used to allow true collaboration in the bidding process i.e. review of bid, submit prices etc.
    I have four questions around these scenarios
    1. For collaboration in the sourcing process which is superior cFolders integration or SUS?
    2. What is the advantages of SUS over cFolders in the sourcing process.
    3. Could you use both products?
    4. Can cFolders be used to pose questions from the supplier? i.e. a true sourcing process would usually be:
                RFI > Supplier Info response > RFQ > Supplier pricing response
    Cheers
    Chris

    1. Both has diff purposes. C-folder purpose is information exchange in terms of drgs, attachments, discussion etc.
    so kind of technical exchange
    whereas SUS forms common window for suppliers for collaberating with buyer co. for BI they can submit the price & conditions.
    So kind of commercial exchange.
    Superiority depends on the perspective
    2. SUS you can use for odercollaberation also
    i.e. for PO/SA from MM or EBP ,suppliers can
    send responce
    send ASN
    post confirmation
    post invoice
    3. Yes
    BR
    Dinesh

  • Designing org structure and COA

    Hi
    We are in the process of implementing oracle financial modules in India and we are a construction company,so we do all type of construction activity and hence it is project based.we will be implementing projects as well.
    We are having operations through out the country but do not have any outside the country .
    so while implementing what would be the best idea to have org structure.
    should we go for multiple OU cosidering each project as OU or should we go with considering each project as cost centre ?
    management would like to have MIS for each project and transaction of each project accounted separately does not want other project accountant to see transaction of other projects.
    any idea would be of help.
    thanks
    Jogendra

    Hi Jogendra,
    Have you considered of having a Project Segment in your Chart of Acounts?
    In that case using your Balancing segment and the Project Sement as a secondary Tracking segment you can track all MIS based upon the Project segment and the Balancing segment.
    Whether or not to have multiple OUs also poses questions like how are the Projects Managed?
    Are separate Companies floated to own and manage each of the Projects? If separate companies are floated, for India Localization tds needs to be deducted and the Threshold limits will work at Operating Unit level. As such, you must use multiorg and crete multiple OUs to keep the threshold limits of TDS and other taxes in place.
    Security rules will need to be used in any case - as there will only be one GL (is you are using single set of Books).
    So you can create a group company,
    create one Legal entity and under this legal entity create as many OUs each having its own TAN no. Ths will allow the TDS slabs to be effective for each OU.
    Hope by now the sturcture is materialising in your mind. Happy Implementation!!
    Cheers!
    Edited by: SatyaApps on Sep 9, 2008 8:51 PM

  • Trace Batch numbers in Production

    We would like to use batchnumbers in warehousetransactions. We have already found out how to realise this. Does anyone know how you can trace which batchnumber is used from the Purchasingbatch X or Productionbatch Y at the time when the final productbatch Z was produced.  (Apart from the production or goods receipt documents of course)
    Example:
    Our customer poses questions about a certain batch Z in the salesprocess.
    How can we trace within the system which batches were used in production Y or purchase X.
    Jos Dielemans

    Yes, that is what I thought too. Do you have any suggestion about tables etc or even a ready to use Query?
    Jos Dielemans

  • ORA-00001 UK Violation

    I've had more problems with 2.0 than it's getting to be worth.
    Now I'm getting the ORA-00001 UK Violation when attempting to insert a 3 digit entry. Didn't have that problem from 01 to 99. Trying to enter 100 or anything above causes this. It doesn't matter that this 3 digit entry has never been entered before, matter of fact I've tried 10 or 20 different 3 digit codes and they all allegedy violate the unique key constraint. Yes the table will take varchar to 4 digits as well as the field on the form will take 4 digits.
    WTF is going on NOW? I'm really starting to get fed up with this release. It looks nice 'n "pretty" and I've only found a smattering of what's broken in it.
    The UK is being used to link another table to ensure only valid 3 digit entries are made into the other table.
    This must be my fault... or is it?

    I guess I need to apologize for ranting in the forum rather than just pose questions. Sorry to all.
    For a non programmer like myself, I have to rely heavily on the application to create the proper code for me. I have limited knowledge about the more complicated PL/SQL features. So for me, point & click code generation is sorely needed. When switching from 1.6 to 2.0 it was like having to learn an entirely new application all over again as it appeared the code for certain things was generated differently. Also, things that were working in 1.6 that now have to be re-engineered are a major source of frustration on my end.
    Anyhow, Earl thanks for looking in, here's the table in question:
    CREATE TABLE "POD_INV"
    (     "AUTOID" NUMBER(38,0) NOT NULL ENABLE,
         "POD_NUM" VARCHAR2(4) NOT NULL ENABLE,
         "POD_SER" VARCHAR2(36),
         "POD_MOD" VARCHAR2(36),
         "CAM_SER" VARCHAR2(36),
         "CAM_MOD" VARCHAR2(36),
         "HD_MOD" VARCHAR2(36),
         "HD_SER" VARCHAR2(36),
         "TX_SER" VARCHAR2(36),
         "TX_MOD" VARCHAR2(36),
         "GENERATION" VARCHAR2(4) NOT NULL ENABLE,
         "WIRELESS" VARCHAR2(1) NOT NULL ENABLE,
         "OWNER" VARCHAR2(36) NOT NULL ENABLE,
         "USER_ID" VARCHAR2(8),
         "RECORD_DATE" DATE NOT NULL ENABLE,
         "UPDATE_DATE" DATE,
         "TEMP1" VARCHAR2(36),
         "TEMP2" VARCHAR2(36),
         "TEMP3" NUMBER(38,0),
         CONSTRAINT "POD_INV_PK" PRIMARY KEY ("AUTOID") ENABLE,
         CONSTRAINT "POD_INV_UK" UNIQUE ("POD_NUM") ENABLE
    CREATE OR REPLACE TRIGGER "BI_POD_INV"
    before insert on "POD_INV"
    for each row
    begin
    select "POD_INV_SEQ".nextval into :NEW.AUTOID from dual;
    end;
    ALTER TRIGGER "BI_POD_INV" ENABLE
    All point & click generated and unchanged. I had no problem with this table or entering data until the POD_NUM went above 99. Once I hit 100 the problems started. What doesn't make sense to me is that I thought UNIQUE key constraint only checked for repeat values. I've tried many values that were never entered, since I'm the only one entering data at this point, and yet the constraint is still stopping me. Question would be how could a unique key constraint trigger on a unique value when the data to enter hits 3 digits or more?
    Thanks Earl or anyone that can help

  • Objet: paramètrage imprimante Canon sous Mac OS.X

    Objet: paramètage imprimante sous Mac OS.X
    Imprimante Canon MX850
    Bonjour,
    Je suis passé de Photoshop Element 7 version PC a PSE9 version Mac.
    Sous Windows il était possible de paramètrer complètement l’imprimante: type de papier, impression avec ou sans bordure, etc., etc....
    Sous Mac OS, presque plus aucun réglages et une qualité d’impression désastreuse.
    Est-ce due a des limitations de PSE9 version Mac, ou bien aux drivers version Mac de l’imprimante Canon?
    Merci de votre aide.

    Pose questions in this Forum in English please or refer to http://forums.adobe.com/community/international_forums/francais
    In case you are talking about Elements there is a Forum for that program specifically.

Maybe you are looking for

  • File Content Conversion in Receiver File Adapter

    Hi Experts, I got a requirement like "I have to read the below XML and convert into text file with '|' seperator". Below is the XML structure.<Header> is 1..1 cardinality and <Item> is 0..n cardinality and <Response> is 0..1 cardinality. <?xml versio

  • ITunes 10 will not recognise any iPod touch

    This is perplexing - while iTunes 10 will not recognise my 64Gb ipod Touch or my daughters 8Gb iPod Touch, the same configuration (Windows XP) recognises my iPhone 4 and also the old faithful iPod Classic? Any ideas would be appreciated

  • Problems with German umlaut in OCI query

    Hello, I have some problems in getting results, if I search for data with a German umlaut like "ä", "ö" or "ü". In SQL*Plus the following query returns on row: SQL> SELECT  SYSBE.ID AS SYSBE_ID   2          , SYSBE.NACHNAME AS SYSBE_NACHNAME   3     

  • Message no. RM109 The quantity at RP  is less than the quantity at next RP

    Hello everyone, I am getting an error in regards to a reporting point.  I tried going into MF4R to reset the reporting points and when I do I get the following message: The quantity at RP 0220 is less than the quantity at the next RP Message no. RM10

  • Problem installing Visual Composer NW04 Stack10

    Hi I have a problem installing Visual Composer on SAP EP NW04 Stack 10. I have downloaded VC from Service Marketplace version NWVC60_0-20000504.zip. I reach the problem where I should Connect to the SQL Database Server Enter connection details Host n