Urgent Help! Import Class errors

Hello,
I have a flash based site (CS4/AS3) with multiple pages and on each page, when click a certain btn, i have a xml image gallery.
I recently bought a xml gallery and have some problems gettin it to work..and the support team doesnt respond so i'm hoping u can help me. It.s not very complicated but i have some problems understanding some things.
Here is the documentation of the gallery > https://dl.dropbox.com/u/21765376/Portfolio_Flash_Gallery.pdf. I managed to configure the gallery but have problems embed it to my .fla project.
This is what i have done so far according to the documentation: i copied the lightBoxLoader to my .fla file; Then created a keyframe on the page that i need to display the gallery and paste this:
import src.Portfolio;
stop();
var myPortfolio:Portfolio;
if ( stage.loaderInfo.parameters["XmlFilePath"]!=null)
    myPortfolio= new Portfolio(String(stage.loaderInfo.parameters["XmlFilePath"]));
else
    myPortfolio= new Portfolio("xml/config.xml");
addChild(myPortfolio);
When test movie : 1172: Definition src:Portfolio could not be found.
Then on that as keyframe, clicked the stage and in the prop panel named Class: Portfolio >> 1172: Definition src:Portfolio could not be found.- import src.Portfolio;  /   1137: Incorrect number of arguments.  Expected no more than 0. - myPortfolio= new Portfolio(String(stage.loaderInfo.parameters["XmlFilePath"]));   / 1137: Incorrect number of arguments.  Expected no more  -  myPortfolio= new Portfolio("xml/config.xml");than 0.
Folders r structured like this:     Desktop(C...)/SITE  >> and here  i have Portfolio .fla,which contains the lightBoxLoader + the gallery folders (images>btns,thumbs,view  | src> Portfolio Actionscript file   |  xml > config )  + my site .fla with necessasry assets.
I also  modified > Publish settings/Flash/Actionscript settings / Source path - and here put  "../src" .
I know i/m missing something but dont know what, im not pro at AS3!
I hope u understand my problem and can give me a solution!
Please!
Thank You!.

It seems that your Portfolio constructor is not supposed to take any arguments.

Similar Messages

  • Help Importing Classes

    How do I obtain and import classes so that I can reuse them? For example there is a Person class that I want to reuse http://www.dcs.shef.ac.uk/~guy/java/lancs/Person.html and a Date class. How do I get a copy so that I can import it into my java program? I know this is a fairly straight forward question for anyone who is comfortable using Java. But for a beginner who grew up learning C++ I�m a little lost. Any help would be greatly appreciated. Also, I�m using Eclipse as my java editor/runtime environment. Thank you.

    You have to find a copy of the .class file (or the Java source file and compile it to a .class file) and place the .class file in a directory that's accessible when Java executes. One way of doing that is to list the directory on the classpath, when you execute Java:
    java -classpath <absolute path to directory> classfileName

  • URGENT HELP PLEASE - portal error

    I am getting an error when I tried to preview the IVIEW i created. Please help
    Portal Runtime Error
    An exception occurred while processing a request for :
    iView : N/A
    Component Name : N/A
    Could not find portal application .
    Exception id: 03:30_15/02/07_0035_7139250
    See the details for the exception ID in the log file
    Thanks in advance

    Hi Mithun,
    This problem can occur due to following reasons:
    <b>1. You are not authorized to see this iView</b>
    If you are not authorized to view this iView it will show this runtime error. Some iViews may redirect you to login server. Please set appropriate Role to the user on SAP Enterprise Portal.
    <b>2. The SAP Enterprise Portal session is lost</b>
    If your session is lost, please logout of  Portal and Login again. This will re-establish the SAP Enterprise Portal session and will be able to get the iView content.
    Thanks,
    Vinay

  • Urgent Help Import

    i need help importing my music library from i tunes to my new zen library..can this be done or have i blown a fortune. thanks in advance

    Do you know the formats of your music files?

  • Import classes error

    Hi
    i am new to servlet also and i having compiling my servlet.
    this is my code:
    import javax.servlet.*;
    import javax.servlethttp.*;
    import java.io.*;
    import java.util.*;
    public class Index extends HttpServlet
    String path = "http://faculty.cs.tamu.edu/yurttas/";
    String builder;
    String url;
         //i handling a web form where i get the path
         public void doPost(HttpServletRequest request, HttpServletRespone response)
                   throws IOExcepction, ServletException
         Enumeration e = request.getParameterNames();
         while (e.hasMoreElements())
              String name = (String) e.nextElement();
              String builder = builder + request.getParameter(name);
         url = path + builder;
         //starts making the html file
         response.setContentType("text/html");
         PrintWriter out = response.getWriter();
         //head
         out.println("<html>");
         out.println("<head>");
         out.println("<SCRIPT LANGUAGE=JavaScript>");
         out.println("window.location.href =\" " + url + "\" ;");
         out.println("</SCRIPT>");
         out.println("</head>");
         //body
         out.print("<body>");
         out.print("</body>");
         out.print("</html>");
         }//end doPost
    and this are my errors:
    Index.java:1: package javax.servlet does not exist
    import javax.servlet.*;
    ^
    Index.java:2: package javax.servlethttp does not exist
    import javax.servlethttp.*;
    ^
    Index.java:11: cannot resolve symbol
    symbol : class HttpServlet
    location: class Index
    public class Index extends HttpServlet
    ^
    Index.java:18: cannot resolve symbol
    symbol : class HttpServletRequest
    location: class Index
    public void doPost(HttpServletRequest request, HttpServletRespone response)
    ^
    Index.java:18: cannot resolve symbol
    symbol : class HttpServletRespone
    location: class Index
    public void doPost(HttpServletRequest request, HttpServletRespone response)
    ^
    Index.java:19: cannot resolve symbol
    symbol : class IOExcepction
    location: class Index
    throws IOExcepction, ServletException
    ^
    Index.java:19: cannot resolve symbol
    symbol : class ServletException
    location: class Index
    throws IOExcepction, ServletException
    ^
    7 errors
    chris22@sun [~/web_home/distance/hwk01/] %
    i am compiling in a unix machine. What do you recommend me to do??

    Hi,
    The problem is in your classpath. Set your classpath properly.
    bye for now
    sat

  • Need Urgent help on Logging error

    Hi ,
    In my project we are using Log4j 1.3 alpha. and we have commons-logging.jar(1.0.4) also. I am trying to deploying my application to stand alone OC4J from jdeveloper it was deployed successfully. I am trying to run one jsp in the browser http://localhost:8888/jsp/menu.jsp. I am getting the following error
    500 Internal Server Error
    java.lang.NoSuchFieldError: INFO
         at org.apache.commons.logging.impl.Log4JLogger.info(Log4JLogger.java:152)
         at org.apache.struts.util.PropertyMessageResources.<init>(PropertyMessageResources.java:127)
         at org.apache.struts.util.PropertyMessageResourcesFactory.createResources(PropertyMessageResourcesFactory.java:90)
         at org.apache.struts.util.MessageResources.getMessageResources(MessageResources.java:577)
         at org.apache.struts.taglib.html.HtmlTag.<clinit>(HtmlTag.java:96)
         at java.lang.Class.forName0(Native Method)
         at java.lang.Class.forName(Class.java:141)
         at jsp.admin._S__RS030__101.class$(_S__RS030__101.java:48)
         [SRC:/jsp/admin/S_RS030_101.jsp:5]
         at jsp.admin._S__RS030__101._jspService(_S__RS030__101.java:48)
         [SRC:/jsp/admin/S_RS030_101.jsp:5]
         at com.orionserver[Oracle Application Server Containers for J2EE 10g (9.0.4.0.0)].http.OrionHttpJspPage.service(OrionHttpJspPage.java:56)
         at oracle.jsp.runtimev2.JspPageTable.compileAndServe(JspPageTable.java:567)
         at oracle.jsp.runtimev2.JspPageTable.service(JspPageTable.java:302)
         at oracle.jsp.runtimev2.JspServlet.internalService(JspServlet.java:509)
         at oracle.jsp.runtimev2.JspServlet.service(JspServlet.java:413)
         at javax.servlet.http.HttpServlet.service(HttpServlet.java:853)
         at com.evermind[Oracle Application Server Containers for J2EE 10g (9.0.4.0.0)].server.http.ServletRequestDispatcher.invoke(ServletRequestDispatcher.java:765)
         at com.evermind[Oracle Application Server Containers for J2EE 10g (9.0.4.0.0)].server.http.ServletRequestDispatcher.forwardInternal(ServletRequestDispatcher.java:317)
         at com.evermind[Oracle Application Server Containers for J2EE 10g (9.0.4.0.0)].server.http.HttpRequestHandler.processRequest(HttpRequestHandler.java:790)
         at com.evermind[Oracle Application Server Containers for J2EE 10g (9.0.4.0.0)].server.http.HttpRequestHandler.run(HttpRequestHandler.java:270)
         at com.evermind[Oracle Application Server Containers for J2EE 10g (9.0.4.0.0)].server.http.HttpRequestHandler.run(HttpRequestHandler.java:112)
         at com.evermind[Oracle Application Server Containers for J2EE 10g (9.0.4.0.0)].util.ReleasableResourcePooledExecutor$MyWorker.run(ReleasableResourcePooledExecutor.java:192)
         at java.lang.Thread.run(Thread.java:534)
    I am working on this error for 2 days.We are using struts1.1.Is there any compatibility issue between log4j and commons-logging.jar file.We are using log4j.xml file for the configuration. I checked it and it is ok. I am not able to know where is the problem. Any Help?
    Thanks,
    Reddy

    Hi ,
    In my project we are using Log4j 1.3 alpha. and we have commons-logging.jar(1.0.4) also. I am trying to deploying my application to stand alone OC4J from jdeveloper it was deployed successfully. I am trying to run one jsp in the browser http://localhost:8888/jsp/menu.jsp. I am getting the following error
    500 Internal Server Error
    java.lang.NoSuchFieldError: INFO
         at org.apache.commons.logging.impl.Log4JLogger.info(Log4JLogger.java:152)
         at org.apache.struts.util.PropertyMessageResources.<init>(PropertyMessageResources.java:127)
         at org.apache.struts.util.PropertyMessageResourcesFactory.createResources(PropertyMessageResourcesFactory.java:90)
         at org.apache.struts.util.MessageResources.getMessageResources(MessageResources.java:577)
         at org.apache.struts.taglib.html.HtmlTag.<clinit>(HtmlTag.java:96)
         at java.lang.Class.forName0(Native Method)
         at java.lang.Class.forName(Class.java:141)
         at jsp.admin._S__RS030__101.class$(_S__RS030__101.java:48)
         [SRC:/jsp/admin/S_RS030_101.jsp:5]
         at jsp.admin._S__RS030__101._jspService(_S__RS030__101.java:48)
         [SRC:/jsp/admin/S_RS030_101.jsp:5]
         at com.orionserver[Oracle Application Server Containers for J2EE 10g (9.0.4.0.0)].http.OrionHttpJspPage.service(OrionHttpJspPage.java:56)
         at oracle.jsp.runtimev2.JspPageTable.compileAndServe(JspPageTable.java:567)
         at oracle.jsp.runtimev2.JspPageTable.service(JspPageTable.java:302)
         at oracle.jsp.runtimev2.JspServlet.internalService(JspServlet.java:509)
         at oracle.jsp.runtimev2.JspServlet.service(JspServlet.java:413)
         at javax.servlet.http.HttpServlet.service(HttpServlet.java:853)
         at com.evermind[Oracle Application Server Containers for J2EE 10g (9.0.4.0.0)].server.http.ServletRequestDispatcher.invoke(ServletRequestDispatcher.java:765)
         at com.evermind[Oracle Application Server Containers for J2EE 10g (9.0.4.0.0)].server.http.ServletRequestDispatcher.forwardInternal(ServletRequestDispatcher.java:317)
         at com.evermind[Oracle Application Server Containers for J2EE 10g (9.0.4.0.0)].server.http.HttpRequestHandler.processRequest(HttpRequestHandler.java:790)
         at com.evermind[Oracle Application Server Containers for J2EE 10g (9.0.4.0.0)].server.http.HttpRequestHandler.run(HttpRequestHandler.java:270)
         at com.evermind[Oracle Application Server Containers for J2EE 10g (9.0.4.0.0)].server.http.HttpRequestHandler.run(HttpRequestHandler.java:112)
         at com.evermind[Oracle Application Server Containers for J2EE 10g (9.0.4.0.0)].util.ReleasableResourcePooledExecutor$MyWorker.run(ReleasableResourcePooledExecutor.java:192)
         at java.lang.Thread.run(Thread.java:534)
    I am working on this error for 2 days.We are using struts1.1.Is there any compatibility issue between log4j and commons-logging.jar file.We are using log4j.xml file for the configuration. I checked it and it is ok. I am not able to know where is the problem. Any Help?
    Thanks,
    Reddy

  • Help Importing with Error Code -50

    My Itunes has been working fine but when i opened it today it said my library was damaged and it saved what it could but when i tried to import the list back in it came up with "The file _____ cannot be imported An unknown error has occured -50" I read about how Mcafee might mess it up and i have aol security stuff that is powered by mcafee but i can't figure out what to do? Someone please help!!!!

    Looking for the same - cant login to itunes store on my PC
    Any more suggestions?  Looked on support communities - software up to date, have disabled firewall, anti virus, network fine - same laptop for about 18 months so not convinced about disabling stuff - didnt work anyway.

  • Urgent help importing an XML file

    Hi all,
    I'm currently exporting my XML files from Magento, the webshop client. However I cannot use the XML task in ETL because I get the error about namedspaces. I can open the XML file itself no problem, it contains a few columns with data, some empty values.
    What I do to solve the error is create the script in ETL that converts the XML file so that I can make the SDX schema. The ETL script itself works 
    <?xml version="1.0" encoding="utf-8" ?> 
    <xsl:stylesheet version="1.0"         xmlns:xsl="http://www.w3.org/1999/XSL/Transform"> 
      <xsl:output method="xml" indent="no" /> 
      <xsl:template match="/|comment()|processing-instruction()"> 
        <xsl:copy> 
          <xsl:apply-templates /> 
        </xsl:copy> 
      </xsl:template> 
      <xsl:template match="*"> 
        <xsl:element name="{local-name()}"> 
          <xsl:apply-templates select="@*|node()" /> 
        </xsl:element> 
      </xsl:template> 
      <xsl:template match="@*"> 
        <xsl:attribute name="{local-name()}"> 
          <xsl:value-of select="." /> 
        </xsl:attribute> 
      </xsl:template> 
    </xsl:stylesheet> 
    But when I open the newly created file he looks really odd: See below for the initial file and the new file (based on how many times I open the file, i get another weird look...). Please help me out it's killing me :)

    Or you can apply a XSLT transform as per http://blogs.msdn.com/b/mattm/archive/2007/12/15/xml-source-making-things-easier-with-xslt.aspx
    Arthur My Blog

  • Urgent help On as2 error The remote server returned an error: (500) Internal Server Error.

    hi,
    im configured the as2 partner setup as per this http://msdn.microsoft.com/en-us/library/bb246129(BTS.20).aspx.
    but when im process file , then file try hit partner url goes dyhradated state,then failed. then i got below error.
    The remote server returned an error: (500) Internal Server Error.
    please any help..
    Thanks

    500 server error could be due to anyone of the following reasons:
    Party configuration is wrong. Party properties/configurations have  to be discussed upfront with the source/destination system and have to be in-line with
    them.
    Certificates have to be deployed in correct folders based on      certificate types like private/public/signed etc.
    Firewall (or network components) has to be opened accordingly for parties(systems) to interact. This change has to be done at the both the levels, source and destination.
    If you receive it through HTTPReceive.dll (may uses this for AS2), you have to check its configurations.
    Also 500 error, could occur even if your BizTalk artifacts has not been configured/deployed/enabled properly.
    If this answers your question please mark it accordingly. If this post is helpful, please vote as helpful by clicking the upward arrow mark next to my reply.

  • Need urgent help on this error "oracle.jbo.AttrValException: JBO-27019"

    This is regarding Print Quote eror.
    "oracle.jbo.AttrValException: JBO-27019"
    I am facing the above error .(I am new to OA Framework) whenever i tried to add a new column to the select query 'Comp_info' .
    My development has come to an Halt really :(
    The code is :
    <?xml version="1.0" encoding='windows-1252'?>
    <!DOCTYPE ViewObject SYSTEM "jbo_03_01.dtd">
    <!-- $Header: LinesVO.xml 115.3 2003/12/30 07:01:46 asetti noship $-->
    <ViewObject
    Name="LinesVO"
    BindingStyle="Oracle"
    CustomQuery="true"
    RowClass="oracle.apps.aso.print.server.LinesVORowImpl"
    ComponentClass="oracle.apps.aso.print.server.LinesVOImpl"
    MsgBundleClass="oracle.jbo.common.JboResourceBundle"
    FetchMode="FETCH_AS_NEEDED"
    Passivate="None"
    UseGlueCode="false" >
    <SQLQuery><![CDATA[
    SELECT
    qte.ui_line_number line_number
    ,qte.padded_concatenated_segments item_number
    ,qte.item_description item_description
    ,qte.uom_code Order_Quantity_Uom
    ,DECODE(qte.line_category_code, 'RETURN', qte.quantity*(-1), qte.quantity) Ordered_Quantity
    ,qte.line_category_code
    ,qte.service_ref_line_id
    ,UPPER(qte.service_ref_type_code) srv_ref_type_code
    ,DECODE(qte.line_category_code, 'RETURN', qte.line_list_price*(-1), qte.line_list_price) unit_list_price
    ,DECODE(qte.line_category_code, 'RETURN', qte.line_adjusted_amount*(-1), qte.line_adjusted_amount) line_adj_price
    ,DECODE(qte.line_category_code, 'RETURN', qte.line_quote_price*(-1), qte.line_quote_price) unit_selling_price
    ,DECODE(qte.line_category_code, 'RETURN', qte.extended_list_price*(-1), qte.extended_list_price) line_total_list_price
    ,DECODE(qte.line_category_code, 'RETURN', qte.extended_adjusted_amount*(-1), qte.extended_adjusted_amount) line_total_adj_amt
    ,DECODE(qte.line_category_code, 'RETURN', qte.extended_selling_price*(-1), qte.extended_selling_price) line_total
    ,line_number old_line_number
    ,to_char(qte.start_date_active,nvl(FND_PROFILE.VALUE('ICX_DATE_FORMAT_MASK'), 'DD-MON-RRRR')) start_date_active
    ,to_char(qte.end_date_active,nvl(FND_PROFILE.VALUE('ICX_DATE_FORMAT_MASK'), 'DD-MON-RRRR')) end_date_active
    ,qte.service_duration
    ,qte.service_period
    ,qte.item_type_code
    ,decode(qte.item_type_code, 'MDL', NVL(qte.complete_configuration_flag, 'N'), 'Z') Model_Status
    ,qte.quote_line_id qlid
    ,qte.quote_header_id
    ,DECODE(qte.line_category_code,
    'RETURN',
    (select qte.quantity * (nvl(sum(decode(apav.applied_flag,'Y',decode(apav.charge_type_code,NULL,0,apav.adjusted_amount),0) ), 0))
    FROM aso_price_adjustments_v apav
    where qte.quote_line_id = apav.quote_line_id )*(-1),
    (select qte.quantity * (nvl(sum(decode(apav.applied_flag,'Y',decode(apav.charge_type_code,NULL,0,apav.adjusted_amount),0) ), 0))
    FROM aso_price_adjustments_v apav
    where qte.quote_line_id = apav.quote_line_id )) line_charges
    ,DECODE(qte.line_category_code,
    'RETURN',
    (decode(qte.item_type_code,
    'MDL',
    decode (qte.config_header_id,
    NULL,
    qte.extended_selling_price,
    (select sum(QUOTE_LINES.LINE_QUOTE_PRICE * QUOTE_LINES.QUANTITY)
    from ASO_QUOTE_LINES_ALL QUOTE_LINES,
    ASO_QUOTE_LINE_DETAILS QUOTE_LINE_DETAILS
    where quote_line_details.config_header_id=qte.config_header_id
    and quote_line_details.quote_line_id =quote_lines.quote_line_id)),
    qte.extended_selling_price))*(-1),
    (decode(qte.item_type_code,
    'MDL',
    decode (qte.config_header_id,
    NULL,
    qte.extended_selling_price,
    (select sum(QUOTE_LINES.LINE_QUOTE_PRICE * QUOTE_LINES.QUANTITY)
    from ASO_QUOTE_LINES_ALL QUOTE_LINES,
    ASO_QUOTE_LINE_DETAILS QUOTE_LINE_DETAILS
    where quote_line_details.config_header_id=qte.config_header_id
    and quote_line_details.quote_line_id =quote_lines.quote_line_id)),
    qte.extended_selling_price))) model_total
    ,qte.attribute3 Comp_Info
    FROM
    aso_pvt_quote_lines_bali_v qte
    ]]></SQLQuery>
    <DesignTime>
    <Attr Name="_isCodegen" Value="true" />
    <Attr Name="_version" Value="9.0.3.11.21" />
    <Attr Name="_CodeGenFlagNew" Value="36" />
    </DesignTime>
    <ViewAttribute
    Name="LineNumber"
    IsQueriable="false"
    IsPersistent="false"
    Precision="4000"
    Type="java.lang.String"
    AliasName="UI_LINE_NUMBER"
    ColumnType="VARCHAR2"
    Expression="UI_LINE_NUMBER"
    SQLType="VARCHAR" >
    <DesignTime>
    <Attr Name="_DisplaySize" Value="4000" />
    </DesignTime>
    </ViewAttribute>
    <ViewAttribute
    Name="ItemNumber"
    IsQueriable="false"
    IsPersistent="false"
    Precision="30"
    Type="java.lang.String"
    AliasName="LINE_SEGMENT"
    ColumnType="VARCHAR2"
    Expression="LINE_SEGMENT"
    SQLType="VARCHAR" >
    <DesignTime>
    <Attr Name="_DisplaySize" Value="30" />
    </DesignTime>
    </ViewAttribute>
    <ViewAttribute
    Name="comp_product"
    IsQueriable="false"
    IsPersistent="false"
    Precision="30"
    Type="java.lang.String"
    AliasName="comp_product"
    ColumnType="VARCHAR2"
    Expression="comp_product"
    SQLType="VARCHAR" >
    <DesignTime>
    <Attr Name="_DisplaySize" Value="30" />
    </DesignTime>
    </ViewAttribute>
    <ViewAttribute
    Name="ItemDescription"
    IsQueriable="false"
    IsPersistent="false"
    Precision="240"
    Type="java.lang.String"
    AliasName="LINE_DESC"
    ColumnType="VARCHAR2"
    Expression="LINE_DESC"
    SQLType="VARCHAR" >
    <DesignTime>
    <Attr Name="_DisplaySize" Value="240" />
    </DesignTime>
    </ViewAttribute>
    <ViewAttribute
    Name="OrderQuantityUom"
    IsQueriable="false"
    IsPersistent="false"
    IsNotNull="true"
    Precision="3"
    Type="java.lang.String"
    AliasName="LINE_UOM_CODE"
    ColumnType="VARCHAR2"
    Expression="LINE_UOM_CODE"
    SQLType="VARCHAR" >
    <DesignTime>
    <Attr Name="_DisplaySize" Value="3" />
    </DesignTime>
    </ViewAttribute>
    <ViewAttribute
    Name="OrderedQuantity"
    IsQueriable="false"
    IsPersistent="false"
    IsNotNull="true"
    Precision="255"
    Type="oracle.jbo.domain.Number"
    AliasName="LINE_QTY"
    ColumnType="VARCHAR2"
    Expression="LINE_QTY"
    SQLType="NUMERIC" >
    <DesignTime>
    <Attr Name="_DisplaySize" Value="22" />
    </DesignTime>
    </ViewAttribute>
    <ViewAttribute
    Name="LineCategoryCode"
    IsQueriable="false"
    IsPersistent="false"
    Precision="30"
    Type="java.lang.String"
    AliasName="LINE_CATEGORY_CODE"
    ColumnType="VARCHAR2"
    Expression="LINE_CATEGORY_CODE"
    SQLType="VARCHAR" >
    <DesignTime>
    <Attr Name="_DisplaySize" Value="30" />
    </DesignTime>
    </ViewAttribute>
    <ViewAttribute
    Name="ServiceRefLineId"
    IsQueriable="false"
    IsPersistent="false"
    Type="oracle.jbo.domain.Number"
    AliasName="SERVICE_REF_LINE_ID"
    ColumnType="VARCHAR2"
    Expression="SERVICE_REF_LINE_ID"
    SQLType="NUMERIC" >
    <DesignTime>
    <Attr Name="_DisplaySize" Value="22" />
    </DesignTime>
    </ViewAttribute>
    <ViewAttribute
    Name="SrvRefTypeCode"
    IsQueriable="false"
    IsPersistent="false"
    Precision="30"
    Type="java.lang.String"
    AliasName="SRV_REF_TYPE_CODE"
    ColumnType="VARCHAR2"
    Expression="SRV_REF_TYPE_CODE"
    SQLType="VARCHAR" >
    <DesignTime>
    <Attr Name="_DisplaySize" Value="30" />
    </DesignTime>
    </ViewAttribute>
    <ViewAttribute
    Name="UnitListPrice"
    IsQueriable="false"
    IsPersistent="false"
    Precision="255"
    Type="oracle.jbo.domain.Number"
    AliasName="LINELIST_PRICE"
    ColumnType="VARCHAR2"
    Expression="LINELIST_PRICE"
    SQLType="NUMERIC" >
    <DesignTime>
    <Attr Name="_DisplaySize" Value="22" />
    </DesignTime>
    </ViewAttribute>
    <ViewAttribute
    Name="LineAdjPrice"
    IsQueriable="false"
    IsPersistent="false"
    Type="oracle.jbo.domain.Number"
    AliasName="LINE_ADJ_PRICE"
    ColumnType="VARCHAR2"
    Expression="LINE_ADJ_PRICE"
    SQLType="NUMERIC" >
    <DesignTime>
    <Attr Name="_DisplaySize" Value="22" />
    </DesignTime>
    </ViewAttribute>
    <ViewAttribute
    Name="UnitSellingPrice"
    IsQueriable="false"
    IsPersistent="false"
    Precision="255"
    Type="oracle.jbo.domain.Number"
    AliasName="LINE_NET_PRICE"
    ColumnType="VARCHAR2"
    Expression="LINE_NET_PRICE"
    SQLType="NUMERIC" >
    <DesignTime>
    <Attr Name="_DisplaySize" Value="22" />
    </DesignTime>
    </ViewAttribute>
    <ViewAttribute
    Name="LineTotalListPrice"
    IsQueriable="false"
    IsPersistent="false"
    Type="oracle.jbo.domain.Number"
    AliasName="LINE_TOTAL_LIST_PRICE"
    ColumnType="VARCHAR2"
    Expression="LINE_TOTAL_LIST_PRICE"
    SQLType="NUMERIC" >
    <DesignTime>
    <Attr Name="_DisplaySize" Value="22" />
    </DesignTime>
    </ViewAttribute>
    <ViewAttribute
    Name="LineTotalAdjAmt"
    IsQueriable="false"
    IsPersistent="false"
    Type="oracle.jbo.domain.Number"
    AliasName="LINE_TOTAL_ADJ_AMT"
    ColumnType="VARCHAR2"
    Expression="LINE_TOTAL_ADJ_AMT"
    SQLType="NUMERIC" >
    <DesignTime>
    <Attr Name="_DisplaySize" Value="22" />
    </DesignTime>
    </ViewAttribute>
    <ViewAttribute
    Name="LineTotal"
    IsQueriable="false"
    IsPersistent="false"
    Precision="255"
    Type="oracle.jbo.domain.Number"
    AliasName="LINE_TOTAL_NET_PRICE"
    ColumnType="VARCHAR2"
    Expression="LINE_TOTAL_NET_PRICE"
    SQLType="NUMERIC" >
    <DesignTime>
    <Attr Name="_DisplaySize" Value="22" />
    </DesignTime>
    </ViewAttribute>
    <ViewAttribute
    Name="OldLineNumber"
    IsQueriable="false"
    IsPersistent="false"
    Precision="255"
    Type="oracle.jbo.domain.Number"
    AliasName="LINE_NUMBER"
    ColumnType="VARCHAR2"
    Expression="LINE_NUMBER"
    SQLType="NUMERIC" >
    <DesignTime>
    <Attr Name="_DisplaySize" Value="22" />
    </DesignTime>
    </ViewAttribute>
    <ViewAttribute
    Name="StartDateActive"
    IsQueriable="false"
    IsPersistent="false"
    DiscrColumn="true"
    Precision="255"
    Type="java.lang.String"
    AliasName="START_DATE_ACTIVE"
    ColumnType="VARCHAR2"
    Expression="START_DATE_ACTIVE"
    SQLType="VARCHAR" >
    <DesignTime>
    <Attr Name="_DisplaySize" Value="7" />
    </DesignTime>
    </ViewAttribute>
    <ViewAttribute
    Name="EndDateActive"
    IsQueriable="false"
    IsPersistent="false"
    Precision="255"
    Type="java.lang.String"
    AliasName="END_DATE_ACTIVE"
    ColumnType="VARCHAR2"
    Expression="END_DATE_ACTIVE"
    SQLType="VARCHAR" >
    <DesignTime>
    <Attr Name="_DisplaySize" Value="7" />
    </DesignTime>
    </ViewAttribute>
    <ViewAttribute
    Name="ServiceDuration"
    IsQueriable="false"
    IsPersistent="false"
    Type="oracle.jbo.domain.Number"
    AliasName="SERVICE_DURATION"
    ColumnType="VARCHAR2"
    Expression="SERVICE_DURATION"
    SQLType="NUMERIC" >
    <DesignTime>
    <Attr Name="_DisplaySize" Value="22" />
    </DesignTime>
    </ViewAttribute>
    <ViewAttribute
    Name="ServicePeriod"
    IsQueriable="false"
    IsPersistent="false"
    Precision="3"
    Type="java.lang.String"
    AliasName="SERVICE_PERIOD"
    ColumnType="VARCHAR2"
    Expression="SERVICE_PERIOD"
    SQLType="VARCHAR" >
    <DesignTime>
    <Attr Name="_DisplaySize" Value="3" />
    </DesignTime>
    </ViewAttribute>
    <ViewAttribute
    Name="ItemTypeCode"
    IsQueriable="false"
    IsPersistent="false"
    Precision="30"
    Type="java.lang.String"
    AliasName="ITEM_TYPE_CODE"
    ColumnType="VARCHAR2"
    Expression="ITEM_TYPE_CODE"
    SQLType="VARCHAR" >
    <DesignTime>
    <Attr Name="_DisplaySize" Value="30" />
    </DesignTime>
    </ViewAttribute>
    <ViewAttribute
    Name="ModelStatus"
    IsUpdateable="false"
    IsQueriable="false"
    IsPersistent="false"
    Precision="1"
    Type="java.lang.String"
    ColumnType="VARCHAR2"
    Expression="ModelStatus"
    SQLType="VARCHAR" >
    </ViewAttribute>
    <ViewAttribute
    Name="Qlid"
    IsQueriable="false"
    IsPersistent="false"
    IsNotNull="true"
    Precision="1"
    Type="oracle.jbo.domain.Number"
    AliasName="QLID"
    ColumnType="VARCHAR2"
    Expression="QLID"
    SQLType="NUMERIC" >
    <DesignTime>
    <Attr Name="_DisplaySize" Value="22" />
    </DesignTime>
    </ViewAttribute>
    <ViewAttribute
    Name="QuoteHeaderId"
    IsQueriable="false"
    IsPersistent="false"
    IsNotNull="true"
    Type="oracle.jbo.domain.Number"
    AliasName="QUOTE_HEADER_ID"
    ColumnType="VARCHAR2"
    Expression="QUOTE_HEADER_ID"
    SQLType="NUMERIC" >
    <DesignTime>
    <Attr Name="_DisplaySize" Value="22" />
    </DesignTime>
    </ViewAttribute>
    <ViewAttribute
    Name="LineCharges"
    IsQueriable="false"
    IsPersistent="false"
    Precision="255"
    Type="oracle.jbo.domain.Number"
    AliasName="LINE_TOTAL_CHARGES"
    ColumnType="VARCHAR2"
    Expression="LINE_TOTAL_CHARGES"
    SQLType="NUMERIC" >
    <DesignTime>
    <Attr Name="_DisplaySize" Value="22" />
    </DesignTime>
    </ViewAttribute>
    <ViewAttribute
    Name="ModelTotal"
    IsQueriable="false"
    IsPersistent="false"
    Precision="255"
    Type="oracle.jbo.domain.Number"
    AliasName="MODEL_TOTAL"
    ColumnType="VARCHAR2"
    Expression="MODEL_TOTAL"
    SQLType="NUMERIC" >
    <DesignTime>
    <Attr Name="_DisplaySize" Value="22" />
    </DesignTime>
    </ViewAttribute>
    <ViewAttribute
    Name="Comp_Info"
    IsQueriable="false"
    IsPersistent="false"
    Precision="30"
    Type="java.lang.String"
    AliasName="Comp_Info"
    ColumnType="VARCHAR2"
    Expression="Comp_Info"
    SQLType="VARCHAR" >
    <DesignTime>
    <Attr Name="_DisplaySize" Value="30" />
    </DesignTime>
    </ViewAttribute>
    <ViewLinkAccessor
    Name="ServiceToOrderLineVO"
    ViewLink="oracle.apps.aso.print.server.ServiceToOrderLineVL"
    Type="oracle.jbo.RowIterator"
    IsUpdateable="false" >
    </ViewLinkAccessor>
    <ViewLinkAccessor
    Name="ServiceToInstBaseVO"
    ViewLink="oracle.apps.aso.print.server.ServiceToInstBaseVL"
    Type="oracle.jbo.RowIterator"
    IsUpdateable="false" >
    </ViewLinkAccessor>
    <ViewLinkAccessor
    Name="QuoteLineChargesVO"
    ViewLink="oracle.apps.aso.print.server.QuoteLineChargesVL"
    Type="oracle.jbo.RowIterator"
    IsUpdateable="false" >
    </ViewLinkAccessor>
    <ViewLinkAccessor
    Name="QuoteLineTaxesVO"
    ViewLink="oracle.apps.aso.print.server.QuoteLineTaxesVL"
    Type="oracle.jbo.RowIterator"
    IsUpdateable="false" >
    </ViewLinkAccessor>
    <ViewLinkAccessor
    Name="LineTemplateVO"
    ViewLink="oracle.apps.aso.print.server.LineTemplateVL"
    Type="oracle.jbo.RowIterator"
    IsUpdateable="false" >
    </ViewLinkAccessor>
    <ViewLinkAccessor
    Name="LineAttachmentVO"
    ViewLink="oracle.apps.aso.print.server.LineAttachmentVL"
    Type="oracle.jbo.RowIterator"
    IsUpdateable="false" >
    </ViewLinkAccessor>
    </ViewObject>
    It gives me an error as "oracle.jbo.AttrValException: JBO-27019: Get method for attribute "comp_info" in LinesVO_HeaderLinesVL_LinesVO could not be resolved.
    I have added the getter and setter as well in the RowImpl.java file but still its givn this error.
    I need to add many more columns after this error is solved.
    I tried all permutation n combination but all in vain.
    Any help on this would be highly appreciated.
    Thanks,
    Ajit

    Ajit,
    Writing getter/setter methods manually is not a good idea, when jdev provides u that facility. Moreover in ur case i m getting a feeling as if ur VO mappings are corrupted. Can u try one thing ,assuming this is a custom VO,Delete the VO from the project and delete all related files in myclasses and my projects.Recreate the VO with all the attributes and try if same error is coming.
    --Mukul                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       

  • Urgent  Help.. Error 18 in the update

    Hi,
    I am facing a problem while loading some BW Statistics Data. ( 0BWTC_C03)
    I have deleted the Init flag, Ran new Init without data transfer  and a full repair Load.
    The load is failing with Error 18 in the update. and some packets are failing with 'invalid characheristics'
    I Ran a Load Till PSA and then Edited the Data in PSA and later pushed them manualy to data targets.
    But still some packets are failing with Error 18 in the update.
    In RSKC ALL_CAPITAL is maintained.
    Error messages for Invalid characteristics appear like this.
    Value '706Aktivitetshus - Festpladsen ' (hex. '373036416B7469766974657473687573202D2046657374706C')
    Value '706Overf.06 til 07 Midtdjurs - d ' (hex. '3730364F766572662E30362074696C203037204D696474646A'
    Plese post me the proper step by step procedure to fix the problem.
    Rakesh

    Hi,
    I think you are facing an invalid character issue.
    This issue can be resolved by correcting the error records in PSA and updating it into the target. For that the first step should be to identify if all the records are there in PSA. You can find out this from checking the Details tab in RSMO, Job log , PSA > sorting records based on status,etc. Once its confirmed force the request to red and delete the particular request from the target cube. Then go to PSA and edit the incorrect records (correcting or blanking out the invalid entries for particular field InfoObject for the incorrect record) and save it. Once all the incorrect records are edited go to RSA1>PSA find the particular request and update to target manually (right click on PSA request > Start update immediately).
    I will add the step by step procedure to edit PSA data and update into target (request based).
    Identifying incorrect records.
    System wont show all the incorrect records at the first time itself. You need to search the PSA table manually to find all the incorrect records.
    1. First see RSMO > Details > Expand upate rules / processing tabs and you will find some of the error records.
    2. Then you can go to PSA and filter using the status of records. Filter all the red requests. This may also wont show the entire incorrect records.
    3. Then you can go to PSA and filter using the incorrect records based on the particular field.
    4. If this also doesnt work out go to PSA and sort (not filter) the records based on the particular field with incorrect values and it will show all the records. Note down the record numbers and then edit them one by one.
    If you want to confirm find the PSA table and search manually."
    In your case it says that
    Value '706Aktivitetshus - Festpladsen ' and Value '706Overf.06 til 07 Midtdjurs - d ' are invalid. Just convert this into Capital letters in PSA and reload.
    Steps to resolve this
    1. Force the request to red in RSMO > Status tab.
    2. Delete the request from target.
    3. Come to RSMO > top right you can see PSA maintenace button > click and go to PSA .
    4.Edit the record
    5. Save PSA data.
    6. Got to RSA15 > Search by request name > Right click > update the request from PSA to target.
    This should solve your problem for now.
    As a long term you can apply some user exit in source system side or change your update rules to ensure that this field is getting blanked out before getting loaded in cube or add that particular achr to permitted character list in BW (Run TCODE RSKC
    Input the <character> and execute the program) This will add <character> to the allowed characters list.
    OR
    RSKC --> type ALL_CAPITAL --> F8 (Execute)
    OR
    Run the report RS_ERRORLOG_EXAMPLE,By this report you can display all incorrected records of the data & you can also find whether the error occured in PSA or in TRANSFER RULES.
    OR
    Go to SE38 and execute the program RSKC_ALLOWED_CHAR_MAINTAIN and give ALL_CAPITAL or the char you want to add.
    Check the table RSALLOWEDCHAR. It should contain ALL_CAPITAL or the char you have entered.
    Refer
    /people/sap.user72/blog/2006/07/23/invalid-characters-in-sap-bw-3x-myths-and-reality-part-2
    /people/sap.user72/blog/2006/07/08/invalid-characters-in-sap-bw-3x-myths-and-reality-part-1
    /people/aaron.wang3/blog/2007/09/03/steps-of-including-one-special-characters-into-permitted-ones-in-bi
    http://help.sap.com/saphelp_nw04/helpdata/en/64/e90da7a60f11d2a97100a0c9449261/frameset.htm
    Thanks,
    JituK

  • Urgent Help, An unexpected error occurred. An unexpected error occurred processing your request. Ple

    I urgently need my problem solved, I have customers yelling because I can not do what they ask, and canceling a software with such little technical attention?, authenticate and buy something that again and again, I've tried all the solutions posteadas and no works, is really a shame.
    I do this step each window as both mac:
    http://helpx.adobe.com/muse/kb/unexpected-error-occurred-i-200.html

    Hello,
    We sincerely apologize for this unfortunate incident.  We are currently working on restoring networking to our liscensing service and hope to have a resolution shortly.
    We will be updating the status bar on the front page of the forum with further information and will write up a review of the events to share with the community when things have returned to normal.
    Thanks,
    Vikas

  • Urgent help in report error(Pratap)

    hi,
    i have a problem in error.
    In my query i have a date parameter p_date .my query is like this
    AND TRUNC(to_date(:P_DATE)) - TRUNC(to_date(aeh.accounting_date)) between :C_MINDAYS and :C_MAXDAYS
    when i run it in apps , i am getting a error message like this
    Rep-0613 value does not match mask 'DD-MON-RR'
    rep-0091 invalid value for paramater p_date
    can anyone tell me where is the problem
    thanks

    While defining the parameter :P_DATE, check whether you have put any format mask and if you have, then the value that you pass to the parameter must match the format mask. If you dont want a format mask, please remove it and try running the report.

  • Urgent Help!! error in lunching web dynpro application

    When I am tring to lunch the application after installation I am getting following error in log file.
    I am using version 2.0.13.
    !SESSION Sep 13, 2005 12:43:48.606 -
    java.version=1.4.2_09
    java.vendor=Sun Microsystems Inc.
    BootLoader constants: OS=win32, ARCH=x86, WS=win32, NL=en_US
    Command-line arguments: -os win32 -ws win32 -arch x86 -feature com.sap.java.ide C:\j2sdk1.4.2_09\bin\javaw.exe
    -Xmx512m
    -Xms128m
    -XX:PermSize=32m
    -XX:MaxPermSize=128m
    -DallUserDir='C:\Documents and Settings\All Users\Application Data'
    -cp C:\Program Files\SAP\JDT\eclipse\SapStartup.jar com.sap.ide.eclipse.startup.Main
    -os win32
    -ws win32
    -arch x86
    -feature com.sap.java.ide
    -showsplash C:\Program Files\SAP\JDT\eclipse\SapIde.exe -showsplash 600  -data C:\Documents and Settings\kgoon\Documents\SAP\workspace -install file:C:/Program Files/SAP/JDT/eclipse/
    !ENTRY Startup 1 0 Sep 13, 2005 12:43:48.606
    !MESSAGE Sap NetWeaver Developer Studio - Build: 200507190119
    !SESSION -
    !ENTRY org.eclipse.core.launcher 4 0 Sep 13, 2005 12:43:49.794
    !MESSAGE Exception launching the Eclipse Platform:
    !STACK
    java.lang.reflect.InvocationTargetException
         at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
         at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
         at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
         at java.lang.reflect.Method.invoke(Method.java:324)
         at com.sap.ide.eclipse.startup.Main.basicRun(Main.java:286)
         at com.sap.ide.eclipse.startup.Main.run(Main.java:795)
         at com.sap.ide.eclipse.startup.Main.main(Main.java:602)
    Caused by: java.lang.reflect.InvocationTargetException
         at org.eclipse.core.internal.boot.InternalBootLoader.run(InternalBootLoader.java:861)
         at org.eclipse.core.boot.BootLoader.run(BootLoader.java:461)
         ... 7 more
    Caused by: java.lang.NumberFormatException: For input string: ""
         at java.lang.NumberFormatException.forInputString(NumberFormatException.java:48)
         at java.lang.Integer.parseInt(Integer.java:489)
         at java.lang.Integer.parseInt(Integer.java:518)
         at com.tssap.config.ProxySettings.parse(ProxySettings.java:184)
         at com.tssap.config.ProxySettings.loadFromPreferences(ProxySettings.java:114)
         at com.tssap.config.Startup.runBeforeWBStartup(Startup.java:39)
         at com.tssap.util.startup.WBLauncher.run(WBLauncher.java:65)
         at org.eclipse.core.internal.boot.InternalBootLoader.run(InternalBootLoader.java:858)
         ... 8 more
    Please suggest.......
    Regards
    Kousik

    Hi Kousik,
    Have you specified proxy settings when you have started NWDS first time or you have installed NWDS?
    This problem could be becasue of that reason.
    or this setting, go to this file.
    c:program filessapjdteclipsepluginscom.sap.java.ide
    plugin_customization.ini
    Put the value for this.
    com.tssap.config/proxy = proxy:80
    Also check folowing link for the same.
    Error when launching Netweaver Developer Studio
    Regards,
    Bhavik

  • Urgent -- help please --   405 error

    I have a httpURLconnection class, if i try to call the method conn.getInputStream() it returns
    "Server returned HTTP response code: 405 for URL"
    Please let me know the solution,
    code is given below.
    Pavan
    String url="http://www.flash-b.com/services/ws/siteInspect.wsdl";
    URL target=new URL(url);
    conn = (HttpURLConnection)target.openConnection();
    conn.setRequestProperty("Proxy-Authorization", auth);
    conn.setAllowUserInteraction(true);
    conn.setRequestProperty("content-type","text/xml");
    conn.setDoInput(true);
    conn.setDoOutput(true);
    conn.setUseCaches (false);
    conn.setDefaultUseCaches (false);
    conn.setRequestMethod("GET");
    PrintWriter out = new PrintWriter(conn.getOutputStream());
    StringBuffer sc = new StringBuffer();
    String line = null;
    conn.getInputStream();

    From the HTTP spec:
    10.4.6 405 Method Not Allowed
    The method specified in the Request-Line is not allowed for the
    resource identified by the Request-URI. The response MUST include an
    Allow header containing a list of valid methods for the requested
    resource.
    So, the server doesn't allow a GET request by your app.

Maybe you are looking for

  • Iphone 4 Voice Control not working Properly after iCloud Contacts sync

    Hi All, I am facing a strange problem. Recently I enabled iCloud settings to sync contacts from my iPhone to iCloud. It asked me that do I want to merge the contacts from iCloud onto this iPhone. Obviously I clicked yes. What it did was actually not

  • Getting dump in my include

    HI, i wriien a piece of code in the exit  EXIT_SAPLEINM_002.In development is working fine but in quality giving dump ABAP runtime errors    TABLE_ILLEGAL_STATEMENT        Occurred on     04/27/2010 at 06:08:07 >> Short dump has not been completely s

  • Tags not exported to flickr

    Hi! Perhaps it´s me not seeing it, but when I export photos from Photos to Flickr it is not bringing the tags over to Flickr. Why? - or is there a way of making it doing it?? Kind regards Henrik

  • IPad keeps charging and not charging really fast when plugged in.

    My 'new' iPad is at 4% battery, and having plugged it in to charge (using the Lightning connector), the battery icon at the top right keeps flashing (charging to not charging) really quickly and making the charge noise continuously. This happens when

  • Material group field selection

    Hi, We configure the material group to be optional field in Material master (for some reasons) but when we create the purchasing view the system always ask for Fill up the Material group field. Is that mandatory field control for material group is ha