Error in Reading the data when double quote(") is present.

Hi all,
We are trying to read the delimited data of below type: using file adapter
00|ABC   |00|          |ZZ|ABC      |ZZ|               |090914|above data works fine ..but when we have data of the below form:double quote after pipe symbol
00|"ABC   |00|          |ZZ|ABC      |ZZ|               |090914|
{code}
when a double is present at the begininng of the pipe sysmbol the message is getting rejected...but when we have other symbol's like single quote or plus sign  at the beggining the its working fine.
can anyone help me wat the issue is...im using soa 10.1.3.4                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       

any help.

Similar Messages

  • MSS 60.1.19 - Salary Development iView - Internal error wh reading the data

    Hi guys!
    I face the problem of an iView Salary Development. I get error: Internal error while reading the data. I found a thread with the same problem, but there is no solution. Did anyone of you solve this problem?
    Thanx for answers!
    Peter

    HI Peter
    I have the ivew salary development wroking more or less.  There are some problems with totals from wage types including IT14 & 15 which I have reported and waitnig for response frmo SAP..... but at least IT0008 is working ok on it.
    I didn't get this message so let me know how to help...!  Ha<ve you done the config for the iview yet?
    helen

  • Problem while displaying the data when double clicked on JTable element

    Hi All,
    i have one List box( JList ) and one table (JTable). Both JTable and JList are positioned on the same Frame. I am able to drag the elements from JList to JTable and also i have added the mouse click action on both List box and JTable.
    if i double click on JList element, that will popup one dialog box.
    if i double click on JTable cell element that was dragged from JList, that will popup same dialog box which was opened earlier for JList action.
    But my problem here is:
    Suppose if i drag the four elements one by one from JList to JTable and (after four elements dragged) double clicked the first element which was dragged first that displayed the popup dialog box structure correctly but the data displayed in that was not correct. It is showing the data of recent dragged element( i.e, fourth element).
    But if i double click on JList element that is showing the correct data according to the double clicked element.
    What might be the problem here, why it was not displaying the correct data when double clicked on JTable element.
    Please help me here.
    Many thanks in advance.
    The following code is used in mouse clicked event method of JList
    private void listMouseClicked(java.awt.event.MouseEvent evt) {                                              
             if(evt.getClickCount()==2){
             AssigningResourcesUI assignResource=new AssigningResourcesUI(this,true);
             assignResource.show();
    }                AND The following code is used in mouse click enevet method of JTable.
    private void tableMouseClicked(java.awt.event.MouseEvent evt) {                                          
            if(evt.getClickCount()==2){
             int row=table.rowAtPoint(new Point(evt.getX(), evt.getY()));
             int col=table.columnAtPoint(new Point(evt.getX(), evt.getY()));
             if(row==-1||col==-1){
                 return;
              Object obj=table.getModel().getValueAt(row, col);
             if(obj==null||(obj.equals(""))){
               }else{
             AssigningResourcesUI assignResource=new AssigningResourcesUI(this,true);
             assignResource.show();
         }            Thanks & Regards,
    Maadhav....
    Edited by: maadhav on Jul 1, 2009 7:22 AM

    I doubt it is related to your problem but:
    int row=table.rowAtPoint(new Point(evt.getX(), evt.getY()));Why are you creating a new Point? Just use evt.getPoint().
    Object obj=table.getModel().getValueAt(row, col);Don't get the data through the model method, get the data through the table method:
    Object obj = table.getValueAt(...)
    This way it will work even if the table happens to be sorted.
    Instead of creating a AssigningResourcesUI object, just disply the value retrieved from the model. That way you know whether the problem is with the mouse event code or your UI class. Like Walter suggested above I"m guess the problem is with your UI class.

  • 0CRM_SALES_ACT_1:error in loading the data when checking in extract checkor

    Hi gurus
    I am supposed to extract the data from the data source 0CRM_SALES_ACT_1. But when i am checking using the extract checkor it is giving error saying error occured during extraction. As i am new to CRM please help me the way with which i can handle this situation.
    Thanks and regards
    vijaykumar

    Actually, we have solved the issue another way. We managed to debug the data extraction and pinpoint an activity that actually had a "private" marker set in CRM. This means that the function modules for this extractor cannot extract that activity as it would require aleremote (or whichever rfc user you're using) to be the participant of that particular activity.
    Our solution was to remove that marker - it had to be done by the creator of that activity - in CRM, and then the extraxction went smoothly.
    If you cannot do it (remove the "private" marker), you could enhance the extractor and exclude in it those acitivites that have the private setting - it should also work.

  • SQLDatabase: Read a lot of data at once and process in memory or read the data when I need it?

    I'm not sure how to approach this problem. I require a big chunk of data records from the SQL server. This chunk is based on variables, so I don't know before what records I need. I need to do a large series of calculations and each calculation requires one
    (or more) records from this chunk of data. Again: I do not know which records are required.
    Should I:
    A. Load this data into the application memory all at once
    This creates a single connection to the DB, loads ALL required data by a query command (and a forward only DataReader) and then doesn't bother the SQL server anymore.
    The datafetch seems to be slow, since it's reading hundred of thousands of lines into memory
    B. Whenever the calculation needs data, retrieve it from the database
    This would open and close a connection to the SQL db multiple times per second.
    The initial datafetch is reduced to only a few miliseconds, but creates a massive load on the SQL server during calculation.

    Firstly, if you can turn your whole calculation in to an SQL query (or a series of queries or a stored procedure) then do so. Databases are good at this stuff, and you or a DBA may be able to do a lot to improve the query if it's still too slow.
    If not:
    Use a connection pool. Not doing so is usually crazy, unless you're writing a script that only connects once or twice.
    If you're testing this in a development environment with a local DB, beware that there can be a big difference in performance characteristics compared to a production one and don't over-optimize based on what you measure. Network delays in particular could
    catch you out. Fetching one row at a time may be fine with a low network latency, and awful with a high one.
    Database sizes are usually bigger in production, and go up over time. If you fetch all the data in advance you could get caught out and run out of memory (unless you know more about your data then we do...).
    As Pieter B suggests, you're probably better fetching data in batches if you really need a large number of rows. Then you'll neither blow everything else out of your server's memory, nor have a network latency and query overhead on every row. It'll also help
    if you want to report progress to the user.
    If you're really serious about making it go as fast as possible and not using SQL to do it, then you could try parallelizing your code. Then you can be calculating with
    one set of data whilst fetching the next, and if your production DB has multiple cores and disks you can parallelize in the DB, too. You could also look at caching, if that's appropriate (memcached and similar, or directly in your server if you know your data
    sizes well enough).

  • Error when reading the data of infoprovider

    Hello,
    I have a problem when excecuting the transaction 'listcube' on a specific infocube. It occurs an error message which complains problem when reading the data of the infoprovider. The message text sounds as follows:
    Error reading the data of InfoProvider ZDPPTGR1
    Message no. DBMAN305
    Diagnosis
    Errors occurred while reading a VirtualProvider outside the BI system. Check whether the previous error messages contain any information about the possible cause of this error.
    It is possible that the error message cannot be displayed because the error message class does not exist in the BI system. If this is the case, only the name of the error class and the message number are displayed. View the error message text in the specified error class in the source system of the VirtualProvider.
    Procedure
    Since the error is not necessarily in the BI system, there is no specific procedure for resolving it. With VirtualProviders, problems often occur with the connection to the remote system; these can lead to system termination. If the code for the VirtualProvider is not from SAP, contact the relevant contact person to help resolve the issue.
    If an SQL error is listed in the previous message, see the procedure for SQL errors.
    Has anybody experience with solving this problem? It sounds like a bigger problem - can somebody confirm this? Or is it a problem which is easy to solve?
    Thanks for answering!
    Kind regards
    Heinz

    Hi,
    Please follow the below threads. They are similar to the error you are facing and they may help you with the issue ::
    Remote cube - uncaught exception
    DBMAN350 Error reading MultiCube data over aggregate
    Error reading the data of InfoProvider 0TCT_VC01
    Regards,
    Arpit

  • Error reading the data from the remote cube

    Hi all,
    When we try to get the data for remote cube from LISTCUBE, we are getting the following msg.
    1) Messages for DataSource 9AUPA_DP_HK_01 from source system AD1CLNT100
    2) 224(/SAPAPO/TSM): No planning version selected
    3) Errors have occurred while extracting data from DataSource 9AUPA_DP_HK_01
    4) Error reading the data of InfoProvider UICHKRMTC.
    Any Inputs?

    Hi,
    Check whether the sourcesystem is responding.
    And also in the error mesg: 224(/SAPAPO/TSM): No planning version selected
    It seems you have not selected any planning version. Give any planning version in the listcube selection screen and execute.
    Regards,
    Ravi Kanth

  • Error while reading access data (URL, user, password) for the Adapter Engin

    Hi all,
    I encountered a red flag in sxmb_moni and when I click on the flag, I get the following message:
    Error while reading access data (URL, user, password) for the Adapter Engine
    Is there any way I can resolve this? thanks all
    Regards,
    IX

    Possible reason is Adapter engine is not registered on SLD. Check in SLD.
    You can also try restarting J2EE adapter engine and update SLD entries specific to XI domain.
    Lauch Visual admin go to Server > services > SAP AF CPA Cache
    Enter the appropriate values for:
    SLD.selfregistration.hostname (Use fully qualified hostname)
    SLD.selfregistration.httpPort
    SLD.selfregistration.httpsPort
    Finally, if all the above seem to be correct check the userID / pwd for user ID : PI*.

  • I use LabVIEW 7.1 but I have some problem when, I use LabVEW to read the data from serial communication

    I use LabVIEW 7.1 but I have some problem when, I use LabVEW to read the data from serial communication.
    I use LabVIEW to read the data from serial communication then, i open the example (.vi) from Serial Communication - Advanced Serial Write and Read  from LabVIEW Example. BUT it have some error message that : Error - 1073807202 occured  at property node in visa configure serial port (instr).vi -> advance serial write and read .vi
    this error code is undefined. no one has provide a description for this code, or you might have wired a number that is not an error code to the error code input.
    I don't know why? please help me. thank you.

    When I copy that code into "Explain Error" I get: "VISA:  (Hex 0xBFFF009E) A code library required by VISA could not be located or loaded."
    You may have a bad install of VISA or the wrong version of VISA loaded. Try re-installing VISA. You can get the latest version from the NI support site: http://digital.ni.com/softlib.nsf/webcategories/85256410006C055586256BBB002C0E91?opendocument&node=1....
    Also ensure that you are not pointing the example towards a serial port that does not exist.
    Please let us know what you find and what gets this working for you.
         Rob

  • BEX query error---Error reading the data of InfoProvider

    Hello all,
    we are getting the following msg when we execute the query-
    Error reading the data of InfoProvider ZEUDPR01
    Errors occurred when extracting data from DataSource 9AEU_DOM
    Short Text: Error for COM routine using application program (return c
    Parameter: 1028533- LC kernel
    Message in Source System: E102(/SAPAPO/OM) ...
    Short Text: COM - error Unknown
    Parameter: Unknown
    Message in Source System: E001(/SAPAPO/OM) ...
    Messages for DataSource 9AEU_DOM from source system PA1CLNT100
    Errors occurred during parallel processing of query 4, RC: 3
    Error while reading data; navigation is possible
    Row: 54 Inc: WRITE_MESSAGES Prog: CL_RSDR_AT_QUERY
    Found
    This is the error observed for a particular selection only..for rest of the selection we get the data correctly.
    Please help with the possible causes of error.
    Thanks,
    Pallavi

    Hi Pallavi,
    How did you manage the pb?
    we have the same error after Stack 21 (SP23)
    we could not run query.
    Thanks.
    John

  • Error running query - 'Error reading the data of InfoProvider 0TCT_VC01'

    Hi,
    I have worked through all the steps to activate BI statistics in our system (Netweaver 2004s SAP_BW 700 BI_CONT 702) yet some of the queries are not working.
    Specifically when I run the query 0TCT_MC01/0TCT_MC01_Q0131 I get an error that reads:
    Error reading the data of InfoProvider 0TCT_VC01                  
    There is still no data source assigned to VirtualProvider 0TCT_VC01
    Any help on how to resolve this would be appreciated.
    Thanks.
    Dyllan

    Did you install the underlying basic cube for the virtual cube(FM) to read the data from? That shoudl be 0TCT_C01- I guess

  • FCP error message: Unable to read the data on your source tape!

    Hey,
    So I have been editing on the MacPro now for over a year and I have never seen this message before...the message reads:
    _*"Capture encountered a problem reading the data on your source tape. This could be due to a problem with the tape."*_
    Has anyone got this message and could help me out please? I need to edit these tapes A.S.A.P.
    Thank You,
    Erick

    why would it start a month later giving me problems instead of when it was updated?
    That is a good point. Anything change since the time it worked to when it didn't? How about trying another firewire cable. Those can go south without notice, might cause this.
    Shane

  • Recently bought  a new computer and all my music appears in iTunes as well as on my computer in a saved folder. When I try to play the music in iTunes I get an error that reads"the song could not be used because the original file could not be found."

    Recently bought  a new computer and all my music appears in iTunes as well as on my computer in a saved folder. When I try to play the music in iTunes I get an error that reads"the song could not be used because the original file could not be found. Would you like to locate it?" Hope you can help me solve this issue.
    Thanks,
    Shellyboo

    This happens if the file is no longer where iTunes expects to find it. Possible causes are that you or some third party tool has moved, renamed or deleted the file, or that the drive it lives on has had a change of drive letter. It is also possible that iTunes has changed from expecting the files to be in the pre-iTunes 9 layout to post-iTunes 9 layout, or vice-versa, and so is looking in slightly the wrong place.
    Select a track with an exclamation mark, use Ctrl-I to get info, then cancel when asked to try to locate the track. Look on the summary tab for the location that iTunes thinks the file should be. Now take a look around your hard drive(s). Hopefully you can locate the track in question. If a section of your library has simply been moved, or a drive letter has changed, it should be possible to reverse the actions.
    Alternatively, as long as you can find a location holding the missing files, then you should be able to use my FindTracks script to reconnect them to iTunes .
    tt2

  • When I try to send a photo by email, an error message reads "The email server didn't recognize your username/password combination"  How do I fix this?

    When I try to send a photo from iPhoto by email, and error message reads "The email server didn't recognize your username/password combination".  How do I fix this?

    Try to reenter you rmail account details in the iPhoto Preferences > Accounts tab.
    Delete the mail account entry by pressing the "-" button below the left column in the panel, then add it again by pressing "+".
    Also, it is recommended, to set "Mail" as mail client in the iPhoto preferences, and not iPhoto. This has been working much more reliably lately.

  • Error while reading access data (URL, user,password) for the Adapter Engine

    Hi,
    Any idea on below message? I am doing file to file scenario and got the below tarce from sxmb_moni.
    <?xml version="1.0" encoding="UTF-8" standalone="yes" ?>
    - <!--  Call Adapter
      -->
    - <SAP:Error xmlns:SAP="http://sap.com/xi/XI/Message/30" xmlns:SOAP="http://schemas.xmlsoap.org/soap/envelope/" SOAP:mustUnderstand="">
      <SAP:Category>XIServer</SAP:Category>
      <SAP:Code area="INTERNAL">AE_DETAILS_GET_ERROR</SAP:Code>
      <SAP:P1>af.pi1.piserver1</SAP:P1>
      <SAP:P2 />
      <SAP:P3 />
      <SAP:P4 />
      <SAP:AdditionalText>no_messaging_url_found: Unable to find URL for Adapter Engine af.pi1.piserver1</SAP:AdditionalText>
      <SAP:ApplicationFaultMessage namespace="" />
      <SAP:Stack>Error while reading access data (URL, user, password) for the Adapter Engine af.pi1.piserver1</SAP:Stack>
      <SAP:Retry>M</SAP:Retry>
      </SAP:Error>
    Thanks
    Balaji

    It looks like the adapter engine is not able to register him self on SLD, you have to check in the SLD the "Exchange Infrastructure" domain, you have to verify restarting the J2EE the adapter engine update the entries in the SLD related to the specific XI Domain.
    Launch Visual Administrator >> Server >> Services >> SAP AF CPA Cache
    Enter the appropriate values for:
    SLD.selfregistration.hostname (Use fully qualified hostname)
    SLD.selfregistration.httpPort
    SLD.selfregistration.httpsPort
    Sandro

Maybe you are looking for

  • Files don't play smoothly when exporting from Final Cut Pro

    Hello, I have this strange problem that's haunting me for weeks (well months now)... I've made some videos, shot with a HD-camera (Sony, HDV HDR-FX1E (PAL)), 1080i), and I want to export it to the apple TV. The problem is that the videos on the apple

  • Harm Millaard You're Correct

    The nVIDIA Quadro FX 3800 is slower  When compared to cheaper gaming cards it dropped the Windows performance for Graphics and Gaming Graphics from a score of 7.4 to 6.9. It's a good thing I don't play games, but it is a bit of a shock to pay at leas

  • WRT54GS - Firewall - adding program to router's firewall

    Need help.  I have ATX 2007 tax software and I'm trying to do an e-filing.  I contacted software vendor and was walked through adding the software in exceptions using Windows Firewall.  I also disabled the windows firewall but still could not do a fi

  • Tv shows on my nano

    I purchased some tv shows on itunes, but they won't transfer to my nano

  • Acrobat touch up object tool

    I want to edit a page scanned into Acrobat using Photoshop, but when I select the tool from Advanced Editing and click on the page to edit, the page is divided into two portions.  How can I make the whole page be selected as one object?  Select all d