MappingInfoNotFoundException for embedded class

The following stack trace appears in my log file when attemping to create
a new User object. User has an embedded Password object. Interestingly
enough, the record, including the embedded password, makes it into the
database. This leads me to believe that this may be a bug.
1587736 DEBUG [tcpConnection-8080-0] jdbc.SQL - <t 24192593, conn 5035392>
[0 ms] executing prepstmnt 31544052 INSERT INTO users (email, first_name,
id, jdoclass, last_name, op_lock, password) VALUES (?, ?, ?, ?, ?, ?, ?)
[params=(String) c, (String) a, (String) 1-USERKEY:5, (String)
kodopt.model.User, (String) b, (int) 0, (String) d] [reused=0]
1587749 INFO [tcpConnection-8080-0] kodo.MetaData - Parsing metadata
resource
"file:/var/resin-2.1.9/webapps/kodopt/WEB-INF/classes/kodopt/model.mapping".
1587762 WARN [tcpConnection-8080-0] kodo.MetaData - No mapping
information was found for "class kodopt.model.Password".
1587763 WARN [tcpConnection-8080-0] kodo.Runtime - An exception was
thrown while executing a transaction listener callback method. It was
intercepted. The event framework consumes any exceptions that a
TransactionListener may throw.
kodo.jdbc.meta.MappingInfoNotFoundException: Could not obtain a valid
mapping for "class kodopt.model.Password". This could indicate that
mapping information could not be found, or that it was invalid. Check the
log for possible details.
at
kodo.jdbc.meta.MappingRepository.getMappingInternal(MappingRepository.java:352)
at
kodo.jdbc.meta.MappingRepository.getMapping(MappingRepository.java:297)
at
kodo.jdbc.meta.MappingRepository.getMapping(MappingRepository.java:162)
at
kodo.jdbc.meta.MappingRepository.getMetaData(MappingRepository.java:150)
at kodo.event.RemoteCommitEvent.<init>(RemoteCommitEvent.java:98)
at
kodo.runtime.PersistenceManagerFactoryImpl$1.afterCommit(PersistenceManagerFactoryImpl.java:679)
at
kodo.event.TransactionEventManager.fireEvent(TransactionEventManager.java:65)
at
serp.util.AbstractEventManager.fireEvent(AbstractEventManager.java:78)
at
kodo.runtime.PersistenceManagerImpl.endTransaction(PersistenceManagerImpl.java:823)
at
kodo.runtime.PersistenceManagerImpl.afterCompletion(PersistenceManagerImpl.java:660)
at
kodo.runtime.LocalManagedRuntime.commit(LocalManagedRuntime.java:85)
at
kodo.runtime.PersistenceManagerImpl.commit(PersistenceManagerImpl.java:408)
at kodopt.UserManagerServlet.doGet(UserManagerServlet.java:749)
at javax.servlet.http.HttpServlet.service(HttpServlet.java:126)
at javax.servlet.http.HttpServlet.service(HttpServlet.java:103)
at
com.caucho.server.http.FilterChainServlet.doFilter(FilterChainServlet.java:96)
at com.caucho.server.http.Invocation.service(Invocation.java:315)
at
com.caucho.server.http.CacheInvocation.service(CacheInvocation.java:135)
at
com.caucho.server.http.HttpRequest.handleRequest(HttpRequest.java:246)
at
com.caucho.server.http.HttpRequest.handleConnection(HttpRequest.java:164)
at com.caucho.server.TcpConnection.run(TcpConnection.java:139)
at java.lang.Thread.run(Thread.java:536)
The User object has a member of type Password called password. The
Password class has a String called password.
Here are the pertinent excerpts from my JDO file:
<class name="Password">
<extension vendor-name="kodo" key="jdbc-use-class-map" value="none" />
</class>
<class objectid-class="UserKey" name="User">
<field name="password" embedded="true" />
</class>
And from my mapping XML file:
<class name="User">
<field name="password">
<jdbc-field-map type="embedded" null-ind-column="password"
synthetic="false">
<field name="password">
<jdbc-field-map type="value" column="password" />
</field>
</jdbc-field-map>
</field>
</class>

Brian Gebala wrote:
Correction: Section 7.8.6 of the Developer's Guide. Example 7.27.
Abe White wrote:
Thanks for the report. Did you ever run the mappingtool's refresh action
on the Password type? Even though you correctly added
jdbc-use-class-map="none" to your metadata, the mapping tool still needs
to be run on the class and a .mapping file generated (the mapping file
will just record a class-map type of "none"). We'll try to smooth this
out in the future.
I have not run the mappingtool, however I don't have a schema file. I
created the tables, the JDO file, and the XML mapping file by hand. Do I
really need to run this tool? Does it modify Password.class? I am going
off the example in section 7.27 in the Developer's Guide. Is the example
in this section correct and complete?

Similar Messages

  • OpenJPA is firing separate query for embedded class in the entity

    Hello experts,
    I have an Embedded class in my entity which has some common similar columns for all the tables.
    e.g
    @Entity
    @Table(name = "MY_TABLE")
    public class MyTable implements Serializable {
         //... some specific fields here
         @Embedded     
         @EagerFetchMode(FetchMode.JOIN)
         private CommonRowDetails commonRowDetails;
         //...getters and setter below
    And the class CommonRowDetails contains some audit columns as
    @Embeddable
    public class CommonRowDetails implements Serializable {
         @Column(name = "ROW_ADD_STP", updatable = false)
         private Date rowAddStp;
         @Column(name = "ROW_ADD_USER_ID", updatable = false)
         private String rowAddUserId;
         @Column(name = "ROW_UPDATE_USER_ID")
         private String rowUpdateUserId;
         @Column(name = "ROW_UPDATE_STP")
         private Date rowUpdateStp;
         //...getters and setter below
    All above columns are part of same table "MY_TABLE"
    So when I select the entity MyTable, I can see a separate query is getting executed for selecting (ROW_ADD_STP, ROW_ADD_USER_ID, ...) which is definitely not required. I also added the annotation @EagerFetchMode(FetchMode.JOIN) on field CommonRowDetails to select those with join/in same query.
    Please help me to know, how to avoid OpenJPA firing a separate query.
    ENV details
    DATABASE
    databaseProductName: DB2/LINUXX8664
    databaseProductVersion: SQL09075
    driverName: IBM DB2 JDBC Universal Driver Architecture
    driverVersion: 3.58.81
    OS-SERVER
    WebSphere Platform 8.0.0.2 [BASE 8.0.0.2 cf021148.03]
    Host Operating System is Windows XP, version 5.1
    Java version = 1.6.0, Java Compiler = j9jit26, Java VM name = IBM J9 VM
    OPENJPA- 2.1.2

    Hello Forum,
    got a response in the SAP forum - Issue is a bug in the SAP NetWeaver
    app. server.
    Henning Malzahn

  • Named query in Entity Bean - Problem with embedded class

    Hello Forum,
    I'm trying to set up a named query in my Entity Bean and I'm unable to get
    it up and running for an embedded class object.
    The class hierarchy is as follows:
             @MappedSuperclass
             AbstractSapResultData (contains dayOfAggregation field)
                     ^
                     |
            @MappedSuperclass
            AbstractSapUserData (contains the timeSlice field)
                     ^
                     |
              @Entity
              SapUserDataThe named query is as follows:
    @NamedQuery(name = SapUserDataContext.NAMED_QUERY_NAME_COUNT_QUERY,
                                query = "SELECT COUNT(obj) FROM SapUserData AS obj WHERE "
                                         + "obj.sapCustomerId"
                                         + "= :"
                                         + SapResultDataContext.COLUMN_NAME_SAP_CUSTOMER_ID
                                         + " AND "
                                         + "obj.sapSystemId"
                                         + "= :"
                                         + SapResultDataContext.COLUMN_NAME_SAP_SYSTEM_ID
                                         + " AND "
                                         + "obj.sapServerId"
                                         + "= :"
                                         + SapResultDataContext.COLUMN_NAME_SAP_SERVER_ID
                                         + " AND "
                                         + "obj.dayOfAggregation.calendar"
                                         + "= :"
                                         + DayContext.COLUMN_NAME_DAY_OF_AGGREGATION
                                         + " AND "
                                         + "obj.timeSlice.startTime"
                                         + "= :"
                                         + "timeSliceStartTime"
                                         + " AND "
                                         + "obj.timeSlice.endTime"
                                         + "= :"
                                         + "timeSliceEndTime")The query deploys and runs except that part:
                                         + "obj.dayOfAggregation.calendar"
                                         + "= :"
                                         + DayContext.COLUMN_NAME_DAY_OF_AGGREGATIONI don't see any difference to the part of the query accessing the timeSlice
    field which is also an embedded class object - I access it in exactly the same way:
                                         + "obj.timeSlice.startTime"
                                         + "= :"
                                         + "timeSliceStartTime"
                                         + " AND "
                                         + "obj.timeSlice.endTime"
                                         + "= :"
                                         + "timeSliceEndTime"The problem is that the complete query runs on JBoss application server
    but on the SAP NetWeaver application server it only rund without the
                                         + "obj.dayOfAggregation.calendar"
                                         + "= :"
                                         + DayContext.COLUMN_NAME_DAY_OF_AGGREGATIONpart - If I enable that part on SAP NetWeaver the server complains:
    [EXCEPTION]
    {0}#1#java.lang.IllegalArgumentException: line 1: Comparison '=' not defined for dependent objects
    SELECT COUNT(obj) FROM SapUserData AS obj WHERE obj.sapCustomerId= :sap_customer_id AND obj.sapSystemId= :sap_system_id AND obj.sapServerId= :sap_server_id AND obj.dayOfAggregation.calendar= :day_of_aggregation AND obj.timeSlice.startTime= :timeSliceStartTime AND obj.timeSlice.endTime= :timeSliceEndTime
                                                                                                                                                                                                 ^I know that this isn't an application server specific forum but the SAP NetWeaver server is the most strict EJB 3.0 and JPA 1.0 implementation I've seen so far so I think I'm doing something wrong there.
    Someone in the SAp forum mentioned:
    The problem here is that you compare an input-parameter with an embeddable field of your entity.
    Regarding to the JPQL-grammer (spec 4.14) you are not allowed to compare
    with the non-terminal embeddable field but with the terminal fields of your
    embeddable. Stating that your embedded class might have the fields
    startTime and endTime your JPQL query might look like this:
    Query q = em.createQuery("SELECT count(obj.databaseId) FROM SapUserData obj WHERE obj.timeSlice.startTime = :startTime AND obj.timeSlice.endTime = :endTime");
    q.setParameter("startTime", foo.getStartTime());
    q.setParameter("endTime", foo.getEndTime());
    q.getResultList();
    This limitation in the JPQL grammar is rather uncomfortable.
    An automatic mapping of the parameter's fields to the terminal fields of your
    embedded field would be more convenient. The same can be said for lists
    as parameter-values which is possible in HQL, too. I think we have to wait
    patiently for JPA 2.0 and hope for improvements there. :-)
    With that help I was able to get it up and running for the timeSlice field but
    I don't see the difference to the dayOfAggregation field which is also just
    another embedded class using an object of a class annotated with
    @Embeddable.
    The get method of the dayOfAggregation field is as follows:
         * Get method for the member "<code>dayOfAggregation</code>".
         * @return Returns the dayOfAggregation.
        @Embedded
        @AttributeOverrides({@AttributeOverride(name = "calendar", /* Not possible to use interface constant here - field name must be used for reference */
                                                column = @Column(name = DayContext.COLUMN_NAME_DAY_OF_AGGREGATION,
                                                                 nullable = false)),
                             @AttributeOverride(name = "weekday",
                                                column = @Column(name = DayContext.COLUMN_NAME_WEEKDAY,
                                                                 nullable = false)),
        public Day getDayOfAggregation() {
            return this.dayOfAggregation;
        }The link to my question in the SAP forum for reference:
    https://www.sdn.sap.com/irj/sdn/thread?messageID=3651350
    Any help or ideas would be greatly appreciated.
    Thanks in advance.
    Henning Malzahn

    Hello Forum,
    got a response in the SAP forum - Issue is a bug in the SAP NetWeaver
    app. server.
    Henning Malzahn

  • Anyone know xhtml code for embedding QT movies with Autoplay off?

    I am using code I got in class, and see online, for embedding a QT movie in a page, but the Autoplay-false is not working, the movie starts right out playing as soon as the page opens.
    the line of code:
    <parem name="autoplay" value="false" />
    The whole block of code I got from the class to insert a movie:
    <!-- embed quicktime movie -->
    <!-- for older IE browers -->
    <object classid="clsid:02BF25D5-8C17-4B23-BC80-D3488ABDDC6B"
    codebase="http://www.apple.com/qtactivex/qtplugin.cab"
    width="320" height="255">
    <param name="src" value="../../movietests/ffems_entry.mov" />
    <parem name="autoplay" value="false" />
    <!-- [if gte IE 7> <!-->
    <!-- embed quicktime movie -->
    <!-- for all other browers -->
    <object type="video/quicktime" data="../../movietests/ffems_entry.mov" width="320" height="255">
    <parem name="autoplay" value="false" />
    alt : Click for Movie
    </object>
    <!--<! [endif] -->
    <!--[if It IE 7] >
    alt : <a href="../../movietests/ffems_entry.mov"> Click for Movie </a>
    <! [endif] -->
    </object>

    Thank you for your reply, Kirk,
    1)Yes, I do have "fast start" enabled in my files, and they were made with QT Pro, newest version. So no, there is no "trouble with my files".
    However, I would still like to have that flashing "Loading" icon when the file is loading, as I see on other sites. (And yes, even with "Fast Start" enabled, depending on the size of the file, the speed of the computer and internet connection, it can take a little time beforeit starts.) Anyone know how to create that flashing "Loading" icon, rather than just the static Q?
    2)I just wondered if there was a way for the javascript to recognize if the user does not have javascript, and bring up a message if that is the case, telling the user they need to enable it to see the content. (As would happen if the user does not have the QT plugin installed.) Yes, I realize it would not work to include in the normal way the embed and object tags as well, I wondered if there was a way to invoke them only if the user doesn't have javascript. Perhaps impossible, but I thought I'd ask, in case someone knows of a way to do that.
    4)Yes, I guess I could just put a separate direct text link to the movie file for downloading. I just wondered if there was a way to put that in the javascript, so that if someone right-clicks on the QT icon, they can download rather than view it, rather than use a separate link. That may also be impossible, but I thought I'd ask, and see if there is a way to do that.
    Your question to me regarding dimensions--I forget which was the QT movie, that I took that sample from. Yes, I have some in unusual sizes. They are not normal movies. I don't have time to explain more now though, and that has no bearing on the questions I asked.
    Once again, thanks for replying, and if you or someone else could help further with my questions, I would appreciate it very much.
    Have a nice day!

  • Get the relative path for java class

    How to get Relative path for java class which is inside in web-inf directory in webapps

    ajay.manchu wrote:
    Hi gimbal2,
    My Requirement is i need to run a java class from batch file,when i created batch file in that i need to mention the complete path of the java class,so instead of mentioning that i want to provide only java class name,thats why i asked that one..
    can u help me regarding that....
    Thanks in advanceI wonder how that would work then. Let's take a fictive example. You have a class com.mycompany.myapp.Foo. This would mean that the class is stored in some directory like this:
    c:/webrootdir/myapp/WEB-INF/classes/com/mycompany/myapp/Foo.classTo be able to run such a class from the commandline using Java, you would have to invoke this command:
    java -cp c:/webrootdir/myapp/WEB-INF/classes com.mycompany.myapp.FooHow would knowing the exact path to this class help you?

  • What is the field and Table for "Batch Class" and "Class Type" in QM.

    Hi All,
    What is the field and Table for "Batch Class" and "Class Type" in QM.
    Thanks,

    Hi,
      For batch class the class type value is '023' . This you can find from KLAH table and the fileld for class type is KLART..
    And also all the data related to batch class are found in tables INOB, KLAH,KKSK and for the characeteristics of batch materials you can refer AUSP table.
    In INOB table, for batch class, you need to give 023 in KLART field and  value MCH1 in OBTAB filed.
    Please check this and let me know if this you need any more details?

  • Own LR need LR,Bridge and PS for a class will a new upload effect existing LR?

    HELP please I own LR already don't really want to pay for it again, also concerned with a new Software interfering with existing......but need Bridge and PS for a class...thoughts?

    Moving this discussion to the Adobe Creative Cloud forum.
    Kawachinagano I am sorry you are facing difficulty submitting your redemption code.  Please see Redemption Code Help for information on how to redeem your redemption code for your membership.

  • How to programmatically get the source for a class provided the class name?

    Hello,
    As a quick background, I am providing some tools to potential users of an in-house framework. One is the ability to generate quick prototypes from our existing demo applications. Assume a user downloads our jars and uses them in their project (we are using Eclipse, but that detail should not greatly affect my question). Included in the jars is a demos package that contains ready-to-run classes that serve to exhibit certain functionality. Since many users may just need quick extensions of these demos, I am trying to provide a way for them to be able to create a new project that starts with a copy of the demo class.
    So, the user is provided a list of the existing demos (each one uses a single class). When the user makes their selection, with the knowledge of our framework, I can translate that into what demo class they need (returned as a string of format package.subpack1.subpackn.DemoClassName). What I now want to do is to use that complete class name to get the source (look up the file) for the corresponding class, and copy it into to a new file in their project (the copying into the project can be done easily in Eclipse, so what I need help with is the bolded part). Is there a simple way to get the source given a class path for a class as described above? You may assume the source files are included in the jars for the framework.
    Thanks in advance.

    If there's a file named "package.subpack1.subpackn.DemoClassName.java" in a "demos" directory in the jar, then yes. You'd just use
    InputStream code = getResourceAsStream("/demos.package.subpack1.subpackn.DemoClassName.java");Or if those dots in the name actually separate directory names, i.e. you have a "package" directory under "demos" and a "subpack1" director under that and so on, then:
    InputStream code = getResourceAsStream("/demos/package/subpack1/subpackn/DemoClassName.java");

  • Is it possible to create a program for embedded system

    Is it possible to create a program for embedded system?

    Yes. Many solutions.
    1 = http://jcx.systronix.com/
    2 = http://www.harbaum.org/till/nanovm/index.shtml (see links to Asuro)
    And many more but I'm too lazy too look them for you ...
    Dan

  • Change  GL account for valuation classes

    This is vasanth . my client has different 5 plants  . he wants to change gl account for valuation class.because the reason is  (rawmaterial of steel&cement is being stored in spares and stores). The g/l account is 23010001 . This gl account has been assingned 13 valuation class . the valuation classes for steels&cement r 3040.3080  and 3090.
    but the valuation area is defined at plant .there r 5 valuation areas . valuation  class for all areas r  3040,3080 and 3090.
    g/l  account  is also same.
    is it advisable to change the g/l account.
    give me  solutions for this  problem.

    Thank u raj,
    as per u 1:1 relation of valuation class and g/l account 203010001 ok. but gl account 203010001 has beeen assigned to 13 valuation class .13 valuation class has more than 500 material masters. but that valuation class 3040,3070,3080 r relates to the steels as well as cement. present my client using the 20301001g/l account for all spares aswell as stells and cement. i am sending my client require ment.
    We need to change the accounting at the time of procurement and  steel & cement.
    At the time of GR
    Stores & Spares Indigenous Dr.
    GR/IR Stores & Spares Ind.
    At the time of issue to vendor location
    Project Stock Dr. (with WBS element)
    Stores & Spares Indigenous
    Actual Consumption
    CWIP A/C Dr.     (With WBS element)
    Project Stock Dr. (with WBS element)
    Change Required
    At the time of GR
    Project Stock Dr. (without any WBS element) instead of Stores & Spares Indigenous
    GR/IR Project Stock.
    At the time of issue to vendor location
    Project Stock Dr. (with WBS element)
    Project Stock (without any WBS element)
    Actual Consumption- The existing entry pattern will be followed.
    Please advice how to map the above and for clarification revert back.
    Thanks&regards,
    vasanth

  • Best Practice for embedding webi reports in hyperlinks..

    SAP Community
    What is the best practice for embedding hyperlinks (email) from webi and sending to a user?so the users can quickly consume the report with minimal effort (click link and launch infoview/report).
    John

    As mentionned already,  BI has it's own inbox, and/or SMTP integration for broadcasting.
    Else, if you go to Folders, right click on your report instance, then select "Copy URL" (or 'docuemnt link' i cannot remember the exact term.)  - that woudl give you an open document link to invoke the viewer .
    Regards,
    H

  • Creat transaction (se93) for Globa class in ABAP Objects

    Hi experts,
           Can any one tell me how to
    creat transaction (se93) for Globa class(se24)  in ABAP Objects
    if ,please assest me how to do it or send me example docu on this
    best Answer will be rewarded
    regards
    fareedas

    hi
    se93->give your transaction ->enter create.
    check the radio button (Method of calss(OO class).press enter.
    in next screen.
    transaction text ;give your own description
    tick the check box OO transaction model.
    give the class name method name which u have created in se 24.which was activated successfully.it should be activated otherwise it will not work.
    under GUI SUPPORT.
    TICK the all 3 check boxes.
    SAP GUI  FOR HTML
                            JAVA
                           WINDOWS.
    then save.
    u should b saved in package(don't forget).
    it was working.
    i have already checked and did it succesfully.
    reward points
    if u have any queries let me know.
    kiran jagana

  • What are the following:1)Cisco 1600 Series IOS WIRELESS LAN RECOVERY. 2)Service Provider Option 60 for Vendor Class Idenfier

    What are the following:1)Cisco 1600 Series IOS WIRELESS LAN RECOVERY. 2)Service Provider Option 60 for Vendor Class Idenfier
    These items are listed with 1600 series AP but I'm unable to understand what are these things & the use of them

    DHCP Option 60:  Go HERE.

  • Not able to created Number Ranges for Asset Classes in AS08

    Dear Friends,
    I am not able create Number Ranges for Asset Classes in AS08.
    It is giving me an error message as company code does not exist.
    When I Check Consistency under path SPRO -> Financial Accounting -> Asset Accounting -> Preparing for Production Startup -> Check Consistency -> Overview Report: Company Codes. I am getting the following
    RSOL  Reliance Sealink One PLtd                                            
    CoCode no. alloc.    NKTR                                                
    Fiscal Year Variant  V3   Apr.- March, 4 special periods                 
    Start 2nd half month 00                                                  
    Transfer date        31.03.2006                                          
    Chart of dep.        TOLL Chart of Depreciation - For Highway Projects   
    Net worth tax        01   Book depreciation as per Compinies Act 1956    
    Enter net book value                                                     
    Status company code  2                                                   
    Current fiscal year  2007                                                
    Doc. type dep. pstng AF   Dep. postings                                  
    > Number range &1 in co.code &2 for doc.type &3 must be defined as internal
    Calc.insur.value                                                         
    Input tax exempt         
    If you see the above first two line you will find the difference is that Company code RSOL in the first line and NKTR company code in the second line.
    Actually CoCode no. alloc. has been wrongly copied as NKTR while copying CoCode it should be RSOL and not NKTR.
    I think because of this wrong allocation it is giving me an error in AS08. Also it is not showing me CoCode in drop down list in AS08.
    Please help me to resolve the problem.
    Thanks
    Rahul Jain

    Look in TC OAOB if the company code is assigned to a chart of depreciation

  • Issue with Report to get Position value for each Class ID.

    Hello Experts,
    m working on a report where I want Position values as on date.
    for an entered date report should give position value(Amount for transaction) for each class Id.
    I m trying using the exit variable but could not reach the output.
    For date I created an exit variable which shoud return the latest position for each class Id.
    Now this exit variable is "ready for Input" . when I debug my code it takes i_step =3 and i_vanm= " " after i_step = 1 and i_vnam = "<variablename>"
    how do I go about to get the solution.
    Guide me to come up with desired output.
    Thanks in Adv.
    Bhavna.

    Hello Experts,
    m working on a report where I want Position values as on date.
    for an entered date report should give position value(Amount for transaction) for each class Id.
    I m trying using the exit variable but could not reach the output.
    For date I created an exit variable which shoud return the latest position for each class Id.
    Now this exit variable is "ready for Input" . when I debug my code it takes i_step =3 and i_vanm= " " after i_step = 1 and i_vnam = "<variablename>"
    how do I go about to get the solution.
    Guide me to come up with desired output.
    Thanks in Adv.
    Bhavna.

Maybe you are looking for

  • IPOD not being seen in ITunes...I have tried everything - please help!!

    Okay, so I have tried everything listed on Apple's website to get my IPOD to be recognized in ITUNES. When I plug my IPOD into the USB port, the "do not disconnect" screen pops up. Nothing happens in ITUNES. Windows Vista pops up and says "Do you wan

  • Report MC$4

    Hi My client requried Purchase information at the year end need to be split between domestic, EU, and foreign purchases. we have tried the report MC$4 to get this information but we did not manage to match the figures we got on this report to the fig

  • Trouble Creating PDF in Windows 7 64-bit

    When right clicking a word document and choosing to convert to PDF the following error message pops up.  Unable to find "Adobe PDF" printer or "Acrobat Distiller" printer.  Do you want to run the installer in repair mode? Yes/No?  I go ahead and say

  • Potoshop's tools and windows disappears with Leopard's Spaces.

    Dear friends, I was having very annoying problem with PS CS3 and spaces. Interface disappears when you focus a program that is on other space. This was with Photoshop CS3 and Flash CS3 trials. I'm very sad about this. Instead of optimizing the proces

  • How to determine Tax and Basic amount from BSEG entry

    Hi Guru's, How can I determine from the BSEG table the following lines for one BELNR? I need to know the TAX amount and the basic amount (without TAX). When I search  the bseg table I see tree lines and the field DMBTR contains all values but I need