How to get PO list with mark archived or not?

Hi experts,
I have a list of POs from both database and archive server using standard report ME2N but I can't distinguish between archived PO or not.
Actually if I checked the detail PO I could see if it was from archive or not, but this way takes time.
Please advise how to get list of PO with mark from archive or database.
Thanks.
rob

hi
u can use me82
or in me2n us the scope as ARCHIV
regards
kunal

Similar Messages

  • How to get a list of Apps that can not be recovered?

    After restoring a backup (iCloud), about 5% of my 225 were not restored because they did not appear over the Apple Store. How to get a list of Apps that can not be recovered?

    You should be able to download any apps that are missing at no extra cost. Just go to the App Store and download them again.

  • Hierarchical sql-how to get only branches with at least one not null leaves

    On 10gR2 we want below hierarchical query to return only the branches which at least have one not NULL leaf ;
    -- drop table corporate_slaves purge ;
    create table corporate_slaves (
    slave_id integer primary key,
    supervisor_id references corporate_slaves,
    name varchar(100), some_column number );
    insert into corporate_slaves values (1, NULL, 'Big Boss ', NULL);
    insert into corporate_slaves values (2, 1, 'VP Marketing', NULL);
    insert into corporate_slaves values (9, 2, 'Susan ', NULL);
    insert into corporate_slaves values (10, 2, 'Sam ', NULL);
    insert into corporate_slaves values (3, 1, 'VP Sales', NULL);
    insert into corporate_slaves values (4, 3, 'Joe ', NULL);
    insert into corporate_slaves values (5, 4, 'Bill ', 5);
    insert into corporate_slaves values (6, 1, 'VP Engineering', NULL);
    insert into corporate_slaves values (7, 6, 'Jane ', NULL);
    insert into corporate_slaves values (8, 6, 'Bob' , 3);
    SELECT sys_connect_by_path(NAME, ' / ') path, some_column col,  connect_by_isleaf isLeaf
      FROM corporate_slaves
    CONNECT BY PRIOR slave_id = supervisor_id
    START WITH slave_id IN
                (SELECT slave_id FROM corporate_slaves WHERE supervisor_id IS NULL) ;For this example wanted output is like this one since Marketing has no NOT NULL some_column leaves where as Engineering and Sales has at least one;
    PATH                                                                            
    / Big Boss                                                                  
    / Big Boss  / VP Sales                                                      
    / Big Boss  / VP Sales / Joe                                                
    / Big Boss  / VP Sales / Joe  / Bill                                        
    / Big Boss  / VP Engineering                                                
    / Big Boss  / VP Engineering / Jane                                         
    / Big Boss  / VP Engineering / Bob                                           Regards.

    Here is a slightly modified version, you can try it:
    WITH SRC AS (
    SELECT   SYS_CONNECT_BY_PATH(NAME ,
                                 '/ ') path,
             SOME_COLUMN COL,
             CONNECT_BY_ISLEAF ISLEAF,
             CONNECT_BY_ROOT SLAVE_ID ROOT_SLAVE_ID,
             SLAVE_ID slave_id,
             CONNECT_BY_ROOT SUPERVISOR_ID SUPERVISOR_ID,
             SOME_COLUMN
        FROM CORPORATE_SLAVES
      CONNECT BY PRIOR SLAVE_ID = SUPERVISOR_ID
    SELECT path, col, isleaf
    FROM SRC
    WHERE SUPERVISOR_ID IS NULL
    AND SLAVE_ID IN (SELECT ROOT_SLAVE_ID FROM SRC WHERE SOME_COLUMN IS NOT NULL)
    PATH                                COL                    ISLEAF                
    / Big Boss                                                 0                     
    / Big Boss / VP Sales                                      0                     
    / Big Boss / VP Sales/ Joe                                 0                     
    / Big Boss / VP Sales/ Joe / Bill   5                      1                     
    / Big Boss / VP Engineering                                0                     
    / Big Boss / VP Engineering/ Bob    3                      1                     
    6 rows selectedI tested it for 1000 records in the source table (tested on Oracle 10 XE),
    and .... the performance was a big surprise:
    INSERT INTO corporate_slaves
    SELECT SLAVE_ID + X SLAVE_ID,
           SUPERVISOR_ID + X SUPERVISOR_ID,
           NAME || ' ' || X NAME,
           some_column
    FROM  CORPORATE_SLAVES
    CROSS JOIN (
      SELECT 10*LEVEL x
      FROM DUAL
      CONNECT BY LEVEL <= 100
    COMMIT;
    SELECT count(*) FROM corporate_slaves;
    COUNT(*)              
    1010 Your query (slightly modified - removed leading space from the separator in CONNECT_BY_PATH):
    set timings on;
    CREATE TABLE BUBA1 AS
    SELECT SYS_CONNECT_BY_PATH(NAME,
                                '/ ') path,
            some_column col,
            connect_by_isleaf isleaf
        FROM corporate_slaves
       WHERE slave_id IN (SELECT connect_by_root slave_id "slave_id"
                            FROM corporate_slaves
                           WHERE some_column IS NOT NULL
                          CONNECT BY PRIOR slave_id = supervisor_id)
      CONNECT BY PRIOR slave_id = supervisor_id
       START WITH SLAVE_ID IN
                  (SELECT SLAVE_ID FROM CORPORATE_SLAVES WHERE SUPERVISOR_ID IS NULL)
    CREATE TABLE succeeded.
    6 095ms elapsedrewritten query:
    CREATE TABLE BUBA2 AS
    WITH SRC AS (
    SELECT   SYS_CONNECT_BY_PATH(NAME ,
                                 '/ ') path,
             SOME_COLUMN COL,
             CONNECT_BY_ISLEAF ISLEAF,
             CONNECT_BY_ROOT SLAVE_ID ROOT_SLAVE_ID,
             SLAVE_ID slave_id,
             CONNECT_BY_ROOT SUPERVISOR_ID SUPERVISOR_ID,
             SOME_COLUMN
        FROM CORPORATE_SLAVES
      CONNECT BY PRIOR SLAVE_ID = SUPERVISOR_ID
    SELECT path, col, isleaf
    FROM SRC
    WHERE SUPERVISOR_ID IS NULL
    AND SLAVE_ID IN (SELECT ROOT_SLAVE_ID FROM SRC WHERE SOME_COLUMN IS NOT NULL)
    CREATE TABLE succeeded.
    167ms elapsed
    SELECT COUNT(*) FROM BUBA1;
    COUNT(*)              
    606 
    SELECT COUNT(*) FROM BUBA2;
    COUNT(*)              
    606
    SELECT COUNT(*) FROM(
      SELECT * FROM BUBA1
      INTERSECT
      SELECT * FROM BUBA2
    COUNT(*)              
    606  ANd now the above tests repeated for 10.000 records
    truncate table  corporate_slaves;
    insert into corporate_slaves values (1, NULL, 'Big Boss ', NULL);
    insert into corporate_slaves values (2, 1, 'VP Marketing', NULL);
    insert into corporate_slaves values (9, 2, 'Susan ', NULL);
    insert into corporate_slaves values (10, 2, 'Sam ', NULL);
    insert into corporate_slaves values (3, 1, 'VP Sales', NULL);
    insert into corporate_slaves values (4, 3, 'Joe ', NULL);
    insert into corporate_slaves values (5, 4, 'Bill ', 5);
    insert into corporate_slaves values (6, 1, 'VP Engineering', NULL);
    insert into corporate_slaves values (7, 6, 'Jane ', NULL);
    insert into corporate_slaves values (8, 6, 'Bob' , 3);
    INSERT INTO corporate_slaves
    SELECT SLAVE_ID + X SLAVE_ID,
           SUPERVISOR_ID + X SUPERVISOR_ID,
           NAME || ' ' || X NAME,
           some_column
    FROM  CORPORATE_SLAVES
    CROSS JOIN (
      SELECT 10*LEVEL x
      FROM DUAL
      CONNECT BY LEVEL <= 1000
    COMMIT;
    SELECT count(*) FROM corporate_slaves;
    COUNT(*)              
    10010
    CREATE TABLE BUBA22 AS
    WITH SRC AS (
    SELECT   SYS_CONNECT_BY_PATH(NAME ,
                                 '/ ') path,
             SOME_COLUMN COL,
             CONNECT_BY_ISLEAF ISLEAF,
             CONNECT_BY_ROOT SLAVE_ID ROOT_SLAVE_ID,
             SLAVE_ID slave_id,
             CONNECT_BY_ROOT SUPERVISOR_ID SUPERVISOR_ID,
             SOME_COLUMN
        FROM CORPORATE_SLAVES
      CONNECT BY PRIOR SLAVE_ID = SUPERVISOR_ID
    SELECT path, col, isleaf
    FROM SRC
    WHERE SUPERVISOR_ID IS NULL
    AND SLAVE_ID IN (SELECT ROOT_SLAVE_ID FROM SRC WHERE SOME_COLUMN IS NOT NULL)
    CREATE TABLE succeeded.
    345ms elapsed
    CREATE TABLE BUBA11 AS
    SELECT SYS_CONNECT_BY_PATH(NAME,
                                '/ ') path,
            some_column col,
            connect_by_isleaf isleaf
        FROM corporate_slaves
       WHERE slave_id IN (SELECT connect_by_root slave_id "slave_id"
                            FROM corporate_slaves
                           WHERE some_column IS NOT NULL
                          CONNECT BY PRIOR slave_id = supervisor_id)
      CONNECT BY PRIOR slave_id = supervisor_id
       START WITH SLAVE_ID IN
                  (SELECT SLAVE_ID FROM CORPORATE_SLAVES WHERE SUPERVISOR_ID IS NULL)
    CREATE TABLE succeeded.
    526 437ms elapsed
    SELECT COUNT(*) FROM BUBA11;
    COUNT(*)              
    6006
    SELECT COUNT(*) FROM BUBA22;
    COUNT(*)              
    6006
    SELECT COUNT(*) FROM(
      SELECT * FROM BUBA11
      INTERSECT
      SELECT * FROM BUBA22
    COUNT(*)              
    6006 Wow.... 526 seconds vs. 0,4 seconds !!!
    131500 % performance gain ;)
    I have got similar results on Oracle 11.2

  • How to get a list of every application on my computer?

    I'm trying to figure out how to get a list of every application on my computer using applescript. I know it is possible for the system to do this, as evidenced by the dialog you get when you use the "choose application" function. Other examples are doing a spotlight search for "kind:app" or programs like Namely or QuickSilver.
    Is there a way to do this in applescript? The only solution I've come up with so far is to use the command:
    <pre>set everyapplicationaliases to choose application as alias with multiple selections allowed</pre>
    and manually select all on the resulting dialog. I can then take the results and go from there, however there are a few significant problems with this approach.
    1. It requires user interaction. (I have an idea for some future applications that could use this functionality if it can be done without user input.)
    2. It's horribly slow. As a test run I choose all the applications from the dialog, extracted some basic info and put the result on the clipboard. It took a couple of minutes to complete this relatively basic task. In comparison, running the aforementioned spotlight search took maybe ten seconds.
    Thanks in advance!
    best,
    peter

    For these specific queries my results are...
    set appList to paragraphs of (do shell script "mdfind \"(kMDItemKind = 'application'c) || (kMDItemKind = 'widget'c)\"")
    3082
    set appList to paragraphs of (do shell script "mdfind \"(kMDItemKind = 'Application'c) || (kMDItemKind = 'Widget'c) ||
    ((kMDItemContentTypeTree = 'com.apple.application') && (kMDItemContentType != com.apple.mail.emlx) && (kMDItemContentType != public.vcard))\"")
    3115
    I think I finally found some numbers that make sense!
    When I search for Kind:Application by the Command+F method in the Finder, I get a total of 2521 items, of which 2477 are "Applications" and 44 are "Other".
    (Just by eyeballing it, "Other" seems to include some Classic Apps and some .bundle files.)
    The total # found by this method (2521) plus the number of Widgets found using mdfind (318) equals the number of total number of items found by spotlight (2839).
    I also noticed that these numbers almost equal the spotlight number:
    mdfind results for kMDItemKind:
    Widgets: 318
    Applications: 1684
    Classic*: 795
    and
    Command+F "Other" items: 44
    3181684+79544 = 2841
    It may be a fluke that this is so close to the 2839 spotlight gives, or maybe there's an overlap somewhere...
    Tying this back into my initial question, it seems like the original mdfind command for Applications is probably the best answer for what I was looking for,
    since I wasn't really thinking about Classic apps and Widgets anyway.

  • How to get the list of materials from Sap r/3

    Hi Experts,
    I have one doubt, here iam implementing
    HTTP TO RFC scenario.
    My doubts are------
    1. Should we create DT MT MI and all (OR) not
    2.In Request DT how the message structure wil be to get the list of materials from sap r/3 system as Response(Ex: Fields in the source structure).
    3.Or the second thing is how to get the list of materials start with some alphabate.
    Please reply me for each and every questions mentioned above. Please clarify me.
    Helpful answers wil be rewarded.
    Reagards
    khanna

    Hi Khanna,
    <i> 1. Should we create DT MT MI and all (OR) not</i>
        Yes U need to create for HTTP site...for RFC U need to import..
    <i>2.In Request DT how the message structure wil be to get the list of materials from sap r/3 system as Response(Ex: Fields in the source structure).</i>
        You create your own structres for Request and respoce.. and Map it with RFC..
    <i>3.Or the second thing is how to get the list of materials start with some alphabate.</i>
        I think it will come with acending order....
      for more help go through this link
    /people/arpit.seth/blog/2005/06/27/rfc-scenario-using-bpm--starter-kit - File to RFC
    regards,
    Ansar.

  • How to Get a list of pending deferred tasks

    Hi all
    there is a bunch of unfinished threads here asking how to get a list/report of deferred tasks that are associated with user objects and scheduled for future execution.
    I need this list and I can't find out how to get it anyway.
    I don't care if it's a SJSIM report, a database query or a SJSIM log mining exercise.
    Does anyone know how to do this?
    My org has just gone live with SJSIM and I want to report on the number of legacy resource accounts that have had deferred tasks created against them for future disabling/deletion (our consultants added this workflow based on rules with an email warning, a disabling deferred task set for 2 weeks from now and a deleting deferred task for 6 months after that). Hopefully I can say "look, 5,000 legacy accounts are going to be cleaned up!
    Thanks in advance

    You can do it with a custom workflow, something like this:
         <Activity>
            <Action id='0' class='com.waveset.session.WorkflowServices'>
              <Argument name='op' value='queryObjectNames'/>
              <Argument name='type' value='User'/>
              <Argument name='attributes'>
                 <list>
                        <new class='com.waveset.object.AttributeCondition'>
                           <s>deferredTaskDate</s>
                           <s>isPresent</s>
                        </new>
                  </list>
               </Argument>
            <Action id='1' process='Check User'>
              <Iterate for='currentUser' in='queryResult'/>
              <Argument name='accountId' value='$(currentUser)'/>
            </Action>
         </Activity>And:
           <WFProcess name='Check User'>
             <Variable name='accountId' input='true'/>
             <Activity id='0' name='start'>
               <Transition to='Check User'/>
             </Activity>
             <Activity id='1' name='Check User' hidden='true'>
               <Action id='1' name='Get User View' application='com.waveset.session.WorkflowServices'>
                 <Argument name='op' value='getView'/>
                 <Argument name='type' value='User'/>
                 <Argument name='id' value='$(accountId)'/>
                 <Argument name='authorized' value='true'/>
               </Action>
               <Transition to='Got One'>
                   <notnull>
                           <ref>view.accounts[Lighthouse].properties.tasks[Legacy Cleanup].date<ref>
                    </notnull>
                 </Transition>
                 <Transition to='end'/>
              </Activity>
              <Activity id='2 name='Got One'>
                 <ActionResult name='users' type='message' overwrite='false'>
                    <ref>accountId</ref>
                  </ActionResult>
              </Action>
              <Transition to='end'/>
            </Activity>
         </WFProcess>This just gives a rough idea of how it can be done. It might be best to bring your consultants back in to implement this.
    Edited by: PaulHilchey on Feb 25, 2009 10:35 AM

  • How to get reading list in my all my devices and computer (window 7). i have installed ios 6 on iphone and icloud control panel on both PC's (home and office) but i dont get updated reading list on all my devices.

    how to get reading list in my all my devices and computer (window 7). i have installed ios 6 on iphone and icloud control panel on both PC's (home and office) but i dont get updated reading list on all my devices.

    Hi bluegrandpanash,
    Thanks for visiting Apple Support Communities.
    If you backed up your iPhone to iCloud before updating the software, first try the steps under "Restore from an iCloud backup" in this article to recover your data:
    iOS: Back up and restore your iOS device with iCloud or iTunes
    http://support.apple.com/kb/HT1766
    Best Regards,
    Jeremy

  • How to get the list of users who has access for list of tcodes.

    How to get the list of users who has access for list of tcodes.

    Go to transaction SUIM, this has a number of reports for users/authorisations
    open the Where used>Autorization Values>In Users
    and double click to execute
    in authorisation object, enter S_TCODE
    then press the "Enter Values" button
    It will offer entry boxes to put the transaction code you are interesed in.
    Then execute and the list of users with access to this transaciton code will be returned.

  • How to get the list of actie users in the moss website !!

    Hello Everybody,
    I need to get the list of active users with access in the moss websites like following format.
    User name         User mailid       permission
    one of the project manager requested to find list of active users with user accesses in the moss website.
    he wants to modify the user permissions.
    Kindly suggest me how to get the users with permissions.
    Thanks.

    Hi,
    I have developed that code to retrieve the users, groups and permissions
    if (orole.Member.PrincipalType.ToString() == "SharePointGroup")
    lvigroup = new ListViewItem();
    lvigroup.Text = orole.Member.LoginName;
    // args.GroupsList.Items.Add(lvigroup);
    DoUpdate1(lvigroup);
    Group group = clientContext.Web.SiteGroups.GetById(orole.Member.Id);
    UserCollection collUser = group.Users;
    clientContext.Load(collUser);
    clientContext.ExecuteQuery();
    foreach (User oUser in collUser)
    lvigroup = new ListViewItem();
    lvigroup.Text = "";
    lvsigroup = new ListViewItem.ListViewSubItem();
    lvsigroup.Text = oUser.LoginName;
    lvigroup.SubItems.Add(lvsigroup);
    //args.GroupsList.Items.Add(lvigroup);
    DoUpdate1(lvigroup);
    // MessageBox.Show(oUser.LoginName);
    RoleDefinitionBindingCollection roleDefsbindings = null;
    roleDefsbindings = orole.RoleDefinitionBindings;
    clientContext.Load(roleDefsbindings);
    clientContext.ExecuteQuery();
    //permission level
    lvsi = new ListViewItem.ListViewSubItem();
    string permissionsstr = string.Empty;
    for (int i = 0; i < roleDefsbindings.Count; i++)
    if (i == roleDefsbindings.Count - 1)
    permissionsstr = permissionsstr += roleDefsbindings[i].Name;
    else
    permissionsstr = permissionsstr += roleDefsbindings[i].Name + ", ";
    Kind Regards, John Naguib Technical Consultant/Architect MCITP, MCPD, MCTS, MCT, TOGAF 9 Foundation

  • How to get the list of documents

    Hi everyone
    Can anyone help me How to get the list of documents residing in a folder of KM repository of SAP Netweaver using a simple java program
    Thanks in ADV.
    Rupesh Khemka

    Hi Rupesh,
    I have written the code for you and it works with WebDynpro, no seperate java program is required.
    Just try to paste it in your application code and run it.
    try{
         // Will check the user athentication for EP
                    IWDClientUser wdClientUser = WDClientUser.getCurrentUser();
         IUser sapUser = wdClientUser.getSAPUser(); 
         com.sapportals.portal.security.usermanagement.IUser ep5User = WPUMFactory.getUserFactory().getEP5User(sapUser);
         ResourceContext context = new ResourceContext(ep5User);
                    // The path in which your folder resides
         RID rid1 =RID.getRID("/documents/Public Documents/SCAP/");
         IResourceFactory factory1 = ResourceFactory.getInstance();
         ICollection icollection = (ICollection)factory1.getResource(rid1, context);
         IResourceList resourcelist = icollection.getChildren();
         int size1 = resourcelist.size();
         for(int s=0; s<listOfDocuments.getLength(); s++){
              IResource resource = resourcelist.get(i);
              InputStream input = new InputStream();
              input = resource.getContent().getInputStream();
    }catch(Exception e){
         e.getMessage();
    Once you get the InputStream everything else is possible....
    This will surely help you in reading the documents from KM.
    Regards,
    Rekha Malavathu

  • How to get the list of deployed projects in OSB through commond line

    How to get the list of deployed projects in OSB through commond line; as we are able to get in weblogic.

    You can go with standard JMX API using WLST
    http://www.oracle.com/technology/sample_code/products/osb/index.html
    http://download.oracle.com/docs/cd/E14571_01/apirefs.1111/e15033/index.html
    or you can try a little bit tricky way like
    ls $DOMAIN_HOME/osb/config/core/ | grep -v ^_:-)

  • How to get the list of only installed bundled application on mac os X through programmatically???

    how to get the list of only installed bundled software on mac os X through programmatically???

    I think what you get is below;
    App Store
    Calculator
    Calendar
    Contacts
    Dashboard
    Dictionary
    DVD Player
    FaceTime
    Font Book
    Game Center
    Image Capture
    iTunes
    Launchpad
    Mail
    Messages
    Notes
    Photo Booth
    Preview
    QuickTime Player
    Reminders
    Safari
    Stickies
    System Preferences
    TextEdit
    Time Machine
    Twitter
    Activity Monitor
    AppleScript Editor
    Audio MIDI Setup
    Bluetooth File Exchange
    Boot Camp Assistant
    ColorSync Utility
    Console
    DigitalColor Meter
    Disk Utility
    Grab
    Grapher
    Keychain Access
    Migration Assistant
    Network Utility
    RAID Utility
    System Information
    Terminal
    VoiceOver Utility
    X11
    XQuartz
    Note if you buy a new Mac with ML preinstalled the list may be larger.

  • How to get the list of icc profile,which Photoshop loaded?

    I am developing a automation plugin,but I do not know how to get the list of icc profile,which photoshop loaded.
    I have read the log of "getter" and "Listener",and not find the way to get the list.

    Thank you for you answer.
    I find a icc profile has a "internal name" which show in the color setting menu in photoshop and a "external name" which is the file name. And the "internal name" maybe different with "external name".
    How I can get the "internal name" from the icc profile? I do not find the information in the ICC Profile Format Specification.
    Thank you very much!

  • How to get the list of unviewed Instances?

    Hi All,
    Can anyone tell me how to get the list of unviewed instances?
    I want to get all the instances which have been scheduled but not viewed.
    Please help me on this.
    I tried to get the info from audit report but i could not able to achieve it.
    is it possible from query builder?
    Thanks,
    Nagaveni

    Hi Ravi,
    Thank you for the reply!!
    Then it is not possible to get the unviewed reports.
    how does it work if i create a audit report with Viewed status and list of all instances then we can filter out the unviewed reports.
    Does above solution is going to work?
    i have not tried yet, seeking your opinion.

  • How to Edit Contact List with email

    How to Edit Contact List  with email ID  in the heading
    Regards,
    Charles.KE

    eh? Can you please give some detail of what you're attempting to do ?
    1. If any post helps you please click the below the post(s) that helped you.
    2. Please resolve your thread by marking the post "Solution?" which solved it for you!
    3. Install free BlackBerry Protect today for backups of contacts and data.
    4. Guide to Unlocking your BlackBerry & Unlock Codes
    Join our BBM Channels (Beta)
    BlackBerry Support Forums Channel
    PIN: C0001B7B4   Display/Scan Bar Code
    Knowledge Base Updates
    PIN: C0005A9AA   Display/Scan Bar Code

Maybe you are looking for

  • File Content Conversion in Reciever Adapater for multiple element

    Hi folks, My Source file structure  is <?xml version="1.0" encoding="UTF-8"?> <ns0:file_sender_mt xmlns:ns0="urn:filetofiledemo">    <recordset>       <data1>          <name1>a</name1>          <age1>b</age1>       </data1>       <data>          <nam

  • Will this work with the titanium ? (pic)

    Hey guys planning to buy a new pioneer 89. I want to connect it to my titanium card. so i plan to connect it using analog RCA to mini jack. What I want to know is will the BD/DVD multi in work with the titaniums analog ports?

  • How to setup variants for webdynpro report in ABAP? Help!

    Hi Experts,    I have a webdynpro for ABAP report with selection screen.     How to setup variants for webdynpro report in ABAP? Thanks Gopal

  • Show ip nat statistics snmp oid

    Hello, I'm trying to monitor nat stats using snmp in the newer IOS versions.  I had it working pre 12.4(22)T, but now it seems as if the oid has changed. 2811#show ip nat statistics Total active translations: 29 (0 static, 29 dynamic; 29 extended) Pe

  • Fatal Error (Java Runtime Environment) starting Install of Oracle WebLogic Server

    Hello, I am installing Oracle Fusion on OEL 6 and have hit a problem with weblogic. This worked for me on my TEST server a few months ago. I have also successfully installed the "Install Repository Creation Utility (RCU)" I am unable to launch Weblog