Master Agrement Search must include Perpetual Contracts

Hi Experts,
Please suggest I have new requirement in SAP CLM . I have code written in report for MA Search and and it is working fine however I need to Enhance the  perpetual condition in the below mentioned creteria..
The master agreement advanced search report does not include Perpetual contracts. It must be updated to do so. 1) Add a check box next to the 'Expiration Date Before' along with "Include perpetual contracts?" 2) If the box is checked, the search results will include a) any regular contract with the user-inputted effective date & expiration date range and b) any perpetual contract with an effective date within the user-inputted effective date range
WHERE T1.INACTIVE=0
AND T1.IS_TEMPLATE = 0
AND T1.CONTEXTID = <%CONTEXT(contracts.Contract)%>
AND ((T1.EXPIRATION_DATE_DATE >= <%TODAY%>) OR(T1.PERPETUAL_TERM=1))
AND
WHERE T5.INACTIVE=0
AND T5.CONTEXTID = <%CONTEXT(contracts.Agreement)%>
AND ((T5.EXPIRATION_DATE_DATE >= <%TODAY%>) OR(T5.PERPETUAL_TERM=1))
AND ((?=0) OR T5.STATUS_OBJECT_ID= ?)
AND
Please help what/how to make logic/code for the above requirement in the mentioned code.
Many Thanks
Iqbal

hi

Similar Messages

  • After enter my serial number, he said that to use adobe creative suite 5 master collection you must

    after enter my serial number, he said that to use adobe creative suite 5 master collection you must provide an adobe ID, i entered my adobe ID and password and after that he tell me that, we are enable to start your subscription for adobe creative suite 5 master collection , please choose close and then re-laungh ur product !!!

    This is a user to user forum, not Adobe support... you need to contact Adobe
    Adobe contact information
    http://www.adobe.com/support/contact
    In the US - Adobe General support 800-833-6687 M-F 5am-7pm Pacific
    In the US - Adobe Install Problems 800-642-3623
    In the US - Adobe Activation 866-772-3623 Open 24/7 as far as I know

  • Well to run a cfquery I must include a "password" attribute, etc except I have a local server ? yes / no

    I read ALL the textbook
    MACROMEDIA CF, 2002 course.com
    Well to run a <cfquery> I must include a "password" attribute, etc
    except I have a local server ? yes / no
    May use/include a file dbinfo.cfm with all my passwords etc , and use
    these passwords as variables in <cfquery>,...etc ? this is more secure ?
    I must include vars in <cfscript> tag OR many <cfset> tags ?
    If I had
    <cfscript>
    password='gf56SDRPO999';
    </cfscript>
    HOW TO INCLUDE THIS VAR IN  <cfquery password=#password# ...> this is correct ?

    Your question is unclear to me, but if you just want to verify your syntax is legal, then YES.  You can easily set a value in a variable with <cfscript> and then later use that variable in a <cftag...> like you showed.
    But I would argue there is little additional security in using passwords in code like this between setting the password and using it directly in the tag.  There may be reusability and maintainability advantages, but little advantage to security.

  • How do I delete complete search history including YouTube videos fro my ipad

    How do I permanently delete search history including YouTube videos on iPad?

    There is a Torch folder within the Applications folder of your hard drive. In this folder there is an uninstaller for torch. Took me a while to work it out, but I found it!

  • How to change Master Agreements search channel in Workbench

    Hi All,
    When we search in Master Agreements search channel in workbench then it displays a report just below that search, and when we click on that then it displays Master Agreement Search Agreement Detail.
    In this details sub-agreement payment terms are not coming because Class id is different, but when I look into standard report  : Master Agreement Search Agreement Detail, there query is having class id 1003.
    Is it possible to replace this standard query in report or if we can replace this report in Master Agreements search channel in workbench.
    Please advise.
    Regards,
    Prabhat Pandey

    I see. I think SAP does not allow the standard FCI queries to be linked to Custom ones from the Setup --> Reports section.
    In this case, you will first need to create a CUSTOM version of FCI-ConSearchMore and then link the custom version of FCI-ConSearchAgrDetail to this via the Setup--> Report section.
    Then in the Setup--> Desktop Channel, you would need to go into the Master Agreement Search link and update the Parameter Definitions section with the new custom queries. This will ensure that in the Workbench page of the user, the desired results will be displayed.
    Hope this helps,
    Thanks,
    Vikram Shukla

  • How to implement Master-Detail Search in TopLink without using DataControl

    Hi,
    I am using TopLink and EJB in our requirement. But we are not creating any data controls. Without data controls how to implement master detail search using TopLink and EJB. I did search for a single table. It is working fine. The way i implented is as follows.
    1) Taking search parameter from UI and passing it to A delegator class's method.
    2) Delegator class's method calls the EJB's NamedQuery which i already created using expression builder.
    3) EJB executes the NamedQuery with the parameter we are passing. And it returns the results back to UI.
    But as i am new to TopLink, can anyone tell me the procedure to implement Master - Detail search. Here we need to search based on Master table's column.
    Waiting for the replies regarding this.
    Thanks & Regards,
    Suresh Kethireddy

    Hi,
    I did it successfully. Following is the code.
    Session session = getSessionFactory().acquireSession();
    UnitOfWork uow = session.acquireUnitOfWork();
    ReadAllQuery raq = new ReadAllQuery();
    Dept d = new Dept();
    d.setLoc(loc);
    raq.setExampleObject(d);
    List<Dept> res=(List<Dept>)uow.executeQuery(raq);
    for(int i=0; i<res.size();i++){
    System.out.println("Dept DeptNo ---"+res.get(i).getDeptno());
    System.out.println("Dept DeptName ---"+res.get(i).getDname());
    System.out.println("Dept Location ---"+res.get(i).getLoc());
    List<Emp> eRes=res.get(i).getEmpCollection();
    for(int j=0; j<eRes.size();j++){
    System.out.println(" Emp No ---"+eRes.get(j).getEmpno());
    System.out.println(" Emp Name ---"+eRes.get(j).getEname());
    System.out.println("Emp HireDate ---"+eRes.get(j).getHiredate());
    System.out.println(" Emp Job ---"+eRes.get(j).getJob());
    System.out.println(" Emp Mgr ---"+eRes.get(j).getMgr());
    System.out.println(" Emp Sal ---"+eRes.get(j).getSal());
    But now my question is, i want to search by providing Dept param as well Emp(Which is child table) param also. Is it possible?
    I tried in 2 ways like this.
    1) Emp emp = new Emp();
    emp.setEname(eName);
    dept.addEmp(emp);
    raq.setExampleObject(dept);
    2) Emp e = new Emp();
    e.setEname("ADAMS");
    List<Emp> list = new ArrayList();
    list.add(e);
    d.setEmpCollection(list);
    raq.setExampleObject(d);
    But in both cases i failed to search based on the values i am passing to Emp.
    Is there any other way to achieve my requirement?
    Any help on this is great.
    Thanks & Regards,
    Suresh K

  • Is SAP MDM master data search possible through Enterprise Search?

    Hi Everyone
    I was looking at finding if the SAP MDM master data search is possible through Enterprise Search?
    Is so, Please provide a bit of technical guide on the same.
    Regards
    Navneet

    Hi Navneet,
    first releases of SAP NetWeaver Enterprise Search featured a preliminary connector to federate SAP MDM's search functionality. However, as no object level access authorization control could be implemented on the current MDM APIs, we have discontinued to deliver that prototype connector. We will be back with access-authorization-controlled connectivity in one of the future releases.
    Best, Karsten

  • SALES EMPLOYEE MASTER / NUMBER TO BE INCLUDED IN THE CUST MASTR W/O HR MOD:

    Hi All,
    I am finding difficulty in creating employee master, i wish to include this employee number in to customer master so that i can track the sales by employee. The HCM module is not there with this client. Pl suggest me and i need step wise config document.
    Hope i will get the reply ASAP from you,
    Best regards,
    sushil Kumar

    Hi,
    Use transaction code VPE1 to create the sale employee and attach this to the customer number.
    Regards

  • Method foo() must include java.rmi.RemoteException

    Here's the full exception:
    In EJB VWBaseUser, method setUsername(java.lang.String) defined in the remote
    interface must include java.rmi.RemoteException in its throws clause.
    The problem is, I am throwing RemoteExceptions in my remote interface! Here's
    the code:
    import javax.ejb.EJBObject;
    import java.rmi.RemoteException;
    public interface VWBaseUser extends EJBObject
    public String getFirstName() throws java.rmi.RemoteException;
    public void setFirstName() throws java.rmi.RemoteException;
    public String getLastName() throws java.rmi.RemoteException;
    public void setLastName() throws java.rmi.RemoteException;
    public String getUserName() throws java.rmi.RemoteException;
    public void setUserName() throws java.rmi.RemoteException;
    public String getPassword() throws java.rmi.RemoteException;
    public void setPassword() throws java.rmi.RemoteException;
    What gives?!? The only thing I could think of was that I'm somehow using an old
    JDK to compile with, but I thought I checked that and it was pointing to JDK 1.3.1
    (unfortunately, we're still using VisualCafe, and an old version at that, since
    Webgain is imploding)

    Yup, that must've been it. I did have the classes elsewhere in 'exploded' format,
    in addition to my EJB jar. Got rid of them, and the problem went away.
    Thanks!
    Brian
    Rob Woollen <[email protected]> wrote:
    The usual cause is you have another version of this class in your
    classpath which doesn't contain the RemoteException, and ejbc is finding
    this version.
    -- Rob
    Brian Preston wrote:
    Here's the full exception:
    In EJB VWBaseUser, method setUsername(java.lang.String) defined inthe remote
    interface must include java.rmi.RemoteException in its throws clause.
    The problem is, I am throwing RemoteExceptions in my remote interface!Here's
    the code:
    import javax.ejb.EJBObject;
    import java.rmi.RemoteException;
    public interface VWBaseUser extends EJBObject
    public String getFirstName() throws java.rmi.RemoteException;
    public void setFirstName() throws java.rmi.RemoteException;
    public String getLastName() throws java.rmi.RemoteException;
    public void setLastName() throws java.rmi.RemoteException;
    public String getUserName() throws java.rmi.RemoteException;
    public void setUserName() throws java.rmi.RemoteException;
    public String getPassword() throws java.rmi.RemoteException;
    public void setPassword() throws java.rmi.RemoteException;
    What gives?!? The only thing I could think of was that I'm somehowusing an old
    JDK to compile with, but I thought I checked that and it was pointingto JDK 1.3.1
    (unfortunately, we're still using VisualCafe, and an old version atthat, since
    Webgain is imploding)

  • UIX Master-Detail search criteria

    When dropping a data control, Drag and Drop As Master-Detail, into a UIX page it wires up search inputs for Master data attributes only. Is it possible to include or define search inputs for detail data attributes? If so, please can you show me how to do it and provide an example if possible?

    what do you mean by
    " it wires up search inputs for Master data attributes only"?
    No search form inputs are created by default when you drag'n'drop a master-detail widget.

  • Customer master data search and use limit

    Hello everyone
    I have a problem that our customer want to limit that A user of SAP  can search and use the customers master data which he or she created only .what should I do ?  thanks!

    Wierd requirement!! What will happen if the employee quits the company and a new employee takes his position and you give him a new user ID?
    I dont think it is possible through configuration/authorization. You might have to use ABAP to meet the requirement.
    Regards,
    GSL.

  • Search Topics includes topics without search term

    In testing my .chm output, when I type in a search term and select the 'List Topics' button, the list of topics includes many topics that do not include the search term. I had assumed that the search function was a free text search, and would only include topics where the search term is present. Can someone clarify if my assumption is incorrect, or if there is some configuration change I need to make prior to generating the .chm to ensure only topics where the search term is present are included in the search results?

    Hi there
    Can you please clarify that a wee bit?
    What specific term are you finding that shouldn't be found? Please list some examples and perhaps we can offer alternatives or maybe explain why it's working as it is.
    Cheers... Rick
    Helpful and Handy Links
    RoboHelp Wish Form/Bug Reporting Form
    Begin learning RoboHelp HTML within the day - $24.95!
    Adobe Certified RoboHelp HTML Training
    SorcerStone Blog
    RoboHelp eBooks

  • Urgent !!! Master- Detail Search with Hide/Show option

    Hi,
    I have developed a master-detail OAF page with hide/show option.
    in my searching option i have both master and detail columns.
    How can i control detail level vo query.
    Eg. If i pass Item no in the searching option along with customer, i sould get only that item line for that CUST.
    I have created parameters in the main query and I am passing param values in a methos at AM.
    When i click on Show details its throwing exception.
    Can any one please help me how to acheive this. Its urgent...
    Thanks,

    Hi Gyan,
    Thanks for your reply.
    Master VO query:
    SELECT qfbp.pricing_attribute_context,
    qfbp.pricing_attribute,
    qfbp.comparison_operator_code,
    qfbp.pricing_attr_value_from,
    qfbp.pricing_attr_value_to,
    qfbp.adjustment_factor,
    qfbp.start_date_active,
    qfbp.end_date_active,
    qfbp.list_line_id,
    qfbp.factor_list_id
    FROM qpfv_factor_base_pricing_attrs qfbp
    WHERE qfbp.factor_list_id = NVL(:1,qfbp.factor_list_id)
    AND qfbp.pricing_attribute = NVL(:2,qfbp.pricing_attribute)
    AND qfbp.comparison_operator_code = NVL(:3,qfbp.comparison_operator_code)
    AND NVL(qfbp.pricing_attr_value_from,'xxxxx') = NVL(:4,NVL(qfbp.pricing_attr_value_from,'xxxxx'))
    AND NVL(qfbp.pricing_attr_value_to,'xxxxx') = NVL(:5,NVL(qfbp.pricing_attr_value_to,'xxxxx'))
    AND qfbp.adjustment_factor = NVL(:6,qfbp.adjustment_factor)
    Detail VO Query:
    SELECT qfapa.list_line_id, qfapa.pricing_attribute_context,
    qfapa.pricing_attribute, qfapa.pricing_attr_value_from,
    qfapa.pricing_attr_value_to, qfapa.factor_list_id,
    qfapa.comparison_operator_code, qfapa.pricing_attribute_id,
    qfapa.creation_date, qfapa.created_by, qfapa.last_update_date,
    qfapa.last_updated_by, qfapa.orig_sys_header_ref,
    qfapa.orig_sys_line_ref, qfapa.orig_sys_pricing_attr_ref
    FROM qpfv_factor_asso_pricing_attrs qfapa
    WHERE qfapa.pricing_attribute = NVL (:2, qfapa.pricing_attribute)
    AND qfapa.comparison_operator_code = NVL (:3, qfapa.comparison_operator_code)
    AND NVL (qfapa.pricing_attr_value_from, 'xxxxx') = NVL (:4, NVL (qfapa.pricing_attr_value_from, 'xxxxx'))
    AND NVL (qfapa.pricing_attr_value_to, 'xxxxx') = NVL (:5, NVL (qfapa.pricing_attr_value_to, 'xxxxx'))
    Iam using view link to display master detail results in one page.
    AM Code : Searcharttr method is for details VO.
    public void searchparams(OAPageContext pageContext, OAWebBean webBean)
    FactorListSearchVOImpl vo = getFactorListSearchVO1();
    String FactorlistName ="";
    String FactorListId ="";
    String PricingAttribute ="";
    String CompOperator ="";
    String PricingAttrValFrom ="";
    String PricingAttrValTo ="";
    String AdjustFactor ="";
    if (pageContext.getParameter("FactorListNameId")!=null&&!pageContext.getParameter("FactorListNameId").equals(""))
    FactorListId =pageContext.getParameter("FactorListId").toString();
    vo.setWhereClauseParam(0,FactorListId);
    else
    vo.setWhereClauseParam(0,null);
    if (pageContext.getParameter("BaseAttrTypeId")!=null&&!pageContext.getParameter("BaseAttrTypeId").equals(""))
    PricingAttribute =pageContext.getParameter("BaseAttrTypeId").toString();
    vo.setWhereClauseParam(1,PricingAttribute);
    else
    vo.setWhereClauseParam(1,null);
    if (pageContext.getParameter("BaseOperator")!=null&&!pageContext.getParameter("BaseOperator").equals(""))
    CompOperator =pageContext.getParameter("BaseOperator").toString();
    vo.setWhereClauseParam(2,CompOperator);
    else
    vo.setWhereClauseParam(2,null);
    if (pageContext.getParameter("BaseAttrValueFrom")!=null&&!pageContext.getParameter("BaseAttrValueFrom").equals(""))
    PricingAttrValFrom =pageContext.getParameter("BaseAttrValueFrom").toString();
    vo.setWhereClauseParam(3,PricingAttrValFrom);
    else
    vo.setWhereClauseParam(3,null);
    if (pageContext.getParameter("BaseAttrValueTo")!=null&&!pageContext.getParameter("BaseAttrValueTo").equals(""))
    PricingAttrValTo =pageContext.getParameter("BaseAttrValueTo").toString();
    vo.setWhereClauseParam(4,PricingAttrValTo);
    else
    vo.setWhereClauseParam(4,null);
    if (pageContext.getParameter("BaseAdustFactor")!=null&&!pageContext.getParameter("BaseAdustFactor").equals(""))
    AdjustFactor =pageContext.getParameter("BaseAdustFactor").toString();
    vo.setWhereClauseParam(5,AdjustFactor);
    else
    vo.setWhereClauseParam(5,null);
    public void searchattrparams(OAPageContext pageContext, OAWebBean webBean)
    FactorListSearchVOImpl vo = getFactorListSearchVO1();
    String AssoAttribute ="";
    String AssoOperator ="";
    String AssoAttrValFrom ="";
    String AssoAttrValTo ="";
    if (pageContext.getParameter("AsscAttrType1")!=null&&!pageContext.getParameter("AsscAttrType1").equals(""))
    AssoAttribute =pageContext.getParameter("AsscAttrType1").toString();
    vo.setWhereClauseParam(1,AssoAttribute);
    else
    vo.setWhereClauseParam(1,null);
    if (pageContext.getParameter("AsscOperator1")!=null&&!pageContext.getParameter("AsscOperator1").equals(""))
    AssoOperator =pageContext.getParameter("AsscOperator1").toString();
    vo.setWhereClauseParam(2,AssoOperator);
    else
    vo.setWhereClauseParam(2,null);
    if (pageContext.getParameter("AsscAttrValueFrom1")!=null&&!pageContext.getParameter("AsscAttrValueFrom1").equals(""))
    AssoAttrValFrom =pageContext.getParameter("AsscAttrValueFrom1").toString();
    vo.setWhereClauseParam(3,AssoAttrValFrom);
    else
    vo.setWhereClauseParam(3,null);
    if (pageContext.getParameter("AsscAttrValueTo1")!=null&&!pageContext.getParameter("AsscAttrValueTo1").equals(""))
    AssoAttrValTo =pageContext.getParameter("AsscAttrValueTo1").toString();
    vo.setWhereClauseParam(4,AssoAttrValTo);
    else
    vo.setWhereClauseParam(4,null);
    Iam getting below error:
    Error Page
    Exception Details.
    oracle.apps.fnd.framework.OAException: oracle.jbo.SQLStmtException: JBO-27122: SQL error during statement preparation. Statement: SELECT * FROM (SELECT qfapa.list_line_id, qfapa.pricing_attribute_context,
    qfapa.pricing_attribute, qfapa.pricing_attr_value_from,
    qfapa.pricing_attr_value_to, qfapa.factor_list_id,
    qfapa.comparison_operator_code, qfapa.pricing_attribute_id,
    qfapa.creation_date, qfapa.created_by, qfapa.last_update_date,
    qfapa.last_updated_by, qfapa.orig_sys_header_ref,
    qfapa.orig_sys_line_ref, qfapa.orig_sys_pricing_attr_ref
    FROM qpfv_factor_asso_pricing_attrs qfapa
    WHERE qfapa.pricing_attribute = NVL (:2, qfapa.pricing_attribute)
    AND qfapa.comparison_operator_code = NVL (:3, qfapa.comparison_operator_code)
    AND NVL (qfapa.pricing_attr_value_from, 'xxxxx') = NVL (:4, NVL (qfapa.pricing_attr_value_from, 'xxxxx'))
    AND NVL (qfapa.pricing_attr_value_to, 'xxxxx') = NVL (:5, NVL (qfapa.pricing_attr_value_to, 'xxxxx'))) QRSLT WHERE (LIST_LINE_ID = :1)
         at oracle.apps.fnd.framework.OAException.wrapperException(OAException.java:891)
         at oracle.apps.fnd.framework.webui.OAPageErrorHandler.prepareException(OAPageErrorHandler.java:1145)
         at oracle.apps.fnd.framework.webui.OAPageBean.renderDocument(OAPageBean.java:2970)
         at oracle.apps.fnd.framework.webui.OAPageBean.renderDocument(OAPageBean.java:2767)
         at OA.jspService(OA.jsp:41)
         at com.orionserver.http.OrionHttpJspPage.service(OrionHttpJspPage.java:56)
         at oracle.jsp.runtimev2.JspPageTable.service(JspPageTable.java:317)
         at oracle.jsp.runtimev2.JspServlet.internalService(JspServlet.java:465)
         at oracle.jsp.runtimev2.JspServlet.service(JspServlet.java:379)
         at javax.servlet.http.HttpServlet.service(HttpServlet.java:853)
         at com.evermind.server.http.ServletRequestDispatcher.invoke(ServletRequestDispatcher.java:727)
         at com.evermind.server.http.ServletRequestDispatcher.forwardInternal(ServletRequestDispatcher.java:306)
         at com.evermind.server.http.HttpRequestHandler.processRequest(HttpRequestHandler.java:767)
         at com.evermind.server.http.HttpRequestHandler.run(HttpRequestHandler.java:259)
         at com.evermind.server.http.HttpRequestHandler.run(HttpRequestHandler.java:106)
         at EDU.oswego.cs.dl.util.concurrent.PooledExecutor$Worker.run(PooledExecutor.java:803)
         at java.lang.Thread.run(Thread.java:534)
    ## Detail 0 ##
    java.sql.SQLException: ORA-01008: not all variables bound

  • Customer Master load- search temr 2 issue

    Hi  Guys,
       I m working on customer master data mogration. I am using the std program 'RFBIDE00'. But while creating the customer, general data(KNA1). I am not able to populate the field, search term 2. I am not able to find the same field in KNA! strucutre in lsmw. Can anyone please help me on this.
    Regards,
    Konchuus

    Hi,
    Since the address Details are stored in ADRC and ADDR_DATA table and not KNA1.So search term2 is not updated using Standard program which updates the Data in XD01.Once the Customers are created do a Simple recording of the address fields for customers created for Transaction XD02.search term2 will get updated.
    Regards,
    Rahul

  • Robohelp 9: Error when using search terms including the word "not"

    We are moving from Robohelp 7 to Robohelp 9.  We realize that Boolean operators such as NOT are supposed to be working now, but we do have times when we might find ourselves using search terms that include the word "not" on its own.
    The problem that we are finding is that if we search for something like "office not installed", because that phrase is part of a specific error message we might be trying to locate, we are getting the error, "The words you typed is not a valid expression" [sic].
    We have tried making modifications to the Stop Words and Always Ignore words and can't seem to find a solution.  We do need to be able to search using the word "not" as a regular search term.  Even as a Boolean operator (NOT), we are getting the same error.  Searching for "office installed" will get us the result that we want, but we have a team of users who will definitely instinctually search using the word "not" since it's part of the error they are searching for.
    Thoughts?

    Hi Benjamin
    First, I don't believe the Always Ignore has anything to do with Searching. That particular list is used when you instruct RoboHelp to build an index using the Smart Index Wizard.
    Actually, something like "Office Not Installed" is a perfect use of the Index. But I'm guessing here that your system doesn't include an index in favor of trawling through the pile of words in the project.
    If you aren't using an index yet, I'd highly suggest you investigate it. In a properly indexed system your users will find what they are looking for infinitely faster and easier than they ever will by using Search.
    Just a thought... Rick
    Helpful and Handy Links
    RoboHelp Wish Form/Bug Reporting Form
    Begin learning RoboHelp HTML 7, 8 or 9 within the day!
    Adobe Certified RoboHelp HTML Training
    SorcerStone Blog
    RoboHelp eBooks

Maybe you are looking for

  • How can I transfer my whole iTunes library from a PC to another without losing any information?

    Hi, I have a very large iTunes library which is the result of so many years of listening to music. Although my computer is pretty old and slow and I would like to buy me another one. However, I cannot risk losing all the playcounts, ratings and infor

  • Why can't I add links to sociocons in Mail signatures?

    I'd like to find out how I can add sociocons (small icons that link to social media web pages) to my Mail signature. I can do it easily in MS Outlook for Mac, but I cannot get the images (icons) to accept links in Mac Mail signatures. There's no opti

  • Editable regions in child page

    Hi all. Dreamweaver 8. I have a template with two editable regions, Header and Body. I have a new page, and I want to apply the template. I am prompted to move the content to the new regions. Is my new child page supposed to have editable regions wit

  • "Moving" Tiger and Leopard OS's from G4 (32b) to G5 (64b)

    I plan to image Tiger (10.4) and Leopard (10.5) from my Power Mac G4 (Quicksilver 2002) to a recently acquired a Power Mac G5 (Early 2005). My questions are: 1. Tiger and Leopard were installed on a G4, a 32 bit processor, but the G5 is a 64 bit proc

  • Query consuming more time

    Hi, Db: Oracle 9.2.0 OS: AIX. We are running the below report. and it takes around 6 hours. I want to know exactly where the issue is. else, please refer me any gud doc id for query tuning. SELECT FLT . MEANING "Bank Name" , PPV . EMPLOYEE_NUMBER "Em