Parameters used for file input

Hi,
PARAMETERS : P_FNAME LIKE RLGRAP-FILENAME OBLIGATORY
PARAMETERS : P_FNAME LIKE IBIPPARMS-PATH OBLIGATORY
PARAMETERS : P_HFILE LIKE FILENAME-FILEINTERN OBLIGATORY
PARAMETERS : P_NAME TYPE APQI-GROUPID.
The above are the various ways of decalring the parameters for file input... can u tell me what is the difference between them & the situations or condition when, which one has to be used ??
Regards,
- Hello SAP

Hi,
I am assuming you are using the parameters to upload/download a file.
Here is what they will do for you. Let us see the following file name parameter.
<i>PARAMETERS : P_FNAME LIKE RLGRAP-FILENAME OBLIGATORY</i>
Defining the parameter this way will help you in using the obsolete function modules of WS_DOWNLOAD, WS_UPLOAD as their interface requires the filename to be defined this way. But the new replacement for them GUI_DOWNLOAD and GUI_DOWNLOAD defined the filename as a string. Also F4 function modules used for browsing through desktop directories for a file like KD_GET_FILENAME_ON_F4 also use the parameter of this type.
So, if you are using a function module like the ones above, then you are better of with this parameter.
Let us see this definition.
<i>PARAMETERS : P_FNAME LIKE IBIPPARMS-PATH OBLIGATORY</i>
This is no different from the one above, so it makes no difference.
Next.
<i>PARAMETERS : P_HFILE LIKE FILENAME-FILEINTERN OBLIGATORY</i>
This is typically used for a logical file name, not a physical filename and path. What a logical filename does is that it allows you to define logically define filenames and use them in your programs at the same time giving you(or your network team) the flexibility to change the directory structure. When they change the directory structure, all you have to do is to change your logical path definition, rather than changing every single program that uses the path. FILE is the tcode for this area. Length of this is just 60 and so it may not be sufficient for the filename and path. But if you are using it as a logical file name, then it is useful when using function modules like FILE_GET_NAME which will read in a logical file name and give you the string containing the physical path and file name.
Now the last one.
<i>PARAMETERS : P_NAME TYPE APQI-GROUPID.</i>
This is not at relevant for files. This is used in batch input and this is the name of the batch input session. It is 12 characters long.
Hope this helps, if not please let us know.
Srinivas

Similar Messages

  • What are the adm_modresname and adm_moduseruid parameters used for?

    The following parameters are in the server configuration file (unison.ini).
    What are these parameters used for?<BR>
    <P>
    [UTL]<BR>
    adm_modresname = FALSE<BR>
    adm_moduseruid = FALSE<BR>
    <P>
    These parameters accept only the default values shown above and are not
    configurable. They were not meant to appear in the documentation or in the
    default unison.ini file.
    <P>
    Please do not attempt to change these parameters.

    Yes I have explored this pdf...but it doesn't tell how to use the policy from the BPM. My question is if I want to use the policies from BPM, then do I need to install the SSM ?
    If yes, what are the correct steps of installation ?
    I am getting the errors while configuring the Java SSM.
    Is Admin in the same BEA-HOME as SSM: [default: Yes]:
    Give the location of the Admin: c:\bea\ales32-admin
    Enter the identity directory name which will be used: [default: CoESSM_dir]:
    Enter the root node which will be used to create resources: [default: //app/policy/CoESSM_app]:
    Checking if default ARME port is free: 8000
    Generating policy files based on templates ...
    Checking if SSM instance already present
    Checking to see if SSM ARME port is free.
    Checking JDBC parameters...
    Checking to see if asipassword was run...
    2010-03-15 18:06:59,295 [Main Thread] ERROR com.bea.security.SsmConfigTool.AlesConfig - You need to run asipassword first
    2010-03-15 18:06:59,295 [Main Thread] ERROR com.bea.security.SsmConfigTool.ConfigurationTool - Error making changes: You need to run asipassword first
    I have tried running the asipassword utility, but still it gives the same error. Please let me know what am I doing wrong?

  • Can a ComboBox be used for Text Input ?

    Hi
    In Ms Access the combo box can be used for text input for creating new lines in the Database instead of just being limited to the lines already there in the drop down list. Is this possible with the combo box available in Flex 4. If it is I haven't being successful in getting it to work.
    Thanks for you help in advance
    ParaicKW

    I am using a Dataservices Commit method to write to the Database via a button on the screen
    When I type into the ComboBox's text input and click outside the combobox or on the commit button the application effectively freezes
    SituationService is a CRUD type servicePHP to MYSQL and it works with the Datagrid
    Here is the code -
    ParaicKW
    <?xml version="1.0" encoding="utf-8"?>
    <s:Application xmlns:fx="http://ns.adobe.com/mxml/2009"
                   xmlns:s="library://ns.adobe.com/flex/spark"
                   xmlns:mx="library://ns.adobe.com/flex/mx" minWidth="955" minHeight="600" xmlns:situationservice="services.situationservice.*">
        <fx:Script>
            <![CDATA[
                import mx.controls.Alert;
                import mx.events.FlexEvent;
                protected function Situation_creationCompleteHandler(event:FlexEvent):void
                    getAllTblsituationResult3.token = situationService.getAllTblsituation();
                protected function dataGrid_creationCompleteHandler(event:FlexEvent):void
                    getAllTblsituationResult.token = situationService.getAllTblsituation();
                protected function button1_clickHandler(event:MouseEvent):void
                    situationService.commit();
                protected function vGroup_creationCompleteHandler(event:FlexEvent):void
                    getAllTblsituationResult2.token = situationService.getAllTblsituation();
            ]]>
        </fx:Script>
        <fx:Declarations>
            <s:CallResponder id="updateSituationResult"/>
            <situationservice:SituationService id="situationService" fault="Alert.show(event.fault.faultString + '\n' + event.fault.faultDetail)" showBusyCursor="true"/>
            <s:CallResponder id="getAllSituationResult"/>
            <s:CallResponder id="getAllTblsituationResult"/>
            <s:CallResponder id="getAllTblsituationResult2"/>
            <s:CallResponder id="getAllTblsituationResult3"/>
            <!-- Place non-visual elements (e.g., services, value objects) here -->
        </fx:Declarations>
        <mx:DataGrid x="96" y="167" id="dataGrid" creationComplete="dataGrid_creationCompleteHandler(event)" dataProvider="{getAllTblsituationResult.lastResult}" editable="true" width="470" height="237">
            <mx:columns>
                <mx:DataGridColumn headerText="ID2" dataField="ID2"/>
                <mx:DataGridColumn headerText="SITUATION" dataField="SITUATION" width="200"/>
            </mx:columns>
        </mx:DataGrid>
        <s:Button label="Commit Updates" click="button1_clickHandler(event)"/>
        <s:HGroup width="90%" height="80%" verticalCenter="20" horizontalCenter="0">
            <mx:ComboBox width="476" id="cmbSituation" creationComplete="Situation_creationCompleteHandler(event)" dataProvider="  
                     {getAllTblsituationResult3.lastResult}" labelField="SITUATION" editable="true">
            </mx:ComboBox>
            <s:TextArea width="426" id="textArea" text="{getAllTblsituationResult3.lastResult.SITUATION}"/>
            <s:Button label="Back" click="cmbSituation.selectedIndex = cmbSituation.selectedIndex-1 ; textArea.selectedIndex = textArea.selectedIndex-1"/>
            <s:Button label="Forward" click="cmbSituation.selectedIndex = cmbSituation.selectedIndex+1 ; textArea.selectedIndex = textArea.selectedIndex-1"/>
        </s:HGroup>
    </s:Application>

  • Which protocol we should use for file transfer in ios ?

    which protocol we should use for file transfer in ios ?

    My friend that's definitively a Lotus Domino question, you'll probably ask in the Domino's forums if it generates wsdl, or simple http services you're ready to consume those services in Flex.

  • Form validation for file inputs

    Hi,
    Does anybody know if Spry can do a file input validation? I'm
    interested at least to check if the file is empty or not.
    Thanks

    is this a JavaScript question or a Java queston ?

  • Can any mono mic be used for memo input?

    Is it necessary to have an iPod accessory (specifically designed [and priced]for iPod) to be able to record 'memos', or is it possible to use any suitable mono microphone with standard 3.5mm plug?

    Hello Icantgetno,
    I have a wall charger used for an ipod nano and have recently bought an ipod classic which came without a charger. Will the nano charger do the job and not damage the larger ipod?
    Yes. That will work just fine.
    B-rock

  • What is the use for the input file name?

    Some of Livecycle function need inputfilename besides the document object, such as following. The document object already give as a input parameter, why still need inputfilename? Actually I use some other dummy name that is different from the physical file name, it still works. So just do not get it why need input file name parameter in some Adobe LiveCycle class functions?
    CreatePDFResult createPDF(Document inDoc, String inputFileName, String pdfSettings, String securitySettings, Document inSettingsDoc, Document inXMPDoc)
    Thanks for your help,
    P

    Hi,
    Please help me.
    My requirement is to develop a standalone java program to convert Word documents to PDFs using Adoble LC ES.
    I found the code from the Adobe LC ES documentation. Please help me what's wrong in the code.
    I don't understand what i'm missing in the code...The "test.doc" file
    is there in the given location with proper data and Document object is not "NULL". Program is able to connect to Adobe LC Server. No issues with connection. But why the error ??
    Code & exception are below :
    CODE:
    import java.io.File;
    import java.util.Properties;
    import com.adobe.idp.Document;
    import com.adobe.idp.dsc.clientsdk.ServiceClientFactory;
    import com.adobe.livecycle.generatepdf.client.CreatePDFResult;
    import
    com.adobe.livecycle.generatepdf.client.GeneratePdfServiceClient;
    public class GeneratePDFFromNativeFiles {
    public static void main(String[] args)
    Properties ConnectionPropsForSOAP = new Properties();
    ConnectionPropsForSOAP.setProperty("DSC_DEFAULT_SOAP_ENDPOINT",
    "http://workspace-d.web.abbott.com:8080/soap/services/
    ConvertAllFileTypesToPDF?wsdl");
    ConnectionPropsForSOAP.setProperty("DSC_TRANSPORT_PROTOCOL", "SOAP");
    ConnectionPropsForSOAP.setProperty("DSC_SERVER_TYPE", "JBoss");
    ConnectionPropsForSOAP.setProperty("DSC_CREDENTIAL_USERNAME",
    "epaspdfgen");
    ConnectionPropsForSOAP.setProperty("DSC_CREDENTIAL_PASSWORD",
    "epaspdf1");
    ServiceClientFactory factory =
    ServiceClientFactory.createInstance(ConnectionPropsForSOAP);
    try{
    String currentDirectory = System.getProperty("user.dir");
    String sourceDocPath="/test.doc";
    String resultDocPath ="/bin/arg/util/simpleFTP/test.pdf";
    String inputFilePath = currentDirectory+sourceDocPath;
    File file = new File(inputFilePath);
    String adobePDFSettings = "Standard";
    String securitySettings = "No Security";
    String fileTypeSettings = "Standard";
    GeneratePdfServiceClient gps = new
    GeneratePdfServiceClient(factory);
    Document inputDoc = new Document(file,true);
    CreatePDFResult docResult = gps.createPDF(inputDoc, inputFilePath,
    fileTypeSettings, adobePDFSettings, securitySettings, null, null);
    Document createdDocument = docResult.getCreatedDocument();
    createdDocument.copyToFile(new File(currentDirectory
    +resultDocPath));
    catch (Exception e) {
    e.printStackTrace();
    System.out.println("Error OCCURRED: " + e.getMessage());
    EXCEPTION:
    ALC-DSC-000-000: com.adobe.idp.dsc.DSCRuntimeException: Internal
    error.
    at
    com.adobe.idp.dsc.provider.impl.soap.axis.sdk.SoapAxisDispatcher.throwExceptionHandler(So apAxisDispatcher.java:
    207)
    at
    com.adobe.idp.dsc.provider.impl.soap.axis.sdk.SoapAxisDispatcher.doSend(SoapAxisDispatche r.java:
    125)
    at
    com.adobe.idp.dsc.provider.impl.base.AbstractMessageDispatcher.send(AbstractMessageDispat cher.java:
    57)
    at
    com.adobe.idp.dsc.clientsdk.ServiceClient.invoke(ServiceClient.java:
    208)
    at
    com.adobe.livecycle.generatepdf.client.GeneratePdfServiceClient.createPDF(GeneratePdfServ iceClient.java:
    172)
    at
    arg.util.simpleFTP.GeneratePDFFromNativeFiles.main(GeneratePDFFromNativeFiles.java:
    73)
    Caused by: ALC-DSC-002-000:
    com.adobe.idp.dsc.RequiredParameterException: Parameter: inputDocument
    is required.
    at
    org.apache.axis.message.SOAPFaultBuilder.createFault(SOAPFaultBuilder.java:
    221)
    at
    org.apache.axis.message.SOAPFaultBuilder.endElement(SOAPFaultBuilder.java:
    128)
    at
    org.apache.axis.encoding.DeserializationContext.endElement(DeserializationContext.java:
    1087)
    at org.apache.xerces.parsers.AbstractSAXParser.endElement(Unknown
    Source)
    at
    org.apache.xerces.impl.XMLNSDocumentScannerImpl.scanEndElement(Unknown
    Source)
    at org.apache.xerces.impl.XMLDocumentFragmentScannerImpl
    $FragmentContentDispatcher.dispatch(Unknown Source)
    at
    org.apache.xerces.impl.XMLDocumentFragmentScannerImpl.scanDocument(Unknown
    Source)
    at org.apache.xerces.parsers.XML11Configuration.parse(Unknown Source)
    at org.apache.xerces.parsers.XML11Configuration.parse(Unknown Source)
    at org.apache.xerces.parsers.XMLParser.parse(Unknown Source)
    at org.apache.xerces.parsers.AbstractSAXParser.parse(Unknown Source)
    at org.apache.xerces.jaxp.SAXParserImpl$JAXPSAXParser.parse(Unknown
    Source)
    at javax.xml.parsers.SAXParser.parse(SAXParser.java:375)
    at
    org.apache.axis.encoding.DeserializationContext.parse(DeserializationContext.java:
    227)
    at org.apache.axis.SOAPPart.getAsSOAPEnvelope(SOAPPart.java:696)
    at org.apache.axis.Message.getSOAPEnvelope(Message.java:424)
    at
    org.apache.axis.handlers.soap.MustUnderstandChecker.invoke(MustUnderstandChecker.java:
    62)
    at org.apache.axis.client.AxisClient.invoke(AxisClient.java:206)
    at org.apache.axis.client.Call.invokeEngine(Call.java:2765)
    at org.apache.axis.client.Call.invoke(Call.java:2748)
    at org.apache.axis.client.Call.invoke(Call.java:2424)
    at org.apache.axis.client.Call.invoke(Call.java:2347)
    at org.apache.axis.client.Call.invoke(Call.java:1804)
    at
    com.adobe.idp.dsc.provider.impl.soap.axis.sdk.SoapAxisDispatcher.doSend(SoapAxisDispatche r.java:
    123
    Please help me.
    Thanks a lot.
    VJ.

  • DT and MT definition to be used for File Content Conversion

    Hi FCC gurus
    would just like to ask, my scenario is Flat File (fixed length) to IDoc
    the flat file structure is below:
    HHeader.......(Fixed Field until 427characters)
    HText ......... (Fixed Field until 234characters)
    HText ......... (Fixed Field until 234characters)
    HText ......... (Fixed Field until 234characters)
    HText ......... (Fixed Field until 234characters)
    HText ......... (Fixed Field until 234characters)
    DFile ......... (Fixed Field until 404characters)
    DText ......... (Fixed Field until 235characters)
    DFile ......... (Fixed Field until 404characters)
    DText ......... (Fixed Field until 235characters)
    -------No Space, for illustration only PO2--------
    HHeader........ (Fixed Field until 427characters)
    HText ......... (Fixed Field until 234characters)
    HText ......... (Fixed Field until 234characters)
    HText ......... (Fixed Field until 234characters)
    HText ......... (Fixed Field until 234characters)
    HText ......... (Fixed Field until 234characters)
    DFile ......... (Fixed Field until 404characters)
    DText ......... (Fixed Field until 235characters)
    DFile ......... (Fixed Field until 404characters)
    DText ......... (Fixed Field until 235characters)
    -------No Space, for illustration only PO3--------
    HHeader........ (Fixed Field until 427characters)
    HText ......... (Fixed Field until 234characters)
    HText ......... (Fixed Field until 234characters)
    HText ......... (Fixed Field until 234characters)
    HText ......... (Fixed Field until 234characters)
    HText ......... (Fixed Field until 234characters)
    DFile ......... (Fixed Field until 404characters)
    DText ......... (Fixed Field until 235characters)
    DFile ......... (Fixed Field until 404characters)
    DText ......... (Fixed Field until 235characters)
    where:
    HHeader = Header
    HText = Header Text
    DFile = Order Detail File (Line Item)
    DText = Order Detail File Text (Line Item Text)
    As shown above, 1 flat file can contain 3 purchase orders in it structured exactly like the structure definition above.
    I need to map this to 1 IDoc for each purchase order
    so my target structure should be:
    - ORDERS05
       - IDoc (PO1)
       - IDoc (PO2)
       - IDoc (PO3)
    Of course I need to use FCC for this, I'm just a little confused on how I will define the Data Type and Message Type for this.
    For the Data Type should i define it like this:
    DT_ORDERS
       HHeader-Field1 (Element)
       HHeader-Field2 (Element)
       HHeader-Field3 (Element)
       HText-Field1 (Element)
       HText-Field2 (Element)
       HText-Field3 (Element)
       DFile-Field1 (Element)
       DFile-Field2 (Element)
       DFile-Field3 (Element)
       DText-Field1 (Element)
       DText-Field2 (Elemen
    t)
    OR
    should i define the Data Type like this:
    DT_ORDERS
        HHeader (Element)
           HHeader-Field1 (Sub Element)
           HHeader-Field2 (Sub Element)
           HHeader-Field3 (Sub Element)
        HText (Element)
           HText-Field1 (Sub Element)
           HText-Field2 (Sub Element)
           HText-Field3 (Sub Element)
        DFile (Element)
           DFile-Field1 (Sub Element)
           DFile-Field2 (Sub Element)
           DFile-Field3 (Sub Element)
        DText (Element)
           DText-Field1 (Sub Element)
           DText-Field2 (Sub Element)
    Kindly advise which one is the correct definition   (Or if I am missing something out  e.g. Recordset element betweend DT_ORDERS and HHeader)
    Thanks in advance
    Edited by: HJ Dlec on Aug 13, 2010 4:13 AM
    Edited by: Prateek Raj Srivastava on Aug 13, 2010 2:29 PM

    >Kindly advise which one is the correct definition  
    Second approach is fine..
    >(Or if I am missing something out  e.g. Recordset element betweend DT_ORDERS and HHeader)
    Yes do this as well

  • Items In Use for File Transfers

    Whenever I transfer several files at a time (7+ or so), I get the error "The operation cannot be complete because the item "(insert filename here)" is in use."
    I have tried the lsof command in Terminal with no results. This happens with different files (mainly pictures, as I transfer those in large amounts) and from both local drives and card readers or USB drives. The files are usually being moved to a network attached storage that is in the Finder exceptions for indexing. The files aren't always new, so I do not think finder is indexing them. If I click "ok" (and in doing so cancel the transfer) and start it again, it works just fine (until it decides to hit another file and repeats the process).
    It's a very annoying little problem because it forces me to micromanage large file transfers. Any ideas?

    As a workaround consider
    ditto
    Sometimes I get a scrap file in the trash that cannot be deleted for the same reason, although I find no obvious cause. Sometimes it's the mail app and a stray RSS file, but not always. Even then I have to shutdown and restart mail, which is really not acceptable to me.
    Usually a logout/in unhooks it but that's not a solution either.
    You might try transferring the files using a new account with no apps running or even installed other than the defaults.

  • Q: General : Can workshop test form display a browse icon for file input?

    Hi,
    Is it possible to write a web service which takes in say a license file for validation
    and returns a boolean true if
    valid and false if not valid? Can the workshop test form display a browse icon so
    that I can select the license file
    from my local system? Or do I have to write an html/jsp front-end to the web service
    myself?
    Thanks,
    Sadhana

    Hi Adam,
    Thanks a lot again for answering my question with such a nice
    explanation!
    -Sadhana
    "Adam FitzGerald" <[email protected]> wrote:
    >
    Hi Sadhana,
    Web services have two mechanisms to receive data that are part of the SOAP
    1.1 specification.
    The first mechanism is to pass the data as a parameter to the web service
    operation
    - this only works if the data is text based and can be imbedded in an XML
    SOAP document
    (i.e. it cannot be binary information like images or music not can it be
    complete
    standalone XML documents). We demonstrated this technique in class and it
    is the
    most common way to transmit information.
    The second mechanism is to add the data to the SOAP request as an attachment
    (similar
    to email). This mechanism is not available directly in Workshop but WebLogic
    server
    does provide this capability if you use web service handlers. See the URL
    below for
    more information.
    http://edocs.bea.com/wls/docs70/webserv/design.html#1053805
    There is also a third programmatic solution. You could provide a URL for
    the file
    or document that you want to process as a parameter for the web service
    and then
    the web service could use the java.net API to retreive the document dynamically
    during
    processing. This has obvious preformance and security problems but it might
    be applicable
    in some situations.
    Good luck
    Adam
    "Sadhana Jain" <[email protected]> wrote:
    Hi,
    Is it possible to write a web service which takes in say a license file
    for validation
    and returns a boolean true if
    valid and false if not valid? Can the workshop test form display a browse
    icon so
    that I can select the license file
    from my local system? Or do I have to write an html/jsp front-end to the
    web service
    myself?
    Thanks,
    Sadhana

  • Looking for help for sharing pdf files with ipad from mac.  Pages only recognizes text.  What app should I use for file sharing pdf documents?

    Looking for advice on how to share pdf files with iPad from Mac.   Pages seems to only recognize text.   What app is recommended for pdf documents?

    Welcome to Apple Support Communities!
    If I understand your question, you want to read pdfs on your iPad, not create or edit.
    Drag pdf files to the iPad icon in Finder while connected to your computer via the USB cable.
    They will show up in the iBooks application
    (If you don't already have iBooks, it's a free download from the App Store.)
    Once installed, there are two buttons at the top left of the Bookshelf.
    One is Books, the other is Collections.
    Tap Collections, and you'll see Books and PDFs.
    Tap PDFs and you're there.

  • Hi which exception is used for incorrect input????

    hi
    the valid input for my program should be like this...
    12 D or 2 D something like this and if the format is not like this.. i wanna throw an
    exception but don't know which one is appropriate one.. i looked up API but there are
    so many....and..can't find one..so..plz help me!!~~! my code is..
    StringTokenizer str = new StringTokenizer(handedCard);
                                    if (str.countTokens() != 2) {
                                      throw //what shoud be here..??                 
                                 }thx guys..here..

    syntax: public class classname or method() throwsI don't think a class can't declare that it throws an exception.
    Back to the question: You have a few choices here.
    1. throw a non-runtime Exception. These must be caught or thrown. This might be what you want, but in the end, you'd just be throwing your exception back to yourself.
    2. RuntimeException: Doesn't need to be caught (but can be caught) advantage is that maybe all you want to do is quit running or tell the user there was an error
    3. Just check the user imput and if it's wrong ask again.

  • Txt Fields used for dates input???????

    Evening all - Hope someone can help?
    I've written an website that runs of the back of an Oracle
    database using SQL - its just a simple database and is being done
    for a uni project.
    The problem I'm having is I'm trying to use a form as to
    search through a recordset using mutiple criterias - Thats fine.
    Except when it comes to dates....
    I have created the query :...
    SELECT DVDID, TITLE, GENRE, CERTIFICATE, DIRECTOR, ACTORS,
    RELEASE, BRANCHID
    FROM BUCK.DVD
    WHERE TITLE LIKE '%MMColParam%' AND GENRE LIKE '%VarGenre%'
    AND CERTIFICATE LIKE '%VarCert%' AND DIRECTOR LIKE '%VarDirector%'
    AND ACTORS LIKE '%VarActor%' AND DVDID LIKE '%VarDvdId%' AND
    BRANCHID LIKE '%VarBranchID%'
    ORDER BY DVDID ASC
    This works absolutely fine. What I want to do is add the line
    "AND RELEASE BETWEEN 'VarStart' AND 'VarEnd"
    I set the default values as "05-dec-01" and "05-dec-10"
    (which work fine when typed directly into the sql prompt) but I get
    an error that says:...
    "[oracle][ODBC][ORA]ORA-01858: a non numerical character was
    found where a numerical was expected"
    The datatype in the database is definately date....
    Any ideas>??

    LeighBuckRogers wrote:
    > Evening all - Hope someone can help?
    >
    > I've written an website that runs of the back of an
    Oracle database
    > using SQL - its just a simple database and is being done
    for a uni
    > project.
    >
    > The problem I'm having is I'm trying to use a form as to
    search
    > through a recordset using mutiple criterias - Thats
    fine. Except when
    > it comes to dates....
    >
    > I have created the query :...
    > SELECT DVDID, TITLE, GENRE, CERTIFICATE, DIRECTOR,
    ACTORS, RELEASE,
    > BRANCHID FROM BUCK.DVD
    > WHERE TITLE LIKE '%MMColParam%' AND GENRE LIKE
    '%VarGenre%' AND
    > CERTIFICATE LIKE '%VarCert%' AND DIRECTOR LIKE
    '%VarDirector%' AND
    > ACTORS LIKE '%VarActor%' AND DVDID LIKE '%VarDvdId%' AND
    BRANCHID
    > LIKE '%VarBranchID%' ORDER BY DVDID ASC
    >
    > This works absolutely fine. What I want to do is add the
    line "AND
    > RELEASE BETWEEN 'VarStart' AND 'VarEnd"
    >
    > I set the default values as "05-dec-01" and "05-dec-10"
    (which work
    > fine when typed directly into the sql prompt) but I get
    an error that
    > says:... "[oracle][ODBC][ORA]ORA-01858: a non numerical
    character
    > was found where a numerical was expected"
    >
    > The datatype in the database is definately date....
    >
    > Any ideas>??
    Wrong date format possibly? ie: use the US version 12/01/01
    Buzby
    There's nothing more dangerous than a resourceful idiot

  • Am using quickoffice pro.  I want to bring files from mac to my ipod through file sharing on itunes but quick office doesn't show up under the app that can be used for file sharing.  what to do?

    I am using quickoffice pro on my ipod.  I want to bring files from my mac to my ipod using file sharing on itunes.  I read to select officepro under apps then select from there but though office pro shows as an app I have, it doesn't show up on the apps under file sharing.  How do I get it there?

    Check Apple's Home Sharing tutorial: iTunes: Setting up Home Sharing on your computer - Apple Support

  • Why is Mac local input method used for remote input box?

    This behavior is observed on latest version.

    Hi,
    Can you describe more for your case as actual, what you want to perform?
    Did you find any specific error\log for your issue?
    Please try to reinstall the app and collect log from below path.
    Microsoft Remote Desktop>About Microsoft Remote Desktop>Send log via email
    Hope it helps!
    Thanks.
    Dharmesh Solanki
    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 Support, contact [email protected]

Maybe you are looking for

  • SQL Server two database at two different locations

    Hi Guys, We are having same database at two different locations (Database A with Sqlserver 2008/Express, database B with Sqlserver 2012). Our requirement is when ever a row is inserted in a table of Database A from location 1. Same value should also

  • Date format problem in BI Publisher

    Halo All, I have data like this: 2011-05-18T15:15:07.000+08:00 so in sql i convert it using:to_char(bla,'dd-mon-yyyy') and work fine in toad. but when i applied it in data template bi publisher then previewed, the data dissapear. please help me on th

  • I can format new hdd with FAT but not for OSX

    I have a Hitahchi travelstar 5K1000 in a cradle on USB on MBP 2008 with mavericks. It will format Mac OS journaled but will not allow install of Mavericks, reporting an unfixable error.  Verify Disk & Repair Disk show errors that cannot be fixed, and

  • Compressor working after hardware Fix

    Hi Everyone, I thought this might be of help to some of the folks having Compressor problems. I was never able to get Compressor to work stably on my Dual 2.0ghz G5. Despite always downloading the latest updates, adding new user account and running t

  • Reports in cProjects

    Dear All, Please advise me what are the various reports available in cProjects & how to get the same. Can we get various project reports such as project structure / project accounting reports etc. Thank you in advance. Regards, Ranjan