Problem in getting data

Hi,
When I give the below query at SQL prompt. Iam getting an error "ORA-00932: inconsistent datatypes: expected NUMBER got LONG".
SqlExport=`sqlplus -s username/password@databasename << EOF
spool test1.txt;
set linesize 32767;
set PAGESIZE 0 space 0 feedback off echo off verify off heading off;
set termout off trimspool on;
SELECT column1,column2,column3,column4,....................column14 FROM table WHERE cond1,cond2;
exit sql.sqlcode;
commit;
spool off;
EXIT;
EOF`
My guess is in the above query column4 is of LONG datatype contains large data. so the Sqlexport variable is not able to hold that many records. Please let me know If Iam wrong and please let me know solution for this.

Please forgive me, but I'm a little confused now.
You started out with
"ORA-00932: inconsistent datatypes: expected NUMBER got LONG".followed by a pseudo query
SELECT column1,column2,column3,column4,....................column14 FROM table WHERE cond1,cond2;Upon asked you stated:
Iam selecting as it is. Iam not applying any sql function. and
No. In condition Iam not using that column or any column of LONG datatype.Now, you say
I tried using CONVERT_LONG_TO_CHAR('table','col4',col1).
But Iam not getting desired outputAre you pulling my leg, or is this a different problem, now?
- Perhaps you should post your actual query giving the ORA-00932
Regards
Peter

Similar Messages

  • Problem in getting data into database with standard direct input program

    HI All,
    I am having problem which is not updating the records in MM01 or MM02 with standard direct input program. i have data in internal table. from that table i am trying to upload into database by using background job MRP_MATERIAL_MASTER_DATA_LOAD.
    when i execute my program it is showing message job is started. then i go into sm37 and seethe job status by executing. there also i am seeing job completed succesfully.
    but if i go to mm03 and find the materials are updated or created there i couldn't find the material numbers which are from internal table.
    So if ny one help me it wil be great.
    Thanks in Advance
    Venkat N

    Hi Anil,
    Thanks for your answer, but i am facing problem is i have material no and denominator and Actual UOM and nominator field values in the flat file.....
    by using RMDATIND direct input program with MRP_MATERIAL_UPLOAD as job name for background job while uploading data into database.
    here i am not getting data in to database, but when i execute the job in sm37 it is showing that message job processing successfully completed...this is my status..
    if u can help me in this it will be gr8ful..
    Thanks,
    Venkat N

  • Problem in getting data on button submit

    I have 3 combo boxes in a form & a button on the other html form
    when the user will change the combo box, the form will be submitted with the values of all three combo boxes.
    And when the button is pressed it will again submit the form along with all the values of comboboxes & same values in different variables. I am doing this so the new variables can be used to call the discoverer sheet & old can be used to mantain the state of the combo boxes.
    The datasheet will not be populated on change of combo boxes, but will only show the data when the button is pressed.
    The problem i am getting the user is not getting the required data on the first click of the button, but when the button is pressed for the second time, the user will get the required result.
    Follwing is the chunk of code that I am using.
    <html>
    <head>
    <title>Untitled Document</title>
    <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
    </head>
    <script type="text/javascript">
    function myFunc(){
         document.forms["form1"].elements["GRP"].disabled=false;
         document.forms["form1"].elements["RGN"].disabled=false;
         var i = document.forms["form1"].elements["GRP"].value;
         var j = document.forms["form1"].elements["RGN"].value;
         var k = document.forms["form1"].elements["BR"].value;
         if(j == 0){
              submitform();
         else{
              submitform();
         if(k == 0){
              submitform();
         else{
              //makeGRPDisable();          
              //makeRGNDisable();          
              submitform();
    function submitform()
    document.form1.submit();
    function submitform2()
    document.form2.submit();
    var queryString;
    function getParameter( parameterName ) {
    queryString = window.location.search.substring(1).toLowerCase();
    //alert(queryString);
    //if (queryString.length==0) {return "null";}
    var parameters = new Array();
    parameters = queryString.split('&');
    for(var i = 0; i < parameters.length; i++) {
    //alert(parameters);
    //alert(parameters[i].indexOf(parameterName));
    if (parameters[i].indexOf(parameterName.toLowerCase())>=0) {
    //alert(parameters[i]);
    var parameterValue = new Array();
    parameterValue = parameters[i].split('=');
    return parameterValue[1];
    return null;
    var Pgid = getParameter('_pageid');
    var Gid = getParameter('GRP');
    var Rid = getParameter('RGN');
    var Bid = getParameter('BR');
    var Gid2 = getParameter('GRP2');
    var Rid2 = getParameter('RGN2');
    var Bid2 = getParameter('BR2');
    var ALid = getParameter('AL');
    </script>
    </head>
    <body>
    <table width="100%" border="1" cellpadding="0" bordercolor="#F26520" bgcolor="#FFFFFF">
    <tr>
    <td>
    <form name="form1" action="http://cdbo:7778/portal/page? method="GET">
    <oracle>
    declare
    theUser varchar2(30) := portal.WWCTX_API.get_user;
    Uid2 varchar2(30);
    begin
    htp.p('<input type="hidden" name="_pageid" value="553,142908" />');
    htp.p('<input type="hidden" name="_dad" value="portal" />');
    htp.p('<input type="hidden" name="_schema" value="PORTAL" />');
    htp.p('<input type=hidden name="AL" value=' || :v_al_id || '>');
    IF :v_al_id=0 THEN
    IF :v_group_id=0 AND :v_region_id=0 AND :v_branch_id=0 THEN
         htp.p('<select name="GRP" onChange="submitform()">');
         htp.p('<option value=0>All</option>');
         for i in (select groupcode, groupshortname from GROUPS@cdb)
         loop
              htp.p('<option value="' || i.groupcode || '">' || i.groupshortname || '</option>');
         end loop;
         htp.p('</select>');
         htp.p('<select name=RGN onChange="myFunc()">');
         htp.p('<option value=0>All</option>');
              htp.p('</select>');
         htp.p('<select name=BR onChange="submitform()">');
         htp.p('<option value=0>All</option>');
         htp.p('</select>');
    END IF;
    END IF;
    END;
    </oracle>
    </form>
    </td>
    <form name="form2" action="http://cdbo:7778/portal/page? method="GET">
    <td>
    <oracle>BEGIN
    IF :v_group_id=0 AND :v_region_id=0 AND :v_branch_id=0 THEN
         htp.p('<input type="hidden" name="_pageid" value="553,142812" />');
         htp.p('<input type="hidden" name="_dad" value="portal" />');
         htp.p('<input type="hidden" name="_schema" value="PORTAL" />');
         htp.p('<input type=hidden name="AL" value=' || :v_al_id || '>');
         htp.p('<input type=hidden name="GRP" value=' || :v_group_id || '>');
         htp.p('<input type=hidden name="RGN" value=' || :v_region_id || '>');
         htp.p('<input type=hidden name="BR" value=' || :v_branch_id || '>');
         htp.p('<input type=hidden name="GRP2" value=' || :v_group_id || '>');
         htp.p('<input type=hidden name="RGN2" value=' || :v_region_id || '>');
         htp.p('<input type=hidden name="BR2" value=' || :v_branch_id || '>');
         htp.p('<input type=button value=Submit onClick=submitform2()>');
    END IF;
    END;
    </oracle>
    </form>
    </td>
    </tr>
    </table>
    </body>
    </html>
    Regards
    AkS!

    AkS,
    I think I get it. You want the user to be able to change the combo boxes as they like, but the report is only refreshed when they click on the submit button. I don't understand why you need to refresh the screen each time a combo is selected, but I'm guessing that the values in the second and third combo boxes will vary depending on the selection made in the first.
    You could achieve this using AJAX calls, but that gets into a whole new game.
    I'm puzzled about the if ... then test to see that the fields are all set to 0 (that equates to "all" I think. If I read your code right, that means the form is only displayed if the user selects all from each combo. There's also a closing " mark missing at the end of the form action (you should't need the question mark - it will be added automatically).
    Using a GET method is good because you can see the parameters on the url, but It might be helpful to change the type of the inputs in form2 from hidden to text fields so you can see what Portal is seeing. It won't change the functionality, but it may help you see if the values are being set at the correct time.
    Finally, have you checked the cache settings for the page?
    I can't think of anything else to suggest.
    Patrick.

  • Facing problem in getting data in different field

    hi,
    i have made a report in ALV format. n the whole code is this..
    TABLES: VBAK,vbap.
    type-pools: slis.       "ALV Declarations
    SELECT-OPTIONS:
    s_sales   for    vbak-kunnr    obligatory,
    s_date    for    VBAK-audat    obligatory.
    *Data Declaration
    types: begin of s_sales,
      kunnr like vbak-kunnr,
      ernam like VBRP-ernam,
      audat like VBAK-audat,
      aufnr like VBAK-aufnr,
      KBMENG like vbap-KWMENG,
      matnr like vbap-matnr,
      matwa like vbap-matkl,
      end of s_sales.
    DATA: IT_VBAKUK TYPE STANDARD TABLE OF s_sales INITIAL SIZE 0,
          WA_sales TYPE s_sales.
    *ALV data declarations.
    data: fieldcatalog type slis_t_fieldcat_alv with header line,
          gd_tab_group type slis_t_sp_group_alv,
          gd_layout    type slis_layout_alv,
          gd_repid     like sy-repid.
    *start-of-selection.
    START-OF-SELECTION.
      perform data_retrieval.
      perform build_fieldcatalog.
      perform build_layout.
      perform display_alv_report.
    *&      Form  build_fieldcatalog
          text
    form build_fieldcatalog.
      fieldcatalog-fieldname   = 'KUNNR'.
      fieldcatalog-seltext_m   = 'Customer Code'.
      fieldcatalog-col_pos     = 1.
      append fieldcatalog to fieldcatalog.
      clear  fieldcatalog.
      fieldcatalog-fieldname   = 'ernam'.
      fieldcatalog-seltext_m   = 'Customer Name'.
      fieldcatalog-col_pos     = 2.
      append fieldcatalog to fieldcatalog.
      clear  fieldcatalog.
      fieldcatalog-fieldname   = 'stadat'.
      fieldcatalog-seltext_m   = 'Order Date'.
      fieldcatalog-col_pos     = 3.
      append fieldcatalog to fieldcatalog.
      clear  fieldcatalog.
      fieldcatalog-fieldname   = 'aufnr'.
      fieldcatalog-seltext_m   = 'Order No'.
      fieldcatalog-col_pos     = 4.
      append fieldcatalog to fieldcatalog.
      clear  fieldcatalog.
      fieldcatalog-fieldname   = 'KWMENG'.
      fieldcatalog-seltext_m   = 'Quantity'.
      fieldcatalog-col_pos     = 5.
      append fieldcatalog to fieldcatalog.
      clear  fieldcatalog.
      fieldcatalog-fieldname   = 'matnr'.
      fieldcatalog-seltext_m   = 'Material Code'.
      fieldcatalog-col_pos     = 6.
      append fieldcatalog to fieldcatalog.
      clear  fieldcatalog.
      fieldcatalog-fieldname   = 'matkl'.
      fieldcatalog-seltext_m   = 'Material Description'.
      fieldcatalog-col_pos     = 7.
      append fieldcatalog to fieldcatalog.
      clear  fieldcatalog.
    endform.                    "build_fieldcatalog
    *&      Form  build_layout
          text
    form build_layout.
      gd_layout-no_input          = 'X'.
      gd_layout-colwidth_optimize = 'X'.
    endform.                    "build_layout
    *&      Form  display_alv_report
          text
    form display_alv_report.
      gd_repid = sy-repid.
      call function 'REUSE_ALV_GRID_DISPLAY'
        EXPORTING
          i_callback_program = gd_repid
          is_layout          = gd_layout
          it_fieldcat        = fieldcatalog[]
          i_save             = 'X'
        TABLES
          t_outtab           = IT_VBAKUK
        EXCEPTIONS
          program_error      = 1
          others             = 2.
      if sy-subrc <> 0.
      endif.
    endform.                    " DISPLAY_ALV_REPORT
    *&      Form  data_retrieval
          text
    form data_retrieval.
      select vbakkunnr VBakernam VBAkaudat vbakaufnr vbapKWMENG vbapmatnr vbap~matkl
      up to 10 rows
        from vbak inner join vbap on vbakvbeln = vbapvbeln
        into table IT_VBAKUK.
    endform.                    "data_retrieval
    When a execute this query it get this result:
    Customer code Customer No. Order Date      *Order No. *        *Quantity *        Material code  Material Description
    0000001390     0000001390     0000001390     0000001390     0000001390     0000001390     0000001390
    0000001175     0000001175     0000001175     0000001175     0000001175     0000001175     0000001175
    0000001175     0000001175     0000001175     0000001175     0000001175     0000001175     0000001175
    0000001175     0000001175     0000001175     0000001175     0000001175     0000001175     0000001175
    0000001175     0000001175     0000001175     0000001175     0000001175     0000001175     0000001175
    0000001001     0000001001     0000001001     0000001001     0000001001     0000001001     0000001001
    0000002200     0000002200     0000002200     0000002200     0000002200     0000002200     0000002200
    0000002200     0000002200     0000002200     0000002200     0000002200     0000002200     0000002200
    0000002200     0000002200     0000002200     0000002200     0000002200     0000002200     0000002200
    0000002200     0000002200     0000002200     0000002200     0000002200     0000002200     0000002200
    You can see in all column data is repeating even tough i have given different field name...
    Kindly give me solution of this problem.
    Thanks n Regards.

    hi,
    i have these field:
    *select VBAK~KUNNR VBAK~ERNAM VBAK~AUDAT VBAK~AUFNR VBAP~KWMENG VBAP~MATNR VBAP~MATKL
      up to 10 rows
        from VBAK inner join VBAP on VBAK~VBELN = VBAP~VBELN
        into table IT_VBAKUK.
    endform.*
    I want to add these field in my parameter by using WHERE clause but don't know how to restrict these field using where clause.
    Kindly give me some example related to this.
    Regards

  • Problem in getting data in SNP Planning Area Data Source

    Hi All,
    Problem Statement: To fetch data from SNP Planning Area for reporting in SAP BW.
    Approach: Followed the standard SAP Help Document. Link:http://help.sap.com/saphelp_scm40/helpdata/en/e0/9088392b385f6be10000000a11402f/content.htm
    First Step: To create a DataSource on the Planning Area (Z9ASNP02) and Aggregate(9AMALO).
    For that
    Go to SAP Easy Access>Click on /SAPAPO/MSDP_ADMIN/ you are on S&DP Administration>Select the planning Area Z9ASNP02 double click on it
    You are on Change Planning Area Screen>Go to Extras left click>DP/SNP Data Extraction Tool-->Click on Generate Data Source, Provide the
    Data Source Name & Select the Aggregate 9AMALO and click on continue. Data Source is generated.
    But now when i go for Test Data Source-->Extractor Checker Screen and then providing the version 000 and then when i click on extraction Button
    It gives a Message "0 data records selected".
    Thanks in Advance,
    rahul

    Hi Somnath,
    Please correct me if my understanding is wrong; you are saying that, we cannot extract data from order series keyfigures. In that case how many key figures you maintain for time series, performance miight come down for planning area if you maintain huge no of keyfigures.
    Is there any way to extract data from Order series Planning area?
    Thanks & Regards,
    Jagadeesh.

  • Problem in getting data form serch help .

    Hi experts ,
    i am using function module F4IF_FIELD_VALUE_REQUEST to ge the values in a button click .
    i want to fill the values to be filled in the screen fields automatically when i click of a perticular line.
    please help me out.
    thanks in advance .
    Naval bhatt

    Hi,
    DATA : v_return LIKE  ddshretval OCCURS 0 WITH HEADER LINE.
    AT SELECTION-SCREEN ON VALUE-REQUEST FOR s_idn1-low.
    **--Value help for service provider
      PERFORM value_help_serprovider USING  c_add c_low.
    FORM value_help_serprovider USING p1_field p1_text.
    SELECT werks INTO TABLE i_t001w
      FROM t001w.
    CALL FUNCTION 'F4IF_INT_TABLE_VALUE_REQUEST'
             EXPORTING
                  retfield        = 'WERKS'
                  dynpprog        = ws_repid
                  dynpnr          = sy-dynnr
                  value_org       = 'S'
             TABLES
                  value_tab       = i_t001w
                  return_tab      = v_return
             EXCEPTIONS
                  parameter_error = 1
                  no_values_found = 2
                  OTHERS          = 3.
        IF sy-subrc <> 0.
         MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
         WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
        ENDIF.
      ENDIF.
    This the  main point to get the selected line into selection screen.
        s_plant1-low = v_return-fieldval.
    ENDFORM.                    " Value_Help_Serprovider

  • Problem in getting data while creating public template shopping cart(urgen)

    Hi Gurus,
    I am technical guy...Could you please suggest me how to populate the purchase organisation details(be_pur_org) which is of type bbps_sc_app_item.
    The problem is while creating normal shopping cart template it is displaying the vendor and inforecord details..when I use the same data for creating the public shopping cart it is not displaying the values (vendor and inforecord details) this is due to the missing of purchase organisation field value which is populated in the field be_pur_org which is of type bbps_sc_app_item.
    Is there any badi's to populate the purchase organisation details...?
    awaiting for all your replies..points will be rewarded with lots of appreciation
    Thanks & Regards,
    Ravi Ganji

    Hi
    <u>You can use either of the BADIs depending on your requirement.</u>
    BAdI Definition Name Description                                                                               
    BBP_PGRP_ASSIGN_BADI EBP Purchasing Documents: Assign Purchasing Group(s)       
    BBP_PGRP_FIND        Shopping Cart: Determine Responsible Purchasing Group(s)                                                                               
    BBP_DOC_CHANGE_BADI
    BAdI for Changing EBP Purchasing Documents
    <b>Please read the Standard documetation available with them using SE18 transaction in SRM system.</b>
    Which SRM version you are using ?
    Hope this will help.
    Please reward suitable points.
    Regards
    - Atul

  • Problem in getting data into the child window.

    Hi.
    problem description:
    I have a jsp(lets say parent.jsp). On click of a button in parent.jsp, a showmodal dialogue opens(say child.jsp).
    child.jsp has several fields and a 'search' button.
    On click of the 'search' button in child.jsp, data should be fetched from Database and should be populated in child.jsp, without submitting parent.jsp.
    I am able to fetch the data from DB. But unable to populate it in the same child window.
    How to achieve this?
    thanks
    Akash

    areee yaar...ajax and jsp are two different things altogther...whats harm in using ajax if most of the webapplication now deploy ajax for asynchronous call..

  • Using Item UIDRef, can we get data as set in "text on path option" dailog box for each "text on path" item

    Hi all,
    I have a Item UIDRef but facing a problem for getting data as set in "text on path option" dailog box for each "text on path" item.
    What I did:
    - Getting the  pointer "IMainItemTOPData" using item UIDRef as
      InterfacePtr<IMainItemTOPData> mainItemTOPData(shapesUIDRef, UseDefaultIID());
    - This interface has the method GetTOPOptionData () which return ITOPOptionsData pointer
    - But SDK don't have "ITOPOptionsData" class implementation.
    Second Approch:
    - Used "ITextOnPathSelectionSuite" and getting the correct result for Desktop plugin.But I want the correct result in server plugin also.
    Anyone who has an idea how to get this using UIDRef, please let me know.
    Regards,
    Jitendra Kumar Singh

    Hi Pulse,
    Unfortunately, Flex doesn't currently support text on a path. However, I binged it and found this:
    http://blog.tsclausing.com/post/49
    That might be useful.
    -Adam

  • How get data from WebPartStorage?

    Hi, Im creating custom ToolPart. I want save and get data in WebPartStorage. Now i have problem with get data...This is what I create:
    How get data form  WebPartStorage?
    public partial class ExchangeRateWebPart : Microsoft.SharePoint.WebPartPages.WebPart
    [Browsable(true), Category("Miscellaneous"),
    DefaultValue("Site Names"),
    WebPartStorage(Storage.Shared),
    FriendlyName("URLs"), Description("Text Property")]
    public List<string> ListCurrentNames
    get;
    set;
    protected override void Render(HtmlTextWriter writer)
    base.Render(writer);
    writer.Write(ListCurrentNames);
    class ExchangeRateCustomToolPart : ToolPart
    public override void ApplyChanges()
    ExchangeRateWebPart webpart = (ExchangeRateWebPart)this.ParentToolPane.SelectedWebPart;
    webpart.ListCurrentNames = _listCurrentNames;

    Hi,
    According to your post, my understanding is that you wanted to create custom toolpart.
    WebPartStorageAttribute class specifies how a property should be stored.
    If a WebPartStorageAttribute attribute is not specified for a property, Personal is used by default.
    If a WebPartStorageAttribute attribute is specified for a property but the ControlledExport property is not
    set, the value is presumed to be set to false.
    You might have noticed that the Web Part custom property has some attributes. Each of them are described below.
    Property
    Description
    Browsable
    If false, the property is not displayed on the web part   property pane
    DefaultValue
    Default Value for the property
    WebPartStorage
    Shared, Personal and None are the enumeration members
    FriendlyName
    The name for the property for display purposes
    Description
    The tooltip about the property
    http://www.c-sharpcorner.com/UploadFile/40e97e/sharepoint-2010-web-parts-programming/
    there are some articles about custom the toolpart, you can have a look at them.
    http://www.wictorwilen.se/Post/Web-Part-Properties-part-1-introduction.aspx
    https://www.nothingbutsharepoint.com/sites/devwiki/articles/Pages/SharePoint-Creating-a-Custom-ToolPart-for-a-Custom-Web-Part.aspx
    http://microsoftsharepointdevelopment2010.blogspot.com/2012/03/creating-webpart-with-custom-toolpart.html
    Thanks,
    Jason
    Forum Support
    Please remember to mark the replies as answers if they help and unmark them if they provide no help. If you have feedback for TechNet Subscriber Support, contact
    [email protected]
    Jason Guo
    TechNet Community Support

  • How get datas???

    Hi..
    I have some problems with getting data s from any action .I define global variable and assign null value. In some action I get data s and in that action I assign this data s to global variable.But when I call that value out of this action it returns null value. I can't understand why in action the variable can't get values. Maybe I need getter????
    Thank in advise.

    I define this variable as a global.
    private Object tablename;
    tree.addTreeSelectionListener(new TreeSelectionListener() {
    public void valueChanged(TreeSelectionEvent e) {
    DefaultMutableTreeNode node = (DefaultMutableTreeNode) tree.tree.getLastSelectedPathComponent();
    tablename = tree.getLastSelectedPathComponent();
    if (node == null) {
    return;
    Object nodeinfo = node.getUserObject();
    String name = String.valueOf(nodeinfo);
    }

  • Problem with getting actual data from Detail in Master/Detail

    Hi.
    I'm using master-detail tables (based on Read-Only view objects connected with view link).
    In those tables some columns are inputText, so that user can change data for the use of stored procedure only (I don't want to change data showed in tables, just need a possibility to modify it before passing arguments to procedure)
    The problem is when I get data from rows from detail view (Read Only with attributes set to "updatable always") it's not the data user entered in the table (there is no problem in master table) but the data fetched from database.
    This is the way I do it in backing been:
    Row[] masterRows = view.getAllRowsInRange();
    for (int i = 0; i < masterRows .length; i++){
      MasterRowImpl row = (MasterRowImpl )masterRows;
    System.out.println("Group name:" + row.getGroup())
    RowIterator rowIterator = row.getDetailsView();
    while(rowIterator.hasNext()){
    DetailsViewRowImpl detailRow = (DetailsViewRowImpl )rowIterator.next();
    System.out.println("User name: " + detailRow.getName())
    So if (for example) in database I have Group1, with 3 detail rows: John1,John2,John3;
    and user in Tables displayedon page changes it like this:
    Group1_changed, John1, John2_blah, John333
    After executing the code above I get:
    Group name: Group1_changed
    User name: John1
    User name: John2
    User name: John3
    Is it a normal behaviour?
    ps. When I use entity based view objects there is no problem, but I want to use ReadOnly View Objects.

    this is my function that reads the data:
    while( ( ch = dis.read() ) != -1 ){
    mess.append((char)ch);
              licz++;
              if(licz>prog){
                   licz=0;
                   //gauge.setValue();
    when i use just mess.append(dis.readUTF()))
    i get en exception:
    java.io.EOFException
         at java.io.DataInputStream.readFully(+45)
         at java.io.DataInputStream.readUTF(+32)
         at java.io.DataInputStream.readUTF(+4)
         at KConnection.KConnector.connect(+137)
         at SerwisMain.download(+25)
         at SerwisMain.ok(+415)
         at KGUI.KInput.commandAction(+209)
         at javax.microedition.lcdui.Display$DisplayAccessor.commandAction(+152)
         at com.sun.kvem.midp.lcdui.EmulEventHandler$EventLoop.run(+459)

  • Need help to solve problem regarding Serial/USB want to get data on event base

    Hello This NI Forums have helped me a lot in learning the Labview, every time I am in problem people on this forums have helped me.
    Actually I need some example VI which could guide me to solve my problem.
    I want to get data on USB speed 1mega and should be event handled means when every a byte is received at com port ( which is always Hex value)  should be written in text file without the loosing the data.
    Thanks in advance 

    1. Use polling. Use the "Bytes at Serial Port" to read the data.
    2. No way to write each byte at a file at this speed . Store them in an array and every some time write the file and empty the array.
    3. If you can start with lower transfer rates and then go up to 1Mbps.

  • Workflow 2013 get data from user profile - Authorization problem...

    Hello. I am trying to get data from
    http://sp13/_api/SP.UserProfiles.PeopleManager/GetMyProperties
    in my WF2013....But there is an authorization problem
    {"error":{"code":"-2147024891, System.UnauthorizedAccessException","message":{"lang ......
    If I test this link in web browser everything is OK and I can access data.... So I try to add almost all permissions to my WF service but still without any success....I am testing this in SharePoint 2013.
    Please can some help me with this problem. Thank you

    Hi,
    Have you register the workflow against your site ?
    If not register it and check the "Authorization header"
    Register-SPWorkflowService -SPSite 'https://myhost/mysite' -WorkflowHostUri 'https://workflowhost:12990' -AllowOAuthHttp -Force
    Register SPWorkflowService
    Murugesa Pandian| MCPD | MCTS |SharePoint 2010

  • Problem with data format while getting data from BI

    Hi,
    I am trying to build a universe for the development of Web I reports, the data source on which I am trying to build the universe is from BI.
    There is date field in the data, which is loaded in to BI as a date, but while I am building the universe over the cube I am getting it as a character.
    When I am trying to use that field in the Web I reports, I have a problem sorting the date column.

    hi ,
    when you run the webi report , click change query and in that go to yourt field properties and then chage its settings to date.
    I think I have done this of similar kind lontg back. But there is this property somewhere where we can change the type of the varaible and then you can see the expected resutls.
    Thanks ,
    Anjna

Maybe you are looking for

  • Video Editing on Macbook

    Im thinking about purchasing a macbook or macbook pro. I was curious to know if the macbook has enough power to do some decent video editing on it. If i purchase the macbook, i will upgrade to 1GB Ram and 120GB Hard Drive. Any information would be he

  • DRM Import, Action Script

    Hi All, I am new to Hyperion DRM 11.1.2, I am confused about concepts such as metadata and data still not able to understand difference between them. What I understand is all Versions hold is set of independent hierarchies which have nodes and their

  • Simple quesiton on JTextArea, scroll bar

    HI, all java programmers, i think my question is simple...pls help ... I use the following coding to add a scrollable textarea to my JPanel , panelSouth. details = new JTextArea(); JScrollPane scrollPane = new JScrollPane(details,JScrollPane.VERTICAL

  • Help! can't store ja16sjis to nvarchar2 column.

    hi: I am using Oracle8.1.7. And NLS_CHARACTERSET=UTF8 , NLS_NCHAR_CHARACTERSET=JA16SJIS , I can store sjis code into varchar2 column, but when store into nvarchar2 column, all the code are converted into USASCII7. many '?' there. I use insert into te

  • Differenece between oracle streams and oracle Replication

    Hi all, Can anyone tell me difference between oracle streams and oracle replication? Regards