Problem in finding proper combination

Hi all,
I am not able to find proper combination in ie03 for equipment master in class overview for char description(ATBEZ) and value(ATWRT)...i am getting all char des. for class but not able to find value....only for some char des not for all.i am using below query:For time being i am using so many joins
read table  lt_char into  ls_char index lv_index.
  select  ctATBEZ cATWRT
          into  corresponding fields of ls_char
          from ( CABNT AS ct
          LEFT OUTER  JOIN CAWN AS c ON ctATINN = cATINN
          INNER  JOIN CABN AS cb ON cATINN = cbATINN
          INNER JOIN KSML AS ks ON cbATINN = ksIMERK
          INNER JOIN KLAH AS kl ON ksCLINT = klCLINT )
          for all entries in lt_class_overview
                                   where ct~SPRAS = 'EN'
                                   and kl~CLASS = lt_class_overview-CLASS .
Thanks
kiran
Edited by: kiran162 on Mar 25, 2011 7:32 PM

hi,
The table TVAUT provides order reason and order reason description.
Thanks,
Kasiraman R

Similar Messages

  • Finding proper help on Hierarchical Trees

    Have spent a couple of hours trying to navigate the sprawling website of oracle.com with the purpose finding and then downloading the appropriate help file. I downloaded
    Oracle9i Developer Suite Release 2 Documentation Library
    from
    http://www.oracle.com/technology/documentation/ids.html
    Its about 130Mb, installed it, but could i find comprehensive documentation on using Forms 9i (in particular Hierarchical Trees) no, but everything else it seemed yes. The original doc that pre-installed with the 9i DS 'online help' is reasonably helpful but like some others on this forum I could not find proper help on how to use Hierarchical Trees all i could find was few descriptive portions of text and believe me i have looked.
    Others have said they found examples of Hierarchical Trees usage i can only assume they are using 10g. So this is a desperate plea to you. Can you point me to an online resource that deals with Hierarchical Trees in Forms 9i (intro, usage, examples, etc). If you can i would deeply appreciate it.
    Mr Frustrated :)

    Hi,
    You have a lot of sample With the Forms Help.
    If you search in the index with "htree."
    The command hierarchical tree complete list appear.
    L.

  • Program to find maximum combination of any number

    Hi,
    Can anybody tell me the way to find maximun combination of a number.
    Like 123 has 6 combination and 1234 has 24 combinations......
    I need to print all these combinations.

    Hi,
    I am not sure about the Editor you are using - anyways, you can try this - put Mohan's code in a named Procedure and execute it :-
    SQL> CREATE OR REPLACE PROCEDURE GET_COMBOS
      2  AS
      3   TYPE CHARTAB IS TABLE OF CHAR(1);
      4   CT1 CHARTAB:=CHARTAB('1', '2', '3');
      5   N1 NUMBER;
      6   N2 NUMBER;
      7   N3 NUMBER;
      8  BEGIN
      9   for n1 IN ct1.FIRST..ct1.LAST LOOP
    10    for n2 IN ct1.FIRST..ct1.LAST LOOP
    11     for n3 IN ct1.FIRST..ct1.LAST LOOP
    12      dbms_output.put_line(ct1(n3)||ct1(n2)||ct1(n1));
    13     END LOOP;
    14    END LOOP;
    15   END LOOP;
    16  END GET_COMBOS;
    17  /
    Procedure created.
    SQL> EXEC GET_COMBOS;
    111
    211
    311
    121
    221
    321
    131
    231
    331
    112
    212
    312
    122
    222
    322
    132
    232
    332
    113
    213
    313
    123
    223
    323
    133
    233
    333
    PL/SQL procedure successfully completed.
    SQL> Regards,
    Sandeep

  • Problem with finding a File

    Hi:
    I am having problem with finding a file on the OS
    (using Win2000) when given an absolute pathname;
    here is the rough code:
    //theFile is specified at command line
    File f = new File(theFile);
    BufferedReader in = new BufferedReader(new FileReader(f));When I run the program, I type
    java myProgram C:\aFolder\theFile
    But it can't find theFile. I am not sure what's wrong.
    Thanx

    No that can't be it; he takes the filename from the command line, so escaping isn't an issue (unless he used a shell that unescaped '\\' for him, but I think he's using the win2000 cmd shell).
    Dunno, I have no idea of your filesystem or shell. Just do some debugging, around the lines of:
    File f = new File(theFile);
    if (f.exists()) {
      System.err.println(theFile + " exists.");
    } else {
      System.err.println(theFile + " doesn't exist.");
    }

  • Problem to find Exit Name for me52n

    Dear all,
                 Recently i've facing a problem for finding the exact Exit Point for transaction ME52N.Can anyone please help me for finding this?
    regards,
    sameek.

    Hi, read http://www.surfingincognito.com/index.php?q=aHR0cDovL2ZvcnVtcy5zZG4uc2FwLmNvbS9tZXNzYWdlLmpzcGE%2FbWVzc2FnZUlEPTQ0OTU5MDE%3D   You can use inside of methods additional metods-GET_ items, GET_DATA. Please ask from your abaper, he'd know how to use it
    Also check this ME51N / BADI ME_PROCESS_REQ_CUST
    Edited by: alex ice on May 7, 2011 12:47 PM

  • I can hear people on call but sometimes they can't hear me, it maybe fine for afew mins but then sound drops again? Anyone have this problem and find a solution? Thanks.

    I have an Iphone 4 13.5 GB, iOS 7.1.2. Currently when I make a call or someone calls me, I can hear people on call perfectly but sometimes they can't hear me. It maybe fine for afew mins but then sound drops again? Anyone have this problem and find a solution? Thanks.

    I have taken it back to the Apple store genius bar, but they say they don't see anything wrong. Well unless you use it all day and experience the problems when they happen, you wont see anything wrong. But there are lots wrong with it. But this would be the same store as I purchased the phone. And they backed up my old Iphone 4, but were not able to get anything to load back onto my new phone. So, I lost pretty much everything. But over time, some of my contacts have started showing up, although i am still missing over 800 of them.

  • Sql to find out combination of true and false

    Hi all,
    Could any one provide the sql to find out combination of true and false . For eg: if I have 3 elements a , b c i would like to get below o/p
    a   b  c
    t t t
    t t f
    t f f
    f f f
    t f t
    f f t
    your reply is greatly appreated - thank you

    Do you mean something like this (all permutations) ?
    SQL> with t as (
      2    select 't' bool from dual union all select 'f' from dual)
      3  select a.bool a,b.bool b,c.bool c
      4  from t a,t b,t c
      5  /
    A B C
    t t t
    t t f
    t f t
    t f f
    f t t
    f t f
    f f t
    f f fIf not, then you already got correct answers regarding boolean type in sql.
    Best regards
    Maxim

  • How do you find your combination if you forgot it?

    how do you find your ipod's combination if you forgot it? i need the four digit code and i can't figure it out!! I know how to change it, but i can't change the code unless i figure out the old one. please helpp!![i]
      Windows XP   ipod nano
    view sonic?   Windows XP  

    You can’t “find” the combination.
    If you forgot it, you must Restore the iPod.
    iPod: How to use the Screen Lock

  • I have updated my mac book pro and am trying to get icloud and the new lion version. The lion version will not download and my biggest problem is finding icloud on my system preference. Can anyone help me?

    I have updated my mac book pro and am trying to get icloud and the new lion version. The lion version will not download and my biggest problem is finding icloud on my system preference. Can anyone help me?

    Welcome to the Apple Support Communities
    Connecting your MacBook Pro and your MacBook Air will be the fastest way, but you have to spend money on cables and adapters (also, your MacBook Pro doesn't support Thunderbolt).
    As you have a Time Capsule, one thing you can do is to start your MacBook Pro and make a Time Machine backup. Then, turn on your MacBook Air and set it up. Setup Assistant will ask you to restore a backup, so select the option to restore the backup from the Time Capsule and be patient. This can take a lot of time if you have to migrate a lot of files

  • TS1367 I was having a problem down loading photos, so I force quite all programs.  Then there was problem launching finder.    Relaunched and turned computer off to reboot.    Now computer starts, but does not boot up  I am stopped at a white blank screen

    I was having a problem down loading photos, so I force quite all programs.  Then there was problem launching finder.    Relaunched and turned computer off to reboot.    Now computer starts, but does not boot up  I am stopped at a white blank screen

    Welcome to Apple Discussions Dathanb
    You have posted in the Feedback About New Discussions forum.
    As you are a first time poster, you seem to have missed the text at the top of this forum that says:
    Please Read This Before Posting Here
    If your question concerns a hardware or software technical issue, please do not post in this forum
    Go to the main Apple Discussions page, select an appropriate product category and follow the links until you reach the correct forum for your post, then click the POST NEW TOPIC link. Because your post doesn't indicate was OS you are using on your iMac, I can't give you a link to the most appropriate forum.
    Basically, though, the version of TechTool on the AppleCare disks is not compatible with newer versions of OS X and/or Macs (I can't remember which). If you don't get a satisfactory response by posting in the appropriate iMac or OS X forum, I suggest you take your iMac to the geniuses at the Apple Store. You can set up an appointment time for the same day online before you leave home.
    Peggy

  • How you can solve a problem or find out on a dead pc if the problem relies on motherboard and not on processor or vice versa

    hi.
    I am working myself with computers ,  so there is one thing in my mind I wanted to be sure,which I couldn't find an answer for it!
    because I had before totally black screen and the problem was damaged processor.
    I am wondering how I can be sure as the last option when I get a black screen and there is no lihgts at all no any LED is lighting.totally dead pc.
    how  you can be sure then that the problem relies on processor and not on motherboard or vice versa the problem relies on motherboard and not on processor
      because I can't say to the customer lets buy first a processor if it is the cause of dead PC and if not then we buy motherboard. this sounds not wise.
    so I experimented first with my latop ,I pulled out the processor to see if I can see any LED light or any movement on the motherboard to be sure that motherboard giving me some clue that it is healty. I gave some light heat to de fan to let it turn ,because 
    it is working with heat sensors then I know that the motherboard is healty. but it didn't work. 
    I did the same with my desktop computer and the result is the same no any lights and no any movement on the motherboard . so now can some one tell me how you can distuingish as a last result which of this 2 components is causing dead PC. is there any
    tool to test the motherboard or how asus,dell ect. they solve such a problem if the customer send to them a dead pc.
    I know that the power supply also can cause dead pc but I know how to solve a problem  with dead power supply. and I want to keep away power supply from this question. please do not tell me that  Idon't have to pull out processor
    because I am a technician and both of my computers are doing very good after this experiment.
    thanks
    johan
    h.david

    Usually if you have some kind of hardware failure there is some beeping during POST or most motherboards now have LED indicators to produce and error message based on the type of failure
    So if its bad memory, not place properly, mismatched, processor not inserted properly, mismatched voltage or voltage connector not present etc it beeps or generates the error id.
    Power supplies can be tested for failure. There are some walk throughs for testing just them with a switch, paperclip or a jumper (I'd suggest not doing this if you are not familiar with the dangers of electricity).
    Memory can be tested with memory diagnostics programs like Memtest+
    Processors can overheat if the proper precautions have not been taken usually you will get a POST beep or error code for that.
    If the motherboard has no response then do the basics first:
    Check power connectors and power supply. Once you determine that is not the case move on to other items like graphics cards in all the way or memory.

  • Finding proper import settings

    I have been having a problem with my audio not lining up with my video when I export a project.  From reading some forum posts here it seems like it may be import settings causing the problem but I have no idea how to select the proper import setting.  Here is some info that I can find, please let me know if you need more and where I can find it.
    They are .mod files from my Panasonic SDR-H200 digital camcorder.  I am just trying to splice together a few files from my daughter's birthday but when I export it as a quicktime file for vimeo.  I am using Eugenia's guidelines for export here.  However my audio is ahead of my video.
    The files are
    width:704
    height:480
    data rate:9542kbps
    total bitrate: 9798kbps
    frame rate: 29 frames/second
    audio
    bit rate: 256kbps
    channels: 2 (stereo)
    audio sample rate: 48 kHz
    Thanks for any help or direction, I really seem kind of clueless with the video although I picked up photoshop and illustrator OK on my own through tutorials, trial and error etc.
    Tracy

    Use the Hard Drive/DVD project settings and you should be fine. (Make sure it matches your video, whether you're using the 4:3 or 16:9 mode.) You don't say which version of the program you're using, so I can't tell you the exact setting to use -- but a standard def hard drive camcorder setting should work.
    Your camcorder is just a standard-def hard drive camcorder.
    As you add clips to the timeline, you'll see  red line above the clips. This means you'll need to render your timeline regularly as you work by pressing the Enter key. (The red lines above the clips will turn green.)
    In my books I offer more specific information on working with standard def MPEGs and my advice on why and how it's wisest to convert them to DV-AVIs before you bring them into the program. You'll find a lot of that information in the FAQs to the right of this forum.
    http://forums.adobe.com/thread/415317?tstart=0

  • Deployment problem with finder method

    I have a problem deploying an application that was working prior to my adding a finder method to one of the entity beans. Here is the Descriptor from the EJB Module that i created (which appears to be ok):
    <?xml version="1.0" encoding="UTF-8"?>
    <!DOCTYPE ejb-jar PUBLIC "-//Sun Microsystems, Inc.//DTD Enterprise JavaBeans 2.0//EN" "http://java.sun.com/dtd/ejb-jar_2_0.dtd">
    <ejb-jar>
    <display-name>RFXModule</display-name>
    <enterprise-beans>
    <session>
    <display-name>RFXManager</display-name>
    <ejb-name>RFXManager</ejb-name>
    <home>au.com.alphawest.trader.rfx.business.management.RFXManagerHome</home>
    <remote>au.com.alphawest.trader.rfx.business.management.RFXManagerRemote</remote>
    <ejb-class>au.com.alphawest.trader.rfx.business.management.RFXManagerBean</ejb-class>
    <session-type>Stateful</session-type>
    <transaction-type>Container</transaction-type>
    <ejb-local-ref>
    <ejb-ref-name>ejb/rfx/RFXDocument</ejb-ref-name>
    <ejb-ref-type>Entity</ejb-ref-type>
    <local-home>au.com.alphawest.trader.rfx.business.data.RFXDocumentLocalHome</local-home>
    <local>au.com.alphawest.trader.rfx.business.data.RFXDocumentLocal</local>
    <ejb-link>RFXDocument</ejb-link>
    </ejb-local-ref>
    </session>
    <entity>
    <display-name>RFXAttachment</display-name>
    <ejb-name>RFXAttachment</ejb-name>
    <local-home>au.com.alphawest.trader.rfx.business.data.RFXAttachmentLocalHome</local-home>
    <local>au.com.alphawest.trader.rfx.business.data.RFXAttachmentLocal</local>
    <ejb-class>au.com.alphawest.trader.rfx.business.data.RFXDocumentAttachment</ejb-class>
    <persistence-type>Container</persistence-type>
    <prim-key-class>java.lang.String</prim-key-class>
    <reentrant>False</reentrant>
    <abstract-schema-name>RFXAttachment</abstract-schema-name>
    <cmp-field>
    <field-name>name</field-name>
    </cmp-field>
    <cmp-field>
    <field-name>type</field-name>
    </cmp-field>
    <cmp-field>
    <field-name>attachmentContents</field-name>
    </cmp-field>
    <primkey-field>name</primkey-field>
    </entity>
    <entity>
    <display-name>RFXDocument</display-name>
    <ejb-name>RFXDocument</ejb-name>
    <local-home>au.com.alphawest.trader.rfx.business.data.RFXDocumentLocalHome</local-home>
    <local>au.com.alphawest.trader.rfx.business.data.RFXDocumentLocal</local>
    <ejb-class>au.com.alphawest.trader.rfx.business.data.RFXDocumentBean</ejb-class>
    <persistence-type>Container</persistence-type>
    <prim-key-class>au.com.alphawest.trader.rfx.business.data.RFXDocumentPK</prim-key-class>
    <reentrant>False</reentrant>
    <abstract-schema-name>RFXDocument</abstract-schema-name>
    <cmp-field>
    <field-name>documentGUID</field-name>
    </cmp-field>
    <cmp-field>
    <field-name>creationDate</field-name>
    </cmp-field>
    <cmp-field>
    <field-name>creatorGUID</field-name>
    </cmp-field>
    <cmp-field>
    <field-name>description</field-name>
    </cmp-field>
    <cmp-field>
    <field-name>dueDate</field-name>
    </cmp-field>
    <cmp-field>
    <field-name>emailAddress</field-name>
    </cmp-field>
    <cmp-field>
    <field-name>faxNo</field-name>
    </cmp-field>
    <cmp-field>
    <field-name>locked</field-name>
    </cmp-field>
    <cmp-field>
    <field-name>notes</field-name>
    </cmp-field>
    <cmp-field>
    <field-name>organisationName</field-name>
    </cmp-field>
    <cmp-field>
    <field-name>ownerGUID</field-name>
    </cmp-field>
    <cmp-field>
    <field-name>requestId</field-name>
    </cmp-field>
    <cmp-field>
    <field-name>subject</field-name>
    </cmp-field>
    <cmp-field>
    <field-name>telephoneNo</field-name>
    </cmp-field>
    <cmp-field>
    <field-name>unitGUID</field-name>
    </cmp-field>
    <cmp-field>
    <field-name>buyer</field-name>
    </cmp-field>
    <cmp-field>
    <field-name>organisationGUID</field-name>
    </cmp-field>
    <cmp-field>
    <field-name>sourceId</field-name>
    </cmp-field>
    <ejb-local-ref>
    <ejb-ref-name>ejb/rfx/RFXDocumentAttachment</ejb-ref-name>
    <ejb-ref-type>Entity</ejb-ref-type>
    <local-home>au.com.alphawest.trader.rfx.business.data.RFXAttachmentLocalHome</local-home>
    <local>au.com.alphawest.trader.rfx.business.data.RFXAttachmentLocal</local>
    <ejb-link>RFXAttachment</ejb-link>
    </ejb-local-ref>
    <ejb-local-ref>
    <description>A line item attached to this document</description>
    <ejb-ref-name>ejb/rfx/RFXLineItem</ejb-ref-name>
    <ejb-ref-type>Entity</ejb-ref-type>
    <local-home>au.com.alphawest.trader.rfx.business.data.RFXLineItemLocalHome</local-home>
    <local>au.com.alphawest.trader.rfx.business.data.RFXLineItemLocal</local>
    <ejb-link>RFXLineItemBean</ejb-link>
    </ejb-local-ref>
    <query>
    <description>Find the rfx documents related to the given supplier through it's line items</description>
    <query-method>
    <method-name>findBySupplierId</method-name>
    <method-params>
    <method-param>java.lang.String</method-param>
    </method-params>
    </query-method>
    <ejb-ql>SELECT OBJECT(d) FROM RFXDocument AS d, IN(d.lineItems) l WHERE l.supplierGuid = 'DummySupplierGuid'</ejb-ql>
    </query>
    </entity>
    <entity>
    <display-name>RFXLineItem</display-name>
    <ejb-name>RFXLineItem</ejb-name>
    <local-home>au.com.alphawest.trader.rfx.business.data.RFXLineItemLocalHome</local-home>
    <local>au.com.alphawest.trader.rfx.business.data.RFXLineItemLocal</local>
    <ejb-class>au.com.alphawest.trader.rfx.business.data.RFXLineItemBean</ejb-class>
    <persistence-type>Container</persistence-type>
    <prim-key-class>java.math.BigDecimal</prim-key-class>
    <reentrant>False</reentrant>
    <abstract-schema-name>RFXLineItem</abstract-schema-name>
    <cmp-field>
    <field-name>itemId</field-name>
    </cmp-field>
    <cmp-field>
    <field-name>rfxGuid</field-name>
    </cmp-field>
    <cmp-field>
    <field-name>contractCode</field-name>
    </cmp-field>
    <cmp-field>
    <field-name>supplierGuid</field-name>
    </cmp-field>
    <cmp-field>
    <field-name>productCode</field-name>
    </cmp-field>
    <cmp-field>
    <field-name>description</field-name>
    </cmp-field>
    <cmp-field>
    <field-name>quantity</field-name>
    </cmp-field>
    <cmp-field>
    <field-name>units</field-name>
    </cmp-field>
    <primkey-field>itemId</primkey-field>
    </entity>
    </enterprise-beans>
    <relationships>
    <ejb-relation>
    <ejb-relation-name>RFXDocument-RFXAttachment</ejb-relation-name>
    <ejb-relationship-role>
    <ejb-relationship-role-name>RFXDocument</ejb-relationship-role-name>
    <multiplicity>One</multiplicity>
    <relationship-role-source>
    <ejb-name>RFXDocument</ejb-name>
    </relationship-role-source>
    <cmr-field>
    <cmr-field-name>attachments</cmr-field-name>
    <cmr-field-type>java.util.Collection</cmr-field-type>
    </cmr-field>
    </ejb-relationship-role>
    <ejb-relationship-role>
    <ejb-relationship-role-name>RFXAttachment</ejb-relationship-role-name>
    <multiplicity>Many</multiplicity>
    <cascade-delete/>
    <relationship-role-source>
    <ejb-name>RFXAttachment</ejb-name>
    </relationship-role-source>
    </ejb-relationship-role>
    </ejb-relation>
    <ejb-relation>
    <ejb-relation-name>RFXDocument-RFXLineItem</ejb-relation-name>
    <ejb-relationship-role>
    <ejb-relationship-role-name>RFXDocument</ejb-relationship-role-name>
    <multiplicity>One</multiplicity>
    <relationship-role-source>
    <ejb-name>RFXDocument</ejb-name>
    </relationship-role-source>
    <cmr-field>
    <cmr-field-name>lineItems</cmr-field-name>
    <cmr-field-type>java.util.Set</cmr-field-type>
    </cmr-field>
    </ejb-relationship-role>
    <ejb-relationship-role>
    <ejb-relationship-role-name>RFXLineItem</ejb-relationship-role-name>
    <multiplicity>Many</multiplicity>
    <cascade-delete/>
    <relationship-role-source>
    <ejb-name>RFXLineItem</ejb-name>
    </relationship-role-source>
    </ejb-relationship-role>
    </ejb-relation>
    </relationships>
    <assembly-descriptor>
    <container-transaction>
    <description>This value was set as a default by Sun ONE Studio.</description>
    <method>
    <ejb-name>RFXAttachment</ejb-name>
    <method-name>*</method-name>
    </method>
    <trans-attribute>Required</trans-attribute>
    </container-transaction>
    <container-transaction>
    <description>This value was set as a default by Sun ONE Studio.</description>
    <method>
    <ejb-name>RFXDocument</ejb-name>
    <method-name>*</method-name>
    </method>
    <trans-attribute>Required</trans-attribute>
    </container-transaction>
    <container-transaction>
    <description>This value was set as a default by Sun ONE Studio.</description>
    <method>
    <ejb-name>RFXLineItem</ejb-name>
    <method-name>*</method-name>
    </method>
    <trans-attribute>Required</trans-attribute>
    </container-transaction>
    <container-transaction>
    <description>This value was set as a default by Sun ONE Studio.</description>
    <method>
    <ejb-name>RFXManager</ejb-name>
    <method-name>*</method-name>
    </method>
    <trans-attribute>Required</trans-attribute>
    </container-transaction>
    </assembly-descriptor>
    </ejb-jar>
    I get the following error message when i try to run the EJB Module through the Sun One Verifier Tool:
    Error: ** Error trying to process file: java.lang.RuntimeException: No method found for XML query element: Ambiguous or invalid <query-method>
    java.lang.RuntimeException: No method found for XML query element: Ambiguous or invalid <query-method>
    at com.sun.enterprise.deployment.xml.EjbNode.parseQueries(EjbNode.java:700)
    at com.sun.enterprise.deployment.xml.EjbNode.completeLoadingDescriptor(EjbNode.java:671)
    at com.sun.enterprise.deployment.xml.EjbBundleNode.completeLoadingDescriptor(EjbBundleNode.java:524)
    at com.iplanet.ias.deployment.EjbBundleXmlReader.load(EjbBundleXmlReader.java:249)
    at com.iplanet.ias.deployment.EjbBundleXmlReader.loadStdAloneModule(EjbBundleXmlReader.java:162)
    at com.sun.enterprise.tools.verifier.Verifier.openEjbJar(Verifier.java:2421)
    at com.sun.enterprise.tools.verifier.Verifier.loadEjbJar(Verifier.java:1318)
    at com.sun.enterprise.tools.verifier.Verifier.loadJar(Verifier.java:866)
    at com.sun.enterprise.tools.verifier.gui.MainPanel.run(MainPanel.java:187)
    at java.lang.Thread.run(Thread.java:536)
    Look in file "RFXModule.jar_verified.xml" for detailed results on test assertions.
    Any help would be greatly appreciated.
    Mark Hesketh

    Launch the Console application in any of the following ways:
    ☞ Enter the first few letters of its name into a Spotlight search. Select it in the results (it should be at the top.)
    ☞ In the Finder, select Go ▹ Utilities from the menu bar, or press the key combination shift-command-U. The application is in the folder that opens.
    ☞ Open LaunchPad. Click Utilities, then Console in the icon grid.
    The title of the Console window should be All Messages. If it isn't, select
              SYSTEM LOG QUERIES ▹ All Messages
    from the log list on the left. If you don't see that list, select
              View ▹ Show Log List
    from the menu bar at the top of the screen.Click the Clear Display icon in the toolbar. Then try the action that you're having trouble with again. Select any messages that appear in the Console window. Copy them to the Clipboard by pressing the key combination command-C. Paste into a reply to this message by pressing command-V.
    The log contains a vast amount of information, almost all of which is irrelevant to solving any particular problem. When posting a log extract, be selective. A few dozen lines are almost always more than enough.
    Please don't indiscriminately dump thousands of lines from the log into this discussion.
    Please don't post screenshots of log messages—post the text.
    Some private information, such as your name, may appear in the log. Anonymize before posting.

  • There's a problem i find it when i get Training in oracle Applicaltion 12

    When i get Training In how to setup GL , & after i make a new GL , then i create new user and added this new GL In this new user , approximately after this step - I find a problem as a follow ,
    before the problem : Setup - Financial - Flexfield - Key - ( Segment - or Values )
    After the problem : Setup - Financial - Flexfield - Key - ( Accounts )
    you notice that i can't find segment or value
    If there's any solution Pls. reply me because this problem appear for me from 2 weeks
    reference : www.solutionbeacon.com --- this site i trained on it
    Thanks for all

    We can't know. You have not told us what error there actually is nor provided any proper system information or other technical details.
    Mylenium

  • Problem Stopping Finder Copy to USB Flash Drive

    I was attempting to copy my Pictures folder (about 4.5 GB) to a USB flash drive. It seemed to copy OK until it got about a third of the way through and then stalled. I selected the stop copy on the dialog box but nothing happened and the copy dialog box just became grayed out. I could not eject the flash drive either. When I used the Command-Option-Escape key combination, I was given the option to relaunch the Finder, which I selected but then was just left without the ability to use the Finder at all. I resorted to pressing the power button to shutdown and then restarted and was able to eject the flash drive.
    Is the Finder capable of copying a file of this size? What causes Finder to freeze up on a copy operation? How else could I have stopped the Finder copying process once it hung? Thanks.
    Regards,
    Steve M.

    Before trying the Safe Boot, I tried a different experiment. I just tried using the Finder to Duplicate the Pictures folder. It duplicated fine without problems. Then I repaired permissions on my internal disk and did a repair disk on my flash drive (no repairs needed). Then I tried to copy my Pictures folder to my flash drive again and the process hung right about at 600 MB of data transferred.
    I know I'm using USB 1 and that's a slow connection. My previous flash drive was only a 1 GB so I typically never transferred very large files before. I think Finder is working as it should and that I am bumping up against some problem with USB 1 transfers or with the flash drive itself (it is formatted Mac OS extended). I'm using a powered USB hub to plug the drive into and I know the hub is working fine. I guess I could try connecting directly to a USB port on the iMac to see if that helps.
    Regards,
    Steve M.

Maybe you are looking for