Table 1 d to the Conversion chain

Hello

How can I convert a D 1 String table?

Please find the attached VI.

-mfp.

Hi mfp.

I don't know what your question is about. When I look at your code, I see a table which is an array of 2D channels where index you some lines (I have a feeling you want columns).

Not to mention you want to get two characters in strings and which convert to digital.

Your table is empty (please fill with the data, right-click on the table and select "Operations on the data-> default font of the current value" before posting).

You can directly index since a table 2D in unique items by adding an entry in the column index as well as the function "array index.

Or you could feed the column of strings in the function 'hexadecimal string number

Tone

Tags: NI Software

Similar Questions

  • Optimize the conversion of SGL data chain

    As the title indicates, I'm looking to pronounce on a more efficient way (as appropriate) to convert a string into an array of SGL.

    The detachment is just to get feedback on the best ways of doing things from a personal educational point of view. I don't actually have to improve performance... (Just keep improving my skills of codeing.)

    'More effective' here must take to be less cycles of CPU and low memory footprint, in that order. (That is, most small load on CPU is preferred, if smaller memory footprint is at the expense of the other cycles CPU, the hit on memory footprint is preferred).

    The length of the input string comes from a TCP read and contains only the raw bytes of the expected (in this case, SGL) format without any header/footer of meta-data.

    Currently, my implementation is very simple and given that the expected table size is known, I am relying on the loop being smart in his automatic indexation allowance.

    For the conversion, I do a right type-Gallery of 4 characters at once.

    The code below, the for loop is simply intended to give a 'real' output boolean if the string length is the length of expected as determined by the input string 'number of track points. No additional error handling is required or necessary.

    I suspect the "subset of string" combined with the iterations (for loop) are the two worst performance in this VI hits, but I can't think of a good way to do the conversion as a table, and if I could, then I should at least do a conversion in 'string to array U8' first.

    Thanks to all who took the time to read and watch. Your time and your contribution is appreciated as always!

    Q

    Hi Q,

    Why don't convert you directly in a table of SGL? No need of a loop FOR, nor for StringSubset...

  • problem about dynamic data to the conversion of table 1 d

    Hi all

    I have problem with the conversion between dynamic data and table 1 d.

    I wrote a simple VI to show the problem, as the attached picture. Convert dynamic data in table 1 d, and then return to the dynamics of data, I use 3 tables of waveform display data in 3 different places, but only 'force contact 2' the graph looks normal and the 2 other cards are strange data shows. In addition, the probe indicates that data are all just before going to the charts. What is wrong with him?

    Can someone help me?

    When you convert a table, you lose your calendar information.  You need to convert a waveform and manipulate waveform data.  Use a Structure of elements in Place with waveform components to manipulate waveform data.

  • MISP track changes made to a digitized table used during the conversion?

    I need to convert several databases in AL32UTF8, which is 2 TB or so of size.  I want to reduce the outage window.  Most of the data is ASCII, but the character set is WE8ISO8859P15, so it is possible to get the non-ascii character in there.  My plan was to analyze the database while it is live, then run MISP during the blackout without a full re-analysis.  But I fear that a non-ascii character could go in there from scanning the failure.  The MISP track changes since the last scan, so just check the lines that have been added or changed since the scan?  In my tests limited until now, so it seems that complete analysis would take longer than the window of failure, a progressive solution would be wonderful.  However, I don't see how to make this happen.


    Thank you

    Mike has

    No, the CDS is not currently able to track incremental changes. However, you could try to categorize paintings like those who can get new non-ASCII characters and those who cannot. The fact that a given table has at least one non-ASCII character is a pretty good approximation of this classification. In this way, you could just rescan the tables which are likely to get new non-ASCII characters. Depending on the size of the problem tables this may shorten the time to restart the analysis considerably.

    Note that all need conversion CLOB columns, even if they contain ASCII only.

    To minimize the window of downtime, we recommend a solution with GoldenGate. GoldenGate is, however, not a free product.

    Thank you

    Sergiusz

  • How to apply the Conversion Table of file FM.

    I have a conversion table generated for a group of files that I am trying to structure. I want to be able to apply the conversion with Extendscript table. The script that I have does not save any file converted. I don't know why is it not save the file. I was under the impression that the "Structure Generator" should create the new file. If this incorrect.

    Here is the code I am using.

    var myFile = File.openDialog ("Select File to Convert"); 
    
    var myCT = File.openDialog ("Select ConversionTable"); 
    var CT = openFile (myCT.fsName, 0); 
    
    applyConversionTable (myFile.fsName, CT) 
    closeFile (CT); 
    
    function applyConversionTable(fileName, CT){ 
        var doc= openFile (fileName, 0); 
        var name = fileName.replace(/[\w\.]+$/,"test.fm")  
        CallClient("Structure Generator", "InputDocId " + doc.id); 
        CallClient("Structure Generator", "RuleDocId " + CT.id); 
        CallClient("Structure Generator", "OutputDocName " + name); 
        CallClient("Structure Generator", "GenerateDoc"); 
        closeFile (doc); 
    } 
    
    function openFile( fileName, visible){ 
         
        var i = 0; 
        var doc = 0; 
         
        var openParams = GetOpenDefaultParams(); 
        var retParams = new PropVals(); 
         
        i = GetPropIndex(openParams, Constants.FS_AlertUserAboutFailure); 
        openParams[i].propVal.ival = false; 
        i = GetPropIndex(openParams, Constants.FS_MakeVisible); 
        openParams[i].propVal.ival = visible; 
        i = GetPropIndex(openParams, Constants.FS_FileIsOldVersion); 
        openParams[i].propVal.ival = Constants.FV_DoOK; 
        i = GetPropIndex(openParams, Constants.FS_FileIsInUse); 
        openParams[i].propVal.ival = Constants.FV_ResetLockAndContinue; 
        i = GetPropIndex(openParams, Constants.FS_FontChangedMetric); 
        openParams[i].propVal.ival = Constants.FV_DoOK; 
        i = GetPropIndex(openParams, Constants.FS_FontNotFoundInCatalog); 
        openParams[i].propVal.ival = Constants.FV_DoOK; 
        i = GetPropIndex(openParams, Constants.FS_FontNotFoundInDoc); 
        openParams[i].propVal.ival = Constants.FV_DoOK; 
        i = GetPropIndex(openParams, Constants.FS_RefFileNotFound); 
        openParams[i].propVal.ival = Constants.FV_AllowAllRefFilesUnFindable; 
         
        doc = Open(fileName, openParams, retParams); 
         
        if (doc.ObjectValid() ===1){ 
            doc.openedByScript = true; 
        } 
        else{ 
            PrintOpenStatus(retParams); 
        } 
        return doc 
    } 
    
    function closeFile(doc){ 
        Constants.FF_CLOSE_MODIFIED = 1; 
        var res = doc.Close(Constants.FF_CLOSE_MODIFIED); 
    }
    

    Ah, found the problem. I noticed this earlier, but do not think that it was important, it apparently. The other arguments must be all uppercase. Like this:

        CallClient ("Generator of Structure", "INPUTDOCID" + doc.id);
        CallClient ("Structure Generator", "RULEDOCID" + CT.id);
        CallClient ("Generator of Structure", "OUTPUTDOCNAME" + name);
        CallClient ("Structure Generator", "StructureDoc");

    I tested it and it works for me. FWIW, I think that it is a poor quality of a client API feature otherwise very slippery.

    Russ

  • What are the APIs used or tables of the interface used for the conversion of the Bank

    Hi all

    Please let me know if there is no table interface or api used to make the conversion of the Bank in r12.

    Thank you

    There is no interface for the Bank conversion table in r12, but you can use APIs such as: CE_BANK_PUB. CREATE_BANK, CE_BANK_PUB. CREATE_BANK_BRANCH, CE_BANK_PUB. CREATE_BANK_ACCT, ce_bank_pub.create_bank_acct_use etc...

  • How can I know because of what table in database, causing the chaining line

    Hello


    Please help me that how can I know because of what table in database, causing the chaining line?

    Hello

    hope that you have already created the table utlchain. Or otherwise create as below.

    SQL > @?/rdbms/admin/utlchain.sql

    And try to run the script again.

    I tried with the following example in the following link.

    http://psoug.org/reference/chained_rows.html

    His works very well and it will list the tables.

    Or try the row chaining and Migration of line [ID 122020.1]

    It has all the necessary steps to do so.

    Thank you
    Rognard

  • The Date conversion chain.

    Hello

    I used following code to convert string to date but apply the time zone of the device during the conversion. I don't need this but I
    Here same time of this string.
    as
    String = '07:59:17.427 2009-07-31'
    Date = 2009-07-31 07:59:17.427

    Date formatter = new Date (HttpDateParser.parse ("07:59:17.427" 2009-07-31));
    SimpleDateFormat dateFormat = new SimpleDateFormat ("yyyy-MM-DD hh: mm:." "") "'SSS');
    String strCustomDateTime = dateFormat.format (formatter);

    SimpleDateFormat format according to the local time zone. DateFormat does not work. see the documentation for the API

  • Lose the vertical alignment of the table during the conversion of the ditamap to book

    FrameMaker Version: 12.0.4.445 (later part of TCS5)

    1. I have a project structured, where several XML files have been grouped in a ditamap.
    2. For one of the XML files, I have a table, where I need to set the cell Vertical alignment of cells in the MIDDLE.
    3. So using Paragraph Designer > table cell, I have change the entries in the top in the Middle (the default values have been Top).
    4. With the ditamap pane selected, I'll then menu file > > Save Ditamap under
    5. I save ditamap as ' book with fm components 12.0 (* .book) "file type.
    6. In the resulting book, the XML files are now. FM files.

    However, at this point, when I open the. File of FM which has the table, the cell styles back to the TOP.

    I searched high and low for a similar problem. It's look like a bug to me, but can someone confirm?

    Thank you

    No, this is not a bug by itself. I bet that the alignment is lost before you generate the book. After you set the alignment and saving and closing the file... reopen and see if the alignment is still there... I bet it's gone. As a general rule, you cannot apply put in shape or properties to objects (elements) in a DITA file. This applies to font and paragraph properties as well as table set in shape and other types of development in the form. All you can do is create items and set attributes. Any parameter properties will usually be lost on file save.

    You would probably need to have a 'process of publication' (script any) you run your generated book and chapter files that would scan for an attribute that shows some properties must be set on the table. The @outputclass attribute is typically used for this kind of thing. I'm not aware of what anyone in default FrameMaker DITA, who put in place to manage this type of formatting of the tables.

    If this formatting that you try to apply is consistent for the whole table, it is possible that you will be able to do this by creating a new table format that has this set of default formatting. When you insert a table in a subject, the table format is assigned to the tgroup/@outputclass attribute and this is the form that is used when rendering the table. Just create a new table in the structured application model and put in place this format to have the properties you want. Then, when you insert the table, be sure to select this format. It can be hard to set this up, but it * should * work.

    However, if this does not work, or you need more refined formatting applied to the parts of the table, I produce a tool called DITA-FMx, which offers extended DITA creation and publication of the options for FrameMaker. It offers features that allow this type of table set shaped to be applied by setting the attribute @outputclass to a specific value on the line or cell. You can get more information on DITA-FMx here...

    http://leximation.com/DITA-FMX/

    Good luck!

    Scott Prentice

    Leximation, Inc..

    www.leximation.com

  • How do I click on a cell in a table control and display the value in a string?

    What I want to do is click on a cell in a table control and have the value of the cell in an indicator of the chain. Cell that ever I click on, I wish that the value to be displayed in the indicator.

    Thank you!

    Use the property "Change Position".

  • 'image' for the conversion of "photo".

    LabVIEW dear gurus,.

    I have a problem I would like to help with. I have a labview VI that creates an image using the entire block 'IMAQ image', and I a VI which allows the selection of image with the mouse. Most of the code for this second VI is an example. The problem is my photo VI selection requires that the image of the data type 'image', but the photos my other VI creates are the data type "image." CTRL-h wrote the first type of wire is 'image' and the second type of thread is "Image Dst Out (IMAQImage). I need either to convert the 'image' to 'image', or rewrite my photo selection to take in a variable "image" instead of "photo". I'm not particularly good at labview, I'm short on time, so conversion seems to be the best option. I found another thread that talks about the conversion of an 'image' in a table, but I do not know how to turn this table back into a 'picture '. Someone at - it ideas?

    Thank you
    sdt51

    Hi Daniel,.

    The VI I posted actually did the right thing, but I misnamed it.  Where did you see this VI?  I just created myself on my PC here.  Anyway, here's the same VI to 8.2.

  • Question to load data using sql loader in staging table, and then in the main tables!

    Hello

    I'm trying to load data into our main database table using SQL LOADER. data will be provided in separate pipes csv files.

    I have develop a shell script to load the data and it works fine except one thing.

    Here are the details of a data to re-create the problem.

    Staging of the structure of the table in which data will be filled using sql loader

    create table stg_cmts_data (cmts_token varchar2 (30), CMTS_IP varchar2 (20));

    create table stg_link_data (dhcp_token varchar2 (30), cmts_to_add varchar2 (200));

    create table stg_dhcp_data (dhcp_token varchar2 (30), DHCP_IP varchar2 (20));

    DATA in the csv file-

    for stg_cmts_data-

    cmts_map_03092015_1.csv

    WNLB-CMTS-01-1. 10.15.0.1

    WNLB-CMTS-02-2 | 10.15.16.1

    WNLB-CMTS-03-3. 10.15.48.1

    WNLB-CMTS-04-4. 10.15.80.1

    WNLB-CMTS-05-5. 10.15.96.1

    for stg_dhcp_data-

    dhcp_map_03092015_1.csv

    DHCP-1-1-1. 10.25.23.10, 25.26.14.01

    DHCP-1-1-2. 56.25.111.25, 100.25.2.01

    DHCP-1-1-3. 25.255.3.01, 89.20.147.258

    DHCP-1-1-4. 10.25.26.36, 200.32.58.69

    DHCP-1-1-5 | 80.25.47.369, 60.258.14.10

    for stg_link_data

    cmts_dhcp_link_map_0309151623_1.csv

    DHCP-1-1-1. WNLB-CMTS-01-1,WNLB-CMTS-02-2

    DHCP-1-1-2. WNLB-CMTS-03-3,WNLB-CMTS-04-4,WNLB-CMTS-05-5

    DHCP-1-1-3. WNLB-CMTS-01-1

    DHCP-1-1-4. WNLB-CMTS-05-8,WNLB-CMTS-05-6,WNLB-CMTS-05-0,WNLB-CMTS-03-3

    DHCP-1-1-5 | WNLB-CMTS-02-2,WNLB-CMTS-04-4,WNLB-CMTS-05-7

    WNLB-DHCP-1-13 | WNLB-CMTS-02-2

    Now, after loading these data in the staging of table I have to fill the main database table

    create table subntwk (subntwk_nm varchar2 (20), subntwk_ip varchar2 (30));

    create table link (link_nm varchar2 (50));

    SQL scripts that I created to load data is like.

    coil load_cmts.log

    Set serveroutput on

    DECLARE

    CURSOR c_stg_cmts IS SELECT *.

    OF stg_cmts_data;

    TYPE t_stg_cmts IS TABLE OF stg_cmts_data % ROWTYPE INDEX BY pls_integer;

    l_stg_cmts t_stg_cmts;

    l_cmts_cnt NUMBER;

    l_cnt NUMBER;

    NUMBER of l_cnt_1;

    BEGIN

    OPEN c_stg_cmts.

    Get the c_stg_cmts COLLECT in BULK IN l_stg_cmts;

    BECAUSE me IN l_stg_cmts. FIRST... l_stg_cmts. LAST

    LOOP

    SELECT COUNT (1)

    IN l_cmts_cnt

    OF subntwk

    WHERE subntwk_nm = l_stg_cmts (i) .cmts_token;

    IF l_cmts_cnt < 1 THEN

    INSERT

    IN SUBNTWK

    (

    subntwk_nm

    )

    VALUES

    (

    l_stg_cmts (i) .cmts_token

    );

    DBMS_OUTPUT. Put_line ("token has been added: ' |") l_stg_cmts (i) .cmts_token);

    ON THE OTHER

    DBMS_OUTPUT. Put_line ("token is already present'");

    END IF;

    WHEN l_stg_cmts EXIT. COUNT = 0;

    END LOOP;

    commit;

    EXCEPTION

    WHILE OTHERS THEN

    Dbms_output.put_line ('ERROR' |) SQLERRM);

    END;

    /

    output

    for dhcp


    coil load_dhcp.log

    Set serveroutput on

    DECLARE

    CURSOR c_stg_dhcp IS SELECT *.

    OF stg_dhcp_data;

    TYPE t_stg_dhcp IS TABLE OF stg_dhcp_data % ROWTYPE INDEX BY pls_integer;

    l_stg_dhcp t_stg_dhcp;

    l_dhcp_cnt NUMBER;

    l_cnt NUMBER;

    NUMBER of l_cnt_1;

    BEGIN

    OPEN c_stg_dhcp.

    Get the c_stg_dhcp COLLECT in BULK IN l_stg_dhcp;

    BECAUSE me IN l_stg_dhcp. FIRST... l_stg_dhcp. LAST

    LOOP

    SELECT COUNT (1)

    IN l_dhcp_cnt

    OF subntwk

    WHERE subntwk_nm = l_stg_dhcp (i) .dhcp_token;

    IF l_dhcp_cnt < 1 THEN

    INSERT

    IN SUBNTWK

    (

    subntwk_nm

    )

    VALUES

    (

    l_stg_dhcp (i) .dhcp_token

    );

    DBMS_OUTPUT. Put_line ("token has been added: ' |") l_stg_dhcp (i) .dhcp_token);

    ON THE OTHER

    DBMS_OUTPUT. Put_line ("token is already present'");

    END IF;

    WHEN l_stg_dhcp EXIT. COUNT = 0;

    END LOOP;

    commit;

    EXCEPTION

    WHILE OTHERS THEN

    Dbms_output.put_line ('ERROR' |) SQLERRM);

    END;

    /

    output

    for link -.

    coil load_link.log

    Set serveroutput on

    DECLARE

    l_cmts_1 VARCHAR2 (4000 CHAR);

    l_cmts_add VARCHAR2 (200 CHAR);

    l_dhcp_cnt NUMBER;

    l_cmts_cnt NUMBER;

    l_link_cnt NUMBER;

    l_add_link_nm VARCHAR2 (200 CHAR);

    BEGIN

    FOR (IN) r

    SELECT dhcp_token, cmts_to_add | ',' cmts_add

    OF stg_link_data

    )

    LOOP

    l_cmts_1: = r.cmts_add;

    l_cmts_add: = TRIM (SUBSTR (l_cmts_1, 1, INSTR (l_cmts_1, ',') - 1));

    SELECT COUNT (1)

    IN l_dhcp_cnt

    OF subntwk

    WHERE subntwk_nm = r.dhcp_token;

    IF l_dhcp_cnt = 0 THEN

    DBMS_OUTPUT. Put_line ("device not found: ' |") r.dhcp_token);

    ON THE OTHER

    While l_cmts_add IS NOT NULL

    LOOP

    l_add_link_nm: = r.dhcp_token |' _TO_' | l_cmts_add;

    SELECT COUNT (1)

    IN l_cmts_cnt

    OF subntwk

    WHERE subntwk_nm = TRIM (l_cmts_add);

    SELECT COUNT (1)

    IN l_link_cnt

    LINK

    WHERE link_nm = l_add_link_nm;

    IF l_cmts_cnt > 0 AND l_link_cnt = 0 THEN

    INSERT INTO link (link_nm)

    VALUES (l_add_link_nm);

    DBMS_OUTPUT. Put_line (l_add_link_nm |) » '||' Has been added. ") ;

    ELSIF l_link_cnt > 0 THEN

    DBMS_OUTPUT. Put_line (' link is already present: ' | l_add_link_nm);

    ELSIF l_cmts_cnt = 0 then

    DBMS_OUTPUT. Put_line (' no. CMTS FOUND for device to create the link: ' | l_cmts_add);

    END IF;

    l_cmts_1: = TRIM (SUBSTR (l_cmts_1, INSTR (l_cmts_1, ',') + 1));

    l_cmts_add: = TRIM (SUBSTR (l_cmts_1, 1, INSTR (l_cmts_1, ',') - 1));

    END LOOP;

    END IF;

    END LOOP;

    COMMIT;

    EXCEPTION

    WHILE OTHERS THEN

    Dbms_output.put_line ('ERROR' |) SQLERRM);

    END;

    /

    output

    control files -

    DOWNLOAD THE DATA

    INFILE 'cmts_data.csv '.

    ADD

    IN THE STG_CMTS_DATA TABLE

    When (cmts_token! = ") AND (cmts_token! = 'NULL') AND (cmts_token! = 'null')

    and (cmts_ip! = ") AND (cmts_ip! = 'NULL') AND (cmts_ip! = 'null')

    FIELDS TERMINATED BY ' |' SURROUNDED OF POSSIBLY "" "

    TRAILING NULLCOLS

    ('RTRIM (LTRIM (:cmts_token))' cmts_token,

    cmts_ip ' RTRIM (LTRIM(:cmts_ip)) ")". "

    for dhcp.


    DOWNLOAD THE DATA

    INFILE 'dhcp_data.csv '.

    ADD

    IN THE STG_DHCP_DATA TABLE

    When (dhcp_token! = ") AND (dhcp_token! = 'NULL') AND (dhcp_token! = 'null')

    and (dhcp_ip! = ") AND (dhcp_ip! = 'NULL') AND (dhcp_ip! = 'null')

    FIELDS TERMINATED BY ' |' SURROUNDED OF POSSIBLY "" "

    TRAILING NULLCOLS

    ('RTRIM (LTRIM (:dhcp_token))' dhcp_token,

    dhcp_ip ' RTRIM (LTRIM(:dhcp_ip)) ")". "

    for link -.

    DOWNLOAD THE DATA

    INFILE 'link_data.csv '.

    ADD

    IN THE STG_LINK_DATA TABLE

    When (dhcp_token! = ") AND (dhcp_token! = 'NULL') AND (dhcp_token! = 'null')

    and (cmts_to_add! = ") AND (cmts_to_add! = 'NULL') AND (cmts_to_add! = 'null')

    FIELDS TERMINATED BY ' |' SURROUNDED OF POSSIBLY "" "

    TRAILING NULLCOLS

    ('RTRIM (LTRIM (:dhcp_token))' dhcp_token,

    cmts_to_add TANK (4000) RTRIM (LTRIM(:cmts_to_add)) ")" ""

    SHELL SCRIPT-

    If [!-d / log]

    then

    Mkdir log

    FI

    If [!-d / finished]

    then

    mkdir makes

    FI

    If [!-d / bad]

    then

    bad mkdir

    FI

    nohup time sqlldr username/password@SID CONTROL = load_cmts_data.ctl LOG = log/ldr_cmts_data.log = log/ldr_cmts_data.bad DISCARD log/ldr_cmts_data.reject ERRORS = BAD = 100000 LIVE = TRUE PARALLEL = TRUE &

    nohup time username/password@SID @load_cmts.sql

    nohup time sqlldr username/password@SID CONTROL = load_dhcp_data.ctl LOG = log/ldr_dhcp_data.log = log/ldr_dhcp_data.bad DISCARD log/ldr_dhcp_data.reject ERRORS = BAD = 100000 LIVE = TRUE PARALLEL = TRUE &

    time nohup sqlplus username/password@SID @load_dhcp.sql

    nohup time sqlldr username/password@SID CONTROL = load_link_data.ctl LOG = log/ldr_link_data.log = log/ldr_link_data.bad DISCARD log/ldr_link_data.reject ERRORS = BAD = 100000 LIVE = TRUE PARALLEL = TRUE &

    time nohup sqlplus username/password@SID @load_link.sql

    MV *.log. / log

    If the problem I encounter is here for loading data in the link table that I check if DHCP is present in the subntwk table, then continue to another mistake of the newspaper. If CMTS then left create link to another error in the newspaper.

    Now that we can here multiple CMTS are associated with unique DHCP.

    So here in the table links to create the link, but for the last iteration of the loop, where I get separated by commas separate CMTS table stg_link_data it gives me log as not found CMTS.

    for example

    DHCP-1-1-1. WNLB-CMTS-01-1,WNLB-CMTS-02-2

    Here, I guess to link the dhcp-1-1-1 with balancing-CMTS-01-1 and wnlb-CMTS-02-2

    Theses all the data present in the subntwk table, but still it gives me journal wnlb-CMTS-02-2 could not be FOUND, but we have already loaded into the subntwk table.

    same thing is happening with all the CMTS table stg_link_data who are in the last (I think here you got what I'm trying to explain).

    But when I run the SQL scripts in the SQL Developer separately then it inserts all valid links in the table of links.

    Here, she should create 9 lines in the table of links, whereas now he creates only 5 rows.

    I use COMMIT in my script also but it only does not help me.

    Run these scripts in your machine let me know if you also get the same behavior I get.

    and please give me a solution I tried many thing from yesterday, but it's always the same.

    It is the table of link log

    link is already present: dhcp-1-1-1_TO_wnlb-cmts-01-1

    NOT FOUND CMTS for device to create the link: wnlb-CMTS-02-2

    link is already present: dhcp-1-1-2_TO_wnlb-cmts-03-3
    link is already present: dhcp-1-1-2_TO_wnlb-cmts-04-4

    NOT FOUND CMTS for device to create the link: wnlb-CMTS-05-5

    NOT FOUND CMTS for device to create the link: wnlb-CMTS-01-1

    NOT FOUND CMTS for device to create the link: wnlb-CMTS-05-8
    NOT FOUND CMTS for device to create the link: wnlb-CMTS-05-6
    NOT FOUND CMTS for device to create the link: wnlb-CMTS-05-0

    NOT FOUND CMTS for device to create the link: wnlb-CMTS-03-3

    link is already present: dhcp-1-1-5_TO_wnlb-cmts-02-2
    link is already present: dhcp-1-1-5_TO_wnlb-cmts-04-4

    NOT FOUND CMTS for device to create the link: wnlb-CMTS-05-7

    Device not found: wnlb-dhcp-1-13

    IF NEED MORE INFORMATION PLEASE LET ME KNOW

    Thank you

    I felt later in the night that during the loading in the staging table using UNIX machine he created the new line for each line. That is why the last CMTS is not found, for this I use the UNIX 2 BACK conversion and it starts to work perfectly.

    It was the dos2unix error!

    Thank you all for your interest and I may learn new things, as I have almost 10 months of experience in (PLSQL, SQL)

  • ORA-06502: PL/SQL: digital error: error in the conversion of char to number

    Hello world.

    I have a strange problem here. I'll try to explain better. I work with APEX 4.2 and of Oracle Database 11 g Enterprise Edition Release 11.2.0.3.0 - 64 bit Production.

    Here are my parameters NLS_SESSION_PARAMETER and NLS_DATABASE_PARAMETER: NLS_NUMERIC_CHARACTERS,.


    I have a table with a lot of body numbers, and when I imported a MS Access application data, all fields were imported with the comma as decimal separator.


    Now, I have a form with several fields of number and when I leave a numeric field, a body of numbers of amount total is calculated and automatically filled with a bit of javascript.


    Now the problem: calculating fields (sum) succeeds only when I use the decimal as the delimiter. If I use the comma, I get a NaN value in the total amount field. I managed to convert all commas in points with javascript, so the total amount is calculated.

    When I try to save the record, I get the error: ORA-06502: PL/SQL: digital error: error in the conversion of char to number because I'm trying to save the separator point in my number fields.


    I tried to use REPLACE function to replace the. by one, before winning but does not solve the problem.


    This sounds familiar to anyone?


    Thanks in advance.



    OK, the problem is solved people.

    Somehow, the registration procedure had an influence on another calculation of my form and the error came from this process. So I put a to_number and replace stated in the calculation and all records very well and it shows my total.

  • Word format / style rules to improve the conversion of PDF forms

    I remember seeing in a help file guides for people who use Office to adhear to a few simple rules to help when converting to a PDF form.

    We have many check list in different bets on the page and by different people with often little or no training or understanding.  (Notepad is complicated for their understanding - but I digress).

    Thus, we have checklists / Questions etc. in Word tables or in a document, etc.

    There are no guides I can find it recommends no spicific formatting to improve the conversion of Word to PDF format.

    For example.

    Name: OR name: _______ OR name.    Name the name in a field and the next field empty or _ _ or (_ = Undersore)

    So inconsistent as to what is a field and what is NOT...

    Then, it is the common problem of the users using "Insert symbol" like a box (how I hate forms of words that are filled with this Jem)

    Is there a formatting guide 101, which could help to provide assistance to those who are often responsible for "make a form / check list" so that when these documents are then required to be converted into a form PDF; do not start from scratch.

    There must be a document that identified what looks like the PDF Converter in deciding whether or NOT it is a domain!

    OH...  And is there a setting that will allow these symbols of checkbox dredded be recognized as a checkbox form?

    Thanks in advance.

    Mark

    First of all, when you set up the form in WORD, make sure that the Adobe PDF printer is selected in the menu of the printer so that the provision complies when converting to PDF. That has long been a problem with WORD documents/forms that reflow based on the connected printer.

    Acrobat Search essentially everything that seems to be a standard form element (a line of underscores, box or circle) and create a field related to these items. If you leave space, easy to use form tools in Acrobat to create your own fields (or modify those that Acrobat has attempted to add). The key is therefore what would be a normal type of the input in a form field. I'm not sure that the spaces after the colon are recognized as such. I suggest you create a simple shape style in WORD and add a variety of aspects of different shape type to the document and try the conversion. The manual says really nothing more that I mentioned. There are a few tutorials on the creation of the form at Adobe.

    You might find these useful tutorials: http://acrobatusers.com/tutorials/filter/search&keywords=wizard&channel=tutorials&category = 8 & 86 & tut_type = video-OnDemand-graphics-HTML /. I didn't help much in the present, but they can be useful for you.

  • Getting error while using the certificate chain

    Hello

    I use a SSL security certificate chain and when sending message I get the error message. This error happens when B2B tries to retrieve the portfolio's private key to sign the message. He said "alias found certificate", but he then gives error message creating. Please find below the log for the specific portion

    2008.11.24 to 09:19:24:150: Thread-13: B2B - (DEBUGGING) oracle.tip.adapter.b2b.exchange.ebms.EBMSExchangePlugin:getPrivateKeyFromWallet entry
    2008.11.24 to 09:19:24:154: Thread-13: B2B - alias of certificate oracle.tip.adapter.b2b.exchange.ebms.EBMSExchangePlugin:getPrivateKeyFromWallet (DEBUG) found: [email protected], CN = RECIPIENT B2BONRAMP, OU = Digital ID class 1 - full Microsoft Service, OR = invalid Persona, OU = www.verisign.com/repository/RPA Incorp. by order No.------, LIAB. LTD (c) 98, OU = VeriSign Trust Network, O is VeriSign\, Inc.
    2008.11.24 to 09:19:24:159: Thread-13: B2B - (DEBUGGING) oracle.tip.adapter.b2b.exchange.ebms.EBMSExchangePlugin:createMessage an exception during construction create message
    2008.11.24 to 09:19:24:161: Thread-13: B2B - (DEBUG) oracle.tip.adapter.b2b.exchange.ebms.EBMSExchangePlugin:createMessage exception msg: null
    2008.11.24 to 09:19:24:163: Thread-13: B2B - oracle.tip.adapter.b2b.exchange.ebms.EBMSExchangePlugin:createMessage (DEBUG) exception stack trace: java.lang.NullPointerException
    at oracle.tip.adapter.b2b.exchange.ebms.EBMSExchangePlugin.getPrivateKeyFromWallet(EBMSExchangePlugin.java:5967)
    at oracle.tip.adapter.b2b.exchange.ebms.EBMSExchangePlugin.getPrivateKeyForSigning(EBMSExchangePlugin.java:5322)
    at oracle.tip.adapter.b2b.exchange.ebms.EBMSExchangePlugin.signAttachment(EBMSExchangePlugin.java:5160)
    at oracle.tip.adapter.b2b.exchange.ebms.EBMSExchangePlugin.createMessage(EBMSExchangePlugin.java:2130)
    at oracle.tip.adapter.b2b.msgproc.Request.outgoingRequestPostColab(Request.java:1641)
    at oracle.tip.adapter.b2b.msgproc.Request.outgoingRequest(Request.java:968)
    at oracle.tip.adapter.b2b.engine.Engine.processOutgoingMessage(Engine.java:1147)
    at oracle.tip.adapter.b2b.transport.AppInterfaceListener.onMessage(AppInterfaceListener.java:137)
    at oracle.tip.transport.basic.jms.JMSMonitor.processMessages(JMSMonitor.java:610)
    at oracle.tip.transport.basic.jms.JMSMonitor.run(JMSMonitor.java:236)

    2008.11.24 to 09:19:24:168: Thread-13: B2B - java.lang.Exception (ERROR): java.lang.NullPointerException
    at oracle.tip.adapter.b2b.exchange.ebms.EBMSExchangePlugin.createMessage(EBMSExchangePlugin.java:2289)
    at oracle.tip.adapter.b2b.msgproc.Request.outgoingRequestPostColab(Request.java:1641)
    at oracle.tip.adapter.b2b.msgproc.Request.outgoingRequest(Request.java:968)
    at oracle.tip.adapter.b2b.engine.Engine.processOutgoingMessage(Engine.java:1147)
    at oracle.tip.adapter.b2b.transport.AppInterfaceListener.onMessage(AppInterfaceListener.java:137)
    at oracle.tip.transport.basic.jms.JMSMonitor.processMessages(JMSMonitor.java:610)
    at oracle.tip.transport.basic.jms.JMSMonitor.run(JMSMonitor.java:236)
    Caused by: java.lang.NullPointerException
    at oracle.tip.adapter.b2b.exchange.ebms.EBMSExchangePlugin.getPrivateKeyFromWallet(EBMSExchangePlugin.java:5967)
    at oracle.tip.adapter.b2b.exchange.ebms.EBMSExchangePlugin.getPrivateKeyForSigning(EBMSExchangePlugin.java:5322)
    at oracle.tip.adapter.b2b.exchange.ebms.EBMSExchangePlugin.signAttachment(EBMSExchangePlugin.java:5160)
    at oracle.tip.adapter.b2b.exchange.ebms.EBMSExchangePlugin.createMessage(EBMSExchangePlugin.java:2130)
    ... 6 more


    Does anyone have an idea what could be the reason for this error?

    Help, please.

    Thank you and best regards,
    Anuj Dwivedi

    Hello

    You may have the whole chain.

    A note aside on the issue of departure indicated - if you do the same conversion for some reason things don't work well. The work is as follows,

    1. tell certifcate user export to a file, utilisateur.cer
    2. remove the baptistery of the user of the ewallet.p12
    3. import the user certificate in the file that you created in step 1.

    It should work smoothly. HTH.

    Kind regards
    Sinkar
    [Correction to Ramesh Team]

Maybe you are looking for

  • 10 IOS on iPhone 6s cannot record video camera?

    Updated two iPhone 6s discovered today that we cannot save emailed MOV or MP4 videos to our camera rolls and recently. The option is missing from the list of options.  Fact they eliminate this possibility, remove MP4 videos in favor, or am I just mis

  • Why is Firefox site identification information memory when it is configured to not?

    For these two days, the sites that I am logged in show credentials cached so that I don't have to enter the user name or password. I specifically set up for not remembering passwords of Firefox and I block websites to remember information. I also coo

  • wanting to upgrade to imovie

    I am very very new to video editing. Is there a significant difference between using imovie 10.1.1 and final cut? I would like to make more professional videos with intros less generic. all thoughts are welcome. Owen

  • Audio device rest in the entry and exit after uninstalling

    Hi, I had a problem... I have installed 2 Boom, didn't really need or it so I uninstalled with AppCleaner as usual (it deletes all files owned by this request, finally almost all files) so, when I had uninstalled I still had the 'Boom2Device' in 'Boo

  • Photos: Shared Album

    In Photos 1.3 if I try to share an Album I realized my Photos Albums and not my. How can I share an Album without looking for each photo individually?