Problem facing when changing configuration characterstic values in SO

Hi Experts,
I am facing a problem when i am chaging sales order configuration characterstic values they are updating perfectly. But when i am creating purchase order with reference to sales order then the sales order configuration currency characterstic values are picking as 0 which are already updated perfectly in sales order.
I am using cl_cbase-> set_configuration method for to update the characterstic currency values.
                cl_cbase->set_mark_for_saving after the above method
                cl_cbase->save_and_free after the above method.
Would request your suggestions if you have come across this situation.
Advance Thanks
Regards,
Chandra.

Hi,
Can do it using Union All is prompt SQL and presentation variable in report.
Refer : http://www.varanasisaichand.com/2010/01/editing-all-choices-in-dashboard.html
Regards,
Srikanth

Similar Messages

  • Problem faced when automating the P.O and P.O Release transactions

    Hi,
    I was trying to automate the Purchase Order and Purchase Order Release screen using ECATT tool.
    I recorded the Purchase Order screen by importing the Purchase Requisition Number.
    When i record the Purchase Order screen, the screen settings was different and when i was replaying the script, the settings was different.
    The Problem which i faced was when i was recording the Purchase Order transaction, the header tab was in the expand status.But when i execute the recorded script, the header tab gets collapsed. Because of this change, the Purchasing Org tab value is not passed and it throws an error.
    Please help me to find a solution for this problem.
    The same happens in Purchase Order release transaction.
    When i am recording the Purchase Order Release transaction, the Release Strategy tab is active and when i am replaying the script which i have recorded, it is not the same of what i have recorded.
    Therefore, it throws an error.
    Kindly help me to get a solution for the problem

    Can u help me in doing this.
    I have not done any script using this Conditional loop. Help me to do this..
    If u also have any documents related to this Conditional loop, kindly let me know the links..
    Hope u will help me to find a solution.
    Regards,
    Shriram.S

  • Problem faced when installing oracle 10g

    i faced this problem when intalling oracle 10g in windows xp. this dos prompt opens for 5 min. and then it get closed..after tht nuthing happens.
    Starting Oracle Universal Installer...
    Checking installer requirements...
    Checking operating system version: must be 4.0, 5.0, 5.1 or 5.2. Actual 5.1
    Passed
    Checking monitor: must be configured to display at least 256 colors. Actual 4
    294967296 Passed
    All installer requirements met.
    Preparing to launch Oracle Universal Installer from C:\DOCUME~1\ADMINI~1\LOCALS~
    1\Temp\OraInstall2006-09-02_03-43-19AM. Please wait ...

    Check the directory read-write permission and the space on the C:\ Drive C:\DOCUME~1\ADMINI~1\LOCALS~1\Temp\OraInstall2006-09-02_03-43-19AM.
    Actually Oracle Installer might be trying to create log file and due to above two reason not able to proceed.

  • Problems faced when using JSTL

    Hi all,
    I am a beginner in using JSTL 1.1 tag library in my web application and I got problems when I was dealing with it. The problem is, how can I pass the form bean parameter value (e.g. ArrayList) into the core tag? What should I do before defining the <c:forEach/> and the attributes I should defined inside the tag? I am confused with them. Could anyone have suggestions? Please do shout. Many thanks!
    Van

    JSTL works with JSF only in particular circumstances. Those are some guides about this topic:
    http://jsffaq.com/Wiki.jsp?page=DoJSTLAndJSFCanBeUsedTogether
    http://jsffaq.com/Wiki.jsp?page=IsItPossibleToUseJSTLsCForEachWithFacesContext
    http://jsffaq.com/Wiki.jsp?page=IsItPossibleToUseJSTLsConditionalTagsWithFacesContext
    Sergey : http://jsfTutorials.net

  • Returning no records when changing query setFirstResult value

    On 1st pass through I can get the number of results based on setFirstResult and max number of records is set to 2 for testing. As a note setFirstResult() seems to be zero-based in that I have to set 1st result to 0 to get the 1st 2 records.
    I remove the query from session since I read we could not re-use the query if setting the first result. Then I always create a new query and set the 1st result to the 1st row of next page which would be 2. I have 4 records that match in the database, but never get any results back.
    Any help would be really appreciated !
    Here's my code:
    if (_databaseSession.getQuery(HOGLConstants.NAMED_QUERY_BY_PHONE) != null){_databaseSession.removeQuery(HOGLConstants.NAMED_QUERY_BY_PHONE);
    createSearchByPhoneQuery(_databaseSession, searchByPhoneDTO, requestedPage, _maxRowsPerScreen);
    Vector supplements = (Vector)databaseSession.executeQuery(HOGLConstants.NAMED_QUERY_BY_PHONE,_searchByPhoneDTO.getAreaCode(),_searchByPhoneDTO.getPhoneNo());
    private void createSearchByPhoneQuery(DatabaseSession databaseSession, SearchByPhoneDTO searchByPhoneDTO, int requestedPage, int maxRowsPerScreen) {
              int firstRecordRow = (requestedPage - 1) * _maxRowsPerScreen;// setFirstRecord(int) is zero-based even though API does not mentionit.
              ReadAllQuery _query = new ReadAllQuery(SuppReq.class);
              ExpressionBuilder builder = query.getExpressionBuilder();
    //          Define two expressions that map to the applicant's area code and phone number
              Expression areaCodeExpression =     builder.get(HOGLConstants.PERSISTAPPLICANT_AREA_CODE).equal(_searchByPhoneDTO.getAreaCode());
              Expression phoneNoExpression = builder.get(HOGLConstants.PERSISTAPPLICANT_PHONE_NO).equal(_searchByPhoneDTO.getPhoneNo());
              _query.setSelectionCriteria(areaCodeExpression.and(phoneNoExpression));
              query.setMaxRows(HOGLConstants.SEARCHRESULTS_ROWS_PER_SCREEN);
              query.addAscendingOrdering (HOGLConstants.PERSISTSUPP_REQ_ID);
    //          Specify the required arguments for the query
              query.addArgument(HOGLConstants.PERSISTAPPLICANT_AREA_CODE);
              query.addArgument(HOGLConstants.PERSISTAPPLICANT_PHONE_NO);
              query.setFirstResult(firstRecordRow);
              query.setQueryTimeout(HOGLConstants.QUERYTIMEOUT);
              databaseSession.addQuery(HOGLConstants.NAMEDQUERY_BY_PHONE, _query);
         }

    Hello,
    The max rows operation is applied independently from the firstResults opperation, and is applied first. So in setting max rows to 2, you are getting rows 1 and 2, and then by applying firstResults=2, you are skipping past the second row, hence getting 0 back. This is because Max rows is applied to the statement before execution, where as firstResult is applied to the returned resultset. You will need to use firstresults=2 and maxrows=4 to get rows 3+4.
    Also, you can change the query parameters on a named query. It is not recommended though only because named queries are stored on the session, and so in a multi-threaded app can cause problems when two threads try to execute the same query with, for example, different max results set. In a multithreaded environment you might want to get the named query and clone it before changing first/max rows, but for single threaded app there shouldn't be any problems.
    Best Regards,
    Chris

  • Problems faced when using xsl:include and extension functions

    I am Working in XML and XSLT using Oracle's XML Parser V2.
    Previously i had worked in Microsoft technology using MSXMLParser.
    I am facing some problems in XSLT. They are as below...
    1. Using <xsl-include href="Somexsl.xsl">
    the oraclexmlparser processor is giving the error : XSL-1002: Error while processing include XSL file (no protocol: Submenu.xsl).
    * Can u tell me why i am getting this error, and what is the fix for this.
    The same case with <xsl:import> too.
    2. In case i have to write some functions in the previous WD of xsl i used these statements
    <?xml version='1.0'?>
    <!DOCTYPE PageRoot SYSTEM "../../Common/dtd/PageNavBar.dtd">
    <xsl:stylesheet
    xmlns:xsl="http://www.w3.org/TR/WD-xsl"
    xmlns:html="http://www.w3.org/TR/REC-html40"
    result-ns="">
    <xsl:script xmlns:xsl="uri:xsl"><![CDATA[
    var strWebContentPath = "/SurSITE/Content/";
    var strWebImagePath = "/SurSITE/sursitegraphics/";
    function IncScript()
    return "<script language='javascript' src='/SurSITE/Includes/avalidations.js'></script>";
    ]]>
    </xsl:script>
    To call the function i used this
    <xsl:eval no-entities='true'> IncScript();</xsl:eval>
    * Can u tell me how do i do this now, i tried with the code above using the current name space (<xsl:stylesheet version="1.1"
    xmlns:xsl="http://www.w3.org/1999/XSL/Transform" />)
    Please use the example given above.
    I will be very greatfull to u if u can give me some suggestion or help for the above said problems.
    Thanking you and eagerly waiting for your reply(s).
    null

    The current version is "1.0" not "1.1"
    You haven't included the code for what your <xsl:include>
    statement looks like, which seems to be what it's complaining
    about...
    XSLT 1.0 has no <xsl:eval>, this is a microsoft specific tag
    from a pre-XSLT-1.0 version.
    XSLT 1.0 has no <xsl:script> element either.

  • Problem facing when calling a JAX WS WSDL

    Hi,
    I have a simple JAVA WS , deployed in a server and I want to call it from ODI , the JAVA Class takes some inputs as input Parameter and writes the data into the DB.
    I didn't use any explicit XSD for designing the WS, WS has it own inline schema.
    definitions targetNamespace="http://ws.test.com/" name="TestWSService"><types><xsd:schema><xsd:import namespace="http://ws.test.com/" schemaLocation="http://localhost:7001/Test-context-root/TestPort?xsd=1"/></xsd:schema></types>
    When I am using clicking on Connect to WSDL from OdiInvokeWebService tool from the Advance Editor, it is giving an error as ODI-20362:Couldn't connect to web Service, In the detailed description it is showing as
    "This URL does not point to a valid WSDL"
    I am not getting why I am getting such error, any help is highly appreciable.
    Thanks.

    Hi ,
    Can anyone pls help me.
    Inspite of changing proxy information in its preference dialog of ODI still I am getting the same error when trying to invoke a JAX_WS wsdl with inline schema.
    ODI-20362: Couldn't connect to web Service.
    In the detailed part I am getting as follows:
    com.sunopsis.wsinvocation.SnpsWSInvocationException: com.sunopsis.wsinvocation.SnpsWSInvocationException: This URL does not point to a valid WSDL
        at com.sunopsis.wsinvocation.client.WebServiceFactory.getParserIstance(WebServiceFactory.java:95)
        at com.sunopsis.wsinvocation.client.WebServiceFactory.getParserIstance(WebServiceFactory.java:126)
        at com.sunopsis.graphical.wsclient.RequestWsPane$17.doInBackground(RequestWsPane.java:1691)
        at com.sunopsis.graphical.tools.utils.swingworker.SwingWorker$1.call(SwingWorker.java:240)
        at java.util.concurrent.FutureTask$Sync.innerRun(FutureTask.java:303)
        at java.util.concurrent.FutureTask.run(FutureTask.java:139)
        at com.sunopsis.graphical.tools.utils.swingworker.SwingWorker.run(SwingWorker.java:279)
        at oracle.ide.dialogs.ProgressBar.run(ProgressBar.java:656)
        at java.lang.Thread.run(Thread.java:662)
    Caused by: com.sunopsis.wsinvocation.SnpsWSInvocationException: This URL does not point to a valid WSDL
        at oracle.odi.wsinvocation.client.impl.jaxws.OdiJaxwsParserImpl.setWsdlUrl(OdiJaxwsParserImpl.java:132)
        at com.sunopsis.wsinvocation.client.WebServiceFactory.getParserIstance(WebServiceFactory.java:89)
        ... 8 more
    Caused by: javax.wsdl.WSDLException: WSDLException: faultCode=OTHER_ERROR: Error importing schemas: java.io.IOException: Unable to parse schema at 'http://172.18.41.47:7001/GenericErrorHandlerWSApp-GenericErrorHandlerWS-context-root/ErrorHandlerWSPort?xsd=1': Expected 'EOF'.
        at oracle.j2ee.ws.wsdl.extensions.schema.SchemaSerializer.unmarshall(SchemaSerializer.java:76)
        at oracle.j2ee.ws.wsdl.extensions.ParseUtils.createExtensibilityElement(ParseUtils.java:112)
        at oracle.j2ee.ws.wsdl.xml.WSDLReaderImpl.parseTypes(WSDLReaderImpl.java:1505)
        at oracle.j2ee.ws.wsdl.xml.WSDLReaderImpl.parseDefinition(WSDLReaderImpl.java:790)
        at oracle.j2ee.ws.wsdl.xml.WSDLReaderImpl.readWSDL(WSDLReaderImpl.java:707)
        at oracle.j2ee.ws.wsdl.xml.WSDLReaderImpl.readWSDL(WSDLReaderImpl.java:656)
        at oracle.j2ee.ws.wsdl.xml.WSDLReaderImpl.readWSDL(WSDLReaderImpl.java:648)
        at oracle.odi.wsinvocation.client.impl.jaxws.OdiJaxwsParserImpl.setWsdlUrl(OdiJaxwsParserImpl.java:128)
        ... 9 more
    Caused by: java.io.IOException: Unable to parse schema at 'http://172.18.41.47:7001/GenericErrorHandlerWSApp-GenericErrorHandlerWS-context-root/ErrorHandlerWSPort?xsd=1': Expected 'EOF'.
        at oracle.j2ee.ws.wsdl.extensions.schema.SchemaSerializer.readSchemaFile(SchemaSerializer.java:186)
        at oracle.j2ee.ws.wsdl.extensions.schema.SchemaSerializer.loadReference(SchemaSerializer.java:138)
        at oracle.j2ee.ws.wsdl.extensions.schema.SchemaSerializer.processImportIncludeRedefine(SchemaSerializer.java:108)
        at oracle.j2ee.ws.wsdl.extensions.schema.SchemaSerializer.unmarshall(SchemaSerializer.java:73)
        at oracle.j2ee.ws.wsdl.extensions.ParseUtils.createExtensibilityElement(ParseUtils.java:115)
        at oracle.j2ee.ws.wsdl.xml.WSDLReaderImpl.parseTypes(WSDLReaderImpl.java:1505)
        at oracle.j2ee.ws.wsdl.xml.WSDLReaderImpl.parseDefinition(WSDLReaderImpl.java:790)
        at oracle.j2ee.ws.wsdl.xml.WSDLReaderImpl.readWSDL(WSDLReaderImpl.java:708)
        ... 12 more

  • Problem faced when using calculated field as filter

    Iam using an Oracle External Data Source.The external table contains a timestamp field and I add this to my data object.The year,month etc. functions work well on this field and results appear on list views.But when I try to generate a filter for this field and display the view I get errors.
    SQLSYNTAXERROREXCEPTION_REPORTSERVER_STREAMINGLIST_INITIALIZE
    Exception Message ORA-00904: "MONTH": invalid identifier
    So,I tried out with the call center data object found in bam samples.This had a datetime field.Filters on calculated fields work fine here.
    Is the former problem due to timestamp datatype or external datasource or anything else?
    Thanks,
    Raghuram

    Answer to following questions will help me narrow down the problem:
    1. Which version of BAM are you on - 10g or 11g?
    2. What condition are you using in filter i.e. "is equal to", "is less than equal to", "is like"...etc?
    3. In which format is the timestamp data being given in the filter? (by format, I mean mm-dd-yy HH:MM:SS etc)
    4. Can you give the exact datatype of the DB in which this timestamp data is stored?

  • Problem facing when uploadin file thru java applet using WSA

    I am facing a issue, when I am trying to upload a pdf file on a website which uses java applet and WSA as proxy. On the java applet window when I select the file a click upload, it gives " Upload failed : java.net.Unknownhostexception ".
    On checking the issue in java console getting following error "SEVERE: java.net.UnknownHostException: www.mca.gov.in
    java.net.UnknownHostException: www.mca.gov.in
    at java.net.PlainSocketImpl.connect(Unknown Source)
    at java.net.SocksSocketImpl.connect(Unknown Source)
    at java.net.Socket.connect(Unknown Source)
    at java.net.Socket.connect(Unknown Source)
    at java.net.Socket.<init>(Unknown Source)
    at java.net.Socket.<init>(Unknown Source)
    at org.apache.commons.httpclient.protocol.DefaultProtocolSocketFactory.createSocket(DefaultProtocolSocketFactory.java:86)
    at org.apache.commons.httpclient.HttpConnection.open(HttpConnection.java:652)
    at org.apache.commons.httpclient.HttpClient.executeMethod(HttpClient.java:628)
    at org.apache.commons.httpclient.HttpClient.executeMethod(HttpClient.java:497)
    at javazoom.transfer.client.http.HTTPTransfer.headInfo(Unknown Source)
    at javazoom.transfer.client.http.HTTPUploadTransfer.dbupdate(HTTPUploadTransfer.java:973)
    at javazoom.transfer.client.http.HTTPUploadTransfer.run(HTTPUploadTransfer.java:155)
    at java.lang.Thread.run(Unknown Source)
    network: Connecting http://www.mca.gov.in:80/ with proxy=DIRECT
    29-Oct-2009 15:03:58 javazoom.transfer.client.http.HTTPTransfer headInfo
    SEVERE: java.net.UnknownHostException: www.mca.gov.in
    29-Oct-2009 15:03:58 javazoom.transfer.client.http.HTTPUploadTransfer run
    INFO: Upload failed"

    Done, what next ?
    Noah

  • Problem occured when changing JButton to a type that extends JButton

    I picked up an old extra credit project I was working on from a college class to finish it. Here is what I orginially had as the variable.
    private JButton button_matrix = new JButton[9][9];I added a new class called SodokuCell...
    public class SodokuCell extends JButton {
    ...With a constructor:
    public SodokuCell(int _xCoord, int _yCoord, int _block){
         this.x = _xCoord;
         this.y = _yCoord;
         this.blocknum = _block;
    }I then changed my orginal JButton variable to SodokuCell and when I went to run it my GUI comes up with some odd results.
    http://img168.imageshack.us/img168/7762/oddguihb4.jpg
    When I run my mouse over where the buttons would be I get this
    http://img204.imageshack.us/img204/8895/oddgui2vv1.jpg
    Now what looks like buttons in the top left of each of the panels are not really buttons and I cannot figure out for the life of me how they got there but just changing a variable from a JButton to a class that extends JButton.
    If anyone needs any more code to help me solve this feel free to ask.
    Thanks.
    Message was edited by: gunth82: Changed image links to larger images.
    gunth82

    Ok here is a lot of the code in the GUI class
    public void arrangebuttons(){
              //************************** WEST PANEL ****************************************
              nw_panel.setBorder(BorderFactory.createMatteBorder(4, 4, 4, 4, Color.black));
              n_panel.setBorder(BorderFactory.createMatteBorder(4, 4, 4, 4, Color.black));
              ne_panel.setBorder(BorderFactory.createMatteBorder(4, 4, 4, 4, Color.black));
              w_panel.setBorder(BorderFactory.createMatteBorder(4, 4, 4, 4, Color.black));
              center_panel.setBorder(BorderFactory.createMatteBorder(4, 4, 4, 4, Color.black));
              e_panel.setBorder(BorderFactory.createMatteBorder(4, 4, 4, 4, Color.black));
              sw_panel.setBorder(BorderFactory.createMatteBorder(4, 4, 4, 4, Color.black));
              s_panel.setBorder(BorderFactory.createMatteBorder(4, 4, 4, 4, Color.black));
              se_panel.setBorder(BorderFactory.createMatteBorder(4, 4, 4, 4, Color.black));
              nw_panel.setLayout(new GridLayout(3,3));
              nw_panel.setPreferredSize(new Dimension(panel_size_x, panel_size_y));
              n_panel.setLayout(new GridLayout(3,3));
              n_panel.setPreferredSize(new Dimension(panel_size_x, panel_size_y));
              ne_panel.setLayout(new GridLayout(3,3));
              ne_panel.setPreferredSize(new Dimension(panel_size_x, panel_size_y));
              w_panel.setLayout(new GridLayout(3,3));
              w_panel.setPreferredSize(new Dimension(panel_size_x, panel_size_y));
              center_panel.setLayout(new GridLayout(3,3));
              center_panel.setPreferredSize(new Dimension(panel_size_x, panel_size_y));
              e_panel.setLayout(new GridLayout(3,3));
              e_panel.setPreferredSize(new Dimension(panel_size_x, panel_size_y));
              sw_panel.setLayout(new GridLayout(3,3));
              sw_panel.setPreferredSize(new Dimension(panel_size_x, panel_size_y));
              s_panel.setLayout(new GridLayout(3,3));
              s_panel.setPreferredSize(new Dimension(panel_size_x, panel_size_y));
              se_panel.setLayout(new GridLayout(3,3));
              se_panel.setPreferredSize(new Dimension(panel_size_x, panel_size_y));
              //************************** EAST PANEL ****************************************
              east_nw_panel.setBorder(BorderFactory.createMatteBorder(4, 4, 4, 4, Color.black));
              east_n_panel.setBorder(BorderFactory.createMatteBorder(4, 4, 4, 4, Color.black));
              east_ne_panel.setBorder(BorderFactory.createMatteBorder(4, 4, 4, 4, Color.black));
              east_w_panel.setBorder(BorderFactory.createMatteBorder(4, 4, 4, 4, Color.black));
              east_center_panel.setBorder(BorderFactory.createMatteBorder(4, 4, 4, 4, Color.black));
              east_e_panel.setBorder(BorderFactory.createMatteBorder(4, 4, 4, 4, Color.black));
              east_sw_panel.setBorder(BorderFactory.createMatteBorder(4, 4, 4, 4, Color.black));
              east_s_panel.setBorder(BorderFactory.createMatteBorder(4, 4, 4, 4, Color.black));
              east_se_panel.setBorder(BorderFactory.createMatteBorder(4, 4, 4, 4, Color.black));
              east_nw_panel.setPreferredSize(new Dimension(east_panel_size_x, east_panel_size_y));
              east_n_panel.setPreferredSize(new Dimension(east_panel_size_x, east_panel_size_y));
              east_ne_panel.setPreferredSize(new Dimension(east_panel_size_x, east_panel_size_y));
              east_w_panel.setPreferredSize(new Dimension(east_panel_size_x, east_panel_size_y));
              east_center_panel.setPreferredSize(new Dimension(east_panel_size_x, east_panel_size_y));
              east_e_panel.setPreferredSize(new Dimension(east_panel_size_x, east_panel_size_y));
              east_sw_panel.setPreferredSize(new Dimension(east_panel_size_x, east_panel_size_y));
              east_s_panel.setPreferredSize(new Dimension(east_panel_size_x, east_panel_size_y));
              east_se_panel.setPreferredSize(new Dimension(east_panel_size_x, east_panel_size_y));
              east_nw_panel.setLayout(new GridLayout(3,3));
              east_nw_panel.setPreferredSize(new Dimension(east_panel_size_x, east_panel_size_y));
              east_n_panel.setLayout(new GridLayout(3,3));
              east_n_panel.setPreferredSize(new Dimension(east_panel_size_x, east_panel_size_y));
              east_ne_panel.setLayout(new GridLayout(3,3));
              east_ne_panel.setPreferredSize(new Dimension(east_panel_size_x, east_panel_size_y));
              east_w_panel.setLayout(new GridLayout(3,3));
              east_w_panel.setPreferredSize(new Dimension(east_panel_size_x, east_panel_size_y));
              east_center_panel.setLayout(new GridLayout(3,3));
              east_center_panel.setPreferredSize(new Dimension(east_panel_size_x, east_panel_size_y));
              east_e_panel.setLayout(new GridLayout(3,3));
              east_e_panel.setPreferredSize(new Dimension(east_panel_size_x, east_panel_size_y));
              east_sw_panel.setLayout(new GridLayout(3,3));
              east_sw_panel.setPreferredSize(new Dimension(east_panel_size_x, east_panel_size_y));
              east_s_panel.setLayout(new GridLayout(3,3));
              east_s_panel.setPreferredSize(new Dimension(east_panel_size_x, east_panel_size_y));
              east_se_panel.setLayout(new GridLayout(3,3));
              east_se_panel.setPreferredSize(new Dimension(east_panel_size_x, east_panel_size_y));
              for(int i=0;i<3;i++){
                   for(int j=0;j<3;j++){
                        //************************West Panel*****************************
                        button_matrix[i][j] = new SodokuCell(i,j,1);
                        button_matrix[i][j+3] = new SodokuCell(i,j+3,2);
                        button_matrix[i][j+6] = new SodokuCell(i,j+6,3);
                        button_matrix[i][j].addActionListener(new sodokuListener());
                        button_matrix[i][j+3].addActionListener(new sodokuListener());
                        button_matrix[i][j+6].addActionListener(new sodokuListener());
                        button_matrix[i+3][j] = new SodokuCell(i+3,j,4);
                        button_matrix[i+3][j+3] = new SodokuCell(i+3,j+3,5);
                        button_matrix[i+3][j+6] = new SodokuCell(i+3,j+6,6);
                        button_matrix[i+3][j].addActionListener(new sodokuListener());
                        button_matrix[i+3][j+3].addActionListener(new sodokuListener());
                        button_matrix[i+3][j+6].addActionListener(new sodokuListener());
                        button_matrix[i+6][j] = new SodokuCell(i+6,j,7);
                        button_matrix[i+6][j+3] = new SodokuCell(i+6,j+3,8);
                        button_matrix[i+6][j+6] = new SodokuCell(i+6,j+6,9);
                        button_matrix[i+6][j].addActionListener(new sodokuListener());
                        button_matrix[i+6][j+3].addActionListener(new sodokuListener());
                        button_matrix[i+6][j+6].addActionListener(new sodokuListener());
                        nw_panel.add(button_matrix[i][j]);
                        n_panel.add(button_matrix[(j+3)]);
                        ne_panel.add(button_matrix[i][(j+6)]);
                        w_panel.add(button_matrix[(i+3)][j]);
                        center_panel.add(button_matrix[(i+3)][(j+3)]);
                        e_panel.add(button_matrix[(i+3)][(j+6)]);
                        sw_panel.add(button_matrix[(i+6)][j]);
                        s_panel.add(button_matrix[(i+6)][(j+3)]);
                        se_panel.add(button_matrix[(i+6)][(j+6)]);
                        //************************East Panel*****************************
                        test_display[i][j] = new JLabel(button_matrix[i][j].toString());
                        test_display[i][j].setBorder(BorderFactory.createMatteBorder(1, 1, 1, 1, Color.black));
                        test_display[i][j+3] = new JLabel(button_matrix[i][j+3].toString());
                        test_display[i][j+3].setBorder(BorderFactory.createMatteBorder(1, 1, 1, 1, Color.black));
                        test_display[i][j+6] = new JLabel(button_matrix[i][j+6].toString());
                        test_display[i][j+6].setBorder(BorderFactory.createMatteBorder(1, 1, 1, 1, Color.black));
                        test_display[i+3][j] = new JLabel(button_matrix[i+3][j].toString());
                        test_display[i+3][j].setBorder(BorderFactory.createMatteBorder(1, 1, 1, 1, Color.black));
                        test_display[i+3][j+3] = new JLabel(button_matrix[i+3][j+3].toString());
                        test_display[i+3][j+3].setBorder(BorderFactory.createMatteBorder(1, 1, 1, 1, Color.black));
                        test_display[i+3][j+6] = new JLabel(button_matrix[i+3][j+6].toString());
                        test_display[i+3][j+6].setBorder(BorderFactory.createMatteBorder(1, 1, 1, 1, Color.black));
                        test_display[i+6][j] = new JLabel(button_matrix[i+6][j].toString());
                        test_display[i+6][j].setBorder(BorderFactory.createMatteBorder(1, 1, 1, 1, Color.black));
                        test_display[i+6][j+3] = new JLabel(button_matrix[i+6][j+3].toString());
                        test_display[i+6][j+3].setBorder(BorderFactory.createMatteBorder(1, 1, 1, 1, Color.black));
                        test_display[i+6][j+6] = new JLabel(button_matrix[i+6][j+6].toString());
                        test_display[i+6][j+6].setBorder(BorderFactory.createMatteBorder(1, 1, 1, 1, Color.black));
                        east_nw_panel.add(test_display[i][j]);
                        east_n_panel.add(test_display[i][(j+3)]);
                        east_ne_panel.add(test_display[i][(j+6)]);
                        east_w_panel.add(test_display[(i+3)][j]);
                        east_center_panel.add(test_display[(i+3)][(j+3)]);
                        east_e_panel.add(test_display[(i+3)][(j+6)]);
                        east_sw_panel.add(test_display[(i+6)][j]);
                        east_s_panel.add(test_display[(i+6)][(j+3)]);
                        east_se_panel.add(test_display[(i+6)][(j+6)]);
              main_panel.add(nw_panel);
              main_panel.add(n_panel);
              main_panel.add(ne_panel);
              main_panel.add(w_panel);
              main_panel.add(center_panel);
              main_panel.add(e_panel);
              main_panel.add(sw_panel);
              main_panel.add(s_panel);
              main_panel.add(se_panel);
              eastpanel.add(east_nw_panel);
              eastpanel.add(east_n_panel);
              eastpanel.add(east_ne_panel);
              eastpanel.add(east_w_panel);
              eastpanel.add(east_center_panel);
              eastpanel.add(east_e_panel);
              eastpanel.add(east_sw_panel);
              eastpanel.add(east_s_panel);
              eastpanel.add(east_se_panel);

  • Problem faced when the column is moved in Jtable

    Say , in a JTable 3 columns are present. the cells under the 2nd column is editable and 3rd is not editable. when i move the rd column to the second column position, the cells which were under second column becomes non editable. How to overcome this??

    when i move the rd column to the second column position, the cells which
    were under second column becomes non editable.Why do they become non editable?
    If I understand correctly when you call a TableModel's isCellEditable(int
    rowIndex, int columnIndex) the columnIndex argument has nothing to
    do with with where on the displayed JTable the column is being displayed.

  • Problem facing in Dynamic configuration in SAP PI 7.3

    Hello,
    I am doing dynamic configuration in sap pi 7.3. I am using the following UDF.
    String devFileName="'a.vc'";
    DynamicConfiguration conf = (DynamicConfiguration) container.getTransformationParameters().get(StreamTransformationConstants.DYNAMIC_CONFIGURATION);
    DynamicConfigurationKey FileName = DynamicConfigurationKey.create("http:/"+"/sap.com/xi/XI/System/File","FileName");
    conf.put(FileName, devFilename);
    I am using this UDF in message mapping and mapped this UDF in the message header.
    I have selected the adapter specific message attribute in receiver communication channel also.
    Still I am getting the folowing error.
    MP: exception caught with cause com.sap.engine.interfaces.messaging.api.exception.MessagingException: com.sap.aii.adapter.file.configuration.DynamicConfigurationException: The Adapter Message Property 'FileName' was configured as mandatory element, but was not supplied in the XI Message header
    Exception caught by adapter framework: The Adapter Message Property 'FileName' was configured as mandatory element, but was not supplied in the XI Message header
    'Transmitting the message to endpoint using connection File_http://sap.com/xi/XI/System failed, due to: com.sap.engine.interfaces.messaging.api.exception.MessagingException: com.sap.aii.adapter.file.configuration.DynamicConfigurationException:  The Adapter Message Property 'FileName' was configured as mandatory element, but was not supplied in the XI Message header.
    Please help me what to do.
    Thanks & Regards,
    Moumita

    Hi, try this code:
    String devFileName="a.vc";
    DynamicConfiguration conf = (DynamicConfiguration) container.getTransformationParameters().get(StreamTransformationConstants.DYNAMIC_CONFIGURATION);
    DynamicConfigurationKey key = DynamicConfigurationKey.create("http://sap.com/xi/XI/System/File","FileName");
    conf.put(FileName, devFilename);
    ASMA checkbox and respective parameter should be enabled in the required Adapter.
    Best Regards

  • Problems facing when upgrading to 10.1.3.4

    Hi All,
    We have upgraded the BPEL server from 10.1.3.3 to 10.1.3.4 also Upgraded the database from 10G to 10.2.0.4
    We are facing the following exception in the BPEL while invoking the Other BPEL throught PartenerLink this BPEL worked fine in 10.1.3.3 but throwing remote exceptions in 10.1.3.4
    exception on JaxRpc invoke: HTTP transport error: javax.xml.soap.SOAPException: java.security.PrivilegedActionException: javax.xml.soap.SOAPException: Message send failed: Connection reset
    Thanks In Advance

    Apply 10.1.3.4 MLR # 8 patch - 8372150

  • I have the same problem faced, when I wanted down load Facebook messenger. Could anybody help me out.

    I am now using Macbook Pro Yosemite 10.10.2.
    I wanted to purchase an app free, Facebook messenger, in the apps store and clicked the tab download, the login window popped up and I put into my password. Then, STATUS_CODE_ERROR in red colour appeared.
    Result being the login window could only be cancelled. Why?
    I did not find any difficulty to login herein to write this question.
    Please help me out, if anybody can.
    Thanks.
    rrrooshi

    Hi,
    Firstly please check if you have installed this update successfully:
    Open Windows Update, click View update history, click Installed Updates,check if there is this update.
    In addition, based on Microsoft Security Bulletin MS12-020, this security update resolves two privately reported vulnerabilities:
    KB2621440 and KB2667402.
    http://technet.microsoft.com/en-US/security/bulletin/ms12-020
    Karen Hu
    TechNet Community Support

  • How to update the table when change list item in classic report

    hi ,
    i worked with apex 4.2 and i create normal classic report with one select list(named loved)Column ,now i want to update table when user change the list with new value ,i can't create dynamic action to do this,i create check box with primary key and loop for check item to update the table but i can't get the value of list item. and for more speed the user want to do this when change the list value.
    my question
    1- how to do this by javascript and get the value from list item and update the table with new value
    2- is i must use API to create list item so i can get the value of item in report or what.
    Thanks
    Ahmed

    I coded the following to give you direction:
    1. In the "Element Attributes" section of the DEPTNO column, I call a javascript function as:
    onchange = "javascript:updateTable(this);"2. I wrote a simple javascript function that shows an alert when the user changes the select list as:
    <script language="JavaScript" type="text/javascript">
    function updateTable(pThis)
        var vRow = pThis.id.substr(pThis.id.indexOf('_')+1);
        alert('Row# - '+ vRow + ' has the value - ' + pThis.value);
    </script>Now, you can call a AJAX on-demand process inside the javascript function to update the database value.

Maybe you are looking for