Values showing up as null in expression

I have a page that allows the user to modify some info in 2 fields and after making the change the info then gets sent to a servlet that makes the update. Problem is that before it's sent to the servlet the parameters show up as null. It's an object that is retrieved when the page first loads (I check to make sure it's not null obviously) then I use the object (through basic getter methods) to retrieve the data for the fields. after clicking the button I get the following error message:
java.lang.NullPointerException
     at org.apache.jsp.modQuestion_jsp._jspService(modQuestion_jsp.java:125)
     at org.apache.jasper.runtime.HttpJspBase.service(HttpJspBase.java:92)
     at javax.servlet.http.HttpServlet.service(HttpServlet.java:809)
     at org.apache.jasper.servlet.JspServletWrapper.service(JspServletWrapper.java:162)
     at org.apache.jasper.servlet.JspServlet.serviceJspFile(JspServlet.java:240)
     at org.apache.jasper.servlet.JspServlet.service(JspServlet.java:187)
     at javax.servlet.http.HttpServlet.service(HttpServlet.java:809)
....and it just keeps going. org.apache.jsp.modQuestion_jsp._jspService(modQuestion_jsp.java:125 is the line where I access the data to set it in the field. I'm able to set the value for the fields (one is actually a textarea and the other just an input field) when the page loads but when I send the data to the servlet I get this error. I can see the data just fine. The really strange part is that I do the exact same thing in another part of the app and I have no problem there. Has anyone had this problem before 'cause man am I stupped. Thanks

Here's the full stack trace:
org.apache.jasper.JasperException
     at org.apache.jasper.servlet.JspServletWrapper.service(JspServletWrapper.java:207)
     at org.apache.jasper.servlet.JspServlet.serviceJspFile(JspServlet.java:240)
     at org.apache.jasper.servlet.JspServlet.service(JspServlet.java:187)
     at javax.servlet.http.HttpServlet.service(HttpServlet.java:809)
     at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:200)
     at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:146)
     at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:209)
     at org.apache.catalina.core.StandardPipeline$StandardPipelineValveContext.invokeNext(StandardPipeline.java:596)
     at org.apache.catalina.core.StandardPipeline.invoke(StandardPipeline.java:433)
     at org.apache.catalina.core.ContainerBase.invoke(ContainerBase.java:948)
     at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:144)
     at org.apache.catalina.core.StandardPipeline$StandardPipelineValveContext.invokeNext(StandardPipeline.java:596)
     at org.apache.catalina.core.StandardPipeline.invoke(StandardPipeline.java:433)
     at org.apache.catalina.core.ContainerBase.invoke(ContainerBase.java:948)
     at org.apache.catalina.core.StandardContext.invoke(StandardContext.java:2358)
     at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:133)
     at org.apache.catalina.core.StandardPipeline$StandardPipelineValveContext.invokeNext(StandardPipeline.java:596)
     at org.apache.catalina.valves.ErrorDispatcherValve.invoke(ErrorDispatcherValve.java:118)
     at org.apache.catalina.core.StandardPipeline$StandardPipelineValveContext.invokeNext(StandardPipeline.java:594)
     at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:116)
     at org.apache.catalina.core.StandardPipeline$StandardPipelineValveContext.invokeNext(StandardPipeline.java:594)
     at org.apache.catalina.core.StandardPipeline.invoke(StandardPipeline.java:433)
     at org.apache.catalina.core.ContainerBase.invoke(ContainerBase.java:948)
     at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:127)
     at org.apache.catalina.core.StandardPipeline$StandardPipelineValveContext.invokeNext(StandardPipeline.java:596)
     at org.apache.catalina.core.StandardPipeline.invoke(StandardPipeline.java:433)
     at org.apache.catalina.core.ContainerBase.invoke(ContainerBase.java:948)
     at org.apache.coyote.tomcat4.CoyoteAdapter.service(CoyoteAdapter.java:152)
     at org.apache.coyote.http11.Http11Processor.process(Http11Processor.java:799)
     at org.apache.coyote.http11.Http11Protocol$Http11ConnectionHandler.processConnection(Http11Protocol.java:705)
     at org.apache.tomcat.util.net.TcpWorkerThread.runIt(PoolTcpEndpoint.java:577)
     at org.apache.tomcat.util.threads.ThreadPool$ControlRunnable.run(ThreadPool.java:683)
     at java.lang.Thread.run(Thread.java:534)
----- Root Cause -----
java.lang.NullPointerException
     at org.apache.jsp.modQuestion_jsp._jspService(modQuestion_jsp.java:125)
     at org.apache.jasper.runtime.HttpJspBase.service(HttpJspBase.java:92)
     at javax.servlet.http.HttpServlet.service(HttpServlet.java:809)
     at org.apache.jasper.servlet.JspServletWrapper.service(JspServletWrapper.java:162)
     at org.apache.jasper.servlet.JspServlet.serviceJspFile(JspServlet.java:240)
     at org.apache.jasper.servlet.JspServlet.service(JspServlet.java:187)
     at javax.servlet.http.HttpServlet.service(HttpServlet.java:809)
     at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:200)
     at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:146)
     at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:209)
     at org.apache.catalina.core.StandardPipeline$StandardPipelineValveContext.invokeNext(StandardPipeline.java:596)
     at org.apache.catalina.core.StandardPipeline.invoke(StandardPipeline.java:433)
     at org.apache.catalina.core.ContainerBase.invoke(ContainerBase.java:948)
     at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:144)
     at org.apache.catalina.core.StandardPipeline$StandardPipelineValveContext.invokeNext(StandardPipeline.java:596)
     at org.apache.catalina.core.StandardPipeline.invoke(StandardPipeline.java:433)
     at org.apache.catalina.core.ContainerBase.invoke(ContainerBase.java:948)
     at org.apache.catalina.core.StandardContext.invoke(StandardContext.java:2358)
     at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:133)
     at org.apache.catalina.core.StandardPipeline$StandardPipelineValveContext.invokeNext(StandardPipeline.java:596)
     at org.apache.catalina.valves.ErrorDispatcherValve.invoke(ErrorDispatcherValve.java:118)
     at org.apache.catalina.core.StandardPipeline$StandardPipelineValveContext.invokeNext(StandardPipeline.java:594)
     at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:116)
     at org.apache.catalina.core.StandardPipeline$StandardPipelineValveContext.invokeNext(StandardPipeline.java:594)
     at org.apache.catalina.core.StandardPipeline.invoke(StandardPipeline.java:433)
     at org.apache.catalina.core.ContainerBase.invoke(ContainerBase.java:948)
     at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:127)
     at org.apache.catalina.core.StandardPipeline$StandardPipelineValveContext.invokeNext(StandardPipeline.java:596)
     at org.apache.catalina.core.StandardPipeline.invoke(StandardPipeline.java:433)
     at org.apache.catalina.core.ContainerBase.invoke(ContainerBase.java:948)
     at org.apache.coyote.tomcat4.CoyoteAdapter.service(CoyoteAdapter.java:152)
     at org.apache.coyote.http11.Http11Processor.process(Http11Processor.java:799)
     at org.apache.coyote.http11.Http11Protocol$Http11ConnectionHandler.processConnection(Http11Protocol.java:705)
     at org.apache.tomcat.util.net.TcpWorkerThread.runIt(PoolTcpEndpoint.java:577)
     at org.apache.tomcat.util.threads.ThreadPool$ControlRunnable.run(ThreadPool.java:683)
     at java.lang.Thread.run(Thread.java:534)I've already posted the jsp code in question.Thanks again.

Similar Messages

  • COGS Value showing up as null Projects

    Hi All,
    We have a report called Revenue Report. In this report we track the revenue and cogs value for both OM orders and Projects. We are able to see th cogs value for OM order(i.e. sales order)but not for projects. We are using OOTB out of box mapping(i.e.SDE_ORA_GLCOGS) for populating cogs value.So we have approached oracle team to address this issue. Please find the below reply from Oracle. Can somebody help me how to calculate COGS value for projects.
    BIApps 7.9.6.x do not support the integration of Project and COGS out of the box. If you have cogs trx from Projects and would like to extract these trx, you can customize the SDE sql.
    [OOTB sql in SDE_ORA_GLCOGS]
    WHERE
    MMT.TRANSACTION_TYPE_ID IN (15, 33, 10008) AND
    (MMT.TRANSACTION_ACTION_ID,MTA.ACCOUNTING_LINE_TYPE ) IN
    ((27, 2), (1, 36), (36, 35))
    MMT : MTL_MATERIAL_TRANSACTIONS
    MTA : MTL_TRANSACTION_ACCOUNTS
    15 = RMA Receipt (Return Material Authorization)
    33 = Sales order issue (Ship Confirm external Sales Order)
    10008 = COGS Recognition
    (27, 2) = (Receipt into stores, Account)
    (1, 36) = (Issue from stores, Deferred Cost of Goods Sold)
    (36, 35) = (COGS Recognition, Cost of Goods Sold)
    These are OOTB default values to extract the cogs trx for sales order etc. These are configurable. You can add/modify these values as needed. You can check the OLTP MTL module for the meaning of each values

    Hi
    Are you using Project Manufacturing?
    Do you accrue revenue for OM in AR or in Projects?
    For the manufacturing world, not project related you could report on revenue and COGS from GL, or based on shipments transactions.
    If you generate revenue in Projects, what is the base method? do you recognize revenue based on WORK or COST? is so then all billable incurred cost during are considered as Cost of Sales.
    However, if you recognize revenue based on deliverables, then you should verify how the costs are accounted. There should be a method to classify part of the incurred cost as Cost of Sale and the other part as Project Work in Process (PWIP).
    There is no standard Oracle report that deals with scenarios where project costs are partially accounted as COGS and partially as PWIP.
    Dina

  • COGS Value showing as null for Projects

    Hi All,
    We have a report called Revenue Report. In this report we track the revenue and cogs value for both OM orders and Projects. We are able to see th cogs value for OM order(i.e. sales order)but not for projects. We are using OOTB out of box mapping(i.e.SDE_ORA_GLCOGS) for populating cogs value.So we have approached oracle team to address this issue. Please find the below reply from Oracle. Can somebody help me how to calculate COGS value for projects.
    BIApps 7.9.6.x do not support the integration of Project and COGS out of the box. If you have cogs trx from Projects and would like to extract these trx, you can customize the SDE sql.
    [OOTB sql in SDE_ORA_GLCOGS]
    WHERE
    MMT.TRANSACTION_TYPE_ID IN (15, 33, 10008) AND
    (MMT.TRANSACTION_ACTION_ID,MTA.ACCOUNTING_LINE_TYPE ) IN
    ((27, 2), (1, 36), (36, 35))
    MMT : MTL_MATERIAL_TRANSACTIONS
    MTA : MTL_TRANSACTION_ACCOUNTS
    15 = RMA Receipt (Return Material Authorization)
    33 = Sales order issue (Ship Confirm external Sales Order)
    10008 = COGS Recognition
    (27, 2) = (Receipt into stores, Account)
    (1, 36) = (Issue from stores, Deferred Cost of Goods Sold)
    (36, 35) = (COGS Recognition, Cost of Goods Sold)
    These are OOTB default values to extract the cogs trx for sales order etc. These are configurable. You can add/modify these values as needed. You can check the OLTP MTL module for the meaning of each values

    Please do not post duplicates -- COGS Value showing up as null Projects

  • Showing 0 or Null instead of blank in rpt?

    Hi,
    I created a report in the below fomat :
    -------- Col1, Col 2, Col 3
    Row1 - 12, 1, 01
    Row2 - 11, , 94,
    Rown - 23, 34,
    As per the condition defined I am not getting any value under col2-row2 and col3-rown...It is diaplayed as blank in the rpt.
    I would like to show 0 or Null instead of blank. How can I achieve this?
    Thanks....VK
    Edited by: 793773 on Sep 29, 2010 11:22 PM
    Edited by: 793773 on Sep 29, 2010 11:24 PM

    Yup I achieved it using IFNULL function. Below syntax I used.
    IFNULL(FILTER("- Quantity"."Total Quantity" USING (Product.TEXT_0 = 'Day')),0)
    Regards....VK

  • In WebI report, is that possible to show ZERO in NULL fields?

    in WebI report, is that possible to show ZERO in NULL fields? crystal report has no issue, but i could not find a way to set ZERO to NULL field
    can you tell?

    Bram,
    This formula you used above is corrcet but is returning you a character '0' and when a descending sort is applied character values will be at the top.
    So , apply the formula 'ToNumber' on the value returned form the above formula :-
    ToNumber(above formula)
    And then it will change 0 to number and give you the exact sort order.
    Thanks,
    Rohini Haksar

  • The value must not be NULL

    Post Author: rene.marxis
    CA Forum: Charts and Graphs
    copied from .Net-forum *** Hello we have one strange problem on one client where we use crystal reports.We have one application written in C# in VS2005 where we use some reports to that embed graphics generated from ZedGraph.The application works very fine on all clients except one.The
    report is prety simple. There are only 3 image items on the detail
    section and we pass the image data as a byte[] array to the report
    inside our dataset. For every image on the report we get the following
    error:"Crysytal Report Windows Forms Viewer"-"Der Wert darf nicht NULL sein.Parametername:path1"Which means "The value must not be NULL. Parametername: path1" We get the same errormessage for every image on the report.We
    allready checked the data inside the dataset and it is filled of course
    (also the same report works with the same data on other clients).Also other reports work fine on that client. Olny the once where image-data is passed from code is not working.  Here is some additional data:OS: Windows XP ProfessionalCR-Files from: CrystalReportsRedist2005_x86.msm (27. Januar 2006)Language  C# VS2005 Setup-Type: Install-Shield 12 (CR via merge-module) Here is some democode that produces the error (sorry i don't have permission to upload the project...)            ZedGraph.ZedGraphControl zgc = new ZedGraphControl();            zgc.Size = new Size(950, 500);            CreateChart(zgc);            Bitmap bmp;            MemoryStream ms;                        bmp = zgc.GraphPane.GetImage();                        ms = new MemoryStream();                        bmp.Save(ms, ImageFormat.Bmp);                        byte[] myImg = ms.GetBuffer();            ms.Close();            dsImage1.DataTable1.Rows.Add(myImg);            MessageBox.Show("Len of image in DS:" + ((byte[])dsImage1.DataTable1.Rows[0]["Img"]).Length);            rpt.SetDataSource(dsImage1);    //here comes the error            crystalReportViewer1.ReportSource = rpt; The dataset consists of oly on Img tag. Any suggestions? Thanks in advance rene.

    Hi,
    CL_MAPPING_XMS_PLSRV3-ENTER_PLSRV Interface Mapping http://hsbc.com
    IM_PAYEXT_PEXR2002_To_PEXR2002_BPM The value for the input paramter
    DIRECTORYNAME must not be null
    This is your error...make sure that when the mapping IM_PAYEXT_PEXR2002_To_PEXR2002_BPM is executed the element DIRECTORYNAME is present and is always containin some value...sort of mandatory field.
    Regards,
    Abhishek.

  • BO Webi report hierarchy with measure values showing more(almost double value) compare to BW Bex report

    Hi,
    In our BO Webi report hierarchy with measure values showing more(almost double value) compare to BW Bex report. Can any one please help on this.
    Is it BW problem or BO problem?
    I checked in some other threads but it's not given solution.
    Thanks,
    Manjunatha

    Hi,
    Is it BW problem or BO problem? : BO
    is it causing problem with hierarchly data only ?  without hierarchies data is matching or not?
    Post same in SAP BusinessObjects Web Intelligence  .
    Thanks.

  • Net value showing negative in excise billing for free goods items

    Dear All,
    Need value suggestions in business scenario.
    While issuing Free goods to customer in excise billing ,Net  value of ZTNN item showing negative
    Inserted R100 % condition type above Tax condtions.
    MRP is statistical and accessable value is calculated on MRP.
    How to  solve the above issue.
    Due to the Net value showing negative for Free of charge in excise billing,qty value  displaying twice the unit price value in printing
    Thanks & Regards
    H V Kumar.

    Hi
    It is depends on your pricing procedure how you defines.
    Kindly check once again in your pricing procedure.
    Test the cycle once again without entering the R100 condition type in sale order line item and check the next value.
    After enter the R100 condition type check the base value to calculate the Amount.

  • Main Item net value showing as zero by condition type R100.

    Hi Experts,
    I am configured free goods, maintained condition record for exclusive free goods.
    but in sales order free goods item is not populating and when i see the analysis the requirement 55 not met.
    I removed the requirement 55 and i saved it.
    Still in the sales order the  free goods exclusive item not populating.
    and i find that main Item net value showing as zero by condition type R100.
    Why system showing the main item amount as zero by condition type R100?
    Thanks in advance.

    HI ram reddy
    you have to maintain R100 requirement -55 it should be there
    also Alternative Condition Base value - 28(100% discount)
    check your main pricing procedure having conditon type R100 or not if it is not there then maintain
    conditon record in VBN1 for NA00 check all the setting(calculation rule)
    activate free goods pricing correctly(NA0001)
    save it now try
    Regards,
    Krishna.
    Edited by: kris_hna on Jul 14, 2011 11:13 AM
    Edited by: kris_hna on Jul 14, 2011 11:31 AM

  • SAP Net book value showing NIL

    Hi SAP Gurus,
    We have acquired the asset on oct 23.2010 the value of the asset is 189542.45 there is no depriciation charged for this asset for till date.Here the problem for this asset is IN AW01N-ASSET EXPLORER the net book value showing NIL but accoridng to the asset register calss the asset NBV-10558.00 WHY the asset is showing the NIL Balance in the Asset explorer
    IN AWO1N there is a tab change there it shows the value 189542.25- that is acquisition value of the asset bacame negitive here what would be the reason  and why the NBV showing NIL in ASSET EXPLOREE and there is no depriciation cahrged for this year
    In which report i can find the 189542.25- please give me your valuble suggestions on this

    any comments on this........

  • Numeric value out of range (null) - Inserting a double

    Allright,
    I can't figure this out to save my life.. I am refusing to put my code up because I am trying to insert into a DB Table with 140 some fields, so I will explain as best I can.. I am trying to insert a double into my DB.. I have been getting a numeric value out of range error on insertion. Just to see if it was a db problem, I shortened my query to 4 fields and two of them being the doubles for insertion. They inserted fine. So needless to say, i presumed that my insert statement for the 140 fields query was off. I double checked it and everything seems to be in order. I still get the error. I can assure that everything matches up.. my SQL string looks like this :
    SQL = "INSERT INTO TABLE 1 (VAL1, VAL2, VAL3 ... VAL146) VALUES (?, ?, ? .... ?);
    and my preparedStmt :
    ps = con.prepareStatement(SQL);
    ps.setInt(1, val1);
    ps.setInt(2, val2);
    ps.setString(3, val3);
    ps.setDouble146, val146);
    ps.executeUpdate();
    Please help me solve this..
    Ed

    The name of the table is FAC.
    Here is the query:
    INSERT INTO FAC (FAC_SK, KEY, ACTIVITY, BE_NUMBER,CATEGORY, CC, CLASS_LVL, CONDITION, COORD_BASIS, COORD_DATUM, COORD_DERIV,DOMAIN_LVL, EVAL, GRAPHIC_CC, GRAPHIC_ED_NUM, GRAPHIC_SCALE, GRAPHIC_SERIES,LAST_CHG_USERID, MIDB_TIMESTAMP, OPER_STATUS, OSUFFIX, PROD_LVL_CAP,PROD_LVL_REQ, RECORD_STATUS, RES_PROD, COORD, DATETIME_CREATED,DATETIME_LAST_CHG, FAC_NAME, GRAPHIC_AGENCY, GRAPHIC_ED_DATE,GRAPHIC_SHEET, REVIEW_DATE, ACCESS, AFFILIATION, AIR_DEF_AREA,ALLEGIANCE, BE, CAPACITY, CAPACITY_EVAL, CAPACITY_MAX, CAPACITY_UM,CLASS_RATING, CMD_CNTL_COMM, CODEWORD, CONDITION_AVAIL, CONTROL_MARK,COORD_DERIV_ACC, COORD_DERIV_ACC_UM, COORD_ROA, COORD_ROA_CONF_LVL,COORD_ROA_UM, CPFL, CRITICAL_INDUSTRY, DECLASS_ON, DEGREE_INTEREST,ELEVATION, LAT, LON, ELEVATION_ACC, ELEVATION_CONF_LVL, ELEVATION_DATUM,ELEVATION_DERIV, ELEVATION_DERIV_ACC, ELEVATION_DERIV_ACC_UM, ELEVATION_MSL,ELEVATION_MSL_ACC, ELEVATION_MSL_CONF_LVL, ELEVATION_MSL_DERIV, ELEVATION_MSL_DERIV_ACC,ELEVATION_MSL_DERIV_ACC_UM, ELEVATION_MSL_UM, ELEVATION_UM, FOREIGN_TECH_CC,FOREIGN_TECH_PERCENT, FPA, FUNCT_PRIMARY, FUNCT_SECONDARY, GEOIDAL_MSL_SEPARATION,GEOIDAL_MSL_SEPARATION_UM, ILAT, ILON, INTEGRATION, LINE_QTY, MED_DIAGNOSTICS,MED_MASS_CASUALTY, MIL_AREA, MIL_GRID_SYS, MODERNIZATION, MSN_PRIMARY, MSN_PRIMARY_SPECIALTY,MSN_SECONDARY, MSN_SECONDARY_SPECIALTY, OPEN_STG_COVERED, OPEN_STG_FILLED, OPEN_STG_TOTAL,OPEN_STG_UM, OUTPUT, OUTPUT_EVAL, OUTPUT_MAX, OUTPUT_RATE, OUTPUT_UM, PERIODICITY, PIN,POL_SUBDIV, POP_AREA, POP_AREA_PROXIMITY, POWER_DISTRICT, POWER_DISTRICT_SUB, POWER_SOURCE,RECUP_INTRVL, RECUP_INTRVL_MAX, RECUP_INTRVL_UM, RECUP_LOSS_IMPACT, RECUP_REPAIR_PRIORITY,RELATIVE_RANKING, RELEASE_MARK, ROLE_LVL, ROLE_TYPE, SCALE, TDI, TGT_RESTR, TURN_AROUND_TIME,WAC, WATERBODY, ADDRESS_NAME, CAPACITY_DATE, CAPACITY_EVAL_DATE, COORD_DATETIME,DATETIME_BEGIN, DATETIME_END, DATETIME_FIRST_INFO, DATETIME_LAST_INFO, DECLASS_ON_DATE,LOC_NAME, MAX_DEMO_USE, MIL_GRID, OUTPUT_DATE, OUTPUT_EVAL_DATE, PLACE_NAME, POSTAL_CODE,SCENARIO_SET, STREET_NAME, STREET_NUM, SYMBOL_CODE, UTM) VALUES(?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?);
    The query works fine if I have no value for the two doubles : LAT and LON..
    If I have a value for them, the thing gives me an error:
    Numeric value out of range (null)
    If you see anything wrong with that query.. Let me know..
    Takizzle

  • Sales value showing 3000Rs in credit management FD33 as open delivery value

    Sales value showing 3000Rs in credit management FD33 as open delivery value, I want to get the delivery document numbers.

    Hi Friend,
    open delivery value in credit management will updated in SO67 AND this is  information structure.
    Please find the below link to which is similar to your issue
    Open Delivery Value - Credit Mgt
    Thanks
    Dasaradha

  • I have just changed internet providers from BT to Virgin, and now my iTunes doesn't show any of my airport express devices.

    I have just changed internet providers from BT to Virgin, and now my iTunes doesn't show any of my airport express devices.  I assume that I have to reconfigure them to the the new wireless but how do I do this frmo my PC?  Thanks

    I would recommend that you start by performing a "factory default" reset on each of your AirPort Express base stations. Once completed, you can use the following Apple Support article to configure each base station for streaming.

  • Incorrect cost/revenue value show in cProjects

    Hi all,
    I'm working with cProjects and PS.
    The problem is: costing value showed in cProjects is incorrect(it’s 10 times bigger than that value in PS), however the value showed in PS is correct.
    For example:
    1 engineer has cost/revenue rate : 10usd/15usd /Hour
    He work 10hours for a Task
    in PS (ECP, CJ40,..)we will see the cost/revenue is: 100usd/150usd
    however in cProjects (Tab: Accounting) we will see the cost/revenue is: 1000/1500
    Please help me to solve that problem, it's very urgent.
    Thank you very much
    Duc Nguyen

    HI Duc,
    It sounds like a curreny problem with the  decimal place, would you please check the customizing item :
    SAP NetWeaver -> General Settings -> Currencies -> Set Decimal Places for Currencies
    Please check in BOTH systems (cProject & ERP), if there is any difference for the USD?
    Kind regards,
    Zhenbo

  • [Office365][Calendar]When event has alot of attachments, sometimes value of subject is null.

    I use below Office365 rest API to get events of specified calendar.
    https://outlook.office365.com/api/v1.0/me/calendars/{calendar_id}/events
    When event has alot of attachments, sometimes value of subject is null.
    Is it bugs of REST API ?

    Hi LanNT,
    Thanks for your post!  The issue may be with returning Body for the specific item you are opening.  We just tried reproing and were unable to, when accessing an event with or without attachment.  The body displays fine.  Do you see
    this behavior occur with multiple events with attachments?
    Please let me know if you have any questions or need more info.
    Thanks,
    Venkat

Maybe you are looking for

  • Error Messages for iTunes and Quicktime, what do I do?

    Hello, I'm in need of some help. Let me walk you all through what I did for the last 4 hours: (important note: I suck at far too much computer stuff, so I am fully aware that as you read the following, at certain points I probably made the problem mu

  • Message as "check if invoice already entered under accounting doc in FB01

    Hi all,   our requirement is to set a message when the user try to post vendor invoice duplicate in FB01. Message should be displayed if the refence no, amount matches with already posted invoices. Please hepl us. Regards, Amar

  • How do i get rid of popups during msn games

    I go into msn games, try to click on a game but a list of popups cover play now. I have to go out of program and go back in several times till I'm able to play the game. Spoke to Dell tech today and he thought it was the firefox. In any case can this

  • Extern declaration in DECLARE DB_NAME DATABASE

    Hi I need to connect to 2 databases using Pro*C on Sun Solaris. We have our own lib which does EXEC SQL CONNECT :connstr. All the processes called the same function. Now i need to connect to one more DB in the same function. So i define the same as E

  • Dreamweaver CS5.5 won't launch

    I have been using Adobe Dreamweaver on this computer for almost two years. Today it started to crash every few minutes. Now it will no longer open. I cleared the preference, and reinstalled it, but it still will not launch. Any ideas? Thanks