CS5: Error with single-column single-row frameset

I've tried everything I can think of to get Dreamweaver to accept a framset consisting of one column and one row. Though valid, Dreamweaver does not seem to accept this, displaying an error message and adding a second row (without asking). The error message is "Frameset contains no ROWS or COLS values. Defaulting to 2 rows."
Here is an example:
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Frameset//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-frameset.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>Untitled Document</title>
</head>
<frameset rows="100%" frameborder="no" border="0" framespacing="0">
<frame src="http://sites.google.com/site/test1" name="mainFrame" id="mainFrame" title="mainFrame" />
</frameset>
<noframes><body>
</body></noframes>
</html>
Since someone will undoubtedly ask why I am doing this, I'll go ahead and give the answer. The short answer is that the site is a Google Sites site using a custom domain. More specifically, I am using a frameset for the following reasons:
Domain Frame Redirect
Using a frameset is a common technique for redirecting a browser to a different domain while still displaying the original domain in the address bar. This little deception is necessary to avoid visitors being confused by the domain changing to something other than what they expect to see.
Complete Analytic Data
All analytic data concerning where visitors come from would be lost without a frame redirect. Visitors would always appear to be coming from the custom domain. But, since the frameset is hosted under the custom domain and not the Google Sites domain, the tracking code can span both domains.
Unique Landing Page
A frame redirect allows use of a unique landing page. Google Sites inherently requires every page to use the same overall layout. However, a frame redirect can point to a custom landing page hosted with the frameset where it is not restricted at all by Google Sites. The custom landing page will then have each link pointing to a page on the Google Sites site

This bug automatically changes the frameset attribute as soon as the page is opened.
Would you happen to know of a way to stop the automated change to the frameset?

Similar Messages

  • I use "element 12" and want  like in the old PS version due Automating and Contact  II upload multiple filesand print them with any columns and rows on the same page . How does it work?

    I use "element 12" and want  like in the old PS version due Automating and Contact  II upload multiple filesand print them with any columns and rows on the same page . How does it work?

    Can you supply a link?

  • Convert single column into rows

    hi Gurus,
    I have one table test colums are id and name.
    id number
    name varchar2
    data is like
    id name
    1 xy
    2 xyy
    3 mm
    4 pp
    Now my requirement is to convert single column id into rows
    i,e my output should be of singel rows like :- 1,2,3,4
    How to achive this result .
    I dont have any idea to do this query.
    Please help guys.
    Thanks in advance.
    Vijay

    Well,
    As long as your code doesn't have to run in production, simplest way is:
    WM_CONCAT (but it's not documented)
    or use XMLAGG, it's simpler than a connect by:
    MHO%xe> with t as (
      2  select 1 col, 'xy' str from dual union all
      3  select 2, 'xyy' from dual union all
      4  select 3, 'mm'from dual union all
      5  select 4, 'pp' from dual union all
      6  select 8, 'pp' from dual union all
      7  select 12, 'pp' from dual union all
      8  select 40, 'pp' from dual
      9  )-- actual query, based on id's generated above:
    10  select rtrim(xmlagg(xmlelement(e,col||',')).extract('//text()'),',') col
    11  from   t;
    COL
    1,2,3,4,8,12,40
    1 rij is geselecteerd.

  • Single Column Multiple Rows

    Dear All,
    I want a solution for the following,
    If there is a column Ename with n number rows, i want the rows to be reterived like the following ename1,ename2.....
    I don't know how many rows will be there and the sql query should be of dynamic..
    please throw some light....

    You can also use the aggregate package for varchar2 for exemple :
    create or replace type string_agg_type as object
    total varchar2(4000),
    static function
    ODCIAggregateInitialize(sctx IN OUT string_agg_type )
    return number,
    member function
    ODCIAggregateIterate(self IN OUT string_agg_type ,
    value IN varchar2 )
    return number,
    member function
    ODCIAggregateTerminate(self IN string_agg_type,
    returnValue OUT varchar2,
    flags IN number)
    return number,
    member function
    ODCIAggregateMerge(self IN OUT string_agg_type,
    ctx2 IN string_agg_type)
    return number
    create or replace type body string_agg_type
    is
    static function ODCIAggregateInitialize(sctx IN OUT string_agg_type)
    return number
    is
    begin
    sctx := string_agg_type( null );
    return ODCIConst.Success;
    end;
    member function ODCIAggregateIterate(self IN OUT string_agg_type,
    value IN varchar2 )
    return number
    is
    begin
    self.total := self.total || ',' || value;
    return ODCIConst.Success;
    end;
    member function ODCIAggregateTerminate(self IN string_agg_type,
    returnValue OUT varchar2,
    flags IN number)
    return number
    is
    begin
    returnValue := ltrim(self.total,',');
    return ODCIConst.Success;
    end;
    member function ODCIAggregateMerge(self IN OUT string_agg_type,
    ctx2 IN string_agg_type)
    return number
    is
    begin
    self.total := self.total || ctx2.total;
    return ODCIConst.Success;
    end;
    end;
    CREATE or replace
    FUNCTION stragg(input varchar2 )
    RETURN varchar2
    PARALLEL_ENABLE AGGREGATE USING string_agg_type;
    select deptno, stragg(ename)
    from emp
    group by deptno
    DEPTNO
    STRAGG(ENAME)
    10
    CLARK,KING,MILLER
    20
    SMITH,FORD,ADAMS,SCOTT,JONES
    30
    ALLEN,BLAKE,MARTIN,TURNER,JAMES,WARD
    would be the approach.

  • Error with JSF for Single Page in MY Project But rmaining pages are working

    SEVERE: Servlet.service() for servlet Faces Servlet threw exception
    javax.servlet.jsp.JspException: The absolute uri: http://java.sun.com/jsf/core cannot be resolved in either web.xml or the jar files deployed with this application
    at tags.templates.InsertTag.doEndTag(InsertTag.java:26)
    at org.apache.jsp.updatetpl_jsp._jspx_meth_template_insert_0(updatetpl_jsp.java:123)
    at org.apache.jsp.updatetpl_jsp._jspService(updatetpl_jsp.java:65)
    at org.apache.jasper.runtime.HttpJspBase.service(HttpJspBase.java:97)
    at javax.servlet.http.HttpServlet.service(HttpServlet.java:802)
    at org.apache.jasper.servlet.JspServletWrapper.service(JspServletWrapper.java:322)
    at org.apache.jasper.servlet.JspServlet.serviceJspFile(JspServlet.java:291)
    at org.apache.jasper.servlet.JspServlet.service(JspServlet.java:241)
    at javax.servlet.http.HttpServlet.service(HttpServlet.java:802)
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:252)
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:173)
    at org.netbeans.modules.web.monitor.server.MonitorFilter.doFilter(MonitorFilter.java:362)
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:202)
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:173)
    at org.apache.catalina.core.ApplicationDispatcher.invoke(ApplicationDispatcher.java:672)
    at org.apache.catalina.core.ApplicationDispatcher.processRequest(ApplicationDispatcher.java:463)
    at org.apache.catalina.core.ApplicationDispatcher.doForward(ApplicationDispatcher.java:398)
    at org.apache.catalina.core.ApplicationDispatcher.forward(ApplicationDispatcher.java:301)
    at com.sun.faces.context.ExternalContextImpl.dispatch(ExternalContextImpl.java:322)
    at com.sun.faces.application.ViewHandlerImpl.renderView(ViewHandlerImpl.java:130)
    at com.sun.faces.lifecycle.RenderResponsePhase.execute(RenderResponsePhase.java:87)
    at com.sun.faces.lifecycle.LifecycleImpl.phase(LifecycleImpl.java:200)
    at com.sun.faces.lifecycle.LifecycleImpl.render(LifecycleImpl.java:117)
    at javax.faces.webapp.FacesServlet.service(FacesServlet.java:198)
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:252)
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:173)
    at org.netbeans.modules.web.monitor.server.MonitorFilter.doFilter(MonitorFilter.java:362)
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:202)
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:173)
    at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:213)
    at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:178)
    at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:126)
    at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:105)
    at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:107)
    at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:148)
    at org.apache.coyote.http11.Http11Processor.process(Http11Processor.java:856)
    at org.apache.coyote.http11.Http11Protocol$Http11ConnectionHandler.processConnection(Http11Protocol.java:744)
    at org.apache.tomcat.util.net.PoolTcpEndpoint.processSocket(PoolTcpEndpoint.java:527)
    at org.apache.tomcat.util.net.LeaderFollowerWorkerThread.runIt(LeaderFollowerWorkerThread.java:80)
    at org.apache.tomcat.util.threads.ThreadPool$ControlRunnable.run(ThreadPool.java:684)
    at java.lang.Thread.run(Thread.java:595)
    update.jsp
    <%@page contentType="text/html"%>
    <%@page pageEncoding="UTF-8"%>
    <%@taglib prefix="f" uri="http://java.sun.com/jsf/core"%>
    <%@taglib prefix="h" uri="http://java.sun.com/jsf/html"%>
    <%--
    The taglib directive below imports the JSTL library. If you uncomment it,
    you must also add the JSTL library to the project. The Add Library... action
    on Libraries node in Projects view can be used to add the JSTL 1.1 library.
    --%>
    <%--
    <%@taglib uri="http://java.sun.com/jsp/jstl/core" prefix="c"%>
    --%>
    <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"
    "http://www.w3.org/TR/html4/loose.dtd">
    <f:view>
    <h:form id="customerform">
    <h:dataTable id="updatecustomers" value="#{data.updateModel}" var="updat">
    <h:column>
    <f:facet name="header">
    <h:outputText value="CustomerNumber"/>
    </f:facet>
    <h:inputText value="#{updat.customerNumber}"/>
    </h:column>
    <h:column>
    <f:facet name="header">
    <h:outputText value="FirstName"/>
    </f:facet>
    <h:inputText value="#{updat.firstName}"/>
    </h:column>
    <h:column>
    <f:facet name="header">
    <h:outputText value="LastName"/>
    </f:facet>
    <h:inputText value="#{updat.lastName}"/>
    </h:column>
    <h:column>
    <f:facet name="header">
    <h:outputText value="StreetAddress"/>
    </f:facet>
    <h:inputText value="#{updat.streetAddress}"/>
    </h:column>
    <h:column>
    <f:facet name="header">
    <h:outputText value="City"/>
    </f:facet>
    <h:selectOneMenu id="chooseCity" value="#{updat.city}"required="true">
    <f:selectItem itemValue="TVM" itemLabel="TVM"/>
    <f:selectItem itemValue="Cochin" itemLabel="Cochin"/>
    <f:selectItem itemValue="Bglr" itemLabel="Bglr"/>
    <f:selectItem itemValue="Mysore" itemLabel="Mysore"/>
    <f:selectItem itemValue="Calicut" itemLabel="Calicut"/>
    </h:selectOneMenu>
    </h:column>
    <h:column>
    <f:facet name="header">
    <h:outputText value="State"/>
    </f:facet>
    <h:selectOneMenu id="chooseState" value="#{updat.state}"required="true">
    <f:selectItem itemValue="KL" itemLabel="Kerala"/>
    <f:selectItem itemValue="KA" itemLabel="Karanataka"/>
    </h:selectOneMenu>
    </h:column>
    <h:column>
    <f:facet name="header">
    <h:outputText value="Zip"/>
    </f:facet>
    <h:inputText value="#{updat.zip}"/>
    </h:column>
    <h:column>
    <f:facet name="header">
    <h:outputText value="Save"/>
    </f:facet>
    <h:commandButton id="savesubmit" value="Save" action="#{data.saveData}">
    </h:commandButton>
    </h:column>
    </h:dataTable>
    </h:form>
    </f:view>
    web.xml
    <?xml version="1.0" encoding="UTF-8"?>
    <web-app version="2.4" xmlns="http://java.sun.com/xml/ns/j2ee" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://java.sun.com/xml/ns/j2ee http://java.sun.com/xml/ns/j2ee/web-app_2_4.xsd">
    <context-param>
    <param-name>com.sun.faces.verifyObjects</param-name>
    <param-value>false</param-value>
    </context-param>
    <context-param>
    <param-name>com.sun.faces.validateXml</param-name>
    <param-value>true</param-value>
    </context-param>
    <context-param>
    <param-name>javax.faces.CONFIG_FILES</param-name>
    <param-value>/WEB-INF/faces-config.xml</param-value>
    </context-param>
    <context-param>
    <param-name>javax.faces.STATE_SAVING_METHOD</param-name>
    <param-value>client</param-value>
    </context-param>
    <servlet>
    <servlet-name>Faces Servlet</servlet-name>
    <servlet-class>javax.faces.webapp.FacesServlet</servlet-class>
    <load-on-startup>1</load-on-startup>
    </servlet>
    <servlet-mapping>
    <servlet-name>Faces Servlet</servlet-name>
    <url-pattern>*.faces</url-pattern>
    </servlet-mapping>
    <!-- JSF Config Listener -->
    <listener>
    <listener-class>com.sun.faces.config.ConfigureListener</listener-class>
    </listener>
    <session-config><session-timeout>
    30
    </session-timeout></session-config>
    <welcome-file-list><welcome-file>
    index.jsp
    </welcome-file></welcome-file-list>
    <taglib>
         <taglib-uri>/WEB-INF/tlds/template.tld</taglib-uri>
         <taglib-location>/WEB-INF/tlds/template.tld</taglib-location>
    </taglib>
    </web-app>
    please help me i am working with net beaans............i have added all required .jar files with that.

    The question mark icon on the dlls indicates that LabVIEW is unsure of
    the location of the DLL, or is unable to locate the DLL on your
    system.  This can happen if the DLLs do not exist, or if the "Call
    Library Function Node" just specifies the name of the dll, and not the
    entire path to the dll.  IVI and Instrument driver VIs will
    typically not supply the entire path to the DLL, whch would cause the
    question mark icon to appear.
    If your application is working properly, then you should ignore the
    question mark in the dependencies list.  If your application is
    broken because the DLLs cannot be found, they are installed with the
    following drivers:
    ivi.dll is installed with the IVI compliance package, which is available at the following link:
    Drivers and Updates: IVI Compliance Package
    You should also install the latest version of NI-VISA, which is required by the IVI Compliance Package:
    Drivers and Updates: NI-VISA
    ag3325b_32.dll is installed with the your instrument's IVI driver, which can be found below:
    Agilent 3325b Instrument Driver
    Jason S.
    Applications Engineer
    National Instruments

  • Opening CS4 projects in CS5 error with Canon 5D footage HELP!!!

    HI Im trying out the new Premiere Pro CS5 demo and Im getting major problems opening projects.
    Initially I couldnt open any of my CS4 projects but could import single sequences one at a time only, not whole projects. So I was finally working fine yesturday and today nothing opens that includes canon 5d footage . I get this error.
    "This project contains a sequence that could not be opened. No sequence preview preset file or codec could be associated with this sequence type."
    I get the same message when I import a whole project. Yet I can import a whole project 1 sequence at a time!!!
    I can only create new projects which save and open but all older saved projects do not open.
    thanks
    remainz

    Yes, this is an intermittent issue with CS5. Somehow, there’s a problem wherein certain commonly-used codecs suddenly remove/disable themselves. I had this problem, and it was driving me crazy as I couldn’t open anything, and it was just way, way too much work to recreate. So I opened up a new project. Lo and behold, the program suddenly informed me that there were codecs that needed to be installed. Codecs which, I’m sure, have been installed already, but obviously Premiere knows that they’re missing. Allowing the program to install them, and then allowing it to quit itself, and then reopening the program again enabled Premiere to open all of my projects again.

  • Getting this Error: There was an error with input column "FROM_DATE" (6356) on input "OLE DB Destination Input" (6100). The column status returned was: "The value could not be converted because of a potential loss of data.".

    Hi,
    I have a flat file with this kind of value - " 20140713 " . To take this value in DB Table I set the data type of this column in flat file manager - string [DT_STR] 50, But in destination table It is set as date [date] NULL
    while process this file, I'm getting this error, that mention in subject line.
    Please confirm, how to do that as I don't want to change the destination column type.

    you need to add a derived column in SSIS with expressions as below
    (DT_DATE)SUBSTRING([Column],1,4) + (DT_WSTR,30) "-" + SUBSTRING([Column],5,2) + (DT_WSTR,30) "-" + SUBSTRING([Column],7,2)
    ANd map this new column to your tables date column
    Please Mark This As Answer if it solved your issue
    Please Mark This As Helpful if it helps to solve your issue
    Visakh
    My MSDN Page
    My Personal Blog
    My Facebook Page

  • CS5 Error with Animation Output

    Running CS5 on a Mac 10.6.4
    Every time I render, it gives the following error message:
    An output module failed. The file may be damaged or corrupted. (-1610153464)
    I've tested the files on a different machine and they open and render out fine.
    I did some searches and for some it was the dreaded Optical Flares plugin from Video CoPilot causing this same problem.
    I'm having these issues and I don't have any plugins installed.
    Re-Installed everything 3 times, trashed preferences, removed plugins from the Application support and still no luck.
    The only thing that works for me is outputting to a PNG or JPEG sequence.
    If I try to render using the Animation preset, It gives the error message.
    I also have been getting a weird "MooV" error message when I try to import certain types of quicktime files. Not all just a few random ones.
    All of this leads me to believe it may be an issue with 32 bit Quicktime.
    Any suggests on how I can get the Animation preset working again?
    Thanks.
    It gives an error message

    Sure, I had the exact problem posted at the top of this thread. Spent two days reading all the posts regarding anything that had to do with this Output Module error. I finally came upon a post of someone who was having a similar issue as I with the hang at start up. However, the post was replied to by a guy who said "Repeat the hang with only AE running,  then go to the Activity Monitor and select the QT32 Server process.   Then press the "Sample Process" button at the top of the window...It looks like both of you are having a similar problem with a third party AVI codec.  Please remove or uninstall any third party AVI codecs such as DivX,  XVid, etc. from your system and try AE again."
    "You can also temporarily disable these components by closing any QT related apps and then dragging components out of the Library/QuickTime folder on your boot drive.   If that works, try adding them back one by one until it fails again.  That is the problem codec."
    So I removed AviImporter.component from Library/Quicktime on the boot drive and these two problems were solved.
    Here is the link to the post where I found this info.
    http://forums.adobe.com/thread/634237?start=0&tstart=0

  • Simple left-join doesn't work. error with: Unknown column

    Hi guys,
    can anyone assist on this simple query:
    SELECT D.* , SUM( TD.debit_amount), SUM(TAP.amount)
    FROM debit AS D, transaction_debit AS TD
    LEFT JOIN TA_PAYMENTS AS TAP ON D.debit_id=TAP.debit_id
    WHERE D.debit_id = TD.debit_id
    GROUP BY TD.debit_idThe error message I receive is:
    #1054 - Unknown column 'D.debit_id' in 'on clause' I'm trying to relate 3 tables (debit, transactions-debit and ta_payment), some payment may not exist so therefore i use left join.
    thanks for any pointers

    SELECT D.* , SUM( TD.debit_amount), SUM(TAP.amount)
    FROM debit AS D, transaction_debit AS TD
    LEFT JOIN TA_PAYMENTS AS TAP ON
    D.debit_id=TAP.debit_id
    WHERE D.debit_id = TD.debit_id
    GROUP BY TD.debit_id
    I'm trying to relate 3 tables (debit,
    transactions-debit and ta_payment), some payment may
    not exist so therefore i use left join.You are trying to mix "the older join syntax", with the join condition in the where-clause, with "the new join syntax", with the join condition in the "on-clause", which I think is causing trouble.
    How about using only "the new syntax":
    SELECT D.* , SUM( TD.debit_amount), SUM(TAP.amount)
    FROM debit AS D JOIN transaction_debit AS TD on (D.debit_id = TD.debit_id)
         LEFT JOIN TA_PAYMENTS AS TAP ON (D.debit_id=TAP.debit_id)
    GROUP BY TD.debit_idDoes that help?

  • Internal error with timestamp columns

    Hi
    i have a table in which there's a TIMESTAMP column whenever i try to create a form on this table i cannot choose the columns in form builder data block wizard.
    Or even when i try to modify a form which was created before the columns were added.
    it generates this error.
    FRM - 10095: Assertion Failed in iewbdbc_oracle_to_id, at C:myade\608\src\ie\iewbdb.c:703
    i dont even have that directory on my machine!!!!
    i tried this with forms9i & forms6i, same thing with both.
    is it impossible to develope forms on a table having a timestamp column??? or is there another way?
    Any help is REALLY apreciated.
    Thanks in Advance
    Regards
    Tony G.

    No the with timestamp types are not supported. Forms does supplort multiple timezones, but uses normal datatime fields mapping to dates in the DB. The Forms server then takes care of mapping the Client Time to the Database time and visa versa.
    See: http://www.oracle.com/technology/products/forms/pdf/9inewfeatures.pdf
    Section 10

  • Error with clob column: "No pl/sql translation for the blind type given for this bind variable"

    This is reports 11g
    I've got a clob column. Reports seems to recognize its type, but if I try to reference it in a format trigger, I get this error at compile time:
    "No pl/sql translation for the blind type given for this bind variable"

    Actually, Reports is in something better than Forms.
    Neither Forms nor Reports do not have "complete" SQL engine (both have only "complete" PL/SQL engine), but have their own SQL parser, which does not understand SQL commands after the database 8.0.
    But, in Reports Data Model - SQL Query Statement, we can write "modern" SQL statement (> database 8.0), because Reports sent it directly to the database, without using their own SQL parser.
    For example, in Reports Data Model - SQL Query Statement, we can write this (scalar subquery expressions, in bold):
    select empno,
           ename,
           deptno,
           (select dname from dept where deptno = emp.deptno) dname
      from emp
    order by empno;
    although scalar subquery expressions was introduced in the database 9.0.1, and in databases 8.0 and 8.1 we should write someting like this:
    select emp.empno,
           emp.ename,
           emp.deptno,
           dept.dname
      from emp,
           dept
    where dept.deptno = emp.deptno
    order by empno;
    Regards,
    Zlatko

  • Open in Photoshop CS5 errors with "Some of the application Components are Missing...

    After doing a migration from one mac to another mac with the Migration Assistant,  when I try to edit a lightroom file with the Open In CS5 I get a dialog that comes up "Some of the application Components are Missing from the Application directory, Please reinstall the application.
    Well I have reinstalled photoshop, actually uninstalled it first, the reinstalled twice...once with "keep preferences" and once without.  I have also run the Adobe Upgrader and everything is up to date.  Lightroom is up to date.
    Any ideas??

    Since you can open a photo in CS5 when selecting <Open anyway>, I would also think that this is a problem of Lr.
    When you select <Render using Lightroom> Lr creates the PSD (or TIFF) and sends it to CS5.
    So it seems that this part of Lr that is creating a PSD (or TIFF) from your Raw image is missing / broken.
    Most probably something got left behind when you used the Migration Assistant.
    I would suggest this: Download from Adobe's website the trial version of Lr 4.3. The trial version is a full version with all features enabled, but it runs only for 30 days.
    Each time you open the trial version you get the option <I want to buy>. Select this option and enter your serial number. This will unlock the trial version for unlimited use.
    Maybe it would be good to un-install your current Lr before re-installing the downloaded file to ensure that you do a "clean" re-installation.

  • Converting columns to row

    Hi,
    I have 6 columns and 4 rows and i want to convert it into 6 rows and 4 columns and want to display in table control.
    plz help me in this ....

    Hi Kinjal,
       Question is not clear. You want to change the internal table values with 6 columns & 4 rows to 4 columns & 6 rows?
    If my understanding is correct, check the bleow logic:
    loop at itab1.
    case sy-tabix.
      when 1.
       itab2-c1 = itab1-c1.
       append itab2.
       itab2-c1 = itab1-c2.
       append itab2.
       itab2-c1 = itab1-c3.
       append itab2.
       itab2-c1 = itab1-c4.
       append itab2.
       itab2-c1 = itab1-c5.
       append itab2.
       itab2-c1 = itab1-c6.
       append itab2.
    when 2.
      itab2-c2 = itab1-c1.
      modify itab2 transporting c2 index 1.
      itab2-c2 = itab1-c2.
      modify itab2 transporting c2 index 2.
      itab2-c2 = itab1-c3.
      modify itab2 transporting c2 index 3.
      itab2-c2 = itab1-c4.
      modify itab2 transporting c2 index 4.
      itab2-c2 = itab1-c5.
      modify itab2 transporting c2 index 5.
      itab2-c2 = itab1-c6.
      modify itab2 transporting c2 index 6.
    when 3.
       itab2-c3 = itab1-c1.
      modify itab2 transporting c3 index 1.
    when 4.
       itab2-c4 = itab1-c1.
      modify itab2 transporting c4 index 1.
    Endloop.
    Finally you will get 6 rows with 4 coulmns.

  • IR - Error with ROWID link to single column.

    Just upgraded to Apex 4.0.1 very few issues but one I have found is with Interactive Reports.
    I have an IR that uses ROWID as the column link to view an individual row (SQL Query joins 4 tables). In APEX 3.1.2 this worked fine but after the upgrade I get the following error.
    {"dialog":{"uv":true,"row":[{"V":"Widget Failure
    ORA-20001: SHOW error. ORA-20001: VIEW_ROW error. ORA-20001: GET_COLUMN_VALUE error. ORA-20001: get_dbms_sql_cursor error ORA-01445: cannot select ROWID from, or sample, a join view without a key-preserved table,
    worksheet"}]}}
    Changing the link to a unique column and specifying the column works, however, I would prefer not to go through and change all my reports.
    Any easier workaround or fixes?
    Jon

    PLEASE DO NOT POST NEW ITEMS TO A THREAD THIS OLD..... Open a new thread and refer to the older thread if you need to....
    Thank you,
    Tony Miller
    Webster, TX
    Follow your passion; the rest will take care of itself.
    JMS
    If this question is answered, please mark the thread as closed and assign points where earned..

  • Single Column with link in one row and text in other row

    Hi Colleagues,
    We have a requirement where there will be a table with two columns
    Here the coding for the second column i am using is pasted below
    IWDTableColumn column1 = (IWDTableColumn) view.createElement(IWDTableColumn.class, null);
           table.addColumn(column1);     
           IWDCaption Col2header = (IWDCaption) view.createElement(IWDCaption.class, null);     
           String DownloadLink = TextAccessor.getText("DownloadLink");
           Col2header.setText(DownloadLink);
           column1.setHeader(Col2header);
           column1.setWidth("60%");
           IWDLinkToURL editor1 = (IWDLinkToURL) view.createElement(IWDLinkToURL.class, null);
           IWDAttributeInfo attribInfo = nodeInfo.getAttribute("link");
           //IWDTextView editor1 = (IWDTextView) view.createElement(IWDTextView.class, null);
           editor1.bindText(attribInfo);
           wdComponentAPI.getMessageManager().reportSuccess("link from editor"+editor1.getText());
           //editor1.bindReference("prerequisites.link");
          // editor1.setReference("prerequisites.link");
           //editor1.bindTarget("prerequisites.link"); 
           editor1.bindReference(attribInfo);
           editor1.setEnabled(true);
    column1.setTableCellEditor(textedit);
    Here from the above code what i am able to get is display the links in the Second column........
    But we need to display Text also in the same column for some entries
    Could any one please let me know how can this be achieved
    Thanks & Regards
    Swetha

    Hi Swetha,
    There is a nice way of achieving this requirement. There is something called Cell variant. You can use the Cell variants for the column and can solve this.
    If you are still in SAP then I can send you one document through mail. OR just ping me your ID.
    OR you can check this link as well:
    https://www.sdn.sap.com/irj/sdn/go/portal/prtroot/docs/library/uuid/80d81237-b780-2a10-d398-cc33af6bd75c
    I hope this helps. Please revert back in case you need any further information on this.
    Thanks and Regards,
    Pravesh

Maybe you are looking for

  • HP Officejet Pro 8500 A909g - scanning

    I am running windows 7, 64 bit OS, and and have a wireless 4 in 1 Printer, copier fax and scanner HP Office Jet Pro 8500 A909g. I can print fine to the printer as it prints to an IP address 192.168.0.04, but when I try to scan a document it won't com

  • Is there a way to customize dispositions in URM?

    I have set up a retention schedule in URM with a disposition. The problem is that the disposition does not appear to be very flexible. I have very few choices when it comes to notification. Basically I can notify the author. I need to be able to mani

  • How to setup a second router?

    Does anyone know if there are instructtions somewhere that will tell me how to setup a second router in front of my Actiontec MI424? I am trying to use a Sonos music system through my computer and it has been recommended to me that I try to use a dif

  • Doubt in function!

    is there any way to round a number like 2603 to 2600...or som other non decimal values to nearer value. plz guide me.. regds.. sql beginner

  • How does one make very large brush strokes of several inches wide. I could do this in the previous version of Apurture.

    I just upgraded my Aperture app but now it will not allow me to make inches wide brush strokes when I need to lighten, darken or other adjustments. In the previous version I could make inches wide adjustments. I really need to do this again. How can