Unable to create .fsm file in Text Data Processing from .rul file

I am trying to compile english-tf-voc-sentiment.rul file to generate english-tf-voc-sentiment.fsm file using below command from cmd.
tf-cgc -i C:\Users\336655\Desktop\Modified\english-tf-voc-sentiment.rul -o C:\Users\336655\Desktop\Modified\english-tf-voc-sentiment.fsm
But getting below error.
Error: Could not open file ./english-tf-voc-thesaurus.rul
Error: Could not build FSM file.
where as english-tf-voc-thesaurus.rul is file which is called by english-tf-voc-sentiment.rul file
Any idea how to resolve this issue?

You can use following code to capture the error.
TRY.
      OPEN DATASET filename FOR OUTPUT IN BINARY MODE MESSAGE V_MSG.
      CATCH CX_ROOT
      INTO EXCEPTION.
      CALL METHOD O_EXCEPTION ->IF_MESSAGE~GET_TEXT
        RECEIVING
        RESULT = V_MSG.
      MESSAGE v_msg
      TYPE 'E'.
ENDTRY.
You can capture error in v_msg.
Following are the exceptions for the same:
Exceptions
Catchable Exceptions
CX_SY_FILE_OPEN
Cause: The file is already open.
Runtime Error: DATASET_REOPEN
  CX_SY_CODEPAGE_CONVERTER_INIT   
Cause: The desired conversion is not supported. (Due to specification of invalid code page or of language not supported in the conversion, with SET LOCALE LANGUAGE.)
Runtime Error: CONVT_CODEPAGE_INIT
CX_SY_CONVERSION_CODEPAGE
Cause: Internal error in the conversion.
Runtime Error: CONVT_CODEPAGE
CX_SY_FILE_AUTHORITY
Cause: No authorization for access to file
Runtime Error: OPEN_DATASET_NO_AUTHORITY
Cause: Authorization for access to this file is missing in OPEN DATASET with addition FILTER.
Runtime Error: OPEN_PIPE_NO_AUTHORITY
  CX_SY_PIPES_NOT_SUPPORTED   
Cause: The operating system does not support pipes.
Runtime Error: DATASET_NO_PIPE
CX_SY_TOO_MANY_FILES
Cause: Maximum number of open files exceeded.
Runtime Error: DATASET_TOO_MANY_FILES   Non-Catchable Exceptions   
Cause: An attempt was made to open a pipe that is already open.
Runtime Error: DATASET_PIPE_POSITION
Hope that will help you.
Please reward if useful.

Similar Messages

  • Unable to create a file in Application Server using OPEN DATASET stattement.

    I am unable to create a file in Application Server using the following statement.
    OPEN DATASET filename FOR OUTPUT
    IN TEXT MODE ENCODING DEFAULT
    MESSAGE msg.
    The message I'm getting is "Permission Denied". I have checked authorisation using SU53 which says "The last authorization check was successful". Please help.

    You can use following code to capture the error.
    TRY.
          OPEN DATASET filename FOR OUTPUT IN BINARY MODE MESSAGE V_MSG.
          CATCH CX_ROOT
          INTO EXCEPTION.
          CALL METHOD O_EXCEPTION ->IF_MESSAGE~GET_TEXT
            RECEIVING
            RESULT = V_MSG.
          MESSAGE v_msg
          TYPE 'E'.
    ENDTRY.
    You can capture error in v_msg.
    Following are the exceptions for the same:
    Exceptions
    Catchable Exceptions
    CX_SY_FILE_OPEN
    Cause: The file is already open.
    Runtime Error: DATASET_REOPEN
      CX_SY_CODEPAGE_CONVERTER_INIT   
    Cause: The desired conversion is not supported. (Due to specification of invalid code page or of language not supported in the conversion, with SET LOCALE LANGUAGE.)
    Runtime Error: CONVT_CODEPAGE_INIT
    CX_SY_CONVERSION_CODEPAGE
    Cause: Internal error in the conversion.
    Runtime Error: CONVT_CODEPAGE
    CX_SY_FILE_AUTHORITY
    Cause: No authorization for access to file
    Runtime Error: OPEN_DATASET_NO_AUTHORITY
    Cause: Authorization for access to this file is missing in OPEN DATASET with addition FILTER.
    Runtime Error: OPEN_PIPE_NO_AUTHORITY
      CX_SY_PIPES_NOT_SUPPORTED   
    Cause: The operating system does not support pipes.
    Runtime Error: DATASET_NO_PIPE
    CX_SY_TOO_MANY_FILES
    Cause: Maximum number of open files exceeded.
    Runtime Error: DATASET_TOO_MANY_FILES   Non-Catchable Exceptions   
    Cause: An attempt was made to open a pipe that is already open.
    Runtime Error: DATASET_PIPE_POSITION
    Hope that will help you.
    Please reward if useful.

  • SecurityException: Unable to create temporary file with applet

    My applet tries to write a temp file
    try {
              File temp = java.io.File.createTempFile("student", ".log");
              strFilename = temp.getAbsolutePath();
    } catch (IOException e1) {
              e1.printStackTrace();
    }But when I run, it throws an exception:
    java.lang.SecurityException: Unable to create temporary file
    I tried to sign the applet, as to http://www.developer.com/java/data/article.php/3303561 but it's still the same.
    There's another way: using java.policy,
    grant {
      permission java.security.AllPermission;
    };but it seems to be not very gentle. Could you show me the solution please? Thanks in advance.
    Cheers,

    Yes, that's what I found. Here is the summary to do it, hope it helps someone else:
    1. Create key for signed jar:
    keytool -genkey -keystore abc.com -keyalg rsa -dname "CN=Abc, OU=Def, O=GHI, L=KLMN, ST=OP, C=XY" -alias TheCert -validity 3600 -keypass password -storepass password2. Make jar file
    3. Sign the jar file
    jarsigner -keystore abc.com -storepass password -keypass password -signedjar SignedAppletTest.jar OrgAppletTest.jar TheCertIt works for me.
    I'd like to thank harmmeijer and everyone who interests.
    Cheers,

  • After upgrade to CF9, CFIMAGE "Unable to create temporary file" error

    We recently upgraded from CF8 to CF9 Enterprise.  I'm getting an "Unable to create temporary file" error on
    my CFIMAGE resize calls.  We use sandbox security.  I assume I need to grant write access to whatever folder CF uses for temp files, but which folder is it?   The same code (and sandbox settings) ran fine in CF8....
    Note, if I attempt to add C:\JRun4\servers\cfusion\SERVER-INF\temp to the sandbox for this particular app, CF crashes on all requests across all apps on the server with a:
    Security: The requested template has been denied access to C:\JRun4\servers\cfusion\cfusion-ear\cfusion-war\WEB-INF\cfclasses\cfapp2ecfc1510154633.c lass.
    The following is the internal exception message: access denied (java.io.FilePermission C:\JRun4\servers\cfusion\cfusion-ear\cfusion-war\WEB-INF\cfclasses\cfapp2ecfc1510154633.c lass read)
    ColdFusion cannot determine the line of the template that caused this error. This is often caused by an error in the exception handling subsystem.
    I need to restart CF to get everything working again.

    Another update.   Had a problem with a sandboxed CF9 site doing a simple CFIMAGE READ to a memory variable.  Got an "Unable to create temporary file" error.
    Inserted the following code in the file upload page:
    <cfscript>
    writeoutput("Temp Dir : " & createobject("java","java.lang.System").getProperty("java.io.tmpdir") );
    </cfscript>
    ... and it reveals the temp directory as C:\WINDOWS\TEMP.  Added that to the sandbox, and the CFIMAGE READ is working properly now.
    Note this seems inconsistent with CFIMAGE RESIZE behavior which appears to use the CF GetTempDirectory() value, which in my case is C:\JRun4\servers\cfusion\SERVER-INF\temp\cfusion-war-tmp\
    For reference, see the section "Sandbox Considerations" at this link:
    http://help.adobe.com/en_US/ColdFusion/9.0/Admin/WSc3ff6d0ea77859461172e0811cbf364104-7fc8 .html#WSc3ff6d0ea77859461172e0811cbf364104-7fcc

  • Rep-0118:Unable to create temporary file error in Report Builder

    I have installed Report Builder (latest edition) for windows 2000 server, but my users on windows XP cannot create the report it gives them
    Rep-0118:Unable to create temporary file error
    Please help me out
    Vijay

    You have to change registry settings by going through REGEDIT. Under hkey_local_machine/software/oracle/<oracle home>, look for variable REPORTS_TMP. Change value for this, for example c:\windows\temp or something like that where you want oracle reports to create temp files.

  • Acrobat 8 Pro now unable to create pdf files

    Been using Acrobat 8 for well over a year.  Installed new release of AutoCAD 2012, now unable to create pdf files from AutoCAD or MS Office programs.  Can anybody help?

    You may still want to at least give a repair a shot. Won't hurt and sometimes customer suport (I assume you mean Adobe customer support?) will miss some things. I believe in your version you can find it under the Help menu.
    BtlMage918 wrote:
    No because the
    customer support person I spoke with first said the problem was within the
    creation portion of the program and did not fell that reinstallation or
    deactivate/activate would resolve.
    Charles Blake
    Annette Miller Architects
    204 S. Ludlow St., Suite 310
    Dayton, Ohio 45402
    937.228.7841
    <http://www.amillerarchitects.com/> www.amillerarchitects.com

  • Unable to create or update the Custom Data Provider WIS 10853

    Hi,
    I have created the universe in designer then I created QAAWS. In the web intelligence tool, clicked for new document and then chosen web services under other data sources. After giving webservices detailed, I encountered the following error.
    Error from Personal Datasource : Unable to create or update the Custom Data Provider: invalid information retrieved while trying to get the structure. (CDS 105109). (WIS 10853)
    Can anyone help abt this problem? I wud very thankful for them.

    Hi,
    Can you post the wsdl URL. It would be of great help if we could have a look at the wsdl schema. Not all schemas are supported at the moment and hence the error. You can have a look at the limitations section in the documentation guide.
    Regards
    Rahul

  • I am unable to create adobe file from attached document from email

    I am unable to create adobe file from attached document from email. No 'open in' link is available as given in directions. What to do?

    Because there is no abode on the IOS.  you'll need to do a search in the app store to resolve your issue.

  • FRM-30087: Unable to create form file F:\MYFORM\ORDG01.fmx.

    FRM-30087: Unable to create form file F:\MYFORM\ORDG01.fmx.

    If the file is open, forms might have problems to overwrite it.
    Make sure the destination file is not open

  • FRM-30087: Unable to create form file

    I'm running Forms 9i. When I tried to run form from the Forms Builder, I sometimes received the error "FRM-30087: Unable to create form file". To work around the problem, I have to shut down the OC4J instance and then restart again. Why did I receive this error? How do I get rid of this error without having to shut down OC4J every time?

    It means that there is an instance of your fmx in memory still running. Make sure to exit properly from your form after you run it.
    This might happen if you leave the forms running or if you closed your browser without exiting the form first.
    Shutting down OC4J removes the fmx from memory.

  • FRM 30087 Unable to create form file \\pc1\CALENDAR_EX.fmx.

    there is a form calendar.fmb created on PC1 which runs proper on PC1.
    Now on PC2 i am opening the form and want to run the same. But it gives the following error...
    FRM 30087 Unable to create form file \\pc1\CALENDAR_EX.fmx...
    how to solve this..?

    If you look up the error message in the Help documentation, it says:
    FRM-30087: Unable to create form file %s
    Cause:  You lack privileges in the specified directory, or you do not have the disk space required.
    Action:  Contact your DBA to make sure you have the access privileges you need.

  • REP-0118 unable to create temporary file

    I have installed Report Builder 10g
    and I got this error
    REP-0118 unable to create temporary file
    anyone have idea how to solve this error
    plz help me

    Re: REP-0118 unable to create temporary file

  • New tutorials posted for Text Data Processing on Data Services 4.0

    Check out the 3 new Text Data Processing tutorials available at http://wiki.sdn.sap.com/wiki/display/BOBJ/TextDataProcessing within the Product Tutorials section.
    -- Introduction to Entity Extraction Transform: this 15-minute demo provides an overview of the Text Data Processing Entity Extraction transform for Data Services 4.0. The Entity Extraction transform enables you to process unstructured text, such as web pages, news articles, maintenance logs, text from a spreadsheet, or even from a database column, to extract key pieces of information that you can use in query and reporting.
    -- Using Text Data Processing Blueprints: this 6-minute demo explains how to get up and running with TDP quickly using a series of jobs contained in a blueprint. A blueprint is a sample end-to-end solution available on SAP Community Network.
    -- Creating an Extraction Dictionary: this 13-minute demo explains how to create an Extraction Dictionary, which can be used to customize a TDP Entity Extraction transform to improve results.

    Thanks for sharing your use case.  I have a few questions if you don't mind:
    1) What file formats are typically found within these compressed containers?  For example, html, xml, txt, pdf, MS Office, etc.
    2) Do these compressed containers ever have other embedded compressed containers within them?  For example, a zip file containing other zip files within it.
    3) If the intention is to process document files, do any of the document files have other document formats embedded/nested within them?  For example, a MS Word document with a spreadsheet embedded within it.

  • While Creating New Insert Form Existing Data Display from the Table

    Hi
    I am New To Sun Java Studio Creator and New to Java Also While Creating New Insert Form Existing Data Display from the Table while i am Run the Form. Can any one help me to Solve this one

    Dear Giri,
    As per your Advise, Literally I have Search the Properties for the Components to set value Null, but I am Unable to find the Value in Properties palate. I have tried in various options like
    In the Properties Palate
    TextField1_onselect use Value null
    TextField1_text I have selected use Value option and I have manually Keyed-in null;
    In the JSP Page, I have manually keyed in the null value below said
    <ui:textField binding="#{BI.textField2}" id="textField2" style="position: absolute; left: 240px; top: 96px" text="#{BI.bDataProvider.value['ISSUENO'] = null}"/>
    <ui:textField binding="#{BI.textField2.Value = null }" id="textField2" style="position: absolute; left: 240px; top: 96px" text="#{BI.bDataProvider.value['ISSUENO'] = null}"/>
    At last I am Failure. I am ignorant of it. Can you please help me on this where I have to set null value for the components? I will be very kind of you

  • Text Data Processing 4.1 Training in February & April for APJ & EMEA

    We would like to announce upcoming training opportunities in Malaysia and Germany for partners and select customers on Text Data Processing within the upcoming Data Services 4.1. Get early hands-on access to software and participate in the review of the product roadmap.
    Why Partner Test?
    - Receive an introduction to the product and how text analytics capabilities are being delivered through Data Services
    - Only source for partners and select customers to get deep product knowledge directly from development at this early stage
    - Better understand migration scenarios for BusinessObjects Text Analysis XI customers
    Test Scope
    - Entity Extraction from unstructured data in one or more of the 31 supported languages
    - Data Quality transforms for post-processing such as Match and Address Cleanse
    - Sentiment analysis in either English, German, French or Spanish
    Time Frame & Location
    - Kuala Lumpur, Malaysia: February 13-16  >>> FULL <<<
    - Walldorf, Germany: April 16-17 and 18-20  >>> FULL <<<
    Tester Profile
    - Data Services knowledge helpful
    - Previous experience with text analytics or text mining
    - Existing use cases for text analysis and sample data to test
    Tester Demand
    - 2-4 days depending on session
    - No registration fee but attendees must provide their own travel and lodging
    For further Text Data Processing info: http://wiki.sdn.sap.com/wiki/display/BOBJ/TextDataProcessing
    If you are interested in attending or have questions please contact Anthony Waite @ SAP.
    Edited by: Anthony Waite on Feb 7, 2012 4:58 PM

    Did you tried this document:
    How to find the Missing Records for the Target Table during Post Load validation at Business Objects Data Services - Bus…

Maybe you are looking for

  • Unable to capture with FCP5

    With correct connexions and I-link OK, FCP is unable to capture DV with the camera either with recorder. I,ve the text (in french) : "Périphériques suivants sont introuvables Apple Firewire PAL (720x576) .... " The capture is OK using a Mc-Book with

  • Can I connect Windows 7 to a mac network account server

    Hi All, I have a Mac Mini Server allong with a pile of Macs and a few PCs. What I want is being able to login to an ACCOUNT from ANY of my macs OR PCs. So when the computer turns on it asks you to put in a username and password. I know this is possib

  • Optical Drive Problems

    I am experiencing two problems that I am a bit worried about in the long run. Upon disc insertion or deletion, there is a bit of noise that I'm not used to hearing and when this noise is happening at the same time the illuminated keys above the disc

  • Multiple dmz hosts? ps3+xbox360

    Hi! I'm having difficulties in setting multiple dmz hosts. Both my ps3 and my xbox 360 require me to set them as the dmz host. However, in the router's settings page, there's only one space for ip entry to enable dmz. Thus far, my only solution has b

  • LiveCycle Form - Extend Features to Reader to allow save

    I created a PDF form in LiveCycle Designer ES2.  I want to allow users to update form and save, but I can't figure out how to extend these features in LiveCycle.  I can open the PDF form in Acrobat X Pro, but when I attempt to edit I'm forced to use