Invalid charector

I am getting ORA-00091 error message when I am using select query in a class file
public class QueryPnum {
String Identifier=null;
public QueryPnum()
super();
public String getIdentifier()
return this.Identifier;
public void setIdentifier(String tidentifier)
this.Identifier = tidentifier;
public String doQuery() throws ClassNotFoundException, SQLException
Connection con = null;
PreparedStatement ps= null;
ResultSet rs = null;
con = DBConnection.getConnection();
String sql="select identifier,first_name,last_name,phone_no,join_date,hlcard_num from cust
omer where identifier='"+this.Identifier+"'";
ps = con.prepareStatement(sql);
rs = ps.executeQuery();
String rt=" ";
while (rs.next())
rt=rt+ "<tr><td>"+rs.getString("identifier")+"</td>";
rt=rt+ "<td>"+rs.getString("first_name")+"</td>";
rt=rt+ "<td>"+rs.getString("last_name")+"</td>";
rt=rt+ "<td>"+rs.getInt("phone_no")+"</td>";
rt=rt+ "<td>"+rs.getDate("join_date")+"</td>";
rt=rt+ "<td>"+rs.getString("hlcard_num")+"</td></tr>";
con.close();
return rt;
Please Help me where I am making mistake

in while loop how u r using <td> <tr>.............
no JSP tag close %> ....
abhishek

Similar Messages

  • Invalid XML charector

    Hi,
    Could any one please tell me how to parse the invalid charectors which are less than &#32. The encoding style i am using is UTF-8 and its not possible for me to change the style to iso-8859-1.
    The exception i am getting is :
    org.apache.xml.utils.WrappedRuntimeException: Can not load requested doc: Character reference "&#2" is an invalid XML character.
    Scenario
    My application generates a report by picking data from the database and displays in the format( html,xml,csv).
    But while generating the report the the xerces is unable to parse the data and resulting the above error.
    I appreciate if any one could help me.
    Regards,
    Viswanath.

    If you put an illegal character into an XML document it will not be parseable. So, it's your choice. Put the illegal character in there and have an unusable document. Or don't put it in there and have a usable document. I know which I would prefer but it's up to you.
    If you're asking how you should represent illegal characters, should you decide not to put them into the document as is, that's up to you too. You can't just put in the standard XML encoding for the illegal character, either, because that's the same as putting in the character.
    I already mentioned one possibility. If you don't like that and want to do something else, that's fine too. Just remember that you have to represent all of your data as a sequence of legal XML characters. And the receiver of the document needs to know the rules so that it can decode the data back to the binary form.

  • Invalid charecters

    I need a validation message that when user send the invalid charectore as value to database invalid charectors thru send function a warning message is given that invalid values such as 'ABCD' charecter cannot be send.
    Currently when invalid charecters are entered and send to server a message comes that all data is send, (even though invalid charecters are not really send).
    How to ensure a warning message is given when invalid charecers are send to database.
    Appreciate inputs.
    Regards,

    Hi,
    you must write VBA code, something like this and put it in a module in a module (eventually adding boolean and if ok send data)
    Sub Pulsante1_Click()
        checkChar ("sa°l")
    End Sub
    Function checkChar(in_put As String)
    Dim charToExclude()
    Dim i, j As Integer
    charToExclude() = Array(",", "%", "/", "°", ".", "(", ")", ";", "!", "+", "^", "&", "", "?", "]", "[", "{", "}")
    For i = 1 To Len(in_put)
        For j = 0 To UBound(charToExclude()) - 1
            If Mid(in_put, i, 1) = charToExclude(j) Then
                MsgBox Str(i) + " character cannot be send", vbCritical + vbOKOnly, "Error Message"
            End If
        Next j
    Next i
    End Function
    Kind regards
    Roberto

  • Abap code requirement

    hi,
    i have a dso which is having 100 fields
    when i am loading data into dso i am getting error due to invalid charectors like #
    so i need to write a code in start routine
    so that i will check all the fields in dso and replace # with blank space
    i checked with a code for one field but i want a code for all fields in the dso
    i think this is possible in start routine
    can any one suggest me some code for that
    this code is for only one field but i want for 100 fields <b>so how to write it in start routine?</b>
    DATA: h_string(40) TYPE c.
    DATA: l_len TYPE i.
    CONSTANTS: c_valid(58) TYPE c VALUE
    ' !"%&()''*+-/,.<>=;:?_0123456789ABCDEFGHIJKLMNOPQRSTUVWXYZ'.
    h_string = source_field-CRM_DESCR.
    REPLACE ALL OCCURRENCES OF '#' IN h_string WITH space.
    WHILE NOT h_string CO c_valid.
    h_string+sy-fdpos(1) = ''.
    ENDWHILE.
    result = H_STRING.

    Hi,
    This is something one typically solves with field symbols
    ( see also http://help.sap.com/saphelp_nw70/helpdata/en/fc/eb3860358411d1829f0000e829fbfe/frameset.htm)
    You define it:
    data: i_fieldname(7) type C, tmp_string type string.
    field-symbols: <a_field_name> type any.
    do 100 times.
    tmp_string = sy-index.
    concatenate 'field' tmp_string into i_fieldname.
    assign (i_fieldname) to <field_name1>.
    REPLACE ALL OCCURRENCES OF '#' IN <field_name1> WITH space.
    enddo.
    That is if all variables start with the same.
    If not, an alaternative might be that you put all field names in a table and then work also with field symbols.
    Eddy
    PS. Which type of SDN Ubergeek/BPX suit are <a href="/people/eddy.declercq/blog/2007/05/14/which-type-of-sdn-ubergeekbpx-suit-are-you">you</a>?

  • Validation in input template

    I need a validation message that when user send the invalid charectore as value to database invalid charectors thru send function a warning message is given that invalid values such as 'ABCD' charecter cannot be send.
    Currently when invalid charecters are entered and send to server a message comes that all data is send, (even though invalid charecters are not really send).
    How to ensure a warning message is given when invalid charecers are send to database.
    Appreciate inputs.
    Regards,

    Hello,
    have you considered to archive this at Excel level by validating of entered values?
    You can set up validation rules so that end-users will be able to enter number only. This will prevent them entering any letters.
    Here is one example
    http://www.techonthenet.com/excel/cells/validation2.php
    You can choose Decimal in between -99999999999999999 to 99999999999999 with error message "The value you've entered is not numeric".
    The problem I see here is that if your EVDRE is dynamic the validation rules should be re-applied on expand. It seems I managed to overcome this by doing the following:
    -name the range where data is displayed as for example "Data"
    -apply Data Validation to the named range ("Data")
    This does the following: when EVDRE is re-expanded the "Data" range is dynamically changed. Data Validation is still applied only to the "Data" range.
    I tested this in Excel 2007. Must be tested on 2003. Presume it works well on 2010.
    I hope it helps.
    Kind Regards,
    Kirill Gromyko
    SAP BPC Support Team

  • Invalid character error during load to cube

    I have char length 30 and i trying to populate the cube field zpacreanm with values
    "barrier" in transformation, please help me should i reduce the length of char to 10
    or what should be th solution of error below.
    Error
    Value 'barrier' (hex. '004E0065007700410063007100750069007300690074006900') of characteristic ZPACREANM contains invalid Character     
    Please help me asap to resolve will really appreciate
    Thanks
    Soniya

    Hi,
    U can do in this way also.......
    actually there are no special charectors in ur text, the problem is u r trying to input lower case letters, u either change the lower case letters to upper case or
    select the check box 'lower case letters' in info object change/create screen for the particular/ relevant info object.
    assign points if useful
    Gan

  • Error while running a query-Input for variable 'Posting Period is invalid

    Hi All,
    NOTE: This error is only cropping up when I input 12 in the posting period variable selection. If I put in any other value from 1-11 I am not getting any errors. Any ideas why this might be happening?
    I am getting the following error when I try and run a query - "Input for variable 'Posting Period (Single entry, mandatory)' is invalid" - On further clicking on this error the message displayed is as follows -
    Diagnosis
    Variable Posting Period (Single Value Entry, Mandatory) is used as a lower limit (X) and an upper limit () in an interval selection. This limit has the value #.
    System Response
    Procedure
    Enter a different value for variable Posting Period (Single Value Entry, Mandatory). If the value of the other limit is determined by another variable, you can change its value also.
    Procedure for System Administration

    OK.
    Well, if the variable is not used in any interval selection, then I would say "something happened to it".
    I would make a copy of the query and run it to check if I get the same problem with period 12.
       -> If not, something is wrong in the original query (you can proceed as below, if changes to original are permitted).
    If so, then try removing the variable completely from the query and hardcode restriction to 12.
       -> If problem still persists, I would have to do some thinking.
    If problem is gone, then add the variable again. Check.
       -> If problem is back, then the variable "is sick". Only quick thing to do, is to build an identical variable and use that one.
    If problem also happens with the new variable, then it's time to share this experience with someone else and consider raising an OSS.
    Good luck!
    Jacob
    P.S: what fisc year variant are you using?
    Edited by: Jacob Jansen on Jan 25, 2010 8:36 PM

  • Payables Open Interface Purge completes with error "Invalid Cursor"

    Hello,
    I'm trying to run Payables Open Interface Purge (version 115.8) and get an invalid cursor error in the beforereport trigger. Does anyone know the cause and remedy of this? A portion of the log is below. I've looked at the cursor and everything looks fine to me.
    MSG-00001: (Import_purge 1) Check control table for the purge process
    MSG-00001: (Check_control_table 1) Lock the control table
    MSG-00003: (Check_control_table 2) Fetch import_requests
    MSG-00004: (Check_control_table 3) Check concurrent program status
    MSG-00999: FUNCTION GET_REQUEST_STATUS ERROR, Reason:
    MSG-00999: FND_CONCURRENT.GET_REQUEST_STATUS<-Check_control_table<-Import_purge<- Before report trigger <- APXIIPRG
    MSG-00999: check_control_table<-Import_purge<- Before report trigger <- APXIIPRG
    MSG-00999: (Import_purge 1) Check control table for the purge process
    MSG-00999: Delete record in control table..
    MSG-00999: ORA-01001: invalid cursor
    REP-1419: 'beforereport': PL/SQL program aborted.
    Thank you.

    I'm trying to run Payables Open Interface Purge (version 115.8) and get an invalid cursor error in the beforereport trigger. Does anyone know the cause and remedy of this? A portion of the log is below. I've looked at the cursor and everything looks fine to me.
    MSG-00001: (Import_purge 1) Check control table for the purge process
    MSG-00001: (Check_control_table 1) Lock the control table
    MSG-00003: (Check_control_table 2) Fetch import_requests
    MSG-00004: (Check_control_table 3) Check concurrent program status
    MSG-00999: FUNCTION GET_REQUEST_STATUS ERROR, Reason:
    MSG-00999: FND_CONCURRENT.GET_REQUEST_STATUS<-Check_control_table<-Import_purge<- Before report trigger <- APXIIPRG
    MSG-00999: check_control_table<-Import_purge<- Before report trigger <- APXIIPRG
    MSG-00999: (Import_purge 1) Check control table for the purge process
    MSG-00999: Delete record in control table..
    MSG-00999: ORA-01001: invalid cursor
    REP-1419: 'beforereport': PL/SQL program aborted.11i: Payables Open Interface Invoice Import Troubleshooting Guide (APXIIMPT) [ID 107628.1] -- 3. Open Interface Import Purge Fails with ORA-01001: Invalid Cursor
    Thanks,
    Hussein

  • I cant update nor download any applications. My password was always invalid. And other username is prompted richardca0521@yahoo.ca which is not my account. How to get rid of this apple id and use my account for download? I have registered this to itunes.

    I can't update nor download any apps in itunes. Prompted invalid password, upon checking the apple id was not mine. The id was [email protected] whic is not mine. Pls. Help how to get rid of this. Thank you.

    try and delete the apps and re-add them

  • How, can I fix my icloud account  !! It keeps saying that my account is InValid/account is disabled ? How can  I Inabled my account ?

    My Apple ID password for icloud / I have reset it and still my Account is Disabled ?
    MY icloud account for iTunes App Store ,keeps saying my account is invalid / disabled to contact " Customer Service" in the iTunes store?
    How do I fix this ? I've reset my iPad truned icloud App Store off or sign out of apple then signed back in with my new ID or Password!

    Goonercole wrote:
    Ok if my iTunes account is disabled how do I get it enabled please
    I told you in the first post:
    "If changing your password does not work, then contact itunes support."

  • Getting ora:00904 invalid indentifier error while running i query

    Hi,
    I have a remote database and local database both are oracle 10gR2.Now i have written the below mentioned query in my local database and is working fine,but in case remote database it is throughing error ora:00904 invalid indentifier.
    I had export the dump from remote db and import it on my local db and i tried the same and it is working fine on local after that also.
    As i believe that this error usually come for column name not exist or column name or it's length or for any special character in column name of the table.But as i said it is working fine on local db but not in remote db though i am using the same dump for local and remote.
    Though when i am querying the table i can able to fetch data for the any record but when i am using the below mentioned query for the same i am getting the error.As i am doing this to fecth the data for child parent related relationship.
    Can any one suggest is there anything related to configaration or something else.
    Please do let me know if you do want some more information on the query what i am doing inside of it.
    Rgds,
    Anit
    Edited by: Anit A. on Sep 1, 2008 2:32 AM
    Edited by: Anit A. on Sep 1, 2008 2:33 AM

    WITH t
    AS
    SELECT decode(t.spnlevel
    ,3,t.u_quotesdtlid
    ,2,decode((select count(*)
    from u_quotesdtl t2
    where t2.u_quotesdtlid = t.u_quotesdtlid
    and t2.parentspn = (t2.jobgroupid||':'||t2.jobtype)
    ),0,(select t1.u_quotesdtlid
    from u_quotesdtl t1
    where t1.spnitemcode = t.parentspn
    and t1.spnlevel = '3'
    and t1.jobtype = t.jobtype
    and t1.jobgroupid = t.jobgroupid
    and t1.QUOTEID = t.QUOTEID
    ),t.u_quotesdtlid
    ,1,decode((select count(*)
    from u_quotesdtl t2
    where t2.QUOTEID = t.QUOTEID
    and t2.parentspn = (t2.jobgroupid||':'||t2.jobtype)
    ),0,t.u_quotesdtlid,decode((select count(*)
    from u_quotesdtl t3
    where t3.QUOTEID = t.QUOTEID
    and t3.parentspn = (t3.jobgroupid||':'||t3.jobtype)
    and t3.u_quotesdtlid in (select t1.u_quotesdtlid
    from u_quotesdtl t1
    where t1.spnitemcode = t.parentspn
    and t1.spnlevel = '2'
    and t1.jobtype = t.jobtype
    and t1.jobgroupid = t.jobgroupid
    and t1.QUOTEID = t.QUOTEID
    ),0,(select t4.u_quotesdtlid
    from u_quotesdtl t4
    ,(select t1.parentspn
    ,t1.jobtype
    ,t1.jobgroupid
    from u_quotesdtl t1
    where t1.spnitemcode = t.parentspn
    and t1.spnlevel = '2'
    and t1.jobtype = t.jobtype
    and t1.jobgroupid = t.jobgroupid
    and t1.QUOTEID = t.QUOTEID
    ) t5
    where t4.spnitemcode = t5.parentspn
    and t4.spnlevel = '3'
    and t4.jobtype = t5.jobtype
    and t4.jobgroupid = t5.jobgroupid
    and t4.QUOTEID = t.QUOTEID
    (select t1.u_quotesdtlid
    from u_quotesdtl t1
    where t1.spnitemcode = t.parentspn
    and t1.spnlevel = '2'
    and t1.jobtype = t.jobtype
    and t1.jobgroupid = t.jobgroupid
    and t1.QUOTEID = t.QUOTEID
    ,null,t.u_quotesdtlid) as parentquoteid
    ,t.u_quotesdtlid as quotesdtlid
    ,t.spnlevel as spnlevel
    FROM u_quotesdtl t
    WHERE t.QUOTEID ='som key id'
    ORDER BY parentquoteid,t.spnlevel desc
    select * from t;

  • An error has occurred:Invalid postback or callback argument in InfoView

    Hi Friends,
    When i try to change the parameter values and click OK button while scheduling a report in InfoView, i am getting the following error:
    An error has occurred:Invalid postback or callback argument. Event validation is enabled using in configuration or in a page. For security purposes, this feature verifies that arguments to postback or callback events originate from the server control that originally rendered them. If the data is valid and expected, use the ClientScriptManager. RegisterForEventValidation method in order to register the postback or callback data for validation.
    Till now i have not find any good solution for this. Please help in providing any better solutions to fix this.
    Edited by: Shivananda Puli on Aug 6, 2010 11:55 AM
    Edited by: Shivananda Puli on Aug 6, 2010 11:55 AM

    This forum is for questions in regards to using the SDK within a custom application, since you are using Infoview, please post this in the applicable forum under the [Business Objects|/community [original link is broken]; section

  • Error while attaching document to report on Portal - Invalid selection valu

    Hello All,
    We are running our reports on Portal and as per the business requirement the users have to create comments or attach documents to certain amounts in certain columns and once they create the comment a document icon shows up near that amount (for example there are 3 columns Budget, actual, balance then the user have to create comment for some amounts which needs explanation) they do that from context menu  Documents -> Create new Comment.
    Now we want those documents to be saved on Infoprovider level and not on master data for any particular object. We have activated the flag "Characteristic is document property" on related infoobjects. We have the flag to display document icon on Infoprovider active in the web template. Now when I run the report I am able to create new comments on first two columns and when the report refreshes it shows me icon near that amount but it gives me errors on third column after the report refreshes itself. Now when I go in portal KM repository where documents are stored I do see the document that I created for the third column as well so looks like the document is getting created and being stored but the issue is when it tries to display the icon on that third column.
    The error I get is this:
    The initial exception that caused the request to fail was:
    Invalid selection value:  AttributeMember
    com.sap.ip.bi.bics.dataaccess.resource.impl.bi.exceptions.BicsResourceBwRuntimeException: Invalid selection value:  AttributeMember
    at com.sap.ip.bi.bics.dataaccess.resource.impl.bi.selector.selection.ProviderRange.setLowForced(ProviderRange.java:297)
    at com.sap.ip.bi.bics.dataaccess.resource.impl.bi.selector.selection.ProviderRange.setLow(ProviderRange.java:291)
    at com.sap.ip.bi.bics.dataaccess.resource.impl.bi.selector.selection.ProviderRange.set(ProviderRange.java:469)
    at com.sap.ip.bi.bics.dataaccess.consumer.impl.selector.selection.SingleMember.set(SingleMember.java:125)
    at com.sap.ip.bi.km.common.assignment.AssignmentMember.isContained(AssignmentMember.java:192)
    Please give some inputs if anyone is facing same problem or is anyone has worked previously with this kinda of stuff.
    Thanks in advance.
    Kiran

    Hi!
    Have you solved this problem? I have the same problem after a SPS implementation (SPS 17). The message appears when we select a single value in a DP (hierarchical filter item) that filters another one, but when I select a node it doesn't.
    Before the patch implementation the apliccation worked ok.
    Any idea?
    Thanks in advance.
    Jose

  • Error while updating a custom Windows Azure Diagnostics configuration xml from powershell. "Invalid update to extension reference for role"

    I am attempting to upload a manually edited WADConfig xml to my VM. The WAD service is functioning correctly, I needed to add some custom WinEventLogs. The prescribed steps result in an error.
    What am I overlooking?
    I am following these instructions:
    Step 5: Remotely install Diagnostics on your Azure Virtual Machine
    azure.microsoft.com/en-in/documentation/articles/cloud-services-dotnet-diagnostics/#virtual-machine
    $storage_name = "wadexamplevm"
    $key = "<StorageAccountKey>"
    $config_path="c:\users\<user>\documents\visual studio 2013\Projects\WadExampleVM\WadExampleVM\WadExample.xml"
    $service_name="wadexamplevm"
    $vm_name="WadExample"
    $storageContext = New-AzureStorageContext
    -StorageAccountName $storage_name -StorageAccountKey $key
    $VM1 = Get-AzureVM
    -ServiceName $service_name -Name $vm_name
    $VM2 = Set-AzureVMDiagnosticsExtension
    -DiagnosticsConfigurationPath $config_path
    -Version "1.*"
    -VM $VM1 -StorageContext $storageContext
    $VM3 = Update-AzureVM
    -ServiceName $service_name -Name $vm_name
    -VM $VM2.VM
    Unfortunately, I am receiving this error:
    Update-AzureVM : BadRequest: Invalid update to extension reference for role: XXXXXX and reference: IaaSDiagnostics.
    What's missing from the above script?

    Hi,
    Since Azure SDK 2.5 uses the extension model the diagnostics extension, the configuration and the connection string to the diagnostic storage are no longer part of the deployment package and cscfg. All the diagnostics configuration is contained within the
    wadcfgx. The advantage with this approach is that diagnostics agent and settings are decoupled from the project and can be dynamically enabled and updated even after your application is deployed. 
    Due to this change some existing workflows need to be rethought – instead of configuring the diagnostics as part of the application that gets deployed to each environment you can first deploy the application to the environment and then apply the diagnostics
    configuration for it.  When you publish the application from Visual Studio this process is done automatically for you. However if you were deploying your application outside of VS using PowerShell then you have to install the extension separately through
    PowerShell.
    There PowerShell cmdlets for managing the diagnostics extensions on a Cloud Service are -
    Set-AzureServiceDiagnosticsExtension
    Get-AzureServiceDiagnosticsExtension
    Remove-AzureServiceDiagnosticsExtension
    You can use the Set-AzureServiceDiagnosticsExtension method to enable diagnostics extension on a cloud service. One of the parameters on this cmdlet is the XML configuration file. This file is slightly different from the diagnostics.wadcfgx file. You can
    create this file from scratch by either following the article that you are referring to or  you can modify the wadcfgx file and pass in the modified file as a parameter to the powershell cmdlet.
    To modify the wadcfgx file –
    Make a copy the .wadcfgx.
    Remove the following elements from the Copy:
    <DiagnosticsConfiguration xmlns="http://schemas.microsoft.com/ServiceHosting/2010/10/DiagnosticsConfiguration">
       <PrivateConfig xmlns="http://schemas.microsoft.com/ServiceHosting/2010/10/DiagnosticsConfiguration">
         <StorageAccount name=" " endpoint="https://core.windows.net/" />
       </PrivateConfig>
       <IsEnabled>false</IsEnabled>
    </DiagnosticsConfiguration>
    Make sure the top of the file still has xml version and encoding –
       <?xml version="1.0" encoding="utf-8"?>
    Effectively you are stripping down the Wadcfgx to only contain the <PublicConfig> section and the <?xml> header. You can then call the PowerShell cmdlet along with the appropriate parameters for the staging slots and roles:
    $storage_name = ‘
    <storagename>’
    $key= ‘<key>’
    $service_name = '<servicename>'
    $public_config = '<thepublicconfigfrom_diagnostics.wadcfgx>'
    $storageContext = New-AzureStorageContext –StorageAccountName $storage_name –StorageAccountKey $key
    Set-AzureServiceDiagnosticsExtension -StorageContext $storageContext -DiagnosticsConfigurationPath $public_config –ServiceName $service_name -Slot ‘Staging’ -Role ‘WebRole1’
    Hope this helps !
    Regards,
    Sowmya

  • Error while deploying web role - Invalid application runtime - a runtime component is missing:/base/x64/IISConfigurator.exe

    I have Azure SDK 2.5 installed and when I try and publish my web role from VS 2013, it fails. When I manually upload the package and config through the Azure Portal I get the error:  "Invalid application runtime - a runtime component
    is missing:/base/x64/IISConfigurator.exe".
    I have tried uninstalling and re-installing the Azure SDK with no change in the error.
    Any ideas how I can troubleshoot this?

    I uninstalled the SDK, and tried to create a new cloud servce using the WCF service project template. The new project still gives me the same error:
    The file provided is not a valid service package. Detailed error code: WCFServiceWebRole1 Invalid application runtime - a runtime component is missing:/base/x64/IISConfigurator.exe.

Maybe you are looking for

  • Lost emails when moving between mailboxes

    Hello all I encountered a huge problem today when sorting out some of my mail. I'm currently running Mavericks and have several accounts set up on the Mail application - these include an Exchange account, and a Gmail (Google IMAP) account. My Exchang

  • Creation of function module to convert the mean value to charecterformat

    hi every body i have one doubt regarding convertion of  meanvalue to integer value. first of all i took all related values to internal table but inthat internal table the value of MITTELWERT feild is mean value.inthat the feild value tobe stored is 9

  • Deleting files from hard drive

    How can I delete files without Finder asking for my digital ID? This is annoying

  • Displaying hard drive info in finder window?

    when I opened a window in Finder in previous OS, it used to display info at the bottom, like how many files were contained in that window/folder, and remaining hard drive space.  Now, in 10.7, I don't see that info anymore.  While not necessary, it i

  • Gb3 files won't export to itunes

    I can't get my new gb3 files to export to itunes... Does anybody know why? PLease help if you can!!! thanx!