Advance aggreate function: help required

Hi All, Pls help me in solving the below requirement
Sample Data:
F1 F2 F3
[email protected] A 1
[email protected] B 1
[email protected] A 2
[email protected] A 1
Unique combination of F2 & F3 to be treated as a account.
Need to find the total accounts related to the domain along
with Unique emailID's and the accounts related to each email.
Required Output:
o1 o2 o3 o4
d1.com [email protected] 3 2
d1.com [email protected] 3 1
d1.com [email protected] 3 1
o1: Domain
o2: Unique email ID's in the Domain
o3: Unique accounts accessible by Domain
o4: Unique accounts accessible by Email
I'm able to get o1, o2 & o4 with the following sql
SELECT a.domain, a.F1, COUNT (a.rnum)
FROM (SELECT UNIQUE ROWNUM rnum,
SUBSTR (TRIM (F1),
INSTR (TRIM (F1), '@') + 1
) AS domain,
F1, F2, F3
FROM tab1
WHERE F1 LIKE '%d1.com%') a
GROUP BY a.domain, a.F1
Pls help me in completing this sql for the required output.
Thanks :-)

What version/edition of Oracle are you using? Can you use analytics?
SELECT a.domain, a.F1, COUNT (a.rnum),
count(a.domain) over (partition by a.domain) domain_count
FROM (SELECT UNIQUE ROWNUM rnum,
SUBSTR (TRIM (F1),
INSTR (TRIM (F1), '@') + 1
) AS domain,
F1, F2, F3
FROM tab1
WHERE F1 LIKE '%d1.com%') a
GROUP BY a.domain, a.F1;
DOMAIN               F1                   COUNT(A.RNUM) DOMAIN_COUNT
d1.com               [email protected]                    2            3
d1.com               [email protected]                    1            3
d1.com               [email protected]                    1            3

Similar Messages

  • Functional Help required

    Hi,
          can any one tell me the link where i can find the details of fields in the data base table?
    for example, in VBAK table whats VBELN? where it is used? in which module?
    My client just says material number, posting date, fiscal year etc...
    i need to find the table and corresponding field
    Thanks in advance,
    Niyaz

    Hi,
    Please check this link for SD tables and relationship perhaps it may help.
    http://www.erpgenie.com/abap/tables_sd.htm
    You can also go to transaction SE11 to find data type VBELN where being used in table fiels, program, function module, etc (CTRLSHIFTF3).
    Regards,
    Ferry Lianto

  • Node Function help required in XML message mapping !!

    Hi Brilliants,
    Source Message
        <ROOT>               0..1   
          <OUTPUT>          0..n
             <Group_N1>           0..n     <Header>
                <H02_N1_DTM>                           0..1
          DTM_Y2K_DATE     0..1
             <Group_LIN>          0..n                <Lin Item>
         <Group_ZA>          0..n
              <D02_ZA>     0..n
          </OUTPUT>
    </ROOT>
    The above Source <OUTPUT> tag comes 2 times. In this two time, Header comes once per header and more than 50 times Lin item occurs.
    Target Message
    ProductActivityNotification                                                            0..n
         ProductActivity                                                       1..1
              Item                                                       1..unbound  (Lin Item level on target side)
                 SalesTimeSeries                  0..1
                          Item                                           1..unbound
                        ValidityPeriod              1..1
                        StartDate              0..1
                        EndDate              0..1
    The above source message Lin item, whatever the times it replicates, the same number of times u201CItemu201D tag has to occur and DTM_Y2K_DATE value has to pass to StartDate.
    Could anybody please put your valuable idea on this? I suppose to deliver this interface tomorrow.
    I will highly appreciate your intellectual ability.
    Many Thanks in Advance
    Kind Regards
    San

    HI San,
    Based on your this post, i think u want like this way...
    How many times from source  DTM_Y2K_DATE  or <LinItem>(because DTM_Y2K_DATE   in LinItem ) occurs that many of <Item> in target is required rt??
    Then u map like,
    DTM_Y2K_DATE  (Change context to LineItem(right clich and choose context)) and map  to LineItem of target.
    and also now map directly from DTM_Y2K_DATE  to Start Date(Dont change any context now..)
    If still nt clear do post..
    Babu

  • MM functional help required

    Hi Experts,                
    I have to develop a report  the description given like this:
    <b>Parts that leave BOM and have an L - Item Category               
    Any part that rolls a rev and is a material type - ROH; HALB or FERT               
    Any assembly that uses any part in item 1 or 2 with a disposition of Scrap or re-work for that part</b>
    the initial screen contains
    Plant
    Material          to     
    Disposition                Options - U; S; R; D; C; T
    Cost of Re-work               
    the output should be in the format
    Derived      Material    Matl Descrpn     Plant      Disposition     Cost/Re-wrk Cost     POs Qty     Material at Vendor     Stock     Consigned to customer     W.O. Qty     Total Cost
    the standard transactions Cs15 and QS51 need to used for the logic.
    Can anyone explain me the flow/logic?

    Hi Alekya,
    In this forum you can get small doubts cleared .
    You cannot expect someone to explain logic for the functional spec.
    (and one cannot explain also through this forum)
    Better you can discuss with your MM functional consulatnt who has given this spec and code according to the requirement.
    Hope you dont misunderstand.
    regards,
    Guru

  • Collection as out parameter in function - help required

    I am having a fucntion which returns 3 different values based on a given in parameter.
    Now , I want to return these three values.
    Instead of using three out parameters, how can I use a collection for returning the values.
    Please tell me the best way in returing the multiple values(more than 3)
    Thanks in advance
    Regards
    Raghu

    SQL> create type my_obj as object (no integer, name varchar2(10))
      2  /
    Type created.
    SQL> create type my_tbl as table of my_obj
      2  /
    Type created.functional approach...
    SQL> create or replace function my_fn return my_tbl
      2  as
      3     ltbl my_tbl;
      4  begin
      5     select my_obj(1,'karthick') bulk collect into ltbl from dual;
      6
      7     return ltbl;
      8  end;
      9  /
    Function created.
    SQL> select * from table(cast(my_fn() as my_tbl))
      2  /
            NO NAME
             1 karthickprocedureal approach...
    SQL> create or replace procedure my_proc(ptbl out my_tbl)
      2  as
      3  begin
      4     select my_obj(1,'karthick') bulk collect into ptbl from dual;
      5  end;
      6  /
    Procedure created.
    SQL> declare
      2     ltbl my_tbl;
      3  begin
      4     my_proc(ltbl);
      5
      6     for i in 1..ltbl.count
      7     loop
      8             dbms_output.put_line(ltbl(i).no||'      '||ltbl(i).name);
      9     end loop;
    10  end;
    11  /
    1       karthick
    PL/SQL procedure successfully completed.

  • JTextPane Hyperlink Functionality Help Required

    Hello there,
    I am using the JTextPane in my Java Swing Application. How do I make it Handle Hypelinks. Like lets say the use enters
    \\some_foldername\some_subfolder_foldername\some_file.xls or any other file type, It should Automatically, treat it as a hyperlink.
    Is it Possible to have such a functionlaity
    JTextPane Hyperlink Functionality
    import java.awt.BorderLayout;
    import java.awt.Dimension;
    import javax.swing.JFrame;
    import javax.swing.JPanel;
    import javax.swing.JTextPane;
    import javax.swing.SwingUtilities;
    import javax.swing.UIManager;
    public class TextSamplerDemo extends JPanel {
         public TextSamplerDemo() {
              setLayout(new BorderLayout());
              // Create a text pane.
              JTextPane textPane = new JTextPane();
              setPreferredSize(new Dimension(250, 155));
              setMinimumSize(new Dimension(10, 10));
              // Put everything together.
              add(textPane, BorderLayout.LINE_START);
         private static void createAndShowGUI() {
              JFrame frame = new JFrame("Hyperlinks in Java Editors");
              frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
              frame.add(new TextSamplerDemo());
              frame.pack();
              frame.setVisible(true);
         public static void main(String[] args) {
              SwingUtilities.invokeLater(new Runnable() {
                   public void run() {
                        UIManager.put("swing.boldMetal", Boolean.FALSE);
                        createAndShowGUI();
    }Regards,
    Hemanth

    Try something along these line
    1. get start and end off highlighted text
    2. replace highlighted text with a string builder or something similar
    <html><FONT COLOR=BLUE> <u> TEXT</FONT></u>
    Calypso
    Edited by: calypso on May 15, 2009 4:42 AM
    On second thought I think you can shorten that to
    <html>TEXT

  • Instr function  help required

    Hai
    if we search the particular string we can use 'INSTR' to find the position in the string by
    instr('TOM an oracle programmer','oracle')>0if i want to seach the two words like 'oracle' AND 'TOM' then how can i do it?
    or
    ((instr('TOM an oracle programmer','oracle')>0)  OR instr('TOM an oracle programmer','TOM')>0)this is the only way..?
    Pls give me ur suggestion
    S

    Beware of the differences!
    SQL>WITH Sample_Data AS (SELECT 'TOM an oracle programmer' str FROM DUAL UNION ALL
      2  SELECT 'Saubhik is an oracle programmer' str FROM DUAL UNION ALL
      3  SELECT 'XYZ is an oracle programmer' str FROM DUAL UNION ALL
      4  SELECT 'MOT is an cle programmer' str FROM DUAL UNION ALL
      5  SELECT 'TOM dont know oracle!' str FROM DUAL
      6  )
      7  SELECT * from Sample_Data
      8  WHERE REGEXP_LIKE(str,'[TOM][oracle]*');
    STR
    TOM an oracle programmer
    MOT is an cle programmer
    TOM dont know oracle!
    SQL>
    SQL>WITH Sample_Data AS (SELECT 'TOM an oracle programmer' str FROM DUAL UNION ALL
      2  SELECT 'Saubhik is an oracle programmer' str FROM DUAL UNION ALL
      3  SELECT 'XYZ is an oracle programmer' str FROM DUAL UNION ALL
      4  SELECT 'MOT is an cle programmer' str FROM DUAL UNION ALL
      5  SELECT 'TOM dont know oracle!' str FROM DUAL
      6  )
      7  SELECT * from Sample_Data
      8  WHERE REGEXP_LIKE(str,'[TOMoracle]*');
    STR
    TOM an oracle programmer
    Saubhik is an oracle programmer
    XYZ is an oracle programmer
    MOT is an cle programmer
    TOM dont know oracle!
    SQL>
    SQL>WITH Sample_Data AS (SELECT 'TOM an oracle programmer' str FROM DUAL UNION ALL
      2  SELECT 'Saubhik is an oracle programmer' str FROM DUAL UNION ALL
      3  SELECT 'XYZ is an oracle programmer' str FROM DUAL UNION ALL
      4  SELECT 'MOT is an cle programmer' str FROM DUAL UNION ALL
      5  SELECT 'TOM dont know oracle!' str FROM DUAL
      6  )
      7  SELECT * from Sample_Data
      8  WHERE REGEXP_LIKE(str,'(TOM|oracle)');
    STR
    TOM an oracle programmer
    Saubhik is an oracle programmer
    XYZ is an oracle programmer
    TOM dont know oracle!

  • My iPhone 4s is locked in speaker mode where it tells me every time I touch a new app and it outlines the app I touch and requires me to touch the screen twice in order to advance. Please help me remove this setting

    My iPhone 4s is locked in speaker mode where it tells me every time I touch a new app and it outlines the app I touch and requires me to touch the screen twice in order to advance. Please help me remove this setting

    Explore Settings > General > Accessibility. Around page 128 of the User Guide is probably appropriate.
    The User Guide is available at http://support.apple.com/manuals/ or downloadable from iTunes as an iBook.

  • Urgent help required: Query regarding LC Variables

    Hi All
    Sometime earlier I was working on a performance issue raised by a customer. It was shell script that was taking almost 8-9 hrs to complete. During my research I came across a fact that there were some variables which were not set, the LC variables were impacting the sort funnel operations because of which the script was taking a long time to execute.
    I asked them to export the following commands, after which the program went on smoothly and finished in a couple of mins:
    export LC_COLLATE=en_US.ISO8859-1
    export LC_MESSAGES=C
    export LC_MONETARY=en_US.ISO8859-1
    export LC_MONETARY=en_US.ISO8859-1
    export HZ=100
    export LC_CTYPE=en_US.ISO8859-1
    export LANG=en_US.UTF-8
    Later I did recover that setting the LC_COLLATE to C, is not helping and the program was again taking a lot of time. Few questions that I want to ask are:
    1. Can someone please tell me, what each of these variable mean and how these values make a difference.
    2. When I exported LC_COLLATE=en_US.ISO8859-1, it worked fine, but when i tried with the defalut value LC_COLLATE=C, then why the program didnt work.
    As this issue is still going on, hence I would request All to provide their valuable inputs and let me know as much as possible.
    Appreciate your help in this regard.
    Thanks
    Amit
    Hi All
    A new development in this regard. The customer has send us a screen shot in which they were trying to export the locale variable using the commands which I have pasted above. I can see in the screen shot that while exporting LC_COLLATE and LC_TYPE, they get a message that ""ksh: export: couldn't set locale correctly"".
    Request everyone to please give their inputs as it's a bit urgent.
    Thanks for all the help in advance.
    Thanks
    Amit
    Some help required please...
    Edited by: amitsinhaengg on Jul 22, 2009 2:03 AM
    Edited by: amitsinhaengg on Jul 22, 2009 2:06 AM

    LC_CTYPE
    Controls the behavior of character handling functions.
    LC_TIME
    Specifies date and time formats, including month names, days of the week, and common full and abbreviated representations.
    LC_MONETARY
    Specifies monetary formats, including the currency symbol for the locale, thousands separator, sign position, the number of fractional digits, and so forth.
    LC_NUMERIC
    Specifies the decimal delimiter (or radix character), the thousands separator, and the grouping.
    LC_COLLATE
    Specifies a collation order and regular expression definition for the locale.
    LC_MESSAGES
    Specifies the language in which the localized messages are written, and affirmative and negative responses of the locale (yes and no strings and expressions).
    You can use command
    # locale -k LC_CTYPE
    to see more detail about each type.

  • IP-Planning Function Help!! Is this possible?

    Dear Experts,
    I am relatively new to IP and I want to check if this is possible. I would like to copy a Keyfigure value from one Aggregation level to another Aggregation level.
    Here is my scenario.
    I have an Aggregation level 1 where it has characteristics Product Group, Year, Version and Percentage. So the planner would plan as
    Product Grp-Year-Version---Percentage
    GROUP1-2010-100---10%
    GROUP2-2010-100---20%
    GROUP3-2010-100---15%
    Now I have another Aggregation level 2 where it has characteristics Product Group, Product, Year, Version and Cost. I  would want the Percentage value which was planned in Agg. level 1 to be copied to all the products in that group. My Planning book would look like
    Product Grp-PRODUCT-Year-Version-Percentage-Standard Cost-Plan Cost
    GROUP1-PRD1-2010-100-10%-$100-$110
    GROUP1-PRD2-2010-100-10%-$200-$220
    GROUP1-PRD3-2010-100-10%-$300-$330
    GROUP2-PRD4-2010-100-20%-$1000-$1200
    GROUP2-PRD5-2010-100-20%-$2000-$2400
    GROUP2-PRD6-2010-100-20%-$3000-$3600
    GROUP3-PRD7-2010-100-15%-$1000-$1150
    GROUP3-PRD8-2010-100-15%-$2000-$2300
    GROUP3-PRD9-2010-100-15%-$3000-$3450
    Currently The above products already exist in the cube but the Percentage value for them is blank. When the user saves the first planning book I would want the Planning function to be executed and change the percentage value of each product based on the Prodcut group it belongs to. Also I want the Plan cost to be calculated with the percentage value and the standard cost.
    Now when the Planned opens the second planning book he can see the Plan cost already calculated based on the percentage value. However, I will provide an option to the user to change the Plan cost if needed.
    Important thing for me to know how I can  take the percentage value from first few records and change the value of percentage in the second set of records for each product based on its product group.
    Hope my explanation is clear and it is possible to do it.
    Thanks for your inputs.
    KK

    Hey Andrey, I have tried in several different way but was not able to achieve this. My Stupidity!! I am new to IP and this is the first time I am using  Fox formulae  and this is driving me crazy. I think its just a basic understanding issue.
    I just want  to reiterate whay I exactly wanted. Could you please help me with the code.
    Here is the current data in the planning  cube. The first 3 rows are planned from a planning book. The rest of the rows are loaded from a flat file. When the planning function is executed we would want to take the percentage from the Product group and assign it to each product in the rest of the rows there by calculating the Plan cost.
    Current/Before executing Planning Function.
    Product Grp-PRODUCT-Year-Version-Percentage-Standard Cost-Plan Cost
    GROUP1-#-2010-100-10%-00-00
    GROUP2-#-2010-100-20%-00-00
    GROUP3-#-2010-100-15%-00-00
    GROUP1-PRD1-2010-100-00-$100-00
    GROUP1-PRD2-2010-100-00-$200-00
    GROUP1-PRD3-2010-100-00-$300-00
    GROUP2-PRD4-2010-100-00-$1000-00
    GROUP2-PRD5-2010-100-00-$2000-00
    GROUP2-PRD6-2010-100-00-$3000-00
    GROUP3-PRD7-2010-100-00-$1000-00
    GROUP3-PRD8-2010-100-00-$2000-00
    GROUP3-PRD9-2010-100-00-$3000-00
    After executing Planning Function
    Product Grp-PRODUCT-Year-Version-Percentage-Standard Cost-Plan Cost
    GROUP1-#-2010-100-10%-00-00
    GROUP2-#-2010-100-20%-00-00
    GROUP3-#-2010-100-15%-00-00
    GROUP1-PRD1-2010-100-10%-$100-$110
    GROUP1-PRD2-2010-100-10%-$200-$220
    GROUP1-PRD3-2010-100-10%-$300-$330
    GROUP2-PRD4-2010-100-20%-$1000-$1200
    GROUP2-PRD5-2010-100-20%-$2000-$2400
    GROUP2-PRD6-2010-100-20%-$3000-$3600
    GROUP3-PRD7-2010-100-15%-$1000-$1150
    GROUP3-PRD8-2010-100-15%-$2000-$2300
    GROUP3-PRD9-2010-100-15%-$3000-$3450
    This is what I would expect after executing the planning function. Could you please help me with the code. What needs to be selected as the Characteristics to be changed and the Key figure and if I have to select any characteristics for conditions.
    Thanks in advance for your help!!
    KK

  • When the apple review team review our app,they point out that our  app uses a background mode but does not include functionality that requires that mode to run persistently.but in fact,when the app in background ,the app need data update to make the

    when the apple review team review our app,they point out that our  app uses a background mode but does not include functionality that requires that mode to run persistently。but in fact,when the app in background ,the app need data update to make the function of  trajectory replay come ture。in fact, we have added function when the app  is in background mode。we have point out the point to them by email。but they still have question on the background mode,we are confused,does anyone can help me,i still don't know why do review team can't find the data update when  the app is in background and how do i modify the app,or what is the really problem they refered,do i misunderstand them?
    the blow is the content of the review team email:
    We found that your app uses a background mode but does not include functionality that requires that mode to run persistently. This behavior is not in compliance with the App Store Review Guidelines.
    We noticed your app declares support for location in the UIBackgroundModes key in your Info.plist but does not include features that require persistent location.
    It would be appropriate to add features that require persistent use of real-time location updates while the app is in the background or remove the "location" setting from the UIBackgroundModes key. If your application does not require persistent, real-time location updates, we recommend using the significant-change location service or the region monitoring location service.
    For more information on these options, please see the "Starting the Significant-Change Location Service" and "Monitoring Shape-Based Regions" sections in the Location Awareness Programming Guide.
    If you choose to add features that use the Location Background Mode, please include the following battery use disclaimer in your Application Description:
    "Continued use of GPS running in the background can dramatically decrease battery life."
    Additionally, at your earliest opportunity, please review the following question/s and provide as detailed information as you can in response. The more information you can provide upfront, the sooner we can complete your review.
    We are unable to access the app in use in "http://www.wayding.com/waydingweb/article/12/139". Please provide us a valid demo video to show your app in use.
    For discrete code-level questions, you may wish to consult with Apple Developer Technical Support. When the DTS engineer follows up with you, please be ready to provide:
    - complete details of your rejection issue(s)
    - screenshots
    - steps to reproduce the issue(s)
    - symbolicated crash logs - if your issue results in a crash log
    If you have difficulty reproducing a reported issue, please try testing the workflow as described in <https://developer.apple.com/library/ios/qa/qa1764/>Technical Q&A QA1764: How to reproduce a crash or bug that only App Review or users are seeing.

    Unfortunately, these forums here are all user to user; you might try the developer forums or get in touch with the team that you are working with.

  • How to use  Advance java function in graphical mapping in XI 2.0?

    Hi,
    currently I am using a simple java function to make an RFC call to R3 system.
    I want to avoid making connection for each lookup. Instead I want to make a single connection for whole message queue and get the corresponding values in some array or container object.
    please suggest a solution.
    I think this is possible using Advance java function, but I am not able to find any example on using Advance java function at help.sap.com.
    thaks in advance.

    Hi!!!
    I'm not sure if I understood you well.
    Do you want to preload some data into your structures in the memory and keep them there so you don't need to make a new connection during processing the whole message or every message?
    In my opinion you can cache some data during processing a message, but it's impossible to cache some data between processing messages.
    If you write your java mapping or you use graphical mapping (even with user-defined function), then you have a java class. The problem is that XI 2.0 reloads this class during processing every message, so even if you load some data from your data source into your structures in the memory, this data will be lost after reloading your mapping class.
    Regards,
    Andrzej Filusz

  • Help require with installing Adobe Acrobat onto my Macbook Pro Retina.

    Help require with installing Adobe Acrobat onto my Macbook Pro Retina.
    I have successfully installed all of my creative cloud apps with the exception being acrobat.
    I cannot print from Indesign to PDF.
    I have unistalled, reinstalled and still no Adobe Acrobat.
    I now have to go back to Windows 8 and create the PDF's there.
    Any one know how to get around this issue?
    Thanks in advance
    Kelvin

    OSX has effectively killed the ability to print to pdf, (print to pdf eliminates most of the "Rich features" of current pdf).
    Export from InDesign, always, excpet for the 1% of the time where you know why print to pdf would produce a better result.

  • Help required in Weblogic 6 - Creation & Configuration of Web Application

    Forum Home > Enterprise JavaBeans[tm]
    Topic: Help required in Weblogic 6 - Creation & Configuration of Web Application
    Duke Dollars
    2 Duke Dollars assigned to this topic. Reward the best responses to your question
    using the icons below, or transfer additional Duke Dollars to this topic.
    Welcome moinshariff!
    Watching this topic.
    Previous Topic Next Topic
    This topic has 1 reply on 1 page (Most recent message: Jan 23, 2002 1:05 AM)
    Author: moinshariff Jan 22, 2002 4:55 AM
    Hi,
    I am using Weblogic 6. I have created a new Web
    Application called Web (I have not used the DefaultWebApp_myserver).
    And I have the following settings:
    Name : Web
    URI : Web
    and Path : C:\Web
    and placed my JSP files under c:\Web\
    I am able to access the first page, but after that I am not able to access the
    second page.
    I get "Error 404--Not Found" on the browser. Basically the class file is not getting
    created under /Web-inf/_tmp_war_myserver_myserver_Web/jsp_servlet/ folder .
    I tried a work around for this. I copied all my files under one more folder called
    web and placed this under C:\Web
    The it works. Now I have 2 copied off all the files, 1 copy under c:\web and another
    copy under c:\web\web\.
    If I have the files under DefaultWebApp_myserver and have the setting as
    Name: DefaultWebApp_myserver
    URI: DefaultWebApp_myserver
    Path: .\config\mydomain\applications
    everything works fine.
    Can any one please let me know if there is any configuration which has to be done
    so that I do not duplicate the code in 2 directories
    Thanks in advance.
    Regards,
    Moin

    Forum Home > Enterprise JavaBeans[tm]
    Topic: Help required in Weblogic 6 - Creation & Configuration of Web Application
    Duke Dollars
    2 Duke Dollars assigned to this topic. Reward the best responses to your question
    using the icons below, or transfer additional Duke Dollars to this topic.
    Welcome moinshariff!
    Watching this topic.
    Previous Topic Next Topic
    This topic has 1 reply on 1 page (Most recent message: Jan 23, 2002 1:05 AM)
    Author: moinshariff Jan 22, 2002 4:55 AM
    Hi,
    I am using Weblogic 6. I have created a new Web
    Application called Web (I have not used the DefaultWebApp_myserver).
    And I have the following settings:
    Name : Web
    URI : Web
    and Path : C:\Web
    and placed my JSP files under c:\Web\
    I am able to access the first page, but after that I am not able to access the
    second page.
    I get "Error 404--Not Found" on the browser. Basically the class file is not getting
    created under /Web-inf/_tmp_war_myserver_myserver_Web/jsp_servlet/ folder .
    I tried a work around for this. I copied all my files under one more folder called
    web and placed this under C:\Web
    The it works. Now I have 2 copied off all the files, 1 copy under c:\web and another
    copy under c:\web\web\.
    If I have the files under DefaultWebApp_myserver and have the setting as
    Name: DefaultWebApp_myserver
    URI: DefaultWebApp_myserver
    Path: .\config\mydomain\applications
    everything works fine.
    Can any one please let me know if there is any configuration which has to be done
    so that I do not duplicate the code in 2 directories
    Thanks in advance.
    Regards,
    Moin

  • Help required network configuration - Gateway route settings get erased on reboot.

    Oracle Linux 7
    Linux myhostname 3.8.13-35.3.1.el7uek.x86_64 #2 SMP Wed Jun 25 15:27:43 PDT 2014 x86_64 x86_64 x86_64 GNU/Linux
    #cat /etc/sysconfig/network-scripts/ifcfg-eno16780032
    TYPE="Ethernet"
    BOOTPROTO="none"
    DEFROUTE="yes"
    IPV4_FAILURE_FATAL="no"
    IPV6INIT="yes"
    IPV6_AUTOCONF="yes"
    IPV6_DEFROUTE="yes"
    IPV6_FAILURE_FATAL="no"
    NAME="eno16780032"
    UUID="2d1107e3-8bd9-49b1-b726-701c56dc368b"
    ONBOOT="yes"
    IPADDR0="34.36.140.86"
    PREFIX0="22"
    GATEWAY0="34.36.143.254"
    DNS1="34.36.132.1"
    DNS2="34.34.132.1"
    DOMAIN="corp.halliburton.com"
    HWADDR="00:50:56:AC:3F:F9"
    IPV6_PEERDNS="yes"
    IPV6_PEERROUTES="yes"
    NM_CONTROLLED="no"
    #route -n
    Kernel IP routing table
    Destination     Gateway         Genmask         Flags Metric Ref    Use Iface
    0.0.0.0         34.36.143.254   0.0.0.0         UG    0      0        0 eno16780032
    34.36.140.0     0.0.0.0         255.255.252.0   U     0      0        0 eno16780032
    169.254.0.0     0.0.0.0         255.255.0.0     U     1002   0        0 eno16780032
    When I reboot the machine, the first line in route table gets erased, I then run:
    #route add default gw 34.36.143.254
    After which network works fine.
    Help required. I don't want to use NetworkManager.

    The following might be useful:
    https://access.redhat.com/solutions/783533
    "When transitioning from NetworkManager to using the network initscript, the default gateway parameter in the interface's ifcfg file will be depicted as 'GATEWAY0'. In order for the ifcfg file to be compatible with the network initscript, this parameter must be renamed to 'GATEWAY'. This limitation will be addressed in an upcoming release of RHEL7."
    NetworkManager is now the default mechanism for RHEL 7. Personally I don't quite understand this, because as far as I can gather it is a program for systems to automatically detect and connect to known networks. I think such functionality can be useful when switching between wireless and wired networks, but for a server platform, I wonder.

Maybe you are looking for

  • VL10B BAPI/FM needed

    Hi All,        1.  My requirement is to create delivery in background with reference to purchase order through transaction VL10B. Are there any BAPI/FM's exist for this purpose?        2.When i create delivery through VL10B with ref to purchase order

  • Why my ipod can not be detected in wimdows 8.1

    I received this message when I connect my ipod to my computer.....An ipod has been detected but it could not be identified. Please disconnect and reconnect the ipod. I have uninstalled itunes-reinstalled and tried other advice from apple website, but

  • Lower half of my screen is green!

    Okay, now I'm frustrated. I've got my project all lined up and I click FILE -> BUILD. (My intent is to burn a VIDEO_TS folder in Toast, because DVD SP won't burn for me, but that's another discussion). Simulating my disc seems fine. However, when I b

  • CS6 Premiere Pro Windows Capture Format

    Can Premiere Pro CS6 for Windows be set to capture Quicktime instead of AVI?

  • HDV to ProRes - how do I calculate the Gigs?

    I'm going to master out my 90 minute HDV show to ProRes (HQ). What kind of Gigawattage am I looking at. What's a good formula for calculating. All ears, Ben