How is html page outputed when using taglib and xml ?

Dear all,
          I am a newbie for taglib and xml. Today, when I read some source code of a
          website, I found that there is a entry like
          "%@ taglib uri="/tlds/taglib.tld" prefix="myprefix" %>",
          and some other entries like
          "<myprefix:Content area="<%=contentArea%>" />"
          I opened the specifized file taglib.tld and saw a tag entry named "Content",
          its tagclass is com.mycom.presentation.taglib.ContentTag. Again I opend a
          java class file "ContentTag.java" and saw some setXXX methods and doXXX
          methods. I donot know how is the webpage outputed. Can someone give me a
          detailed description about that? I will greatly appreciate your help.
          Some source code segments are listed as follows:
          test.jsp:
          <%@ taglib uri="/tlds/taglib.tld" prefix="myprefix" %>
          <td>
          <myprefix:Content body="<%=body%>" area="<%=contentArea%>"
          pageName="<%=pageName%>" />
          </td>
          taglib.tld:
          <?xml version="1.0" encoding="ISO-8859-1" ?>
          <!DOCTYPE taglib
          PUBLIC "-//Sun Microsystems, Inc.//DTD JSP Tag Library 1.1//EN"
          "http://java.sun.com/j2ee/dtds/web-jsptaglibrary_1_1.dtd">
          <tag>
          <name>Content</name>
          <tagclass>com.myprefix.presentation.taglib.ContentTag</tagclass>
          <bodycontent>JSP</bodycontent>
          <info>An tag which given the screen and element does the right content
          thing!</info>
          <attribute>
          <name>id</name>
          <required>false</required>
          <rtexprvalue>true</rtexprvalue>
          <!--type>String</type-->
          </attribute>
          <attribute>
          <name>pageName</name>
          <required>false</required>
          <rtexprvalue>true</rtexprvalue>
          <!--type>String</type-->
          </attribute>
          <attribute>
          <name>area</name>
          <required>false</required>
          <rtexprvalue>true</rtexprvalue>
          <!--type>String</type-->
          </attribute>
          <attribute>
          <name>body</name>
          <required>false</required>
          <rtexprvalue>true</rtexprvalue>
          <!--type>long</type-->
          </attribute>
          </tag>
          ContentTag.java
          package com.mycom.presentation.taglib;
          import javax.servlet.*;
          import javax.servlet.http.*;
          import javax.servlet.jsp.JspTagException;
          import javax.servlet.jsp.tagext.BodyTagSupport;
          public class ContentTag extends BodyTagSupport {
          private String ......;
          public String ......;
          public ContentTag() {
          super();
          public void setPageName(String pageName) {
          this.pageName = pageName;
          public void setArea(String area) {
          this.area = area;
          public void setSegment(String segment) {
          this.segment = segment;
          if (segment!=null) // && !segment.equals("null")
          this.segment_set = true;
          public void setAdmin(String admin) {
          try{
          this.admin = Boolean.getBoolean(admin);
          } catch (Exception _) {
          debugCategory.debug("Setting admin err " + admin);
          public void setBody(String body)
          try {
          this.body = Long.parseLong(body);
          } catch (NumberFormatException ne) {
          debugCategory.debug("Setting body format err");
          public int doStartTag() {
          if (contentMap == null)
          HttpSession session = pageContext.getSession();
          if (segment==null)
          segment =
          (String)session.getAttribute(Parameters.segment_id);
          if (currentScreen==null)
          currentScreen =
          (String)session.getAttribute(Parameters.currentScreen);
          try{
          StateEngineProxy sep =
          (StateEngineProxy)session.getAttribute("stateMachine");
          ModelManager mm =
          (ModelManager)session.getAttribute("modelManager");
          if (sep == null||mm==null)
          sep = new StateEngineProxy();
          session.setAttribute("stateMachine", sep);
          mm = new ModelManager();
          mm.init(session, sep);
          session.setAttribute("modelManager", mm);
          if (body !=0)
          //content = (ContentAI)
          contentMap.get(Parameters.content_id+Long.toString(body));
          if (content==null)
          debugCategory.debug("Get by Body");
          mm.getContent(body);
          content =
          (ContentAI)session.getAttribute(Parameters.content);
          //contentMap.put(Parameters.content_id +
          Long.toString(body), content);
          file:// pageContext.setAttribute(CONTENT_MAP,
          contentMap, myScope);
          if (pageName!=null&&area!=null &&
          segment!=null&&segment!=""&&area!=""&&pageName!="")
          contentList = (Collection)
          mm.getContentBySegmentPageNameAndArea(segment,
          pageName, area);
          if(contentList!=null){
          Iterator it = contentList.iterator();
          if (it.hasNext()) {
          content = (ContentAI)it.next();
          session.setAttribute(Parameters.content,
          content);
          return EVAL_BODY_TAG;
          return EVAL_BODY_TAG;
          public int doEndTag() throws JspTagException {
          current = SUPPLIERSINFORMATION;
          pageContext.getOut().flush();
          if ( content != null
          && !currentScreen.equals(ScreenNames.CONTENT_LIST_URL)
          && !currentScreen.equals(ScreenNames.CONTENT_EDIT_URL))
          if ( !admin ){
          // include body?
          if
          rentScreen.equals(ScreenNames.CONTENT_NEWS_URL)){ 
          pageContext.getOut().println("<h3>" + content.getSubject() + "<br></h3>");
          pageContext.getOut().println("<!-- Subject[" + content.getSubject() + "]");
          pageContext.getOut().println("OrgID[" + content.getOrgId() + "]");
          pageContext.getOut().println("LogoPath[" + content.getLogoPath() + "]");
          pageContext.getOut().println("PageName[" + content.getPageName() + "]");
          pageContext.getOut().println("Area[" + content.getArea() + "]");
          pageContext.getOut().println("Segment[" + content.getSegment() + "]");
          pageContext.getOut().println("<!--Body[-->" + "<br>" + content.getBody() + "<!--]-->");
          return EVAL_PAGE;
          public int doAfterBody() throws JspTagException {
          return SKIP_BODY;
          public static String shortenLink(String link)
          

Hi Andy,
          The sequence of operations that happen when a JSP page encounters a Custome Tag are
          1. Find the class associated with the custom tag from the tld.
          2. The set and get methods that u find are for passing  the values for the tag attributes that u may need
          to pass.
          3. The Tag Lib class performs the operation specified and flushes the output to the jsp.
          For further understanding ..u can refer to these sites !!!
          http://java.sun.com/products/jsp/tutorial/TagLibrariesTOC.html
          http://www.weblogic.com/docs51/classdocs/API_taglib.html#intro
          Regards,
          Sundhar Subramanian
          Andy Ping wrote:
          > Dear all,
          >
          > I am a newbie for taglib and xml.  Today, when I read some source code of a
          > website, I found that there is a entry like
          >     "%@ taglib uri="/tlds/taglib.tld" prefix="myprefix" %>",
          > and some other entries like
          >     "<myprefix:Content  area="<%=contentArea%>"  />"
          > I opened the specifized file taglib.tld and saw a tag entry named "Content",
          > its tagclass is com.mycom.presentation.taglib.ContentTag.  Again I opend a
          > java class file "ContentTag.java" and saw some setXXX methods and doXXX
          > methods.  I donot know how is the webpage outputed.  Can someone give me a
          > detailed description about that?   I will greatly appreciate your help.
          > Some source code segments are listed as follows:
          >
          > ----------------
          > test.jsp:
          > ----------------
          > ...
          > <%@ taglib uri="/tlds/taglib.tld" prefix="myprefix" %>
          > ...
          > <td>
          >     <myprefix:Content body="<%=body%>" area="<%=contentArea%>"
          > pageName="<%=pageName%>" />
          > </td>
          > ...
          >
          > ----------------
          > taglib.tld:
          > ----------------
          > <?xml version="1.0" encoding="ISO-8859-1" ?>
          > <!DOCTYPE taglib
          >         PUBLIC "-//Sun Microsystems, Inc.//DTD JSP Tag Library 1.1//EN"
          >  "http://java.sun.com/j2ee/dtds/web-jsptaglibrary_1_1.dtd">
          > ......
          >   <tag>
          >     <name>Content</name>
          >     <tagclass>com.myprefix.presentation.taglib.ContentTag</tagclass>
          >     <bodycontent>JSP</bodycontent>
          >     <info>An tag which given the screen and element does the right content
          > thing!</info>
          >     <attribute>
          >       <name>id</name>
          >       <required>false</required>
          >       <rtexprvalue>true</rtexprvalue>
          >       <!--type>String</type-->
          >     </attribute>
          >     <attribute>
          >       <name>pageName</name>
          >       <required>false</required>
          >       <rtexprvalue>true</rtexprvalue>
          >       <!--type>String</type-->
          >     </attribute>
          >     <attribute>
          >       <name>area</name>
          >       <required>false</required>
          >       <rtexprvalue>true</rtexprvalue>
          >       <!--type>String</type-->
          >     </attribute>
          >     <attribute>
          >       <name>body</name>
          >    <required>false</required>
          >    <rtexprvalue>true</rtexprvalue>
          >       <!--type>long</type-->
          >     </attribute>
          >   </tag>
          > ......
          >
          > ----------------
          > ContentTag.java
          > ----------------
          > package com.mycom.presentation.taglib;
          >
          > import javax.servlet.*;
          > import javax.servlet.http.*;
          > import javax.servlet.jsp.JspTagException;
          > import javax.servlet.jsp.tagext.BodyTagSupport;
          > ...
          >
          > public class ContentTag extends  BodyTagSupport {
          >     private String ......;
          >     public String ......;
          >     ......
          >
          >     public ContentTag() {
          >         super();
          >     }
          >
          >     public void setPageName(String pageName) {
          >         this.pageName = pageName;
          >     }
          >
          >     public void setArea(String area) {
          >         this.area = area;
          >     }
          >
          >     public void setSegment(String segment) {
          >         this.segment = segment;
          >         if (segment!=null) // && !segment.equals("null")
          >         {
          >             this.segment_set = true;
          >         }
          >     }
          >
          >     public void setAdmin(String admin) {
          >         try{
          >             this.admin = Boolean.getBoolean(admin);
          >         } catch (Exception _) {
          >             debugCategory.debug("Setting admin err " + admin);
          >         }
          >
          >     }
          >     public void setBody(String body)
          >     {
          >         try {
          >          this.body = Long.parseLong(body);
          >         } catch (NumberFormatException ne) {
          >             debugCategory.debug("Setting body format err");
          >         }
          >     }
          >
          >     public int doStartTag() {
          >             if (contentMap == null)
          >             {
          >             }
          >    HttpSession session = pageContext.getSession();
          >             if (segment==null)
          >             {
          >                 segment =
          > (String)session.getAttribute(Parameters.segment_id);
          >             }
          >             if (currentScreen==null)
          >             {
          >                 currentScreen =
          > (String)session.getAttribute(Parameters.currentScreen);
          >             }
          >             try{
          >                 StateEngineProxy sep =
          >                     (StateEngineProxy)session.getAttribute("stateMachine");
          >                 ModelManager mm =
          > (ModelManager)session.getAttribute("modelManager");
          >                 if (sep == null||mm==null)
          >                 {
          >                     sep = new StateEngineProxy();
          >                     session.setAttribute("stateMachine", sep);
          >                     mm = new ModelManager();
          >                     mm.init(session, sep);
          >
          >                     session.setAttribute("modelManager", mm);
          >                 }
          >                 if (body !=0)
          >                 {
          >                     //content = (ContentAI)
          >                     //
          > contentMap.get(Parameters.content_id+Long.toString(body));
          >                     if (content==null)
          >                     {
          >                     debugCategory.debug("Get by Body");
          >                     mm.getContent(body);
          >                     content =
          > (ContentAI)session.getAttribute(Parameters.content);
          >
          >                     //contentMap.put(Parameters.content_id +
          > Long.toString(body), content);
          >                     file:// pageContext.setAttribute(CONTENT_MAP,
          > contentMap, myScope);
          >                     }
          >                 }
          >                 if (pageName!=null&&area!=null &&
          >                     segment!=null&&segment!=""&&area!=""&&pageName!="")
          >                 {
          >                      contentList = (Collection)
          >                          mm.getContentBySegmentPageNameAndArea(segment,
          > pageName, area);
          >                      if(contentList!=null){
          >                         Iterator it = contentList.iterator();
          >                         if (it.hasNext()) {
          >                             content = (ContentAI)it.next();
          >                             session.setAttribute(Parameters.content,
          > content);
          >                             return EVAL_BODY_TAG;
          >                         }
          >                      }
          >                 }
          >                 ...
          >            }
          >   return EVAL_BODY_TAG;
          >     }
          >
          >     public int doEndTag() throws JspTagException {
          >         current = SUPPLIERSINFORMATION;
          >         pageContext.getOut().flush();
          >         if ( content != null
          >             && !currentScreen.equals(ScreenNames.CONTENT_LIST_URL)
          >             && !currentScreen.equals(ScreenNames.CONTENT_EDIT_URL))
          >         {
          >             if ( !admin  ){
          >             // include body?
          >                 if
          > rentScreen.equals(ScreenNames.CONTENT_NEWS_URL)){
          >                     pageContext.getOut().println("<h3>" + content.getSubject() + "<br></h3>");
          >                 }
          >                 pageContext.getOut().println("<!-- Subject[" + content.getSubject() + "]");
          >                 pageContext.getOut().println("OrgID[" + content.getOrgId() + "]");
          >                 pageContext.getOut().println("LogoPath[" + content.getLogoPath() + "]");
          >                 pageContext.getOut().println("PageName[" + content.getPageName() + "]");
          >                 pageContext.getOut().println("Area[" + content.getArea() + "]");
          >                 pageContext.getOut().println("Segment[" + content.getSegment() + "]");
          >                 pageContext.getOut().println("<!--Body[-->" + "<br>" + content.getBody() + "<!--]-->");
          >             }
          >         }
          >  return EVAL_PAGE;
          >     }
          >
          >     public int doAfterBody() throws JspTagException {
          >         return SKIP_BODY;
          >     }
          >
          >     public static String shortenLink(String link)
          >     {
          >        ...
          >     }
          > }
          

Similar Messages

  • How to execute the *.sql when using occi  and vc

    help me!
    i must to initialize the remote database using the file of sql,
    for example:
    the file is ss.sql;
    and it is
    "DECLARE
    row integer := 0;
    user varchar2(256);
    BEGIN
    user := '&1';
    dbms_java.grant_policy_permission('PUBLIC', 'SYS',
    'java.lang.RuntimePermission', 'loadLibrary.*', row);
    dbms_java.grant_permission(user, 'SYS:java.lang.RuntimePermission',
    'loadLibrary.orawcom10', null);
    dbms_java.disable_permission(row);
    dbms_java.delete_permission(row);
    EXCEPTION
    WHEN OTHERS THEN
    IF row > 0 THEN
    dbms_java.disable_permission(row);
    dbms_java.delete_permission(row);
    END IF;
    RAISE;
    END;"
    i use the occi statement
    Environment * env;
    Connection * conn;
    Statement * stmt;
    env=Environment::createEnvironment(Environment::DefaultEnvironment);
    conn=env->createConnect(user_name,pwd,db_name);
    string sqlstmt=''BEGIN ss.sql;END";
    stmt=conn->createStatement(sqlstmt);
    it is wrong
    how do i change the sql statement???

    Hi,
    Instead of having the PL/SQL code as an anonymous block, you can create
    a procedure and then execute it through OCCI.
    For example:
    create or replace procedure my_proc
    is
    row integer := 0;
    user varchar2(256);
    begin
    --code here...
    end;
    I assume this code will be in ss.sql. Compile this procedure in
    your schema and then form the sqlstmt in OCCI this way:
    Statement *stmt = con->createStatement("BEGIN my_proc; END;") ;
    Rgds.
    Amogh

  • How to solve power error when using USB camera adapter in your camera

    Hello Everyone,
    First of all I wanna say reducing the output of the USB camera adapter from 100mA to 20mA just to save battery life is by far the most incredible adjustment in the history of @)#*$#%*($#!
    I know most of us bought the USB Camera adapter so we can use it as a USB adapter for the Camera (saves us from taking the memory card on and off the camera) but sadly the "Ginues Apple" reduced it to 20mA which decreases the range of cameras and flash drives that will work with it. I use Gopro Hero 3+ black and everytime I plug it with the adapter to my ipad I keep on seeing this @#@$#@ power error. I didn't want to waste the expensive adapter so I tried to look for a micro sd card reader but I don't think 20mA readers still exist.
    Now to solve this problem is very simple add a power source to help that 20mA up, most of the my friends bought a powered port hub but it's not my type because it's bulky, needs an outlet and not portable.
    So I found a better solution on how you can add a power source and still be portable, the answer is power bank or portable charger.
    Things you need:
    Camera
    USB camera adapter (Ginues Apple product)
    Power bank (I'm using 8,400 mAh)
    Dual USB Male to 5 Pin Mini USB Y Cable
    Ipad
    Procedure:
    Camera --- 5 Pin Mini USB ------------------ USB camera adapter ---------- Ipad
                                                   '---------- Power Bank
    Attach you camera to the 5 pin mini usb then the USB1 male to the female apple's USB camera adapter then to the Ipad. = this will show the power error.
    Then attach the USB2 to the power bank/portable charger to power it up.
    your welcome

    yocto yotta wrote: How to charge iPad Air when using the camera connection kit?
    No can do, Skippy!

  • How to embed a HTML Page in a Web Template and display it

    Hi All
    Can you please share ideas how I can embed a HTML page in a web template and how I can make it displayed as a popup when a button is pressed.
    Also, how do I call a HTML page stored in Portal KM from the press of a button in the web template.
    Your help is greatly appreciated.
    Thanks
    Karen

    Using C# or javascript to authenticate the user to AD to read the property directly will be very difficult. Creating a custom user profile property and adding a sync from AD to that property is definitely the easiest way to do what you are describing.
     Once its in User Profiles there are lots of samples on how to add it to the page.  
    Paul Stork SharePoint Server MVP
    Principal Architect: Blue Chip Consulting Group
    Blog: http://dontpapanic.com/blog
    Twitter: Follow @pstork
    Please remember to mark your question as "answered" if this solves your problem.

  • How do I close a JInternalFrame when using subclasses and a separate cla...

    The heading should be: How do I close a JInternalFrame when using subclasses and a separate class for the actionListener?
    I have just created a JInternalFrame appclication and now I want to structure up my code. I have a Superclass that contains the usual settings for the two JInternalFrame:s, and the two subclasses with frame specific information. Both the JInternalFrames use the same OK button. I want to have the actionListener outside the classes to avoid repetition of code. But the dispose()-function does not work properly, it does not close the opened JInternalFrame. What�s wrong?
    class Superclass extends JFrame
         JButton b= new JButton("ok");    
         Superclass()
    class Subclass1 extends Superclass
         Subclass1 ()
              add(ok);
           ok.addActionListener(new Listener());
    class Subclass2 extends Superclass
         Subclass2 ()
              add(ok);
           ok.addActionListener(new Listener());
    class Listener extends Superclass implements ActionListener
         public void actionPerformed(ActionEvent e)
                   dispose();
    }How do I controll in the Listener class that the button in Subclass1 is beeing pressed?

    First of all I think I misunderstood your question. You said you had two internal frames, so I thought you wanted to close the internal frame.
    It now looks to me like you want to close the entire JFrame, which makes the code even a little easier. Something like:
    JComponent component = (JComponent)event.getSource();
    JFrame frame = (JFrame)SwingUtilities.windowForComponent( component );
    frame.dispose();
    Ok, I will make a try:
    public static Container getAncestorOfClass(Class c, Component comp)
    w.getAncestorOfClass(w, this); Fiirst you need to learn the basics of reading the API.
    "getAncestorOfClass()" is a static method. That means you don't use a variable to invoke the method. You use the class itself.
    "w" is a variable, which is a JFrame, but that is not what the first parameter should be. The first parameter is a "Class".
    "this" will refer to your Listener class, but you need the Component that generated the ActionEvent.
    When I thought you wanted to close an internal frame then the code would have been something like:
    JComponent component = (JComponent)event.getSource();
    Container container = SwingUtilities.getAncesterOfClass( JInternalFrame.class, component );
    JInternalFrame internalFrame = (JInternalFrame)container;
    internalFrame.invokeSomeMethodHere();If you need further help then you need to create a "Short, Self Contained, Compilable and Executable, Example Program (SSCCE)", that demonstrates the incorrect behaviour.
    http://homepage1.nifty.com/algafield/sscce.html

  • How to hide system tables when using the Oracle SQL Developer?

    Hi,
    I would like to know how can I show only the tables that I created under the Tables tree? I didnt find a way to create a separate database using the Oracle Sql Developer. I see all the tables together, and would like to differentiate between different databases.
    Can anyone explain to me how to do these things?
    Thanks,

    Hi,
    I would like to know how can I show only the tables that I created under the Tables tree? Your posting is not clear,again tell something more on tables tree,what u want to achieve with it.
    How to hide system tables when using the Oracle SQL Developer? if u connected with sys, system or user with dba role then u have a privilege to see these tables,so revoke the privilege/role from ur user to view this tables if ur connected other then sys,system,
    I didnt find a way to create a separate database using the Oracle Sql Developer. DBCA is a tool for creating the new database.
    Kuljeet

  • Ques;How  do you secure imail when used being used in iweb. People can mess

    How do you secure imail when used being used in iweb? People can mess w/my settings in iweb imail window.

    What is iMail?
    And what is an iWeb iMail window?
    iWeb is part of iLife 06 which is an application used to create websites hosted on .Mac.
    Are you referring to Apple's Mail application and webmail access using a browser such as Safari to access your .Mac account?
    Which people can mess with what settings? You shouldn't allow anyone else to access your Mac when logged in to your account and home folder/directory. OS X was designed for multiple users of the same Mac with each regular user having their own computer login account (with or without admin privileges) and associated home folder/directory to store and access their data and settings for their login account only.

  • Does anyone know how to load ACR presets when using ACR in the creative cloud?

    Does anyone know how to load ACR presets when using ACR in the creative cloud?

    Moving the discussion to Adobe Camera Raw forum.
    Thanks,
    Atul Saini

  • Pages disappear when using xoffset

    Can anyone tell me why my pages disappear when using "crop pages xoffset" in Acrobat Pro XI?  It works fine in Acrobat Pro 9.

    The system has 4GB of memory.  The processor is Intel Core i5 - 2400.
    As per your suggestion, I updated the driver for the integrated graphics
    card (Intel Graphics HD 2000).  The new driver is dated January 2014.  The
    old driver was dated June 2011.
    I tried to replicate the blank pages situation, and none went blank.   Will
    continue to test over the next week or so, but this looks very promising.
    Many, many thanks, Pat!

  • How to create a follow up page in scripts using Duplex and Tumble Duplex

    How to create a follow up page in scripts using Duplex and Tumble Duplex in print mode of scripts ?

    Hi ,
    Set the next page property as duplex , and change the print property back to back

  • How to parser a HTML page to get its variable and values?

    Hi, everyone, here is my situation:
    I need to parser a HTML page to get the variables and their associated values between <form>...</form> tag. for example, if you have a piece of HTML as below
    <form>
    <input type = "hidden" name = "para1" value = "value1">
    <select name = "para2">
    <option>value2</option>
    </form>
    the actual page is much complex than this. I want retrive pare1 = value1 and para2 = value2, I tried Jtidy but it doesn't reconginze select, could you recomend some good package this purpose? better with sample code.
    Thanks a lot
    Kevin

    See for example Request taglib from Coldtags suite:
    http://www.servletsuite.com/jsp.htm

  • How to avoid data repetation when using select statements with innerjoin

    how to avoid data repetation when using select statements with innerjoin.
    thanks in advance,
    satheesh

    you can use a query like this...
      SELECT DISTINCT
             frg~prc_group1                  "Product Group 1
             frg~prc_group2                  "Product Group 2
             frg~prc_group3                  "Product Group 3
             frg~prc_group4                  "Product Group 4
             frg~prc_group5                  "Product Group 5
             prc~product_id                  "Product ID
             txt~short_text                  "Product Description
    UP TO 10 ROWS
    INTO TABLE l_i_data
    FROM
    Joining CRMM_PR_SALESG and
    COMM_PR_FRG_ROD
    crmm_pr_salesg AS frg
    INNER JOIN comm_pr_frg_rod AS prd
    ON frgfrg_guid = prdfragment_guid
    Joining COMM_PRODUCT and
    COMM_PR_FRG_ROD
    INNER JOIN comm_product AS prc
    ON prdproduct_guid = prcproduct_guid
    Joining COMM_PRSHTEXT and
    COMM_PR_FRG_ROD
    INNER JOIN comm_prshtext AS txt
    ON prdproduct_guid = txtproduct_guid
    WHERE frg~prc_group1 IN r_zprc_group1
       AND frg~prc_group2 IN r_zprc_group2
       AND frg~prc_group3 IN r_zprc_group3
       AND frg~prc_group4 IN r_zprc_group4
       AND frg~prc_group5 IN r_zprc_group5.
    reward it it helps
    Edited by: Apan Kumar Motilal on Jun 24, 2008 1:57 PM

  • How to sync/edit audio when using frame freeze or time remapping?

    how to sync/edit audio when using frame freeze or time remapping? in premiere pro cs6

    You need to give more information about what you want to happen to the audio when you freeze or time remap the associated video.
    Is it synch video?
    Is it music?
    Is it Voice?
    Generally .. you have to cut and design the audio around the video effect.

  • How do I lock safesearch when using BING

    how do I lock safesearch when using BING search engine

    I assume you're using the "Content Aware" option for the Spot Healing brush.  It can be a maddeningly stupid option -- there's no telling from how far away it will pull the replacement pixels and will leave streaks that can be very difficult to remove.
    It would be best for you to include a sample image that's giving you the problem so we can suggest the best way to attack it.
    In general, the "Content Aware" option works best when you use a very small brush size.  That pulls in pixels closer to the area you want to heal.  If you get streaks, sometimes you can use the Spot Healing brush to get rid of them by going over the area in a perpendicular direction to the streaks.
    Ken

  • Create a follow up page in scripts using Duplex and Tumble Duplex in print

    How to create a follow up page in scripts using Duplex and Tumble Duplex in print mode of scripts ?

    it depends upon output device types.
    Regards
    Prabhu

Maybe you are looking for