FDM Script to import data

Hello

I am new to scripting of FDM. If the pointers will be appreciated. I need to import a TB with the following format in the exel file.

Row1 * CostCenter number *.
row2 * TB name *.
row3 - other settings
row4 - white
row5 - data headers
starts row6 - data - format below-

row7 - account opening prom prom closing Desc

-----

I created a format compatible with the 4 fields - CostCentre, account, Desc, and closing ball. Now my question is-

1. How can I create script that retrieves the number of row1 costcenter?

Thanks in advance!

Format will not work in an Excel, FDM requires a specific excel, also excel FDM models model do not use scripts to import, so everything first convert to a csv file.

You will then use a temporary variable for this example RES. PvarTemp1 and create scripts to import 2

Assuming that this cost center is the only value on a line in the file that you need to do is:

Attach a script to import entry amounts in your import format and put in the following code (which implies cost center is always the first line of header and your script is called GetCostCentre)

Otherwise Len (RES. PvarTemp1) > 0 Then
RES. PvarTemp1 = DW. Utilities.fParseString(strRecord,4,1,",")
End If

GetCostCentre = strField

Attach a script to import to the CostCentre entry in the format called import SetCostCentre, there will be a single line

SetCostCentre = RES. PvarTemp1

There is a very similar example in the FDM Scripting chapter administration guide that has a little more description.

Published by: SH on December 7, 2012 11:17

Tags: Business Intelligence

Similar Questions

  • Write a batch script to import data in a database of DRM *.

    Hello

    I'm having a problem writing a batch script
    to import into DRM from an external database.
    This is the script I wrote:

    [General]
    Username = myusername
    Password = mypassword
    URL = net .tcp://usphl0mdma1: 5210, Oracle, Drm, ProcessManager
    Operation = import

    [Import]
    Operation = import
    InFile = TEST
    ImportLogFileName = "Importlog.log"
    AutoSave = Yes


    Can someone please tell me if I'm doing something wrong, and the best course of action will be highly appreciated.
    Note: it is on DRM 11.1.2.3

    Published by: 1010031 on June 5, 2013 09:43

    First, are you able to import from a DB table manually?, if it does not.

    Then I think the issue is around "InFile = TEST", I do not quite see documentation around batch import of a DB Table.

    Murali-

  • Script to import data

    HII All
    I want to run the import of all the s data with the help of the script file
    I have several s datafile with different users and I want to run import db
    Please help me how to write a script.

    Thanking you

    GaurAVS,

    I don't know what were the reaosns which makes you selected this option, question did you try to use other options to move the data from the source to destination. Two questions for you?

    1. a single export dump for each user schema or is - this more than one file?
    2. I guess from your previous post, you got more than 50 users to your database schema?

    Here's the simple bash script, assuming that you have a dump file to export for each user in the schema. Create a data call directory and move all dump files, read the script carefully for instructions and modify according to your needs.
    In addition, before you run this script on GNU / linux run after the command prompt

    $dos2unix import.sh

    #!/bin/bash
    
    function importfile
    {
         echo "importing $file for user $1"
         imp $1/$2 full=y file=$file log=./data/`basename $file dmp`log
         test=$?
         if [ $test -ne 0 ]
         then
                echo "Importing for user $1 failed ..."
             exit 1;
         fi
    }
    
    function listfile
    {
        # you have to supply username and password here
           for file in ./data/*.dmp
           do
             echo "exporting $file for $1"
             # If you used username as filename for each export dump
              unset username
              +username=`basename $file .dmp`
              echo "Username is set to $username"
    
              # Now to get password for this username ; you can create a file with
              # this format username=password
              # $1 -- Username
              # $2 -- Password
              #
              unset pw
              pw=`cat ./data/pwd.txt.txt|grep $username|cut -d'=' -f2`
              echo "Password is set to $pw"
              # You have to write a small function to get username and password
    
              importfile $username $pw
               done
    }
    
    listfile $1 $2
    

    Published by: OrionNet on December 20, 2008 23:47

  • Event scripts FDM shot twice during data loads

    Here's an interesting question. I added the following three scripts to different event (one at a time, ensuring that one of them is both), clear data before loading to Essbase:


    Script event content:
    ' Declare local variables
    Dim ObjShell
    Dim strCMD
    «Call MaxL script to perform data clear the calculation.»
    Set objShell = CreateObject ("WScript.Shell")
    strCMD = "D:\Oracle\Middleware\EPMSystem11R1\products\Essbase\EssbaseClient\bin\startMAXL.cmd D:\Test.mxl"
    API. DataWindow.Utilities.mShellAndWait strCMD, 0


    MaxL Script:
    Login * identified by * on *;
    run the calculation ' FIX("Member1","Member2") CLEARDATA "Member3"; ENDFIX' on *. *** ;
    "exit";




    However, it seems that clear is performed twice, both before and after the data has been loaded to Essbase. This has been verified at every step, checking the newspaper of Essbase applications:

    No script event:
    -No Essbase data don't clear in the application log

    Above to add the script to the event "BefExportToDat":
    -The script is executed once when you click Export in the customer Web FDM (before the "target load" modal popup is displayed). Entries are visible in the log of Essbase applications.
    -Script is then run a second time when you click the OK button in the modal pop-up "target Load System". Entries are visible in the log of Essbase applications.

    Above to add the script to the event "AftExportToDat":
    -The script is executed once when you click Export in the customer Web FDM (before the "target load" modal popup is displayed). Entries are visible in the log of Essbase applications.
    -Script is then run a second time when you click the OK button in the modal pop-up "target Load System". Entries are visible in the log of Essbase applications.

    Above to add the script to the event "BefLoad":
    -Script only runs that after you click Export in the FDM Web Client (before 'target system load' modal popup is displayed).
    -Script is run AFTER loading to Essbase data when the OK button is clicked in the modal popup "load the target system". Entries are visible in the log of Essbase applications.

    Some notes on the above:
    1. "BefExportToDat" and "AftExportToDat" are both performed twice, before and after the modal popup "target Load System". :-(
    2. "befLoad" is executed WHEN the data is loaded to Essbase. :-( :-(

    Someone please any idea how we could run a clear Essbase database before the data is loaded, and not after we have charged for up-to-date data? And maybe about why event scripts above seem to be fired twice? It doesn't seem to be any logic to this!


    BefExportToDat - entered in the journal Application Essbase:
    + [Sea 16 May 16:19:51 2012]Local/Monthly/Monthly/admin@Native Directory/140095859451648/Info (1013091) +]
    + Received order [calculate] user [directory admin@Native] +.

    + [Sea 16 May 16:19:51 2012]Local/Monthly/Monthly/admin@Native Directory/140095859451648/Info (1013162) +]
    + Received order [calculate] user [directory admin@Native] +.

    + [Sea 16 May 16:19:51 2012]Local/Monthly/Monthly/admin@Native Directory/140095859451648/Info (1012555) +]
    + Erasure of the data in the partition [Member3] with fixed member [Period (Member1); Scenario (Member2)] +.
    +...+

    + [Sea 16 May 16:20:12 2012]Local/Monthly/Monthly/admin@Native Directory/140095932016384/Info (1003037) +]
    Updated load cells [98] data

    + [Sea 16 May 16:20:12 2012]Local/Monthly/Monthly/admin@Native Directory/140095932016384/Info (1003024) +]
    Data load time: seconds [0.52]
    +...+

    + [Sea 16 May 16:20:12 2012]Local/Monthly/Monthly/admin@Native Directory/140095930963712/Info (1013091) +]
    + Received order [calculate] user [directory admin@Native] +.

    + [Sea 16 May 16:20:12 2012]Local/Monthly/Monthly/admin@Native Directory/140095930963712/Info (1013162) +]
    + Received order [calculate] user [directory admin@Native] +.

    + [Sea 16 May 16:20:12 2012]Local/Monthly/Monthly/admin@Native Directory/140095930963712/Info (1012555) +]
    + Erasure of the data in the partition [Member3] with fixed member [Period (Member1); Scenario (Member2)] +.


    AftExportToDat - entered in the journal Application Essbase:
    + [Sea 16 May 16:21:32 2012]Local/Monthly/Monthly/admin@Native Directory/140095933069056/Info (1013091) +]
    + Received order [calculate] user [directory admin@Native] +.

    + [Sea 16 May 16:21:32 2012]Local/Monthly/Monthly/admin@Native Directory/140095933069056/Info (1013162) +]
    + Received order [calculate] user [directory admin@Native] +.

    + [Sea 16 May 16:21:32 2012]Local/Monthly/Monthly/admin@Native Directory/140095933069056/Info (1012555) +]
    + Erasure of the data in the partition [Member3] with fixed member [Period (Member1); Scenario (Member2)] +.
    +...+

    + [Sea 16 May 16:21:47 2012]Local/Monthly/Monthly/admin@Native Directory/140095930963712/Info (1003037) +]
    Updated load cells [98] data

    + [Sea 16 May 16:21:47 2012]Local/Monthly/Monthly/admin@Native Directory/140095930963712/Info (1003024) +]
    Data load time: seconds [0.52]
    +...+

    + [Sea 16 May 16:21:47 2012]Local/Monthly/Monthly/admin@Native Directory/140095928858368/Info (1013091) +]
    + Received order [calculate] user [directory admin@Native] +.

    + [Sea 16 May 16:21:47 2012]Local/Monthly/Monthly/admin@Native Directory/140095928858368/Info (1013162) +]
    + Received order [calculate] user [directory admin@Native] +.

    + [Sea 16 May 16:21:47 2012]Local/Monthly/Monthly/admin@Native Directory/140095928858368/Info (1012555) +]
    + Erasure of the data in the partition [Member3] with fixed member [Period (Member1); Scenario (Member2)] +.


    BefLoad - entered in the journal Application Essbase:
    + [Sea 16 May 16:23:43 2012]Local/Monthly/Monthly/admin@Native Directory/140095932016384/Info (1013091) +]
    + Received order [calculate] user [directory admin@Native] +.

    + [Sea 16 May 16:23:43 2012]Local/Monthly/Monthly/admin@Native Directory/140095932016384/Info (1013162) +]
    + Received order [calculate] user [directory admin@Native] +.

    + [Sea 16 May 16:23:43 2012]Local/Monthly/Monthly/admin@Native Directory/140095932016384/Info (1012555) +]
    + Erasure of the data in the partition [Member3] with fixed member [Period (Member1); Scenario (Member2)] +.
    +...+

    + [Sea 16 May 16:23:44 2012]Local/Monthly/Monthly/admin@Native Directory/140095929911040/Info (1003037) +]
    Updated load cells [98] data

    + [Sea 16 May 16:23:44 2012]Local/Monthly/Monthly/admin@Native Directory/140095929911040/Info (1003024) +]
    Data load time: seconds [0.52]
    +...+

    + [Sea 16 May 16:23:45 2012]Local/Monthly/Monthly/admin@Native 140095860504320/Directory/Info (1013091) +]
    + Received order [calculate] user [directory admin@Native] +.

    + [Sea 16 May 16:23:45 2012]Local/Monthly/Monthly/admin@Native 140095860504320/Directory/Info (1013162) +]
    + Received order [calculate] user [directory admin@Native] +.

    + [Sea 16 May 16:23:45 2012]Local/Monthly/Monthly/admin@Native 140095860504320/Directory/Info (1012555) +]
    + Erasure of the data in the partition [Member3] with fixed member [Period (Member1); Scenario (Member2)] +.

    James, the scripts export and the Load event will fire four times, once for each type of file: the. DAT file (main TB file),-A.DAT (log file),-B.DAT and - c.DAT.

    To work around this problem, then only run during the loading of the main TB file, add the following or something similar at the beginning of your event scripts. This assumes that strFile is in the list of parameters to the subroutine:

    Select Case LCase(Right(strFile,6))
         Case "-a.dat", "-b.dat", "-c.dat" Exit Sub
    End Select
    
  • Cards disappear when importing data

    I configured a FDM location and import format to load directly to Hyperion Enterprise data via a .csv file. My problem came after I try to import the data FDM file. The import is successful, but at the stage of 'Validate', I see that my entire account card mysteriously disappeard FDM, causing no rows of my import data to map correctly. No error messages are displayed. data valid not simply against the previously downloaded account plan. I tried to reconstruct the locations and formats of import from scratch and reupload cards via models, with no luck. Any suggestions are appreciated!

    Thanks in advance.

    You have event scripts?

    FDM would never delete the maps as part of the data load. I think that there is a script. Check your events.

  • Ignore all the lines in the Script of Import FDMEE

    Hi all

    I created a script to import such as to one of the custom, the value must be the name of the location. But this isn't getting this value and also skip all lines and newspaper it shows like Script jumps for all lines. Please indicate why this is happening.

    ************

    def Parse_Entity (strfield, strrecord):

    org = fdmContext ["LOCNAME"]

    back org

    *****************

    2015-06-02 06:20:09, INFO 724 [AIF]: ERPI - 105011:EPMERPI - JythonInterpreter instantiation

    2015-06-02 06:20:10, 110 [AIF] INFO: 105039:EPMERPI - the name of the log file: D:\Oracle\FDMAPPS\outbox\logs\SAHFM_141.log

    2015-06-02 06:20:10, 112 [AIF] DEBUG: ERPI - 105011:EPMERPI - script file of passage for the execution of the jython interpreter: D:\Oracle\FDMAPPS/data/scripts/import/Test.py

    2015-06-02 06:20:10, 114 [AIF] INFO: 105039:EPMERPI - run the file: D:\Oracle\FDMAPPS/data/scripts/import/Test.py

    2015-06-02 06:20:10, 116 [AIF] DEBUG: 105039:EPMERPI - LOG_LEVEL: 5

    2015-06-02 06:20:10, 116 [AIF] DEBUG: 105039:EPMERPI - Script to the file encoding: UTF-8

    2015-06-02 06:20:10, 117 [AIF] DEBUG: 105039:EPMERPI - def Parse_Entity (strfield, strrecord):

    org = fdmContext ["LOCNAME"]

    back org

    2015-06-02 06:20:10, 131 [AIF] DEBUG: ERPI - 105011:EPMERPI - compilation script: Test(strField,strRecord)

    2015-06-02 06:20:10, 135 [AIF] INFO: ERPI - Testing.txt name for the 105011:EPMERPI file.

    periodKey2014-11-30

    2015-06-02 06:20:10, 137 [AIF] DEBUG: ERPI - 105011:EPMERPI - error assess scriptnullorg.python.core.PyException.fillInStackTrace(PyException.java:70)

    java.lang.Throwable. < init > (Throwable.java:181)

    java.lang.Exception. < init > (Exception.java:29)

    java.lang.RuntimeException. < init > (RuntimeException.java:32)

    org.python.core.PyException. < init > (PyException.java:46)

    org.python.core.PyException. < init > (PyException.java:43)

    org.python.core.PyException. < init > (PyException.java:61)

    org.python.core.Py.NameError(Py.java:220)

    org.python.core.PyFrame.getname(PyFrame.java:276)

    org. $0 Python.pycode._pyx955.f (< script >: 1).

    org. Python.pycode._pyx955.call_function (< script >)

    org.python.core.PyTableCode.call(PyTableCode.java:165)

    org.python.core.PyCode.call(PyCode.java:18)

    org.python.core.Py.runCode(Py.java:1204)

    org. Python.Core.__builtin__. Eval (__builtin__. Java:504)

    org.python.util.PythonInterpreter.eval(PythonInterpreter.java:164)

    com.hyperion.aif.file.common.util.DataLoadEngine$ Expression.evaluateScript (DataLoadEngine.java:1031)

    com.hyperion.aif.file.common.util.DataLoadEngine$ Expression.access$ 200 (DataLoadEngine.java:924)

    com.hyperion.aif.file.common.util.DataLoadEngine$ ImportItemFileEntity.evaluateExpressions (DataLoadEngine.java:834)

    com.hyperion.aif.file.common.util.DataLoadEngine.processFileRow(DataLoadEngine.java:656)

    com.hyperion.aif.file.common.util.DataLoadEngine.loadRow(DataLoadEngine.java:385)

    com.hyperion.aif.file.data.ImportTextData.performLoad(ImportTextData.java:374)

    sun.reflect.GeneratedMethodAccessor795.invoke (unknown Source)

    sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)

    java.lang.reflect.Method.invoke(Method.java:597)

    org.python.core.PyReflectedFunction.__call__(PyReflectedFunction.java:175)

    org.python.core.PyObject.__call__(PyObject.java:355)

    org.python.core.PyMethod.__call__(PyMethod.java:215)

    org.python.core.PyMethod.instancemethod___call__(PyMethod.java:221)

    org.python.core.PyMethod.__call__(PyMethod.java:206)

    org.python.core.PyObject.__call__(PyObject.java:381)

    org.python.core.PyObject.__call__(PyObject.java:385)

    org. $2 Python.pycode._pyx941.importData (< string >: 91)

    org. Python.pycode._pyx941.call_function (< string >)

    org.python.core.PyTableCode.call(PyTableCode.java:165)

    org.python.core.PyBaseCode.call(PyBaseCode.java:297)

    org.python.core.PyBaseCode.call(PyBaseCode.java:191)

    org.python.core.PyFunction.__call__(PyFunction.java:385)

    org.python.core.PyMethod.__call__(PyMethod.java:215)

    org.python.core.PyMethod.instancemethod___call__(PyMethod.java:221)

    org.python.core.PyMethod.__call__(PyMethod.java:206)

    org.python.core.PyObject.__call__(PyObject.java:432)

    org.python.core.PyObject.__call__(PyObject.java:436)

    org. $0 Python.pycode._pyx944.f (< string >: 5)

    org. Python.pycode._pyx944.call_function (< string >)

    org.python.core.PyTableCode.call(PyTableCode.java:165)

    org.python.core.PyCode.call(PyCode.java:18)

    org.python.core.Py.runCode(Py.java:1204)

    org.python.core.Py.exec (Py.java:1248

    ***********************

    [WHITE]

    [WHITE]

    [SCRIPT SKIPED] Opening balance of the CAC Description debits credits closing balance

    [SKIPED FROM SCRIPT ] --------------- ------------------------------- -------------------- -------------------- -------------------- --------------------

    [SCRIPT SKIPED] 1010 CASH IN BANKS 84 410,91 33,419,258.45 35,189,715.65-1,686,046.29

    1050 [SCRIPT SKIPED] CASH EQUIVALENTS 320,422,492.02 181,734,281.41 222,421,493.83 279,735,279.60

    [SCRIPT SKIPED] 1059 RESTRICTED CASH 920,357.21 0.00 0.00 920,357.21

    Filled lines: 0

    Lines rejected: 19

    **********************

    Your import script file name and the name of the defined function must be the same, that is to say that your function is called Parse_Entity the import script should be called Parse_Entity.py not Test.py in your error log indicates have called it

  • Call via the FDM script batch file

    Hi all

    Here is the FDM script written to call the command via the Script FDM in import file, test the operation of the script by creating a vbscript file (* .vbs) to call the batch file and worked like charm. Please see the excerpt from the sciprt

    SubMonth = "Mar".

    SubYear = "FY15.

    ARG = trim (SubYear) & "" & trim (SubMonth)

    Set objWshShell = CreateObject ("Wscript.Shell")

    strCmd = "E:\hyperionfiles\batch\CalcActNew.bat" & Arg

    Line 53 objWshShell.Run 'strCmd', 0, True

    The error returned is

    Error.JPG

    Thank you

    Hi, no double quotes are needed to join strCmd it's a variable

    objWshShell.Run strCmd, 0, True

  • MAXL to import data to the OSB.

    Greetings,

    I'm trying to import data from a data file located on our unix Server (/ export/lvl0.txt). Here's the Maxl I use to import data.

    -->. import data from AA.aa database server text data_file ' / export/lvl0.txt ' on abandonment of the error;

    I get this error when I call this Maxl using a Shell script.

    ERROR - 1003027 - failed to open file [/ hyperion/Oracle/Middleware/user_projects/epmsystem1_Ess13/EssbaseServer/essbaseserver1/app/AA/aa/lvl0.txt].

    ERROR - 1241101 - Essbase unexpected error 1003027.

    I guess maxl looks for the file in the default location. Any suggetions?

    If this data file is free of data, then no need of rules file (free-form means the same thing that you export the request essbase data)... Otherwise, you need rule file to understand the combination of its data and metadata to essbase.

    See you soon!

    SH! going

  • Import data from different DBs to HFM Application using FDQM

    Hi gurus

    1. how to import data from different databases to HFM Application using FDQM?
    Do we need to write scripts for integration in FDQM, or is there an alternative method, we need to do?

    concerning
    Dev

    Data import is long to explain,

    To be more precise,
    1. you would establish a connection with your source systems and destination where you pull the data.
    You can do this by registering adapters of integration for send_break_action source machines
    2. you would then upward some formats for importing, maps and tables of control.
    Please go through the Administrator's guide,

    One of the experts will help you better understand.

    Kind regards

    David Martin

  • Import data from the text file to open the Document

    This should seem simple, but I can't find a way to import a text file delimited to tab automatically on opening the document.  I can open my form fill pdf document, select Forms > more form Options > data management > Import Data > change the bottom right "Text (*.txt) files" file type, select the file, then import with no problems.  I can't find a way to do this automatically when the document opens.  I know a *.fdf file will do, but my data are in a tab delimited text file.  If this is not possible, is there a program or a script that will convert *.txt to import *.fdf?  Thanks for your time.  Steve

    Have you looked at using custom JavaScript?

    importTextData

    You will need to work on how the data file select the line form.

  • How to generate the script to insert data tables present in a

    How to generate the script to insert data from one table in an entire schema under environment sqlplus




    with toads it please help me please!

    905310 wrote:
    How to generate the script to insert data from one table in an entire schema under environment sqlplus
    with toads it please help me please!

    The correct method by using the pump of the database or import/export or unload the data in CSV format for loading using SQL * Loader.

    Generate instructions insert with literals is very bad choices - the bind variable is missing. It will be quite slow because many other CPU cycles are spend on hard analysis. The shared pool will become fragmented. This can cause errors of memory for other applications when they attempt to analyze SQLs for cursors.

  • Problem with export data from an application and importing data into another application

    Hello

    I need to give a stream to an application (target) of one of the other application (source) of data. So what I did is I exported the data necessary for the application target using the DATAEXPORT function in text files and you now want to import data in text files in the application of the source using rules files.

    I'm trying to create files for each exported text file separate compilation, but I'm not able to do this successfully.
    I traced all members of the source to the target application, but still there is something wrong is going on is to not let the successful import or do not allow that data to go to the right places.

    There all the specifications, while using this function DATAEXPORT as format or the kind of DATAEXPORTOPTIONS that I use to make it work?

    Here is the first part of my script to calc. For all other data I wanted to export that I wrote similar statements by simply setting on individual members.

    SET DATAEXPORTOPTIONS
    {
    DATAEXPORTLEVEL ALL;
    DATAEXPORTCOLFORMAT ON;
    DATAEXPORTOVERWRITEFILE ON;
    };

    DIFFICULTY ("ST", "BV", "SSV", "ASV", "ESV", "W", "HSP_InputValue", "SÜSS", "TBSD", "ABU", "AC", "LB", "LT", "VAP", "Real", "FY11", @REMOVE (@LEVMBRS (period, 0), @LIST (BegBalance)));
    DATAEXPORT 'File' ',' '...\export Files\D3.txt ';
    ENDFIX;


    Please let me know your opinion on this. I really need help with that.
    ~ Hervé

    So, you have 12 periods through the columns of the export data?

    If so, you must assign each column of data at a time. The data column property is used only when you have completely defined the dimensions either through other fields or other areas and the header and the left point only possible is data. This does not work when you have several columns of data that you find, just so assign the right period; doing this means there is no column of data .

    Kind regards

    Cameron Lackpour

  • Why import data if ready schema and index create, increase in Undo TableSpace

    I have a problem importing data.
    When I export data don't have schema import include the index schema.
    And then I import the schema ready.
    When I import data, I find this Undo TableSpace increase very fast.
    I have therefore two tests.
    1. IMPORT of data and index, every thing ok look
    2 import a schema includes index
    and then import data. Undo Tablespace very rapid increase

    If you mean undo tablespace increase in order to read consisten read.

    N ° cancel space use increases due to the DML. (requests for consistent readings read undo, they generate no cancellation to grow)

    so you're saying that redo log appear, rollback undo segment will increase.

    N ° increase in written cancellations results increase in roll forward.

    IF we import large data, we must export data with the index and import data right now

    If you import large data, you must create the indexes after the data is imported. If the index definitions are included in the export, the default behavior is that import will create them once the data is imported. To do this, undo lower for indexes.
    Note This will generate redo for the creation (but does not cancel and therefore not generate recovery for cancellation). You can avoid this by manually running CREATE INDEX... NOLOGGING - but it means you need to get and modify the scripts CREATE INDEX.

    Hemant K Collette

  • I lost Fox reminder... a lot of important dates etc... how I get it back

    Lost reminder Fox of Firefox. This has had a lot of important dates. Can I get it back. Something is displayed in the files when I search on the computer, but I can't understand how to try to add to the profile. It also doesn't let me read it because windows does not know how to open it. I tried the 'copying files between profile folders' but he won't let me not make right click in the profile to stick for some reason any

    Hi there... not the extension did not show anywhere in Firefox, although I could find a few mentions 'reminderfox' looking for windows.

    This was driving me crazy in the morning and half in the afternoon (I'm one of those who does not like to be beaten... especially by the computer). So now I have solved my problem.

    What I did to reinstall reminderfox, then, after further research, I've been just "reminderfox.ics.bak3" (assuming it was the backup) in the icon on the status bar and voila! It worked.

    Thanks a lot for picking up on my question

  • Import data from another browser - only a few favorite IE9 are transferred in bookmarks. Solution HTML - HTML file all Favorites OK, but same result

    Win7 / IE9: use for the first time. Example: A folder of Favorites has 4 entries HTML - only 2 transferred. Some have none transferred - empty folder. Others have correct random + some disappeared persons.

    All of Monday
    I can see the full list of favorite IE9 HTML in HTML file on desktop with Firefox-> new tab-> open file-> open
    .
    In the desktop HTML file, there are 37 files IE9 with no more nesting 3 deep in all of a high. They are all correct wrt favorite IE9.

    All records albums + deeper nests are copied in FF ok. Random content. Copied content works ok

    7 unassigned to IE9 HTML web sites best records are also copied <-these 7 copy on FF and work well

    Example: First file in the list of IE9 has no nesting., IE9 has 4 entries - Firefox has only 2. What other method of reproduction is used.

    BTW - please let know us how I can delete entire list of bookmarks in Firefox button to try again with a clean list of bookmarks

    I'll uninstall Firefox and start over with a clean copy and use the HTML only method to try to transfer IE (files. I'll bring result.

    BTW, I'm in the United Kingdom at the time of UK - where delays to answer - need to sleep sometime!

    Tuesday night

    Hello

    I uninstalled Firefox. Re installed and loaded with favorite IE9 to HTML file.

    All seem to be copied correctly

    First time that I started using the "import data from another browser. Partial is copied.
    Then I tried 'Import HTML file' without deleting any favorite had been copied. Always partial copied.

    Everything seems fine.

Maybe you are looking for

  • Recover Photos from a broken iPhone

    I have an iPhone 5s that I dropped and cracked 4 times, about 6 months ago I dropped it and the screen did not crack just went black, with my music continues to play. I bought the iPhone 6 and left the children of 5 years sitting in my closet. Recent

  • What is the status of your order?

    Ordered my pure Moto X yesterday, about an hour after that pre-orders have started. Today, I went into my email and checked the status of my order. According to the bike order status tracking site, my bike was done and my 'order is finished. If this

  • HP photosmart 7520: 2 Facer print second page prints upside down

    The printer did not work properly on Windows 7 I therefore deleted and downloaded the driver on the internet. Now when printing duplex, the first page prints correctly but the page on the back of the first page is upside. Please help me with this.

  • How to change the power state in a Service profile template

    I would like to change the "Power status" in a model of Service profile. While I can change almost all other aspects of the model, I don't find it in the UCS Manager GUI. Is it an unchangeable decision while creating the model? I can change it via th

  • Improve the performance of processing image javaFx

    HelloI'm working on Image processing with javaFx. I think my code isn't effective favorite (with pictures HD, refresh is very slow). Because I am doing a 'for' on each pixel of my image every time I have to refresh it. But I don't know how else to do