| test null, returns 0 =

Hi people,

It's really frustrating.

I have the following script occurrence:

If (this.rawValue | = null)
Form1. Pg2.PtA3DescChk.RawValue = 1;

So if there is any text in the field above, a checkbox will be checked.

That works well, except if there is no text and I just tab through the field, a zero is displayed in the field.  I don't want to pay anything in the field empty, just to check if she has any text or not.

Can someone help me clean this up?

Thank you

PETA

Change the pipeline (|) exclamation point (!), otherwise you will do a bit - or assignment operation and I don't think that's what you go... :>

Tags: Adobe LiveCycle

Similar Questions

  • RW-50011: error:-apps oracle_home test connection returned an error: 4

    Hello

    Before getting into the details, let explain me my environment.

    Virtual Box on top of Mac OS X

    Oracle Linux 6.5 on top of Virtual Box

    2-node - the node of the database and the Application node

    I use Oracle E-Business Suite Installation and Notes of version 12 (12.1.1) for Linux x 86-64 upgrade (Doc ID 761566.1()

    I have install Oracle EBS r12.1.1 again and again just to get better and better and improve the documentation as I go along. I was able to install the database without error layer at all. And for the most part, everything is going very well on the layer application until I get to the end and I noticed on the adautocfg.sh application layer ends with success, and then I see rw-50011: error:-apps oracle_home test connection returned an error: 4. at first, I thought it was permission then I added the root and my user appebs for all groups that did and I also made each Directory was 777 permissions. As I drove deep into the logs, I noticed that the riwTDBup.sh of ended not because it could not open the database. I noticed that riwTDBup.sh called sets in environment in $INST_HOME/ora/10.1.2/ and then tries to start a receiver located at $INST_HOME/ora/10.1.2/network/admin - this is where I see that no listener has been created. A tnsnames.ora is there but no listener. So I went to $ADMIN_SCRIPTS and I try to manually start the receiver and although his place as well and it is said that there is no listener for APPS_VIS. How is it, my interlocutor is not be created and can someone tell me what am I did not right, why it is constantly at the end of the installation. What newspapers do you need to see to help me with this question?


    Thanks in advance

    Hey Hussein snoussi-Oracle,.

    I'm mad at myself. After having sitting just think and get back to the basics... Why my application server cannot connect to my database, especially after the fact that I did this install successfully before? After decision on the fact that both servers could talk to each other, a light bulb off, I knew it was something blocking the connection and then I thought about it. LOL, that was the firewalls. I deleted the application server and restart installation with two disabled firewalls and it worked even fix the error of libgcc_s.so, installing crossed without errors at all, everything was fine with my host and domain name. LOL, I can finally say that I can install Oracle EBS R12.1 without errors.

    Even if it took my whole weekend, I wouldn't change a thing. I learned so much troubleshooting idea, funny how you can look in hindsight and appreciate the growing pains. Thanks Hussein for all the help! Next upgrade of database and applications, then learn how to install Rac and how to install EBS on rac and Oracle EBS on PAP management, if you have any suggestions on where to go to learn these things it would be awesome!

  • My 'contact' form does not work.  When I send a contact test she returned to my adobe email account this: 'Contact form' has a new form submission.

    My 'contact' form does not work.  When I send a contact test he returned this to my adobe email account:

    'Contact form' has a new form submission.

    What does not work exactly? As you said form submission notification is received in your e-mail account, so process form working I think but you want the notifications to go to another e-mail account, I think.

    Have you added the email address in the field "Email to" in shape options? If Yes and then also you do not receive the form, then please give me the url of the site and post a screenshot or a form with the open option box.

    Thank you

    Sanjit

  • Need to fix SQL Join so that charges null return 0

    I'm a newbie and have created a large query that grouped returns counts of maintenance records grouped by each paragraph order special maintnance counties apply to. The great qoeks of motion, but the only problem is when maintenance is done for a particular paragraph, paragraph appears at all in the query results. I need to get him back all the paragraph numbers and a zero next to the paragraphs which had no record of maintenance associated with them.

    Here's my query SQL with SQL to create all the tables and fill the sample data so you can see the application in action.
    You'll see when you run the query that paragraphs 161, 161D, 161I and 161J do not appear in the query results, there is no record of maintenance for them, but they are listed in the
    pm_requirements_table. All paragraphs should appear in the results, if they have maintenance records, and if no records, they must have a zero next to them.

    As always, any help is appreciated.

    -- Query
    SELECT lpm_paragraph_mapping_table.publication_paragraph, pm_requirements_table.description, pm_requirements_table.frequency, lpm.equipment_ident, count(lpm_paragraph_mapping_table.publication_paragraph) AS activities_performed 
    FROM lpm 
    JOIN fsep ON fsep.fac_id = lpm.fac_ident AND fsep.facility = lpm.fac_type 
    JOIN lpm_paragraph_mapping_table ON trim(lpm.publication_paragraph) = lpm_paragraph_mapping_table.paragraph_alias_mapping
    JOIN pm_requirements_table ON pm_requirements_table.publication_order = lpm_paragraph_mapping_table.publication_order AND pm_requirements_table.publication_paragraph_number = lpm_paragraph_mapping_table.publication_paragraph 
    WHERE trim(lpm.publication_order) = '6310.19A'
    AND TRUNC(lpm.start_date,'YEAR') = TO_DATE('01/01/2010','MM/DD/YYYY')
    AND fac_ident = 'EWR'  
    GROUP BY lpm_paragraph_mapping_table.publication_paragraph, pm_requirements_table.description, pm_requirements_table.frequency, lpm.equipment_ident 
    ORDER BY lpm_paragraph_mapping_table.publication_paragraph ASC;
    CREATE TABLE "LPM"
      (
        "LOG_ID"              NUMBER(22,0) NOT NULL ENABLE,
        "FAC_IDENT"           VARCHAR2(5 BYTE),
        "FAC_TYPE"            VARCHAR2(5 BYTE),
        "CODE_CATEGORY"       NUMBER(22,0) NOT NULL ENABLE,
        "SUPPLEMENTAL_CODE"   VARCHAR2(1 BYTE),
        "MAINT_ACTION_CODE"   VARCHAR2(1 BYTE),
        "INTERRUPT_CONDITION" VARCHAR2(22 BYTE),
        "ATOW_CODE"           VARCHAR2(22 BYTE),
        "SECTOR_CODE"         VARCHAR2(5 BYTE),
        "LOG_STATUS"          VARCHAR2(3 BYTE) NOT NULL ENABLE,
        "START_DATE" DATE,
        "START_DATETIME" VARCHAR2(22 BYTE),
        "END_DATE" DATE,
        "END_DATETIME"      VARCHAR2(22 BYTE),
        "MODIFIED_DATETIME" VARCHAR2(22 BYTE),
        "WR_AREA"           VARCHAR2(6 BYTE),
        "SHORT_NAME"        VARCHAR2(15 BYTE),
        "EQUIPMENT_IDENT"   VARCHAR2(15 BYTE),
        "INTERVAL_CODE"     VARCHAR2(255 BYTE),
        "EARLIEST_DATE"     VARCHAR2(4000 BYTE),
        "EARLIEST_DATETIME" VARCHAR2(255 BYTE),
        "SCHEDULED_DATE" DATE,
        "SCHEDULED_DATETIME" VARCHAR2(22 BYTE),
        "LATEST_DATE" DATE,
        "LATEST_DATETIME"                VARCHAR2(22 BYTE),
        "WR_CREW_UNIT"                   VARCHAR2(10 BYTE),
        "WR_WATCH"                       VARCHAR2(1 BYTE),
        "PUBLICATION_ORDER"              VARCHAR2(30 BYTE),
        "PUBLICATION_ORDER_ORIGINAL"     VARCHAR2(30 BYTE),
        "PUBLICATION_PARAGRAPH"          VARCHAR2(30 BYTE),
        "PUBLICATION_PARAGRAPH_ORIGINAL" VARCHAR2(30 BYTE),
        "NUMBER_OF_TASKS"                VARCHAR2(25 BYTE),
        "LOG_SUMMARY"                    VARCHAR2(255 BYTE),
        "COMMENTS" CLOB,
        "RELATED_LOGS" CLOB,
        "LPMANTAC_ID" NUMBER
      );
    
    CREATE TABLE "FSEP"
      (
        "FAC_ID"               VARCHAR2(10 BYTE),
        "FACILITY"             VARCHAR2(5 BYTE),
        "FAC_LOCATION"         VARCHAR2(13 BYTE),
        "FAC_STATE"            VARCHAR2(2 BYTE),
        "REGION"               VARCHAR2(2 BYTE),
        "COST_CENTER"          VARCHAR2(8 BYTE) NOT NULL ENABLE,
        "ATOW_ORG"             VARCHAR2(150 BYTE),
        "ATOW_ORG_DESCRIPTION" VARCHAR2(150 BYTE),
        "SVC_AREA"             VARCHAR2(5 BYTE),
        "SECTOR_CODE"          VARCHAR2(5 BYTE),
        "FAC_CODE"             VARCHAR2(20 BYTE),
        "FAC_STATUS"           CHAR(1 BYTE) NOT NULL ENABLE,
        "RESTORATION_CODE"     VARCHAR2(2 BYTE),
        "RESPONSIBILITY_CODE"  CHAR(1 BYTE),
        "POWER_CODE"           CHAR(1 BYTE),
        "FAC_STATUS_DATE" DATE,
        "FAC_SWAP_DATE" DATE,
        "CHANGE_DATE"        VARCHAR2(22 BYTE),
        "GSA_ADDRESS"        VARCHAR2(15 BYTE),
        "INV"                VARCHAR2(2 BYTE),
        "SDP_TYPE"           VARCHAR2(5 BYTE),
        "SDP_IDENT"          VARCHAR2(4 BYTE),
        "CONTROL_IDENT"      VARCHAR2(10 BYTE),
        "REMOTE_IDENT"       VARCHAR2(10 BYTE),
        "MONITOR_IDENT"      VARCHAR2(4 BYTE),
        "RUNWAY"             VARCHAR2(3 BYTE),
        "ASSOC_AIRPORT"      VARCHAR2(4 BYTE),
        "FAC_MPS_SITE"       CHAR(4 BYTE),
        "FREQS_IN_PLACE"     NUMBER(22,0),
        "CONGRESSIONAL_DIS"  VARCHAR2(2 BYTE),
        "CONTRACT_MAINT_PER" NUMBER(22,0),
        "AIR_COND"           CHAR(1 BYTE),
        "FAC_UNITS"          NUMBER(22,0),
        "ET_PRIMARY_IDENT"   VARCHAR2(4 BYTE),
        "ET_PRIMARY_TYPE"    VARCHAR2(5 BYTE),
        "ENV_PRIMARY_IDENT"  VARCHAR2(4 BYTE),
        "ENV_PRIMARY_TYPE"   VARCHAR2(5 BYTE),
        "FAC_CODE_DESC"      VARCHAR2(100 BYTE),
        "STATUS_DESC"        VARCHAR2(50 BYTE),
        "RESTORATION_DESC"   VARCHAR2(32 BYTE),
        "POWER_DESC"         VARCHAR2(500 BYTE),
        "LATITUDE"           VARCHAR2(150 BYTE),
        "LONGITUDE"          VARCHAR2(150 BYTE),
        "ELEVATION"          VARCHAR2(22 BYTE),
        "MOD_COUNT"          VARCHAR2(22 BYTE),
        "HYPERLINK"          VARCHAR2(255 BYTE),
        "FSEPANTAC_ID"       NUMBER
    );
    
    CREATE TABLE "LPM_PARAGRAPH_MAPPING_TABLE"
      (
        "PUBLICATION_ORDER"       VARCHAR2(30 BYTE),
        "PUBLICATION_PARAGRAPH"   VARCHAR2(30 BYTE),
        "PARAGRAPH_ALIAS_MAPPING" VARCHAR2(30 BYTE),
        "LPMTANTAC_ID"            NUMBER
    );
    
    CREATE TABLE "PM_REQUIREMENTS_TABLE"
      (
        "PUBLICATION_ORDER"            VARCHAR2(30 BYTE),
        "PUBLICATION_PARAGRAPH_NUMBER" VARCHAR2(30 BYTE),
        "DESCRIPTION"                  VARCHAR2(4000 BYTE),
        "FREQUENCY"                    VARCHAR2(30 BYTE),
        "CHECK_OR_MAINTENANCE"         VARCHAR2(22 BYTE),
        "PRTANTAC_ID"                  NUMBER
    );
    
    Insert into LPM (LOG_ID,FAC_IDENT,FAC_TYPE,CODE_CATEGORY,SUPPLEMENTAL_CODE,MAINT_ACTION_CODE,INTERRUPT_CONDITION,ATOW_CODE,SECTOR_CODE,LOG_STATUS,START_DATE,START_DATETIME,END_DATE,END_DATETIME,MODIFIED_DATETIME,WR_AREA,SHORT_NAME,EQUIPMENT_IDENT,INTERVAL_CODE,EARLIEST_DATE,EARLIEST_DATETIME,SCHEDULED_DATE,SCHEDULED_DATETIME,LATEST_DATE,LATEST_DATETIME,WR_CREW_UNIT,WR_WATCH,PUBLICATION_ORDER,PUBLICATION_ORDER_ORIGINAL,PUBLICATION_PARAGRAPH,PUBLICATION_PARAGRAPH_ORIGINAL,NUMBER_OF_TASKS,LOG_SUMMARY,COMMENTS,RELATED_LOGS,LPMANTAC_ID) values (127227902,'EWR','ASR',50,'0','P',null,'WEW1D','EA1FH','C',to_date('07-JUN-10','DD-MON-RR'),'06/07/2010 1:41',to_date('07-JUN-10','DD-MON-RR'),'06/07/2010 2:57','06/07/2010 5:51','RADAR','SYS','IEWR','W','06/07/2010','06/07/2010 0:00',to_date('13-JUN-10','DD-MON-RR'),'6/13/2010 0:00',to_date('13-JUN-10','DD-MON-RR'),'6/13/2010 0:00',null,null,'6310.19A','6310.19A','161K','161K','1',null, EMPTY_CLOB(), EMPTY_CLOB(),26648);
    Insert into LPM (LOG_ID,FAC_IDENT,FAC_TYPE,CODE_CATEGORY,SUPPLEMENTAL_CODE,MAINT_ACTION_CODE,INTERRUPT_CONDITION,ATOW_CODE,SECTOR_CODE,LOG_STATUS,START_DATE,START_DATETIME,END_DATE,END_DATETIME,MODIFIED_DATETIME,WR_AREA,SHORT_NAME,EQUIPMENT_IDENT,INTERVAL_CODE,EARLIEST_DATE,EARLIEST_DATETIME,SCHEDULED_DATE,SCHEDULED_DATETIME,LATEST_DATE,LATEST_DATETIME,WR_CREW_UNIT,WR_WATCH,PUBLICATION_ORDER,PUBLICATION_ORDER_ORIGINAL,PUBLICATION_PARAGRAPH,PUBLICATION_PARAGRAPH_ORIGINAL,NUMBER_OF_TASKS,LOG_SUMMARY,COMMENTS,RELATED_LOGS,LPMANTAC_ID) values (127228002,'EWR','ASR',50,'0','P',null,'WEW1D','EA1FH','C',to_date('07-JUN-10','DD-MON-RR'),'06/07/2010 1:41',to_date('07-JUN-10','DD-MON-RR'),'06/07/2010 2:57','06/07/2010 5:51','RADAR','SYS','IEWR','W','06/07/2010','06/07/2010 0:00',to_date('10-JUN-10','DD-MON-RR'),'06/10/2010 0:00',to_date('13-JUN-10','DD-MON-RR'),'6/13/2010 0:00',null,null,'6310.19A','6310.19A','161F-J','161F-J','8',null, EMPTY_CLOB(), EMPTY_CLOB(),26649);
    Insert into LPM (LOG_ID,FAC_IDENT,FAC_TYPE,CODE_CATEGORY,SUPPLEMENTAL_CODE,MAINT_ACTION_CODE,INTERRUPT_CONDITION,ATOW_CODE,SECTOR_CODE,LOG_STATUS,START_DATE,START_DATETIME,END_DATE,END_DATETIME,MODIFIED_DATETIME,WR_AREA,SHORT_NAME,EQUIPMENT_IDENT,INTERVAL_CODE,EARLIEST_DATE,EARLIEST_DATETIME,SCHEDULED_DATE,SCHEDULED_DATETIME,LATEST_DATE,LATEST_DATETIME,WR_CREW_UNIT,WR_WATCH,PUBLICATION_ORDER,PUBLICATION_ORDER_ORIGINAL,PUBLICATION_PARAGRAPH,PUBLICATION_PARAGRAPH_ORIGINAL,NUMBER_OF_TASKS,LOG_SUMMARY,COMMENTS,RELATED_LOGS,LPMANTAC_ID) values (127228102,'EWR','ASR',50,'0','P',null,'WEW1D','EA1FH','C',to_date('07-JUN-10','DD-MON-RR'),'06/07/2010 1:41',to_date('07-JUN-10','DD-MON-RR'),'06/07/2010 2:57','06/07/2010 5:51','RADAR','SYS','IEWR','W','06/07/2010','06/07/2010 0:00',to_date('10-JUN-10','DD-MON-RR'),'06/10/2010 0:00',to_date('13-JUN-10','DD-MON-RR'),'6/13/2010 0:00',null,null,'6310.19A','6310.19A','161E/H','161E/H','5',null, EMPTY_CLOB(), EMPTY_CLOB(),26650);
    Insert into LPM (LOG_ID,FAC_IDENT,FAC_TYPE,CODE_CATEGORY,SUPPLEMENTAL_CODE,MAINT_ACTION_CODE,INTERRUPT_CONDITION,ATOW_CODE,SECTOR_CODE,LOG_STATUS,START_DATE,START_DATETIME,END_DATE,END_DATETIME,MODIFIED_DATETIME,WR_AREA,SHORT_NAME,EQUIPMENT_IDENT,INTERVAL_CODE,EARLIEST_DATE,EARLIEST_DATETIME,SCHEDULED_DATE,SCHEDULED_DATETIME,LATEST_DATE,LATEST_DATETIME,WR_CREW_UNIT,WR_WATCH,PUBLICATION_ORDER,PUBLICATION_ORDER_ORIGINAL,PUBLICATION_PARAGRAPH,PUBLICATION_PARAGRAPH_ORIGINAL,NUMBER_OF_TASKS,LOG_SUMMARY,COMMENTS,RELATED_LOGS,LPMANTAC_ID) values (127228202,'EWR','ASR',50,'0','P',null,'WEW1D','EA1FH','C',to_date('07-JUN-10','DD-MON-RR'),'06/07/2010 1:41',to_date('07-JUN-10','DD-MON-RR'),'06/07/2010 2:57','06/07/2010 5:51','RADAR','SYS','IEWR','W','06/07/2010','06/07/2010 0:00',to_date('10-JUN-10','DD-MON-RR'),'06/10/2010 0:00',to_date('13-JUN-10','DD-MON-RR'),'6/13/2010 0:00',null,null,'6310.25','6310.25','161CD','161CD','14',null, EMPTY_CLOB(), EMPTY_CLOB(),26651);
    Insert into LPM (LOG_ID,FAC_IDENT,FAC_TYPE,CODE_CATEGORY,SUPPLEMENTAL_CODE,MAINT_ACTION_CODE,INTERRUPT_CONDITION,ATOW_CODE,SECTOR_CODE,LOG_STATUS,START_DATE,START_DATETIME,END_DATE,END_DATETIME,MODIFIED_DATETIME,WR_AREA,SHORT_NAME,EQUIPMENT_IDENT,INTERVAL_CODE,EARLIEST_DATE,EARLIEST_DATETIME,SCHEDULED_DATE,SCHEDULED_DATETIME,LATEST_DATE,LATEST_DATETIME,WR_CREW_UNIT,WR_WATCH,PUBLICATION_ORDER,PUBLICATION_ORDER_ORIGINAL,PUBLICATION_PARAGRAPH,PUBLICATION_PARAGRAPH_ORIGINAL,NUMBER_OF_TASKS,LOG_SUMMARY,COMMENTS,RELATED_LOGS,LPMANTAC_ID) values (127228302,'EWR','ASR',50,'0','P',null,'WEW1D','EA1FH','C',to_date('07-JUN-10','DD-MON-RR'),'06/07/2010 1:41',to_date('07-JUN-10','DD-MON-RR'),'06/07/2010 2:57','06/07/2010 5:51','RADAR','SYS','IEWR','W','06/07/2010','06/07/2010 0:00',to_date('10-JUN-10','DD-MON-RR'),'06/10/2010 0:00',to_date('13-JUN-10','DD-MON-RR'),'6/13/2010 0:00',null,null,'6310.19A','6310.19A','161AB','161AB','4',null, EMPTY_CLOB(), EMPTY_CLOB(),26652);
    Insert into LPM (LOG_ID,FAC_IDENT,FAC_TYPE,CODE_CATEGORY,SUPPLEMENTAL_CODE,MAINT_ACTION_CODE,INTERRUPT_CONDITION,ATOW_CODE,SECTOR_CODE,LOG_STATUS,START_DATE,START_DATETIME,END_DATE,END_DATETIME,MODIFIED_DATETIME,WR_AREA,SHORT_NAME,EQUIPMENT_IDENT,INTERVAL_CODE,EARLIEST_DATE,EARLIEST_DATETIME,SCHEDULED_DATE,SCHEDULED_DATETIME,LATEST_DATE,LATEST_DATETIME,WR_CREW_UNIT,WR_WATCH,PUBLICATION_ORDER,PUBLICATION_ORDER_ORIGINAL,PUBLICATION_PARAGRAPH,PUBLICATION_PARAGRAPH_ORIGINAL,NUMBER_OF_TASKS,LOG_SUMMARY,COMMENTS,RELATED_LOGS,LPMANTAC_ID) values (123480402,'EWR','ASR',50,'0','P',null,'WEW1D','EA1FH','C',to_date('02-JUN-10','DD-MON-RR'),'06/02/2010 3:00',to_date('02-JUN-10','DD-MON-RR'),'06/02/2010 3:55','06/02/2010 4:41','RADAR','SYS','IEWR','W','5/31/2010','5/31/2010 0:00',to_date('06-JUN-10','DD-MON-RR'),'06/06/2010 0:00',to_date('06-JUN-10','DD-MON-RR'),'06/06/2010 0:00',null,null,'6310.19A','6310.19A','161K','161K','1',null, EMPTY_CLOB(), EMPTY_CLOB(),26657);
    Insert into LPM (LOG_ID,FAC_IDENT,FAC_TYPE,CODE_CATEGORY,SUPPLEMENTAL_CODE,MAINT_ACTION_CODE,INTERRUPT_CONDITION,ATOW_CODE,SECTOR_CODE,LOG_STATUS,START_DATE,START_DATETIME,END_DATE,END_DATETIME,MODIFIED_DATETIME,WR_AREA,SHORT_NAME,EQUIPMENT_IDENT,INTERVAL_CODE,EARLIEST_DATE,EARLIEST_DATETIME,SCHEDULED_DATE,SCHEDULED_DATETIME,LATEST_DATE,LATEST_DATETIME,WR_CREW_UNIT,WR_WATCH,PUBLICATION_ORDER,PUBLICATION_ORDER_ORIGINAL,PUBLICATION_PARAGRAPH,PUBLICATION_PARAGRAPH_ORIGINAL,NUMBER_OF_TASKS,LOG_SUMMARY,COMMENTS,RELATED_LOGS,LPMANTAC_ID) values (123480502,'EWR','ASR',50,'0','P',null,'WEW1D','EA1FH','C',to_date('02-JUN-10','DD-MON-RR'),'06/02/2010 3:00',to_date('02-JUN-10','DD-MON-RR'),'06/02/2010 3:55','06/02/2010 4:41','RADAR','SYS','IEWR','W','5/31/2010','5/31/2010 0:00',to_date('03-JUN-10','DD-MON-RR'),'06/03/2010 0:00',to_date('06-JUN-10','DD-MON-RR'),'06/06/2010 0:00',null,null,'6310.19A','6310.19A','161F-J','161F-J','8',null, EMPTY_CLOB(), EMPTY_CLOB(),26658);
    Insert into LPM (LOG_ID,FAC_IDENT,FAC_TYPE,CODE_CATEGORY,SUPPLEMENTAL_CODE,MAINT_ACTION_CODE,INTERRUPT_CONDITION,ATOW_CODE,SECTOR_CODE,LOG_STATUS,START_DATE,START_DATETIME,END_DATE,END_DATETIME,MODIFIED_DATETIME,WR_AREA,SHORT_NAME,EQUIPMENT_IDENT,INTERVAL_CODE,EARLIEST_DATE,EARLIEST_DATETIME,SCHEDULED_DATE,SCHEDULED_DATETIME,LATEST_DATE,LATEST_DATETIME,WR_CREW_UNIT,WR_WATCH,PUBLICATION_ORDER,PUBLICATION_ORDER_ORIGINAL,PUBLICATION_PARAGRAPH,PUBLICATION_PARAGRAPH_ORIGINAL,NUMBER_OF_TASKS,LOG_SUMMARY,COMMENTS,RELATED_LOGS,LPMANTAC_ID) values (123480602,'EWR','ASR',50,'0','P',null,'WEW1D','EA1FH','C',to_date('02-JUN-10','DD-MON-RR'),'06/02/2010 3:00',to_date('02-JUN-10','DD-MON-RR'),'06/02/2010 3:55','06/02/2010 4:41','RADAR','SYS','IEWR','W','5/31/2010','5/31/2010 0:00',to_date('03-JUN-10','DD-MON-RR'),'06/03/2010 0:00',to_date('06-JUN-10','DD-MON-RR'),'06/06/2010 0:00',null,null,'6310.19A','6310.19A','161E/H','161E/H','5',null, EMPTY_CLOB(), EMPTY_CLOB(),26659);
    Insert into LPM (LOG_ID,FAC_IDENT,FAC_TYPE,CODE_CATEGORY,SUPPLEMENTAL_CODE,MAINT_ACTION_CODE,INTERRUPT_CONDITION,ATOW_CODE,SECTOR_CODE,LOG_STATUS,START_DATE,START_DATETIME,END_DATE,END_DATETIME,MODIFIED_DATETIME,WR_AREA,SHORT_NAME,EQUIPMENT_IDENT,INTERVAL_CODE,EARLIEST_DATE,EARLIEST_DATETIME,SCHEDULED_DATE,SCHEDULED_DATETIME,LATEST_DATE,LATEST_DATETIME,WR_CREW_UNIT,WR_WATCH,PUBLICATION_ORDER,PUBLICATION_ORDER_ORIGINAL,PUBLICATION_PARAGRAPH,PUBLICATION_PARAGRAPH_ORIGINAL,NUMBER_OF_TASKS,LOG_SUMMARY,COMMENTS,RELATED_LOGS,LPMANTAC_ID) values (123480702,'EWR','ASR',50,'0','P',null,'WEW1D','EA1FH','C',to_date('02-JUN-10','DD-MON-RR'),'06/02/2010 3:00',to_date('02-JUN-10','DD-MON-RR'),'06/02/2010 3:55','06/02/2010 4:41','RADAR','SYS','IEWR','W','5/31/2010','5/31/2010 0:00',to_date('03-JUN-10','DD-MON-RR'),'06/03/2010 0:00',to_date('06-JUN-10','DD-MON-RR'),'06/06/2010 0:00',null,null,'6310.25','6310.25','161CD','161CD','14',null, EMPTY_CLOB(), EMPTY_CLOB(),26660);
    Insert into LPM (LOG_ID,FAC_IDENT,FAC_TYPE,CODE_CATEGORY,SUPPLEMENTAL_CODE,MAINT_ACTION_CODE,INTERRUPT_CONDITION,ATOW_CODE,SECTOR_CODE,LOG_STATUS,START_DATE,START_DATETIME,END_DATE,END_DATETIME,MODIFIED_DATETIME,WR_AREA,SHORT_NAME,EQUIPMENT_IDENT,INTERVAL_CODE,EARLIEST_DATE,EARLIEST_DATETIME,SCHEDULED_DATE,SCHEDULED_DATETIME,LATEST_DATE,LATEST_DATETIME,WR_CREW_UNIT,WR_WATCH,PUBLICATION_ORDER,PUBLICATION_ORDER_ORIGINAL,PUBLICATION_PARAGRAPH,PUBLICATION_PARAGRAPH_ORIGINAL,NUMBER_OF_TASKS,LOG_SUMMARY,COMMENTS,RELATED_LOGS,LPMANTAC_ID) values (123480802,'EWR','ASR',50,'0','P',null,'WEW1D','EA1FH','C',to_date('02-JUN-10','DD-MON-RR'),'06/02/2010 3:00',to_date('02-JUN-10','DD-MON-RR'),'06/02/2010 3:55','06/02/2010 4:41','RADAR','SYS','IEWR','W','5/31/2010','5/31/2010 0:00',to_date('03-JUN-10','DD-MON-RR'),'06/03/2010 0:00',to_date('06-JUN-10','DD-MON-RR'),'06/06/2010 0:00',null,null,'6310.19A','6310.19A','161AB','161AB','4',null, EMPTY_CLOB(), EMPTY_CLOB(),26661);
    Insert into LPM (LOG_ID,FAC_IDENT,FAC_TYPE,CODE_CATEGORY,SUPPLEMENTAL_CODE,MAINT_ACTION_CODE,INTERRUPT_CONDITION,ATOW_CODE,SECTOR_CODE,LOG_STATUS,START_DATE,START_DATETIME,END_DATE,END_DATETIME,MODIFIED_DATETIME,WR_AREA,SHORT_NAME,EQUIPMENT_IDENT,INTERVAL_CODE,EARLIEST_DATE,EARLIEST_DATETIME,SCHEDULED_DATE,SCHEDULED_DATETIME,LATEST_DATE,LATEST_DATETIME,WR_CREW_UNIT,WR_WATCH,PUBLICATION_ORDER,PUBLICATION_ORDER_ORIGINAL,PUBLICATION_PARAGRAPH,PUBLICATION_PARAGRAPH_ORIGINAL,NUMBER_OF_TASKS,LOG_SUMMARY,COMMENTS,RELATED_LOGS,LPMANTAC_ID) values (120312402,'EWR','ASR',50,'0','P',null,'WEW1D','EA1FH','C',to_date('27-MAY-10','DD-MON-RR'),'5/27/2010 1:15',to_date('27-MAY-10','DD-MON-RR'),'5/27/2010 2:15','5/27/2010 3:40','RADAR','SYS','IEWR','W','5/24/2010','5/24/2010 0:00',to_date('30-MAY-10','DD-MON-RR'),'5/30/2010 0:00',to_date('30-MAY-10','DD-MON-RR'),'5/30/2010 0:00',null,null,'6310.19A','6310.19A','161K','161K','1',null, EMPTY_CLOB(), EMPTY_CLOB(),26669);
    Insert into LPM (LOG_ID,FAC_IDENT,FAC_TYPE,CODE_CATEGORY,SUPPLEMENTAL_CODE,MAINT_ACTION_CODE,INTERRUPT_CONDITION,ATOW_CODE,SECTOR_CODE,LOG_STATUS,START_DATE,START_DATETIME,END_DATE,END_DATETIME,MODIFIED_DATETIME,WR_AREA,SHORT_NAME,EQUIPMENT_IDENT,INTERVAL_CODE,EARLIEST_DATE,EARLIEST_DATETIME,SCHEDULED_DATE,SCHEDULED_DATETIME,LATEST_DATE,LATEST_DATETIME,WR_CREW_UNIT,WR_WATCH,PUBLICATION_ORDER,PUBLICATION_ORDER_ORIGINAL,PUBLICATION_PARAGRAPH,PUBLICATION_PARAGRAPH_ORIGINAL,NUMBER_OF_TASKS,LOG_SUMMARY,COMMENTS,RELATED_LOGS,LPMANTAC_ID) values (120312502,'EWR','ASR',50,'0','P',null,'WEW1D','EA1FH','C',to_date('27-MAY-10','DD-MON-RR'),'5/27/2010 1:15',to_date('27-MAY-10','DD-MON-RR'),'5/27/2010 2:15','5/27/2010 3:40','RADAR','SYS','IEWR','W','5/24/2010','5/24/2010 0:00',to_date('27-MAY-10','DD-MON-RR'),'5/27/2010 0:00',to_date('30-MAY-10','DD-MON-RR'),'5/30/2010 0:00',null,null,'6310.19A','6310.19A','161F-J','161F-J','8',null, EMPTY_CLOB(), EMPTY_CLOB(),26670);
    
    Insert into FSEP (FAC_ID,FACILITY,FAC_LOCATION,FAC_STATE,REGION,COST_CENTER,ATOW_ORG,ATOW_ORG_DESCRIPTION,SVC_AREA,SECTOR_CODE,FAC_CODE,FAC_STATUS,RESTORATION_CODE,RESPONSIBILITY_CODE,POWER_CODE,FAC_STATUS_DATE,FAC_SWAP_DATE,CHANGE_DATE,GSA_ADDRESS,INV,SDP_TYPE,SDP_IDENT,CONTROL_IDENT,REMOTE_IDENT,MONITOR_IDENT,RUNWAY,ASSOC_AIRPORT,FAC_MPS_SITE,FREQS_IN_PLACE,CONGRESSIONAL_DIS,CONTRACT_MAINT_PER,AIR_COND,FAC_UNITS,ET_PRIMARY_IDENT,ET_PRIMARY_TYPE,ENV_PRIMARY_IDENT,ENV_PRIMARY_TYPE,FAC_CODE_DESC,STATUS_DESC,RESTORATION_DESC,POWER_DESC,LATITUDE,LONGITUDE,ELEVATION,MOD_COUNT,HYPERLINK,FSEPANTAC_ID) values ('EWR','ASR','NEWARK','NJ','EA','081FH','WEW1D','Newark Radar/Env SSC','ESA','EA1FH','453ACA','D','4','A','A',to_date('01-AUG-53','DD-MON-RR'),to_date('01-APR-98','DD-MON-RR'),'10/13/2010 9:22','2K50','R1','TRACO','N90','QHM','EWR','QHM',null,'EWR','ZNY ',0,'10',0,'A',1,null,null,null,null,'ASR-9   STANDARD FACILITY','Commissioned/Full Service','Up to 4 Hours','Denotes a commercial power source a standby engine generator and an Uninterruptible Power Supply (UPS).  This configuration shall provide uninterruptible conditioned power with AC voltage in and AC voltage out.','40.69033','-74.16278','5','2','http://technet.faa.gov/fsep/fsepDetail.asp?recordno=ASREWR',38191);
    Insert into FSEP (FAC_ID,FACILITY,FAC_LOCATION,FAC_STATE,REGION,COST_CENTER,ATOW_ORG,ATOW_ORG_DESCRIPTION,SVC_AREA,SECTOR_CODE,FAC_CODE,FAC_STATUS,RESTORATION_CODE,RESPONSIBILITY_CODE,POWER_CODE,FAC_STATUS_DATE,FAC_SWAP_DATE,CHANGE_DATE,GSA_ADDRESS,INV,SDP_TYPE,SDP_IDENT,CONTROL_IDENT,REMOTE_IDENT,MONITOR_IDENT,RUNWAY,ASSOC_AIRPORT,FAC_MPS_SITE,FREQS_IN_PLACE,CONGRESSIONAL_DIS,CONTRACT_MAINT_PER,AIR_COND,FAC_UNITS,ET_PRIMARY_IDENT,ET_PRIMARY_TYPE,ENV_PRIMARY_IDENT,ENV_PRIMARY_TYPE,FAC_CODE_DESC,STATUS_DESC,RESTORATION_DESC,POWER_DESC,LATITUDE,LONGITUDE,ELEVATION,MOD_COUNT,HYPERLINK,FSEPANTAC_ID) values ('EWR','GS','NEWARK','NJ','EA','081FJ','WEW1C','Newark Nav/Comm SSC','ESA','EA1FJ','314AWA','D','24','A','D',to_date('01-DEC-52','DD-MON-RR'),to_date('01-APR-94','DD-MON-RR'),'9/24/2009 9:51','2K51','6','ATCT','EWR','EWR',null,'QHM','04L','EWR','ZNY ',0,'10',0,'A',1,null,null,null,null,'MARK 1F (SIDEBAND REFERENCE) SINGLE EQUIPMENT CAT I FAC','Commissioned/Full Service','Up to 24 Hours','Denotes a commercial power source and a battery standby power system.  A UPS is not included in this category.','40.68395','-74.17291','11','2','http://technet.faa.gov/fsep/fsepDetail.asp?recordno=GSEWR',38212);
    
    Insert into LPM_PARAGRAPH_MAPPING_TABLE (PUBLICATION_ORDER,PUBLICATION_PARAGRAPH,PARAGRAPH_ALIAS_MAPPING,LPMTANTAC_ID) values ('6310.19A','161A','161',1708);
    Insert into LPM_PARAGRAPH_MAPPING_TABLE (PUBLICATION_ORDER,PUBLICATION_PARAGRAPH,PARAGRAPH_ALIAS_MAPPING,LPMTANTAC_ID) values ('6310.19A','161A','161AB',1709);
    Insert into LPM_PARAGRAPH_MAPPING_TABLE (PUBLICATION_ORDER,PUBLICATION_PARAGRAPH,PARAGRAPH_ALIAS_MAPPING,LPMTANTAC_ID) values ('6310.19A','161B','161',1736);
    Insert into LPM_PARAGRAPH_MAPPING_TABLE (PUBLICATION_ORDER,PUBLICATION_PARAGRAPH,PARAGRAPH_ALIAS_MAPPING,LPMTANTAC_ID) values ('6310.19A','161B','161AB',1737);
    Insert into LPM_PARAGRAPH_MAPPING_TABLE (PUBLICATION_ORDER,PUBLICATION_PARAGRAPH,PARAGRAPH_ALIAS_MAPPING,LPMTANTAC_ID) values ('6310.19A','161C','161',1765);
    Insert into LPM_PARAGRAPH_MAPPING_TABLE (PUBLICATION_ORDER,PUBLICATION_PARAGRAPH,PARAGRAPH_ALIAS_MAPPING,LPMTANTAC_ID) values ('6310.19A','161C','161(A-->J)',1766);
    Insert into LPM_PARAGRAPH_MAPPING_TABLE (PUBLICATION_ORDER,PUBLICATION_PARAGRAPH,PARAGRAPH_ALIAS_MAPPING,LPMTANTAC_ID) values ('6310.19A','161C','161(A-->K)',1769);
    Insert into LPM_PARAGRAPH_MAPPING_TABLE (PUBLICATION_ORDER,PUBLICATION_PARAGRAPH,PARAGRAPH_ALIAS_MAPPING,LPMTANTAC_ID) values ('6310.19A','161C','161(A-D)',1770);
    Insert into LPM_PARAGRAPH_MAPPING_TABLE (PUBLICATION_ORDER,PUBLICATION_PARAGRAPH,PARAGRAPH_ALIAS_MAPPING,LPMTANTAC_ID) values ('6310.19A','161C','161(A-G)',1771);
    Insert into LPM_PARAGRAPH_MAPPING_TABLE (PUBLICATION_ORDER,PUBLICATION_PARAGRAPH,PARAGRAPH_ALIAS_MAPPING,LPMTANTAC_ID) values ('6310.19A','161C','161(A-J)',1772);
    Insert into LPM_PARAGRAPH_MAPPING_TABLE (PUBLICATION_ORDER,PUBLICATION_PARAGRAPH,PARAGRAPH_ALIAS_MAPPING,LPMTANTAC_ID) values ('6310.19A','161C','161(A--J)',1773);
    Insert into LPM_PARAGRAPH_MAPPING_TABLE (PUBLICATION_ORDER,PUBLICATION_PARAGRAPH,PARAGRAPH_ALIAS_MAPPING,LPMTANTAC_ID) values ('6310.19A','161C','161(A-K)',1774);
    Insert into LPM_PARAGRAPH_MAPPING_TABLE (PUBLICATION_ORDER,PUBLICATION_PARAGRAPH,PARAGRAPH_ALIAS_MAPPING,LPMTANTAC_ID) values ('6310.19A','161C','161.(A-C).',1775);
    Insert into LPM_PARAGRAPH_MAPPING_TABLE (PUBLICATION_ORDER,PUBLICATION_PARAGRAPH,PARAGRAPH_ALIAS_MAPPING,LPMTANTAC_ID) values ('6310.19A','161D(1)','161',1793);
    Insert into LPM_PARAGRAPH_MAPPING_TABLE (PUBLICATION_ORDER,PUBLICATION_PARAGRAPH,PARAGRAPH_ALIAS_MAPPING,LPMTANTAC_ID) values ('6310.19A','161D(1)','161(A-->J)',1794);
    Insert into LPM_PARAGRAPH_MAPPING_TABLE (PUBLICATION_ORDER,PUBLICATION_PARAGRAPH,PARAGRAPH_ALIAS_MAPPING,LPMTANTAC_ID) values ('6310.19A','161D(1)','161(A-->K)',1797);
    Insert into LPM_PARAGRAPH_MAPPING_TABLE (PUBLICATION_ORDER,PUBLICATION_PARAGRAPH,PARAGRAPH_ALIAS_MAPPING,LPMTANTAC_ID) values ('6310.19A','161D(1)','161(A-D)',1798);
    Insert into LPM_PARAGRAPH_MAPPING_TABLE (PUBLICATION_ORDER,PUBLICATION_PARAGRAPH,PARAGRAPH_ALIAS_MAPPING,LPMTANTAC_ID) values ('6310.19A','161D(2)','161',1821);
    Insert into LPM_PARAGRAPH_MAPPING_TABLE (PUBLICATION_ORDER,PUBLICATION_PARAGRAPH,PARAGRAPH_ALIAS_MAPPING,LPMTANTAC_ID) values ('6310.19A','161D(2)','161(A-->J)',1822);
    Insert into LPM_PARAGRAPH_MAPPING_TABLE (PUBLICATION_ORDER,PUBLICATION_PARAGRAPH,PARAGRAPH_ALIAS_MAPPING,LPMTANTAC_ID) values ('6310.19A','161D(2)','161(A-->K)',1825);
    Insert into LPM_PARAGRAPH_MAPPING_TABLE (PUBLICATION_ORDER,PUBLICATION_PARAGRAPH,PARAGRAPH_ALIAS_MAPPING,LPMTANTAC_ID) values ('6310.19A','161E','161E/H',1826);
    Insert into LPM_PARAGRAPH_MAPPING_TABLE (PUBLICATION_ORDER,PUBLICATION_PARAGRAPH,PARAGRAPH_ALIAS_MAPPING,LPMTANTAC_ID) values ('6310.19A','161F','161E/H',1827);
    Insert into LPM_PARAGRAPH_MAPPING_TABLE (PUBLICATION_ORDER,PUBLICATION_PARAGRAPH,PARAGRAPH_ALIAS_MAPPING,LPMTANTAC_ID) values ('6310.19A','161G','161E/H',1828);
    Insert into LPM_PARAGRAPH_MAPPING_TABLE (PUBLICATION_ORDER,PUBLICATION_PARAGRAPH,PARAGRAPH_ALIAS_MAPPING,LPMTANTAC_ID) values ('6310.19A','161H','161E/H',1829);
    Insert into LPM_PARAGRAPH_MAPPING_TABLE (PUBLICATION_ORDER,PUBLICATION_PARAGRAPH,PARAGRAPH_ALIAS_MAPPING,LPMTANTAC_ID) values ('6310.19A','161K','161K',1830);
    
    Insert into PM_REQUIREMENTS_TABLE (PUBLICATION_ORDER,PUBLICATION_PARAGRAPH_NUMBER,DESCRIPTION,FREQUENCY,CHECK_OR_MAINTENANCE,PRTANTAC_ID) values ('6310.19A','161A','Check transmitter average rf power output','WEEKLY',null,3);
    Insert into PM_REQUIREMENTS_TABLE (PUBLICATION_ORDER,PUBLICATION_PARAGRAPH_NUMBER,DESCRIPTION,FREQUENCY,CHECK_OR_MAINTENANCE,PRTANTAC_ID) values ('6310.19A','161B','Check transmitter VSWR','WEEKLY',null,4);
    Insert into PM_REQUIREMENTS_TABLE (PUBLICATION_ORDER,PUBLICATION_PARAGRAPH_NUMBER,DESCRIPTION,FREQUENCY,CHECK_OR_MAINTENANCE,PRTANTAC_ID) values ('6310.19A','161C','Check RMS transmitter pulse width','WEEKLY',null,5);
    Insert into PM_REQUIREMENTS_TABLE (PUBLICATION_ORDER,PUBLICATION_PARAGRAPH_NUMBER,DESCRIPTION,FREQUENCY,CHECK_OR_MAINTENANCE,PRTANTAC_ID) values ('6310.19A','161D(1)','Check filament current','WEEKLY',null,6);
    Insert into PM_REQUIREMENTS_TABLE (PUBLICATION_ORDER,PUBLICATION_PARAGRAPH_NUMBER,DESCRIPTION,FREQUENCY,CHECK_OR_MAINTENANCE,PRTANTAC_ID) values ('6310.19A','161D(2)','Check focus coil current','WEEKLY',null,7);
    Insert into PM_REQUIREMENTS_TABLE (PUBLICATION_ORDER,PUBLICATION_PARAGRAPH_NUMBER,DESCRIPTION,FREQUENCY,CHECK_OR_MAINTENANCE,PRTANTAC_ID) values ('6310.19A','161D(3)','Check Klystron voltage','WEEKLY',null,8);
    Insert into PM_REQUIREMENTS_TABLE (PUBLICATION_ORDER,PUBLICATION_PARAGRAPH_NUMBER,DESCRIPTION,FREQUENCY,CHECK_OR_MAINTENANCE,PRTANTAC_ID) values ('6310.19A','161D(4)','Check Klystron current','WEEKLY',null,9);
    Insert into PM_REQUIREMENTS_TABLE (PUBLICATION_ORDER,PUBLICATION_PARAGRAPH_NUMBER,DESCRIPTION,FREQUENCY,CHECK_OR_MAINTENANCE,PRTANTAC_ID) values ('6310.19A','161D(5)','Check PFN voltage','WEEKLY',null,10);
    Insert into PM_REQUIREMENTS_TABLE (PUBLICATION_ORDER,PUBLICATION_PARAGRAPH_NUMBER,DESCRIPTION,FREQUENCY,CHECK_OR_MAINTENANCE,PRTANTAC_ID) values ('6310.19A','161D(6)','Check vacuum pump current','WEEKLY',null,11);
    Insert into PM_REQUIREMENTS_TABLE (PUBLICATION_ORDER,PUBLICATION_PARAGRAPH_NUMBER,DESCRIPTION,FREQUENCY,CHECK_OR_MAINTENANCE,PRTANTAC_ID) values ('6310.19A','161E','Check target receiver MDS','WEEKLY',null,12);
    Insert into PM_REQUIREMENTS_TABLE (PUBLICATION_ORDER,PUBLICATION_PARAGRAPH_NUMBER,DESCRIPTION,FREQUENCY,CHECK_OR_MAINTENANCE,PRTANTAC_ID) values ('6310.19A','161F','Check target receiver NF','WEEKLY',null,13);
    Insert into PM_REQUIREMENTS_TABLE (PUBLICATION_ORDER,PUBLICATION_PARAGRAPH_NUMBER,DESCRIPTION,FREQUENCY,CHECK_OR_MAINTENANCE,PRTANTAC_ID) values ('6310.19A','161G','Check target receiver recovery','WEEKLY',null,14);
    Insert into PM_REQUIREMENTS_TABLE (PUBLICATION_ORDER,PUBLICATION_PARAGRAPH_NUMBER,DESCRIPTION,FREQUENCY,CHECK_OR_MAINTENANCE,PRTANTAC_ID) values ('6310.19A','161H','Check weather receiver MDS','WEEKLY',null,15);
    Insert into PM_REQUIREMENTS_TABLE (PUBLICATION_ORDER,PUBLICATION_PARAGRAPH_NUMBER,DESCRIPTION,FREQUENCY,CHECK_OR_MAINTENANCE,PRTANTAC_ID) values ('6310.19A','161I','Check weather receiver NF','WEEKLY',null,16);
    Insert into PM_REQUIREMENTS_TABLE (PUBLICATION_ORDER,PUBLICATION_PARAGRAPH_NUMBER,DESCRIPTION,FREQUENCY,CHECK_OR_MAINTENANCE,PRTANTAC_ID) values ('6310.19A','161J','Check weather receiver recovery','WEEKLY',null,17);
    Insert into PM_REQUIREMENTS_TABLE (PUBLICATION_ORDER,PUBLICATION_PARAGRAPH_NUMBER,DESCRIPTION,FREQUENCY,CHECK_OR_MAINTENANCE,PRTANTAC_ID) values ('6310.19A','161K','Check spare modem operation','WEEKLY',null,18);
    Published by: George Heller on July 13, 2011 10:34

    Hello

    George Heller wrote:
    ... The exact results I wanted to obtain data on the forum is below...

    'PUBLICATION_PARAGRAPH', 'DESCRIPTION', 'FREQUENCY', 'EQUIPMENT_IDENT', 'ACTIVITIES_PERFORMED '.
    161 'a', "Transmitter Check average rf power output", "WEEKLY", "IEWR", 2
    '161 b', "Transmitter Check ROS", "WEEKLY", "IEWR", 2
    "161", "check RMS transmitter pulse width", "WEEKLY", "IEWR", 2
    "" 161 D (1) ","Check filament current","WEEKLY"," ' ", 0
    "" 161 D (2) ","Check focus coil current","WEEKLY"," ' ", 0
    "" 161 D (3) ","Klystron check tension","WEEKLY"," ' ", 0
    "" 161 D (4) ","Check Klystron current","WEEKLY"," ' ", 0
    "" 161 D (5) ","Check Tension of NFP","WEEKLY"," ' ", 0
    "" 161 D (6) ","Check current vacuum pump","WEEKLY"," ' ", 0
    "161F', 'Receiver target check MDS', 'WEEKLY', 'IEWR', 2
    "161F", "Check receiving target NF", "WEEKLY", "IEWR", 2
    '161G', ' Check target receiver recovery ","WEEKLY","IEWR", 2
    '161H', 'Receiver weather check MDS', 'WEEKLY', 'IEWR', 2
    "161I","Check weather receiver NF ', 'WEEKLY',' ', 0 '.
    '161J', 'The weather receiver Check recovery',' ', 0 '.
    "161K',' operation spare modem check", "WEEKLY", "IEWR", 3

    Please put in the form results. Who do you think is easier to read and understand: the results you've posted higher, or these?

    `                                                            EQUI  ACTIV
    PUBLICAT                                                     PMEN  ITIES
    ION_PARA                                                     T_ID  _PERF
    GRAPH    DESCRIPTION                               FREQUENCY ENT   ORMED
    -------- ----------------------------------------- --------- ----- -----
    161A     Check transmitter average rf power output WEEKLY    IEWR      2
    161B     Check transmitter VSWR                    WEEKLY    IEWR      2
    161C     Check RMS transmitter pulse width         WEEKLY              0
    161D(1)  Check filament current                    WEEKLY              0
    161D(2)  Check focus coil current                  WEEKLY              0
    161D(3)  Check Klystron voltage                    WEEKLY              0
    161D(4)  Check Klystron current                    WEEKLY              0
    161D(5)  Check PFN voltage                         WEEKLY              0
    161D(6)  Check vacuum pump current                 WEEKLY              0
    161E     Check target receiver MDS                 WEEKLY    IEWR      2
    161F     Check target receiver NF                  WEEKLY    IEWR      2
    161G     Check target receiver recovery            WEEKLY    IEWR      2
    161H     Check weather receiver MDS                WEEKLY    IEWR      2
    161I     Check weather receiver NF                 WEEKLY              0
    161J     Check weather receiver recovery           WEEKLY              0
    161K     Check spare modem operation               WEEKLY    IEWR      3
    

    Who do you think will encourage people to answer your question? Who do you think is more likely to lead to accurate solutions?

    The following query is pretty close to what you asked:

    SELECT       req.publication_paragraph_number     AS publication_paragraph
    ,       req.description
    ,       req.frequency
    ,       MAX (lpm.equipment_ident)          AS equipment_ident
    ,       COUNT (fsep.fac_id)               AS activities_performed
    FROM           pm_requirements_table          req
    LEFT OUTER JOIN  lpm_paragraph_mapping_table      pmap  ON   req.publication_order         = pmap.publication_order
                                        AND  req.publication_paragraph_number = pmap.publication_paragraph
    LEFT OUTER JOIN  lpm                          ON   TRIM (lpm.publication_paragraph) = pmap.paragraph_alias_mapping
                                          AND  TRIM (lpm.publication_order)         = '6310.19A'
                                        AND  TRUNC(lpm.start_date, 'YEAR')    = TO_DATE ('01/01/2010', 'MM/DD/YYYY')
                                        AND  lpm.fac_ident              = 'EWR'
    LEFT OUTER JOIN  fsep                          ON   fsep.fac_id                   = lpm.fac_ident
                                        AND  fsep.facility               = lpm.fac_type
    GROUP BY  req.publication_paragraph_number
    ,            req.description
    ,       req.frequency
    ORDER BY  req.publication_paragraph_number
    ;
    

    "As you can see, the last two columns, equipment_ident and actiovities_performed, are not what you asked for publication_paragraph ' 161 C". I guess just what you want in these columns. Guess, this isn't a very effective way to solve problems. "Explain what you want in these columns, and how derive you these values in the case of publication_paragraph ' 161 C".

  • Apex 4 Cascading LOV s how to define a child LOV back to the null return value

    Hello

    My problem is that I use the new dynamic action to implement features of LOV cascading to the Apex 4 which means not having to submit the page to update child LOVs after parent LOV changes.

    What I find, is that when you change the value LOV parent, then the child LOV (which has a return value of zero) is not or by default in the return value zero (in my case no selection should return-1) if the list is filtered to a different set of values, which is not a selection valid. The LOV child is left without a choice when I need its default value to the return value zero (-1, which represents all values).

    Also, I expected to do before the page is sent and filtering to the bottom of the hierarchy of LOVs can work when the child is zero (-1, which means that all values) and in turn her child LOV (s) will also the child null filter.

    Any help would be appreciated.

    Thank you

    Hi 804641,

    I don't know if I get your problem and I tried to reproduce.

    http://Apex.Oracle.com/pls/Apex/f?p=2672:6 is my example with a LOV cascading where I also defined a dynamic action that is triggered when P6_EMPNO changes and it shows the current selection.

    Maybe it helps if install you an example on apex.oracle.com and provide space to work/user/pwd, so that I can have a look. I'm not sure about your sentence "help for a new dynamic to implement cascading LOV feature", because dynamic actions are not necessary for LOVs cascading. It is a characteristic of the types of items themselves where you just set the attribute "Cascading LOV Parent éléments".

    Concerning
    Patrick
    -----------
    My Blog: http://www.inside-oracle-apex.com
    APEX 4.0 Plug-Ins: http://apex.oracle.com/plugins
    Twitter: http://www.twitter.com/patrickwolf

  • CVI9.0 time (NULL) returns zero

    I just upgraded to CVI9.0 on a project and I got a zero on this curtime = time (NULL);

    time_t starttime, curtime;

    CURTIME = Time (null);
    DIF = difftime (curtime, starttime);
    This caused a Fatal run time error later in my code so program suspended in the debug window.

    In debugging the curtime value was 0.

    This program has worked well in CVI8.0.1 before the upgrade.

    Sorry my mistake. Had a bug in my software. line was bypassed.

    the Time() function is OK.

  • Open physical standby mode read/write to test without return of flame

    I have successfully installed a physical database standby 10 gr 2 (10.2.0.3 EA). Now I have to test my application with the database pending, so I have to
    Open (enable) in read/write mode (don't want to use FLASHBACK DATABASE), I know that I have to recreate the database pending scracth after completing the test.

    So far, I did these steps:

    1. on the PRIMARY database, I disabled the log destination archive:
    ALTER system set log_archive_dest_state_2 = 'reporter ';
    2. on the day before, I cancel managed recovery
    ALTER database recover managed standby database cancel;


    Can anyone provide the remaining steps to open the write standby database? I searched the oracle documentation and all the steps require the flashbak database.

    Thanks in advance.

    S.H.

    Ok

    You could do a failover on the eve (without doing anything at the elementary level)

    So to run these on your watch.

    SQL > alter database recover managed standby database cancel;
    Database altered.
    SQL > alter database recover managed standby database finish;
    Database altered.
    SQL > alter database validation at the transition to the primary with the stop of the session;
    Database altered.
    SQL > alter database open;
    Database altered.

    Then simply stop the day before (not primary) and rebuild as the standby again. Delete and re-create.

    Make sure that your Data Guard alter system set log_archive_dest_state_2 = delay; Are fixed on both sides.

    This can help:

    http://www.Oracle.com/technetwork/database/features/availability/MAA-WP-10gR2-faststartfailoverbestp-131997.PDF

    You want to split the day before with really nothing do in elementary school except reporter.

    Best regards

    mseberg

    Edited by: mseberg May 14, 2012 14:39

  • Need help with Test NULL

    I have a case statement in my SQL to check whether one of the four columns is NULL.

    In this case the statement I check if the sum of Q_1, Q_2, Q_3 and Q_4 is greater then 0. I check instead, if one of them is NULL.
    case
    Where (STAT_UID = 1 or STAT_UID = 2) and (Q_1 + Q_2 + Q_3 + Q_4) > 0 then
    APEX_ITEM. SELECT_LIST_FROM_LOV(14,STAT_UID,'STAT_PRPR','','NO')
    on the other
    APEX_ITEM. TEXT_FROM_LOV (STAT_UID, 'STAT', 'not')
    end as STAT_UID,


    Thanks for the help.

    Is that what you want?

    SELECT CASE
             WHEN (q_1 IS NULL OR q_2 IS NULL OR q_3 IS NULL OR q_4 IS NULL) THEN
              'is_this_what_you_want?'
           END
      FROM dual
    
  • Bug: Test connection returns "Success!" when cancelled.

    I use JDeveloper 11 g 11.1.1.0.0. When I click on the button "Test connection" and he asks me a password, if I click on 'Cancel', it says "Success!" Obviously, nothing has managed.

    Hello

    I filed a bug

    Frank

    Published by: Frank Nimphius on October 27, 2008 19:01

  • Impossible to test for null in JavaScript

    I want to check if the user has specified a value in a LOV. The element is a Select list that has been set as display Null = Yes, Null value = '- Select Organization -' and Null return value = null %. So by default the value is null %, which I assume what APEX actually cures as NULL, because when I go back to the attribute item, that nothing is displayed as the value. When I use FireBug to inspect the DOM when running, it shows that the value is "null %." The values in the page are processed when you click on a button that is set to have a URL target javascript:showReport();

    My JavaScript showReport() function contains:
      if ($v('P27_ORG_CODE_2') != '' || $v('P27_ORG_CODE_2') != "%null%")
      {
       l_param += '&p_org_code_b=' + $v('P27_ORG_CODE_2');
      }
    I found this variable l_param ends to top joins with & p_org_code_b = null % even if I test for the null %. It should not even at this point! How to test the value of string/NULL/%null% empty?

    Any help is appreciated.

    If this issue is closed, could you mark it as answered and awarded points accordingly, if others know we respond...

    Thank you

    Tony Miller
    Webster, TX

  • NULL session streams returned when you use MediaPlayer

    Hey people,

    When you try to play sound on blackberry os 6 on 9780 I get the error "session flow null returned" after 2 or 3 times of the sound during playback. The error is thrown in the prefatch statement:

    InputStream inputStream = this.getClass().getResourceAsStream(jarPath);
    
                if (inputStream != null)
                {
                    m_SoundPlayer = javax.microedition.media.Manager.createPlayer
                            (inputStream, "audio/mpeg");
    
                    m_SoundPlayer.realize();
    
                    m_SoundPlayer.prefetch();
    
                    inputStream.close();
                }
            }
            catch (IOException e)
            {
    
            }
            catch (MediaException e)
            {
                //#debug
                if (e.getMessage() != null)
                    DebugText.Instance().Write(e.getMessage());
            }
    

    I tried Googling the error with no luck. Anyone got any ideas?

    EDIT: I meant, the code works on os<>

    Hey,.

    Thank you much for the help. Impossible to get your solution work, maybe because I won't read SD card. My solution if it helps anyoneL

    public class CDSoundPlayer {
    
        boolean keepPlaying = false;
        Player m_Player = null;
    
        public void playSound(String file, boolean continuous)
        {
            try {
                if (m_Player != null) {
                    stopSound();
                }
                InputStream is = getClass().getResourceAsStream(file);
                if (is == null) {
                    //#debug
                    DebugText.Instance().Write("Error loading file");
                }
                m_Player = javax.microedition.media.Manager.createPlayer(is, "audio/mp3");
                m_Player.realize();
                m_Player.prefetch();
    
                VolumeControl vc = (VolumeControl) m_Player.getControl("VolumeControl");
    
                m_Player.setMediaTime(-1);
                m_Player.setLoopCount(-1);
                m_Player.addPlayerListener(new extendedPlayerListener(file, continuous, this));
    
                m_Player.start();
            } catch (IOException ex) {
                ex.printStackTrace();
            } catch (MediaException ex) {
                ex.printStackTrace();
            }
        }
    
        public void stopSound()
        {
            if (m_Player == null)
                return;
            try {
                m_Player.stop();
                try
                {
                    if(m_Player.getState() == Player.PREFETCHED) {
                        m_Player.deallocate();
                    }
                    if(m_Player.getState() == Player.REALIZED || m_Player.getState() == Player.UNREALIZED) {
                        m_Player.close();
                        m_Player = null;
                    }
                } catch (Exception e)
                {
                }
    
            } catch (MediaException ex) {
                ex.printStackTrace();
            }
        }
    }
    
        class extendedPlayerListener implements PlayerListener
        {
            String file;
            boolean playContinuous;
            CDSoundPlayer player;
    
        public extendedPlayerListener(String file, boolean b, CDSoundPlayer player) {
            this.file = file;
            this.player = player;
            playContinuous = b;
        }
    
        public void playerUpdate(Player player, String event, Object eventData) {
            if (event.equals( PlayerListener.END_OF_MEDIA))
            {
                this.player.stopSound();
                if (playContinuous)
                    this.player.playSound(file, playContinuous);
            }
        }
    
  • APEX: LOVs and it is the Null attribute return

    I have two or three fields of research LOV and I FACT NOT fill the value Null return a value, simply leave it blank.

    Do you have a County chart that looks count of status for each of the elements of the LOV and I realized that in order to get

    a full account of how many fields 'null', I do combine is null and the like '% null' |' %' select 5 display_order.

    Select MyLOVCount

    from my_table

    where MyLOVCount is null or MyLOVCount like '% null' | '%';

    My approach is appropriate?

    I would have thought that the 'is null' have taken into account all 'null' values in the column.

    Please help me understand in layman's term

    Hello

    JAS-Oracle wrote:

    I have two or three fields of research LOV and I FACT NOT fill the value Null return a value, simply leave it blank.

    Do you have a County chart that looks count of status for each of the elements of the LOV and I realized that in order to get

    a full account of how many fields 'null', I do combine is null and the like '% null' |' %' select 5 display_order.

    Select MyLOVCount

    from my_table

    where MyLOVCount is null or MyLOVCount like '% null' | '%';

    My approach is appropriate?

    I would have thought that the 'is null' have taken into account all 'null' values in the column.

    Please help me understand in layman's term

    I don't want to argue, but your column of the MyLOVCount table contains the string "null", which is not equal to null.

    You not fill it but the fact is that there is the mystery.

    Your condition <... or="" mylovcount="" like="" '%null'||'%';="">is looking for the word "null".

    Please see the screenshots below; line with col1 = 'b' meeting condition tran_type is null and col1 = 'a' tran_type meeting = 'null '.

  • Returns the null value in HasMap.get ().

    Hi all.
    Just read the docs of java on hashmap and was interested in this topic the get() method:

    A NULL return value does not necessarily mean that the map contains no mapping for the key; It is also possible that the map explicitly maps the key null. The containsKey operation may be used to distinguish these two cases.

    I took in a case, which has been talked about: If the map allow nulls, returned by get() null will be just one key of the pair-> null value. But the second case is not clear to me. Please, show me an example for the latter case, when get() can returned null.

    sphinks wrote:
    I took in a case, which has been talked about: If the map permits null values, returned by get() null will be just a key pair-> null value. But the second case is not clear to me. Please, show me an example for the latter case, when get() can returned null.

    There is no second case. There is a single case, if you put a null value in a map, get() will return null. And because of that, if you need to know if a certain key is in the containsKey() worksheet should be used instead of the get() method.

  • ApplicationMenuItem called with null in JDE 4.6 when you enter the phone number

    When I install a custom phone app, ApplicationMenuItem and

    try to enter a number on the keypad of the native Dialer, and then click the custom menu,

    my custom ApplicationMenuItem is called with a null context object.

    This same code + test case works well under the 4.5 JDE / 8300 emulator

    and device 8320, but fails under JDE 4.6 with the BB 9000 emulator

    and device

    To reproduce the bug:

    * Build/launch of the attached test application

    * Send with previous key

    * Go to the native Dialer

    * Enter "123" on the keyboard of the phone

    * Click on the trackball

    * Choose Bug49 the context menu

    * It will appear a dialog box indicating "context has the null value - is this a bug?

    NOTE that if, rather than enter a number on the keypad of the phone with step 4.

    a call log is selected, then it works and a non-null context object is passed.

    Can I make it work?  If this is a known bug, are

    It no work around?

    import net.rim.blackberry.api.menuitem.ApplicationMenuItem;import net.rim.blackberry.api.menuitem.ApplicationMenuItemRepository;import net.rim.device.api.ui.UiApplication;import net.rim.device.api.ui.component.Dialog;import net.rim.device.api.ui.component.LabelField;import net.rim.device.api.ui.component.RichTextField;import net.rim.device.api.ui.container.MainScreen;
    
    public class Bug49 extends UiApplication { public Bug49()    {     super();      Bug49Screen screen = new Bug49Screen();       pushScreen(screen);       ApplicationMenuItemRepository amir = ApplicationMenuItemRepository.getInstance();     Bug49NativeMenu bug49NativeMenu = new Bug49NativeMenu(0);     amir.addMenuItem(ApplicationMenuItemRepository.MENUITEM_PHONE, bug49NativeMenu ); }
    
      public static void main(String[] args) {      Bug49 b49 = new Bug49();      b49.enterEventDispatcher();   }
    
       static class Bug49Screen extends MainScreen {     public Bug49Screen() {            super();          setTitle(new LabelField("Hello"));            add(new RichTextField("Hello"));      } }
    
      static class Bug49NativeMenu extends ApplicationMenuItem  {     public Bug49NativeMenu(int order) {           super(order);     }     public Object run(Object context) {           if (context == null) {                Dialog.alert("context is null -- is this a bug?");            }         else {                Dialog.alert("context not null");         }         return null;      }     public String toString() {            return "Bug 49";      } }}
    

    It is a problem in the version of BlackBerry device software 4.6.0.  It has been fixed in version 4.7.0.

  • Test connection connector UNIX

    Hello

    I followed the connector UNIX documentation to test the connector. I executed the command mentioned in the document, but how to check that it has been correctly executed. Please let me know if this is what would be the expected result.

    Please suggest, if all the permissions or all files are missing?

    Please find below the result of the command I ran

    Command :

    C:\connectorserver\GenericUnix-11.1.1.7.0\test-utility > java - classpath test-utility.jar;connector-framework.jar;connector-framework-internal.jar;groovy-all.jar;test-utility.jar; example of oracle.iam.connectors.testutility.Main - config.groovy > test.txt

    output:

    Thread ID: 1 time: 2015-08-03 14:14:56.835 class: oracle.iam.connectors.testutility.TestUtility method: doTest level: OK Message: local help with url: [file:/C:/connectorserver/GenericUnix-11.1.1.7.0/bundle/org.identityconnectors.genericunix-1.0.0.jar]

    Thread ID: 1 time: 2015-08-03 14:14:56.904 class: org.identityconnectors.genericunix.GenericUnixConfiguration method: < clinit > level: OK Message: ENTRY < clinit >)

    Thread ID: 1 time: 2015-08-03 14:14:56.904 class: org.identityconnectors.genericunix.GenericUnixConfiguration method: < clinit > level: OK Message: RETURN < clinit >)

    Thread ID: 1 time: 2015-08-03 14:14:56.904 class: org.identityconnectors.genericunix.GenericUnixConfiguration method: < init > level: OK Message: ENTER GenericUnixConfiguration()

    Thread ID: 1 time: 2015-08-03 14:14:56.904 class: org.identityconnectors.genericunix.GenericUnixConfiguration method: < init > level: Message OK: GenericUnixConfiguration() RETURN

    Thread ID: 1 time: 2015-08-03 14:14:56.908 class: org.identityconnectors.genericunix.GenericUnixConfiguration method: getPort level: OK Message: ENTRY getPort()

    Thread ID: 1 time: 2015-08-03 14:14:56.908 class: org.identityconnectors.genericunix.GenericUnixConfiguration method: getPort level: OK Message: RETURN getPort() returns: 22

    Thread ID: 1 time: 2015-08-03 14:14:56.909 class: org.identityconnectors.genericunix.GenericUnixConfiguration method: getSudoPasswdExpectExpression level: OK Message: ENTER getSudoPasswdExpectExpression()

    Thread ID: 1 time: 2015-08-03 14:14:56.909 class: org.identityconnectors.genericunix.GenericUnixConfiguration method: getSudoPasswdExpectExpression level: OK Message: RETURN getSudoPasswdExpectExpression() returns: password:

    Thread ID: 1 time: 2015-08-03 14:14:56.909 class: org.identityconnectors.genericunix.GenericUnixConfiguration method: isUseMutex level: OK Message: ENTER isUseMutex()

    Thread ID: 1 time: 2015-08-03 14:14:56.909 class: org.identityconnectors.genericunix.GenericUnixConfiguration method: isUseMutex level: OK Message: RETURN isUseMutex() returns: false

    Thread ID: 1 time: 2015-08-03 14:14:56.909 class: org.identityconnectors.genericunix.GenericUnixConfiguration method: getConfigPropertiesOnScripts level: OK Message: ENTER getConfigPropertiesOnScripts()

    Thread ID: 1 time: 2015-08-03 14:14:56.909 class: org.identityconnectors.genericunix.GenericUnixConfiguration method: getConfigPropertiesOnScripts level: OK Message: RETURN getConfigPropertiesOnScripts() returns: moveHomeDirContents, shadow, defaultHomeBaseDir, defaultPriGroup, defaultShell, nisPwdDir, nisBuildDirectory, removeHomeDirContents, forceDeleteUserHome, syncToken, mirrorFilesLocation, connectorPrompt

    Thread ID: 1 time: 2015-08-03 14:14:56.910 class: org.identityconnectors.genericunix.GenericUnixConfiguration method: getMoveHomeDirContents level: OK Message: ENTER getMoveHomeDirContents()

    Thread ID: 1 time: 2015-08-03 14:14:56.910 class: org.identityconnectors.genericunix.GenericUnixConfiguration method: getMoveHomeDirContents level: OK Message: RETURN getMoveHomeDirContents() returns: true

    Thread ID: 1 time: 2015-08-03 14:14:56.910 class: org.identityconnectors.genericunix.GenericUnixConfiguration method: getTelnetAuthenticationPrompts level: OK Message: ENTER getTelnetAuthenticationPrompts()

    Thread ID: 1 time: 2015-08-03 14:14:56.910 class: org.identityconnectors.genericunix.GenericUnixConfiguration method: getTelnetAuthenticationPrompts level: OK Message: RETURN getTelnetAuthenticationPrompts() returns: login:, password:

    Thread ID: 1 time: 2015-08-03 14:14:56.910 class: org.identityconnectors.genericunix.GenericUnixConfiguration method: getDefaultHomeBaseDir level: OK Message: ENTER getDefaultHomeBaseDir()

    Thread ID: 1 time: 2015-08-03 14:14:56.910 class: org.identityconnectors.genericunix.GenericUnixConfiguration method: getDefaultHomeBaseDir level: OK Message: RETURN getDefaultHomeBaseDir() returns: null

    Thread ID: 1 time: 2015-08-03 14:14:56.910 class: org.identityconnectors.genericunix.GenericUnixConfiguration method: getSupportedLanguage level: OK Message: ENTER getSupportedLanguage()

    Thread ID: 1 time: 2015-08-03 14:14:56.910 class: org.identityconnectors.genericunix.GenericUnixConfiguration method: getSupportedLanguage level: OK Message: RETURN getSupportedLanguage() returns: Bourne

    Thread ID: 1 time: 2015-08-03 14:14:56.910 class: org.identityconnectors.genericunix.GenericUnixConfiguration method: getNisPwdDir level: OK Message: ENTER getNisPwdDir()

    Thread ID: 1 time: 2015-08-03 14:14:56.910 class: org.identityconnectors.genericunix.GenericUnixConfiguration method: getNisPwdDir level: OK Message: RETURN getNisPwdDir() returns: / etc

    Thread ID: 1 time: 2015-08-03 14:14:56.911 class: org.identityconnectors.genericunix.GenericUnixConfiguration method: isShadow level: OK Message: ENTER isShadow()

    Thread ID: 1 time: 2015-08-03 14:14:56.911 class: org.identityconnectors.genericunix.GenericUnixConfiguration method: isShadow level: OK Message: RETURN isShadow() returns: false

    Thread ID: 1 time: 2015-08-03 14:14:56.911 class: org.identityconnectors.genericunix.GenericUnixConfiguration method: isRemoveHomeDirContents level: OK Message: ENTER isRemoveHomeDirContents()

    Thread ID: 1 time: 2015-08-03 14:14:56.911 class: org.identityconnectors.genericunix.GenericUnixConfiguration method: isRemoveHomeDirContents level: OK Message: RETURN isRemoveHomeDirContents() returns: true

    Thread ID: 1 time: 2015-08-03 14:14:56.911 class: org.identityconnectors.genericunix.GenericUnixConfiguration method: getPropertyFileName level: OK Message: ENTER getPropertyFileName()

    Thread ID: 1 time: 2015-08-03 14:14:56.911 class: org.identityconnectors.genericunix.GenericUnixConfiguration method: getPropertyFileName level: OK Message: RETURN getPropertyFileName() returns: null

    Thread ID: 1 time: 2015-08-03 14:14:56.911 class: org.identityconnectors.genericunix.GenericUnixConfiguration method: getLoginShellPrompt level: OK Message: ENTER getLoginShellPrompt()

    Thread ID: 1 time: 2015-08-03 14:14:56.911 class: org.identityconnectors.genericunix.GenericUnixConfiguration method: getLoginShellPrompt level: OK Message: RETURN getLoginShellPrompt() returns: [$% > #]

    Thread ID: 1 time: 2015-08-03 14:14:56.912 class: org.identityconnectors.genericunix.GenericUnixConfiguration method: getTargetDateFormat level: OK Message: ENTER getTargetDateFormat()

    Thread ID: 1 time: 2015-08-03 14:14:56.912 class: org.identityconnectors.genericunix.GenericUnixConfiguration method: getTargetDateFormat level: OK Message: RETURN getTargetDateFormat() returns: MM/DD/YY

    Thread ID: 1 time: 2015-08-03 14:14:56.912 class: org.identityconnectors.genericunix.GenericUnixConfiguration method: getNisPasswdEncryptionAlgo level: OK Message: ENTER getNisPasswdEncryptionAlgo()

    Thread ID: 1 time: 2015-08-03 14:14:56.912 class: org.identityconnectors.genericunix.GenericUnixConfiguration method: getNisPasswdEncryptionAlgo level: OK Message: RETURN getNisPasswdEncryptionAlgo() returns: THE

    Thread ID: 1 time: 2015-08-03 14:14:56.912 class: org.identityconnectors.genericunix.GenericUnixConfiguration method: isSudoAuthorization level: OK Message: ENTER isSudoAuthorization()

    Thread ID: 1 time: 2015-08-03 14:14:56.912 class: org.identityconnectors.genericunix.GenericUnixConfiguration method: isSudoAuthorization level: OK Message: RETURN isSudoAuthorization() returns: false

    Thread ID: 1 time: 2015-08-03 14:14:56.912 class: org.identityconnectors.genericunix.GenericUnixConfiguration method: getLoginUserpassword level: OK Message: ENTER getLoginUserpassword()

    Thread ID: 1 time: 2015-08-03 14:14:56.912 class: org.identityconnectors.genericunix.GenericUnixConfiguration method: getLoginUserpassword level: OK Message: RETURN getLoginUserpassword() returns: null

    Thread ID: 1 time: 2015-08-03 14:14:56.913 class: org.identityconnectors.genericunix.GenericUnixConfiguration method: getLoginUser level: OK Message: ENTER getLoginUser()

    Thread ID: 1 time: 2015-08-03 14:14:56.913 class: org.identityconnectors.genericunix.GenericUnixConfiguration method: getLoginUser level: OK Message: RETURN getLoginUser() returns: null

    Thread ID: 1 time: 2015-08-03 14:14:56.913 class: org.identityconnectors.genericunix.GenericUnixConfiguration method: getRbacRoleName level: OK Message: ENTER getRbacRoleName()

    Thread ID: 1 time: 2015-08-03 14:14:56.913 class: org.identityconnectors.genericunix.GenericUnixConfiguration method: getRbacRoleName level: OK Message: RETURN getRbacRoleName() returns: null

    Thread ID: 1 time: 2015-08-03 14:14:56.913 class: org.identityconnectors.genericunix.GenericUnixConfiguration method: getHost level: OK Message: ENTRY getHost()

    Thread ID: 1 time: 2015-08-03 14:14:56.913 class: org.identityconnectors.genericunix.GenericUnixConfiguration method: getHost level: OK Message: RETURN getHost() returns: null

    Thread ID: 1 time: 2015-08-03 14:14:56.913 class: org.identityconnectors.genericunix.GenericUnixConfiguration method: getPrivateKey level: OK Message: ENTER getPrivateKey()

    Thread ID: 1 time: 2015-08-03 14:14:56.913 class: org.identityconnectors.genericunix.GenericUnixConfiguration method: getPrivateKey level: OK Message: RETURN getPrivateKey() returns: null

    Thread ID: 1 time: 2015-08-03 14:14:56.913 class: org.identityconnectors.genericunix.GenericUnixConfiguration method: getPassphrase level: OK Message: ENTER getPassphrase()

    Thread ID: 1 time: 2015-08-03 14:14:56.914 class: org.identityconnectors.genericunix.GenericUnixConfiguration method: getPassphrase level: OK Message: RETURN getPassphrase() returns: null

    Thread ID: 1 time: 2015-08-03 14:14:56.914 class: org.identityconnectors.genericunix.GenericUnixConfiguration method: getCommandTimeout level: OK Message: ENTER getCommandTimeout()

    Thread ID: 1 time: 2015-08-03 14:14:56.914 class: org.identityconnectors.genericunix.GenericUnixConfiguration method: getCommandTimeout level: OK Message: RETURN getCommandTimeout() returns: 1000000000

    Thread ID: 1 time: 2015-08-03 14:14:56.914 class: org.identityconnectors.genericunix.GenericUnixConfiguration method: getRbacRoleExpectExpressions level: OK Message: ENTER getRbacRoleExpectExpressions()

    Thread ID: 1 time: 2015-08-03 14:14:56.914 class: org.identityconnectors.genericunix.GenericUnixConfiguration method: getRbacRoleExpectExpressions level: OK Message: RETURN getRbacRoleExpectExpressions() returns: password:, [$#]

    Thread ID: 1 time: 2015-08-03 14:14:56.914 class: org.identityconnectors.genericunix.GenericUnixConfiguration method: getConnectionType level: OK Message: ENTER getConnectionType()

    Thread ID: 1 time: 2015-08-03 14:14:56.914 class: org.identityconnectors.genericunix.GenericUnixConfiguration method: getConnectionType level: OK Message: RETURN getConnectionType() returns: SSH

    Thread ID: 1 time: 2015-08-03 14:14:56.914 class: org.identityconnectors.genericunix.GenericUnixConfiguration method: getPasswordExpectExpressions level: OK Message: ENTER getPasswordExpectExpressions()

    Thread ID: 1 time: 2015-08-03 14:14:56.915 class: org.identityconnectors.genericunix.GenericUnixConfiguration method: getPasswordExpectExpressions level: OK Message: RETURN getPasswordExpectExpressions() returns: new [\s](unix[\s])? password:, new [\s](unix[\s])? password([\s]again)? :

    Thread ID: 1 time: 2015-08-03 14:14:56.915 class: org.identityconnectors.genericunix.GenericUnixConfiguration method: getSyncToken level: OK Message: ENTER getSyncToken()

    Thread ID: 1 time: 2015-08-03 14:14:56.915 class: org.identityconnectors.genericunix.GenericUnixConfiguration method: getSyncToken level: OK Message: RETURN getSyncToken() returns: None

    Thread ID: 1 time: 2015-08-03 14:14:56.915 class: org.identityconnectors.genericunix.GenericUnixConfiguration method: getOsType level: OK Message: ENTER getOsType()

    Thread ID: 1 time: 2015-08-03 14:14:56.915 class: org.identityconnectors.genericunix.GenericUnixConfiguration method: getOsType level: OK Message: RETURN getOsType() returns: null

    Thread ID: 1 time: 2015-08-03 14:14:56.915 class: org.identityconnectors.genericunix.GenericUnixConfiguration method: isRbacAuthorization level: OK Message: ENTER isRbacAuthorization()

    Thread ID: 1 time: 2015-08-03 14:14:56.915 class: org.identityconnectors.genericunix.GenericUnixConfiguration method: isRbacAuthorization level: OK Message: RETURN isRbacAuthorization() returns: false

    Thread ID: 1 time: 2015-08-03 14:14:56.915 class: org.identityconnectors.genericunix.GenericUnixConfiguration method: isForceDeleteUserHome level: OK Message: ENTER isForceDeleteUserHome()

    Thread ID: 1 time: 2015-08-03 14:14:56.915 class: org.identityconnectors.genericunix.GenericUnixConfiguration method: isForceDeleteUserHome level: OK Message: RETURN isForceDeleteUserHome() returns: true

    Thread ID: 1 time: 2015-08-03 14:14:56.916 class: org.identityconnectors.genericunix.GenericUnixConfiguration method: getPrePasswdExpectExpression level: OK Message: ENTER getPrePasswdExpectExpression()

    Thread ID: 1 time: 2015-08-03 14:14:56.916 class: org.identityconnectors.genericunix.GenericUnixConfiguration method: getPrePasswdExpectExpression level: OK Message: RETURN getPrePasswdExpectExpression() returns: None

    Thread ID: 1 time: 2015-08-03 14:14:56.916 class: org.identityconnectors.genericunix.GenericUnixConfiguration method: isNIS level: OK Message: ENTER isNIS()

    Thread ID: 1 time: 2015-08-03 14:14:56.916 class: org.identityconnectors.genericunix.GenericUnixConfiguration method: isNIS level: OK Message: RETURN isNIS() returns: false

    Thread ID: 1 time: 2015-08-03 14:14:56.916 class: org.identityconnectors.genericunix.GenericUnixConfiguration method: getRbacRolePassword level: OK Message: ENTER getRbacRolePassword()

    Thread ID: 1 time: 2015-08-03 14:14:56.916 class: org.identityconnectors.genericunix.GenericUnixConfiguration method: getRbacRolePassword level: OK Message: RETURN getRbacRolePassword() returns: null

    Thread ID: 1 time: 2015-08-03 14:14:56.916 class: org.identityconnectors.genericunix.GenericUnixConfiguration method: getDefaultConnectorShell level: OK Message: ENTER getDefaultConnectorShell()

    Thread ID: 1 time: 2015-08-03 14:14:56.916 class: org.identityconnectors.genericunix.GenericUnixConfiguration method: getDefaultConnectorShell level: OK Message: RETURN getDefaultConnectorShell() returns: sh

    Thread ID: 1 time: 2015-08-03 14:14:56.916 class: org.identityconnectors.genericunix.GenericUnixConfiguration method: getMirrorFilesLocation level: OK Message: ENTER getMirrorFilesLocation()

    Thread ID: 1 time: 2015-08-03 14:14:56.916 class: org.identityconnectors.genericunix.GenericUnixConfiguration method: getMirrorFilesLocation level: OK Message: RETURN getMirrorFilesLocation() returns: / etc/connector_mirror_files

    Thread ID: 1 time: 2015-08-03 14:14:56.917 class: org.identityconnectors.genericunix.GenericUnixConfiguration method: getConnectorPrompt level: OK Message: ENTER getConnectorPrompt()

    Thread ID: 1 time: 2015-08-03 14:14:56.917 class: org.identityconnectors.genericunix.GenericUnixConfiguration method: getConnectorPrompt level: OK Message: RETURN getConnectorPrompt() returns: #@ #.

    Thread ID: 1 time: 2015-08-03 14:14:56.917 class: org.identityconnectors.genericunix.GenericUnixConfiguration method: getDefaultShell level: OK Message: ENTER getDefaultShell()

    Thread ID: 1 time: 2015-08-03 14:14:56.917 class: org.identityconnectors.genericunix.GenericUnixConfiguration method: getDefaultShell level: OK Message: RETURN getDefaultShell() returns: null

    Thread ID: 1 time: 2015-08-03 14:14:56.917 class: org.identityconnectors.genericunix.GenericUnixConfiguration method: getDefaultPriGroup level: OK Message: ENTER getDefaultPriGroup()

    Thread ID: 1 time: 2015-08-03 14:14:56.917 class: org.identityconnectors.genericunix.GenericUnixConfiguration method: getDefaultPriGroup level: OK Message: RETURN getDefaultPriGroup() returns: null

    Thread ID: 1 time: 2015-08-03 14:14:56.917 class: org.identityconnectors.genericunix.GenericUnixConfiguration method: getWhitelistRegex level: OK Message: ENTER getWhitelistRegex()

    Thread ID: 1 time: 2015-08-03 14:14:56.917 class: org.identityconnectors.genericunix.GenericUnixConfiguration method: getWhitelistRegex level: OK Message: RETURN getWhitelistRegex() returns: [A-Za-z0-9_ / /] *.

    Thread ID: 1 time: 2015-08-03 14:14:56.917 class: org.identityconnectors.genericunix.GenericUnixConfiguration method: getNisBuildDirectory level: OK Message: ENTER getNisBuildDirectory()

    Thread ID: 1 time: 2015-08-03 14:14:56.917 class: org.identityconnectors.genericunix.GenericUnixConfiguration method: getNisBuildDirectory level: OK Message: RETURN getNisBuildDirectory() returns: / var/yp

    Thread ID: 1 time: 2015-08-03 14:14:56.918 class: org.identityconnectors.genericunix.GenericUnixConfiguration method: getCustomPropertyFileName level: OK Message: ENTER getCustomPropertyFileName()

    Thread ID: 1 time: 2015-08-03 14:14:56.918 class: org.identityconnectors.genericunix.GenericUnixConfiguration method: getCustomPropertyFileName level: OK Message: RETURN getCustomPropertyFileName() returns: null

    Thread ID: 1 time: 2015-08-03 14:14:56.918 class: oracle.iam.connectors.testutility.TestUtility method: doTest level: OK Message: using ConnectorKey [ConnectorKey (bundleName = org.identityconnectors.genericunix bundleVersion = 1.0.0 connectorName = org.identityconnectors.genericunix.GenericUnixConnector)]

    Thread ID: 1 time: 2015-08-03 14:14:56.918 class: oracle.iam.connectors.testutility.TestUtility method: doTest level: OK Message: using ConnectorInfo [org.identityconnectors.framework.impl.api.local.LocalConnectorInfoImpl@f3770c]

    Thread ID: 1 time: 2015-08-03 14:14:56.954 class: oracle.iam.connectors.testutility.TestUtility method: doTest level: Message INFO: configured connector

    Thread ID: 1 time: 2015-08-03 14:14:56.963 class: oracle.iam.connectors.testutility.TestUtility method: doTest level: Message INFO: Got the connector Instance, ready to test

    Thread ID: 1 time: 2015-08-03 14:14:56.964 class: org.identityconnectors.framework.impl.api.local.ConnectorPoolManager method: getPool2 level: Message INFO: create a new pool: ConnectorKey (bundleName = org.identityconnectors.genericunix bundleVersion = 1.0.0 connectorName = org.identityconnectors.genericunix.GenericUnixConnector)

    Thread ID: 1 time: 2015-08-03 14:14:56.967 class: oracle.iam.connectors.testutility.TestUtility method: doTest level: Message INFO: Running 'test' operation on connector

    Thread ID: 1 time: 2015-08-03 14:14:56.967 class: org.identityconnectors.framework.api.operations.TestApiOp method: level test: OK Message: enter: test().

    Thread ID: 1 time: 2015-08-03 14:14:56.967 class: org.identityconnectors.genericunix.GenericUnixConfiguration method: < init > level: OK Message: ENTER GenericUnixConfiguration()

    Thread ID: 1 time: 2015-08-03 14:14:56.967 class: org.identityconnectors.genericunix.GenericUnixConfiguration method: < init > level: Message OK: GenericUnixConfiguration() RETURN

    Thread ID: 1 time: 2015-08-03 14:14:56.967 class: org.identityconnectors.genericunix.GenericUnixConfiguration method: setHost level: OK Message: ENTRY setHost (host = 10.10.10.10)

    Thread ID: 1 time: 2015-08-03 14:14:56.967 class: org.identityconnectors.genericunix.GenericUnixConfiguration method: setHost level: Message OK: setHost (host = 10.10.10.10) RETURN

    Thread ID: 1 time: 2015-08-03 14:14:56.968 class: org.identityconnectors.genericunix.GenericUnixConfiguration method: setPort level: OK Message: ENTRY setPort (port = 22)

    Thread ID: 1 time: 2015-08-03 14:14:56.968 class: org.identityconnectors.genericunix.GenericUnixConfiguration method: setPort level: Message OK: setPort (port = 22) RETURN

    Thread ID: 1 time: 2015-08-03 14:14:56.968 class: org.identityconnectors.genericunix.GenericUnixConfiguration method: setLoginUser level: OK Message: ENTRY setLoginUser (loginUser = oimsysuser)

    Thread ID: 1 time: 2015-08-03 14:14:56.968 class: org.identityconnectors.genericunix.GenericUnixConfiguration method: setLoginUser level: Message OK: setLoginUser (loginUser = oimsysuser) RETURN

    Thread ID: 1 time: 2015-08-03 14:14:56.968 class: org.identityconnectors.genericunix.GenericUnixConfiguration method: setLoginUserpassword level: OK Message: ENTRY setLoginUserpassword (loginUserpassword=org.identityconnectors.common.security.GuardedString@ace304b)

    Thread ID: 1 time: 2015-08-03 14:14:56.968 class: org.identityconnectors.genericunix.GenericUnixConfiguration method: setLoginUserpassword level: Message OK: setLoginUserpassword (loginUserpassword=org.identityconnectors.common.security.GuardedString@ace304b) RETURN

    Thread ID: 1 time: 2015-08-03 14:14:56.968 class: org.identityconnectors.genericunix.GenericUnixConfiguration method: setLoginShellPrompt level: OK Message: ENTRY setLoginShellPrompt (loginShellPrompt = [$% > #])

    Thread ID: 1 time: 2015-08-03 14:14:56.969 class: org.identityconnectors.genericunix.GenericUnixConfiguration method: setLoginShellPrompt level: OK Message: RETURN setLoginShellPrompt (loginShellPrompt = [$% > #])

    Thread ID: 1 time: 2015-08-03 14:14:56.969 class: org.identityconnectors.genericunix.GenericUnixConfiguration method: setSudoAuthorization level: OK Message: ENTRY setSudoAuthorization (sudoAuthorization = false)

    Thread ID: 1 time: 2015-08-03 14:14:56.969 class: org.identityconnectors.genericunix.GenericUnixConfiguration method: setSudoAuthorization level: Message OK: setSudoAuthorization (sudoAuthorization = false) RETURN

    Thread ID: 1 time: 2015-08-03 14:14:56.969 class: org.identityconnectors.genericunix.GenericUnixConfiguration method: setConnectionType level: OK Message: ENTRY setConnectionType (connectionType = SSH)

    Thread ID: 1 time: 2015-08-03 14:14:56.969 class: org.identityconnectors.genericunix.GenericUnixConfiguration method: setConnectionType level: Message OK: setConnectionType(connectionType=SSH) RETURN

    Thread ID: 1 time: 2015-08-03 14:14:56.969 class: org.identityconnectors.genericunix.GenericUnixConfiguration method: setPrivateKey level: OK Message: ENTRY setPrivateKey (privateKey = null)

    Thread ID: 1 time: 2015-08-03 14:14:56.969 class: org.identityconnectors.genericunix.GenericUnixConfiguration method: setPrivateKey level: Message OK: setPrivateKey (privateKey = null) RETURN

    Thread ID: 1 time: 2015-08-03 14:14:56.969 class: org.identityconnectors.genericunix.GenericUnixConfiguration method: setPassphrase level: OK Message: ENTRY setPassphrase (passphrase = null)

    Thread ID: 1 time: 2015-08-03 14:14:56.969 class: org.identityconnectors.genericunix.GenericUnixConfiguration method: setPassphrase level: Message OK: setPassphrase (passphrase = null) RETURN

    Thread ID: 1 time: 2015-08-03 14:14:56.969 class: org.identityconnectors.genericunix.GenericUnixConfiguration method: setCommandTimeout level: OK Message: ENTRY setCommandTimeout (commandTimeout = 1000000000)

    Thread ID: 1 time: 2015-08-03 14:14:56.969 class: org.identityconnectors.genericunix.GenericUnixConfiguration method: setCommandTimeout level: Message OK: setCommandTimeout (commandTimeout = 1000000000) RETURN

    Thread ID: 1 time: 2015-08-03 14:14:56.970 class: org.identityconnectors.genericunix.GenericUnixConfiguration method: setPropertyFileName level: OK Message: ENTRY setPropertyFileName (propertyFileName = null)

    Thread ID: 1 time: 2015-08-03 14:14:56.970 class: org.identityconnectors.genericunix.GenericUnixConfiguration method: setPropertyFileName level: Message OK: setPropertyFileName (propertyFileName = null) RETURN

    Thread ID: 1 time: 2015-08-03 14:14:56.970 class: org.identityconnectors.genericunix.GenericUnixConfiguration method: setCustomPropertyFileName level: OK Message: ENTRY setCustomPropertyFileName (customPropertyFileName = null)

    Thread ID: 1 time: 2015-08-03 14:14:56.970 class: org.identityconnectors.genericunix.GenericUnixConfiguration method: setCustomPropertyFileName level: Message OK: setCustomPropertyFileName (customPropertyFileName = null) RETURN

    Thread ID: 1 time: 2015-08-03 14:14:56.970 class: org.identityconnectors.genericunix.GenericUnixConfiguration method: setSupportedLanguage level: OK Message: ENTRY setSupportedLanguage (supportedLanguage = Bourne)

    Thread ID: 1 time: 2015-08-03 14:14:56.970 class: org.identityconnectors.genericunix.GenericUnixConfiguration method: setSupportedLanguage level: Message OK: setSupportedLanguage(supportedLanguage=Bourne) RETURN

    Thread ID: 1 time: 2015-08-03 14:14:56.970 class: org.identityconnectors.genericunix.GenericUnixConfiguration method: setPasswordExpectExpressions level: OK Message: ENTRY setPasswordExpectExpressions (passwordExpectExpressions = new [\s](unix[\s])? password:, new [\s](unix[\s])? password([\s]again)? :))

    Thread ID: 1 time: 2015-08-03 14:14:56.970 class: org.identityconnectors.genericunix.GenericUnixConfiguration method: setPasswordExpectExpressions level: Message OK: setPasswordExpectExpressions (passwordExpectExpressions = new [\s](unix[\s])? password:, new [\s](unix[\s])? password([\s]again)? :)) RETURN

    Thread ID: 1 time: 2015-08-03 14:14:56.970 class: org.identityconnectors.genericunix.GenericUnixConfiguration method: setNIS level: OK Message: ENTRY setNIS (nis = false)

    Thread ID: 1 time: 2015-08-03 14:14:56.970 class: org.identityconnectors.genericunix.GenericUnixConfiguration method: setNIS level: Message OK: setNIS (nis = false) RETURN

    Thread ID: 1 time: 2015-08-03 14:14:56.970 class: org.identityconnectors.genericunix.GenericUnixConfiguration method: setUseMutex level: OK Message: ENTRY setUseMutex (useMutex = false)

    Thread ID: 1 time: 2015-08-03 14:14:56.971 class: org.identityconnectors.genericunix.GenericUnixConfiguration method: setUseMutex level: Message OK: setUseMutex (useMutex = false) RETURN

    Thread ID: 1 time: 2015-08-03 14:14:56.971 class: org.identityconnectors.genericunix.GenericUnixConfiguration method: setSyncToken level: OK Message: ENTRY setSyncToken (syncToken = None)

    Thread ID: 1 time: 2015-08-03 14:14:56.971 class: org.identityconnectors.genericunix.GenericUnixConfiguration method: setSyncToken level: Message OK: setSyncToken(syncToken=None) RETURN

    Thread ID: 1 time: 2015-08-03 14:14:56.971 class: org.identityconnectors.genericunix.GenericUnixConfiguration method: setMirrorFilesLocation level: OK Message: ENTRY setMirrorFilesLocation (mirrorFilesLocation = / etc/connector_mirror_files)

    Thread ID: 1 time: 2015-08-03 14:14:56.971 class: org.identityconnectors.genericunix.GenericUnixConfiguration method: setMirrorFilesLocation level: Message OK: setMirrorFilesLocation (mirrorFilesLocation = / etc/connector_mirror_files) RETURN

    Thread ID: 1 time: 2015-08-03 14:14:56.971 class: org.identityconnectors.genericunix.GenericUnixConfiguration method: setNisBuildDirectory level: OK Message: ENTRY setNisBuildDirectory (nisBuildDirectory = / var/yp)

    Thread ID: 1 time: 2015-08-03 14:14:56.971 class: org.identityconnectors.genericunix.GenericUnixConfiguration method: setNisBuildDirectory level: Message OK: setNisBuildDirectory (nisBuildDirectory = / var/yp) RETURN

    Thread ID: 1 time: 2015-08-03 14:14:56.971 class: org.identityconnectors.genericunix.GenericUnixConfiguration method: setNisPwdDir level: OK Message: ENTRY setNisPwdDir (nisPwdDir = / etc)

    Thread ID: 1 time: 2015-08-03 14:14:56.971 class: org.identityconnectors.genericunix.GenericUnixConfiguration method: setNisPwdDir level: Message OK: setNisPwdDir (nisPwdDir = / etc) BACK

    Thread ID: 1 time: 2015-08-03 14:14:56.971 class: org.identityconnectors.genericunix.GenericUnixConfiguration method: setForceDeleteUserHome level: OK Message: ENTRY setForceDeleteUserHome (forceDeleteUserHome = true)

    Thread ID: 1 time: 2015-08-03 14:14:56.971 class: org.identityconnectors.genericunix.GenericUnixConfiguration method: setForceDeleteUserHome level: Message OK: setForceDeleteUserHome (forceDeleteUserHome = true) RETURN

    Thread Id: 1 Time: 2015-08-03 14:14:56.972 Class: org.identityconnectors.genericunix.GenericUnixConfiguration Method: setConfigPropertiesOnScripts Level: OK Message: ENTRY setConfigPropertiesOnScripts(configPropertiesOnScripts=moveHomeDirContents,shadow,defaultHomeBaseDir,defaultPriGroup,defaultShell,nisPwdDir,nisBuildDirectory,removeHomeDirContents,forceDeleteUserHome,syncToken,mirrorFilesLocation,connectorPrompt)

    Thread Id: 1 Time: 2015-08-03 14:14:56.972 Class: org.identityconnectors.genericunix.GenericUnixConfiguration Method: setConfigPropertiesOnScripts Level: OK Message: RETURN setConfigPropertiesOnScripts(configPropertiesOnScripts=moveHomeDirContents,shadow,defaultHomeBaseDir,defaultPriGroup,defaultShell,nisPwdDir,nisBuildDirectory,removeHomeDirContents,forceDeleteUserHome,syncToken,mirrorFilesLocation,connectorPrompt)

    Thread ID: 1 time: 2015-08-03 14:14:56.972 class: org.identityconnectors.genericunix.GenericUnixConfiguration method: setConnectorPrompt level: OK Message: ENTRY setConnectorPrompt (connectorPrompt=#@#)

    Thread ID: 1 time: 2015-08-03 14:14:56.972 class: org.identityconnectors.genericunix.GenericUnixConfiguration method: setConnectorPrompt level: Message OK: setConnectorPrompt (connectorPrompt=#@#) RETURN

    Thread ID: 1 time: 2015-08-03 14:14:56.972 class: org.identityconnectors.genericunix.GenericUnixConfiguration method: setTelnetAuthenticationPrompts level: OK Message: ENTRY setTelnetAuthenticationPrompts (telnetAuthenticationPrompts = user name:, password :))

    Thread ID: 1 time: 2015-08-03 14:14:56.972 class: org.identityconnectors.genericunix.GenericUnixConfiguration method: setTelnetAuthenticationPrompts level: OK Message: RETURN setTelnetAuthenticationPrompts (telnetAuthenticationPrompts = user name:, password :))

    Thread ID: 1 time: 2015-08-03 14:14:56.972 class: org.identityconnectors.genericunix.GenericUnixConfiguration method: setRemoveHomeDirContents level: OK Message: ENTRY setRemoveHomeDirContents (removeHomeDirContents = true)

    Thread ID: 1 time: 2015-08-03 14:14:56.972 class: org.identityconnectors.genericunix.GenericUnixConfiguration method: setRemoveHomeDirContents level: Message OK: setRemoveHomeDirContents (removeHomeDirContents = true) RETURN

    Thread ID: 1 time: 2015-08-03 14:14:56.972 class: org.identityconnectors.genericunix.GenericUnixConfiguration method: setDefaultHomeBaseDir level: OK Message: ENTRY setDefaultHomeBaseDir (defaultHomeBaseDir = null)

    Thread ID: 1 time: 2015-08-03 14:14:56.972 class: org.identityconnectors.genericunix.GenericUnixConfiguration method: setDefaultHomeBaseDir level: Message OK: setDefaultHomeBaseDir (defaultHomeBaseDir = null) RETURN

    Thread ID: 1 time: 2015-08-03 14:14:56.972 class: org.identityconnectors.genericunix.GenericUnixConfiguration method: setDefaultPriGroup level: OK Message: ENTRY setDefaultPriGroup (defaultPriGroup = null)

    Thread ID: 1 time: 2015-08-03 14:14:56.973 class: org.identityconnectors.genericunix.GenericUnixConfiguration method: setDefaultPriGroup level: Message OK: setDefaultPriGroup (defaultPriGroup = null) RETURN

    Thread ID: 1 time: 2015-08-03 14:14:56.973 class: org.identityconnectors.genericunix.GenericUnixConfiguration method: setDefaultShell level: OK Message: ENTRY setDefaultShell (defaultShell = null)

    Thread ID: 1 time: 2015-08-03 14:14:56.973 class: org.identityconnectors.genericunix.GenericUnixConfiguration method: setDefaultShell level: Message OK: setDefaultShell (defaultShell = null) RETURN

    Thread ID: 1 time: 2015-08-03 14:14:56.973 class: org.identityconnectors.genericunix.GenericUnixConfiguration method: setShadow level: OK Message: ENTRY setShadow (shadow = false)

    Thread ID: 1 time: 2015-08-03 14:14:56.973 class: org.identityconnectors.genericunix.GenericUnixConfiguration method: setShadow level: Message OK: setShadow (shadow = false) RETURN

    Thread ID: 1 time: 2015-08-03 14:14:56.973 class: org.identityconnectors.genericunix.GenericUnixConfiguration method: setNisPasswdEncryptionAlgo level: OK Message: ENTER setNisPasswdEncryptionAlgo(nisPasswdEncryptionAlgo=DELESDE)

    Thread ID: 1 time: 2015-08-03 14:14:56.973 class: org.identityconnectors.genericunix.GenericUnixConfiguration method: setNisPasswdEncryptionAlgo level: Message OK: setNisPasswdEncryptionAlgo(nisPasswdEncryptionAlgo=DELESDE) RETURN

    Thread ID: 1 time: 2015-08-03 14:14:56.973 class: org.identityconnectors.genericunix.GenericUnixConfiguration method: setOsType level: OK Message: ENTRY setOsType (osType = null)

    Thread ID: 1 time: 2015-08-03 14:14:56.973 class: org.identityconnectors.genericunix.GenericUnixConfiguration method: setOsType level: Message OK: setOsType (osType = null) RETURN

    Thread ID: 1 time: 2015-08-03 14:14:56.973 class: org.identityconnectors.genericunix.GenericUnixConfiguration method: setRbacAuthorization level: OK Message: ENTRY setRbacAuthorization (rbacAuthorization = false)

    Thread ID: 1 time: 2015-08-03 14:14:56.973 class: org.identityconnectors.genericunix.GenericUnixConfiguration method: setRbacAuthorization level: Message OK: setRbacAuthorization (rbacAuthorization = false) RETURN

    Thread ID: 1 time: 2015-08-03 14:14:56.973 class: org.identityconnectors.genericunix.GenericUnixConfiguration method: setRbacRoleName level: OK Message: ENTRY setRbacRoleName (rbacRoleName = null)

    Thread ID: 1 time: 2015-08-03 14:14:56.974 class: org.identityconnectors.genericunix.GenericUnixConfiguration method: setRbacRoleName level: Message OK: setRbacRoleName (rbacRoleName = null) RETURN

    Thread ID: 1 time: 2015-08-03 14:14:56.974 class: org.identityconnectors.genericunix.GenericUnixConfiguration method: setRbacRolePassword level: OK Message: ENTRY setRbacRolePassword (rbacRolePassword = null)

    Thread ID: 1 time: 2015-08-03 14:14:56.974 class: org.identityconnectors.genericunix.GenericUnixConfiguration method: setRbacRolePassword level: Message OK: setRbacRolePassword (rbacRolePassword = null) RETURN

    Thread ID: 1 time: 2015-08-03 14:14:56.974 class: org.identityconnectors.genericunix.GenericUnixConfiguration method: setRbacRoleExpectExpressions level: OK Message: ENTER setRbacRoleExpectExpressions(rbacRoleExpectExpressions=password:,[$#])

    Thread ID: 1 time: 2015-08-03 14:14:56.974 class: org.identityconnectors.genericunix.GenericUnixConfiguration method: setRbacRoleExpectExpressions level: Message OK: setRbacRoleExpectExpressions(rbacRoleExpectExpressions=password:,[$#]) RETURN

    Thread ID: 1 time: 2015-08-03 14:14:56.974 class: org.identityconnectors.genericunix.GenericUnixConfiguration method: setTargetDateFormat level: OK Message: ENTRY setTargetDateFormat (targetDateFormat = MM/dd/yy)

    Thread ID: 1 time: 2015-08-03 14:14:56.974 class: org.identityconnectors.genericunix.GenericUnixConfiguration method: setTargetDateFormat level: Message OK: setTargetDateFormat(targetDateFormat=MM/dd/yy) RETURN

    Thread ID: 1 time: 2015-08-03 14:14:56.974 class: org.identityconnectors.genericunix.GenericUnixConfiguration method: setSudoPasswdExpectExpression level: OK Message: ENTRY setSudoPasswdExpectExpression (sudoPasswdExpectExpression = password :)

    Thread ID: 1 time: 2015-08-03 14:14:56.974 class: org.identityconnectors.genericunix.GenericUnixConfiguration method: setSudoPasswdExpectExpression level: Message OK: setSudoPasswdExpectExpression (sudoPasswdExpectExpression = password :) RETURN

    Thread ID: 1 time: 2015-08-03 14:14:56.974 class: org.identityconnectors.genericunix.GenericUnixConfiguration method: setWhitelistRegex level: OK Message: ENTER setWhitelistRegex(whitelistRegex=[A-Za-z0-9_//]*)

    Thread ID: 1 time: 2015-08-03 14:14:56.974 class: org.identityconnectors.genericunix.GenericUnixConfiguration method: setWhitelistRegex level: Message OK: setWhitelistRegex(whitelistRegex=[A-Za-z0-9_//]*) RETURN

    Thread ID: 1 time: 2015-08-03 14:14:56.975 class: org.identityconnectors.genericunix.GenericUnixConfiguration method: setPrePasswdExpectExpression level: OK Message: ENTRY setPrePasswdExpectExpression (prePasswdExpectExpression = None)

    Thread ID: 1 time: 2015-08-03 14:14:56.975 class: org.identityconnectors.genericunix.GenericUnixConfiguration method: setPrePasswdExpectExpression level: Message OK: setPrePasswdExpectExpression(prePasswdExpectExpression=None) RETURN

    Thread ID: 1 time: 2015-08-03 14:14:56.975 class: org.identityconnectors.genericunix.GenericUnixConfiguration method: setMoveHomeDirContents level: OK Message: ENTRY setMoveHomeDirContents (moveHomeDirContents = true)

    Thread ID: 1 time: 2015-08-03 14:14:56.975 class: org.identityconnectors.genericunix.GenericUnixConfiguration method: setMoveHomeDirContents level: Message OK: setMoveHomeDirContents (moveHomeDirContents = true) RETURN

    Thread ID: 1 time: 2015-08-03 14:14:56.975 class: org.identityconnectors.genericunix.GenericUnixConfiguration method: setDefaultConnectorShell level: OK Message: ENTRY setDefaultConnectorShell (defaultConnectorShell = sh)

    Thread ID: 1 time: 2015-08-03 14:14:56.975 class: org.identityconnectors.genericunix.GenericUnixConfiguration method: setDefaultConnectorShell level: Message OK: setDefaultConnectorShell (defaultConnectorShell = sh) RETURN

    Thread ID: 1 time: 2015-08-03 14:14:56.976 class: org.identityconnectors.genericunix.GenericUnixConnector method: < clinit > level: OK Message: ENTRY < clinit >)

    Thread ID: 1 time: 2015-08-03 14:14:56.976 class: org.identityconnectors.genericunix.GenericUnixConnector method: < clinit > level: OK Message: RETURN < clinit >)

    Thread ID: 1 time: 2015-08-03 14:14:56.976 class: org.identityconnectors.genericunix.GenericUnixConnector method: init level: OK Message: init (cfg=org.identityconnectors.genericunix.GenericUnixConfiguration@fa1b2d) ENTRY

    Thread ID: 1 time: 2015-08-03 14:14:56.976 class: org.identityconnectors.genericunix.GenericUnixConnector method: init level: Message INFO: START

    Thread ID: 1 time: 2015-08-03 14:14:56.976 class: org.identityconnectors.genericunix.GenericUnixConfiguration method: validate the level: OK Message: ENTRY validate()

    Thread ID: 1 time: 2015-08-03 14:14:56.977 class: org.identityconnectors.genericunix.GenericUnixConfiguration method: validate the level: Message INFO: START

    Thread ID: 1 time: 2015-08-03 14:14:56.977 class: org.identityconnectors.genericunix.GenericUnixConfiguration method: getHost level: OK Message: ENTRY getHost()

    Thread ID: 1 time: 2015-08-03 14:14:56.977 class: org.identityconnectors.genericunix.GenericUnixConfiguration method: getHost level: OK Message: RETURN getHost() returns: 10.10.10.10

    Thread ID: 1 time: 2015-08-03 14:14:56.977 class: org.identityconnectors.genericunix.GenericUnixConfiguration method: getLoginUser level: OK Message: ENTER getLoginUser()

    Thread ID: 1 time: 2015-08-03 14:14:56.977 class: org.identityconnectors.genericunix.GenericUnixConfiguration method: getLoginUser level: OK Message: RETURN getLoginUser() returns: oimsysuser

    Thread ID: 1 time: 2015-08-03 14:14:56.977 class: org.identityconnectors.genericunix.GenericUnixConfiguration method: getLoginShellPrompt level: OK Message: ENTER getLoginShellPrompt()

    Thread ID: 1 time: 2015-08-03 14:14:56.977 class: org.identityconnectors.genericunix.GenericUnixConfiguration method: getLoginShellPrompt level: OK Message: RETURN getLoginShellPrompt() returns: [$% > #]

    Thread ID: 1 time: 2015-08-03 14:14:56.977 class: org.identityconnectors.genericunix.GenericUnixConfiguration method: getConnectorPrompt level: OK Message: ENTER getConnectorPrompt()

    Thread ID: 1 time: 2015-08-03 14:14:56.977 class: org.identityconnectors.genericunix.GenericUnixConfiguration method: getConnectorPrompt level: OK Message: RETURN getConnectorPrompt() returns: #@ #.

    Thread ID: 1 time: 2015-08-03 14:14:56.977 class: org.identityconnectors.genericunix.GenericUnixConfiguration method: getCommandTimeout level: OK Message: ENTER getCommandTimeout()

    Thread ID: 1 time: 2015-08-03 14:14:56.977 class: org.identityconnectors.genericunix.GenericUnixConfiguration method: getCommandTimeout level: OK Message: RETURN getCommandTimeout() returns: 1000000000

    Thread ID: 1 time: 2015-08-03 14:14:56.977 class: org.identityconnectors.genericunix.GenericUnixConfiguration method: getSupportedLanguage level: OK Message: ENTER getSupportedLanguage()

    Thread ID: 1 time: 2015-08-03 14:14:56.977 class: org.identityconnectors.genericunix.GenericUnixConfiguration method: getSupportedLanguage level: OK Message: RETURN getSupportedLanguage() returns: Bourne

    Thread ID: 1 time: 2015-08-03 14:14:56.977 class: org.identityconnectors.genericunix.GenericUnixConfiguration method: getConnectionType level: OK Message: ENTER getConnectionType()

    Thread ID: 1 time: 2015-08-03 14:14:56.978 class: org.identityconnectors.genericunix.GenericUnixConfiguration method: getConnectionType level: OK Message: RETURN getConnectionType() returns: SSH

    Thread ID: 1 time: 2015-08-03 14:14:56.978 class: org.identityconnectors.genericunix.GenericUnixConfiguration method: getConnectionType level: OK Message: ENTER getConnectionType()

    Thread ID: 1 time: 2015-08-03 14:14:56.978 class: org.identityconnectors.genericunix.GenericUnixConfiguration method: getConnectionType level: OK Message: RETURN getConnectionType() returns: SSH

    Thread ID: 1 time: 2015-08-03 14:14:56.978 class: org.identityconnectors.genericunix.GenericUnixConfiguration method: getConnectionType level: OK Message: ENTER getConnectionType()

    Thread ID: 1 time: 2015-08-03 14:14:56.978 class: org.identityconnectors.genericunix.GenericUnixConfiguration method: getConnectionType level: OK Message: RETURN getConnectionType() returns: SSH

    Thread ID: 1 time: 2015-08-03 14:14:56.978 class: org.identityconnectors.genericunix.GenericUnixConfiguration method: getConnectionType level: OK Message: ENTER getConnectionType()

    Thread ID: 1 time: 2015-08-03 14:14:56.978 class: org.identityconnectors.genericunix.GenericUnixConfiguration method: getConnectionType level: OK Message: RETURN getConnectionType() returns: SSH

    Thread ID: 1 time: 2015-08-03 14:14:56.978 class: org.identityconnectors.genericunix.GenericUnixConfiguration method: getLoginUserpassword level: OK Message: ENTER getLoginUserpassword()

    Thread ID: 1 time: 2015-08-03 14:14:56.978 class: org.identityconnectors.genericunix.GenericUnixConfiguration method: getLoginUserpassword level: OK Message: RETURN getLoginUserpassword() returns: org.identityconnectors.common.security.GuardedString@ace304b

    Thread ID: 1 time: 2015-08-03 14:14:56.978 class: org.identityconnectors.genericunix.GenericUnixConfiguration method: getConnectionType level: OK Message: ENTER getConnectionType()

    Thread ID: 1 time: 2015-08-03 14:14:56.978 class: org.identityconnectors.genericunix.GenericUnixConfiguration method: getConnectionType level: OK Message: RETURN getConnectionType() returns: SSH

    Thread ID: 1 time: 2015-08-03 14:14:56.978 class: org.identityconnectors.genericunix.GenericUnixConfiguration method: getPort level: OK Message: ENTRY getPort()

    Thread ID: 1 time: 2015-08-03 14:14:56.978 class: org.identityconnectors.genericunix.GenericUnixConfiguration method: getPort level: OK Message: RETURN getPort() returns: 22

    Thread ID: 1 time: 2015-08-03 14:14:56.978 class: org.identityconnectors.genericunix.GenericUnixConfiguration method: getConnectionType level: OK Message: ENTER getConnectionType()

    Thread ID: 1 time: 2015-08-03 14:14:56.978 class: org.identityconnectors.genericunix.GenericUnixConfiguration method: getConnectionType level: OK Message: RETURN getConnectionType() returns: SSH

    Thread ID: 1 time: 2015-08-03 14:14:56.979 class: org.identityconnectors.genericunix.GenericUnixConfiguration method: getPasswordExpectExpressions level: OK Message: ENTER getPasswordExpectExpressions()

    Thread ID: 1 time: 2015-08-03 14:14:56.979 class: org.identityconnectors.genericunix.GenericUnixConfiguration method: getPasswordExpectExpressions level: OK Message: RETURN getPasswordExpectExpressions() returns: new [\s](unix[\s])? password:, new [\s](unix[\s])? password([\s]again)? :

    Thread ID: 1 time: 2015-08-03 14:14:56.979 class: org.identityconnectors.genericunix.GenericUnixConfiguration method: getPasswordExpectExpressions level: OK Message: ENTER getPasswordExpectExpressions()

    Thread ID: 1 time: 2015-08-03 14:14:56.979 class: org.identityconnectors.genericunix.GenericUnixConfiguration method: getPasswordExpectExpressions level: OK Message: RETURN getPasswordExpectExpressions() returns: new [\s](unix[\s])? password:, new [\s](unix[\s])? password([\s]again)? :

    Thread ID: 1 time: 2015-08-03 14:14:56.979 class: org.identityconnectors.genericunix.GenericUnixConfiguration method: getPropertyFileName level: OK Message: ENTER getPropertyFileName()

    Thread ID: 1 time: 2015-08-03 14:14:56.979 class: org.identityconnectors.genericunix.GenericUnixConfiguration method: getPropertyFileName level: OK Message: RETURN getPropertyFileName() returns: null

    Thread ID: 1 time: 2015-08-03 14:14:56.979 class: org.identityconnectors.genericunix.GenericUnixConfiguration method: validate the level: WARNING Message: propertyFileName is empty in the resource.

    The connector will attempt to determine the property file name based on the type of target operating system

    Thread ID: 1 time: 2015-08-03 14:14:56.979 class: org.identityconnectors.genericunix.GenericUnixConfiguration method: getCustomPropertyFileName level: OK Message: ENTER getCustomPropertyFileName()

    Thread ID: 1 time: 2015-08-03 14:14:56.979 class: org.identityconnectors.genericunix.GenericUnixConfiguration method: getCustomPropertyFileName level: OK Message: RETURN getCustomPropertyFileName() returns: null

    Thread ID: 1 time: 2015-08-03 14:14:56.979 class: org.identityconnectors.genericunix.GenericUnixConfiguration method: isSudoAuthorization level: OK Message: ENTER isSudoAuthorization()

    Thread ID: 1 time: 2015-08-03 14:14:56.979 class: org.identityconnectors.genericunix.GenericUnixConfiguration method: isSudoAuthorization level: OK Message: RETURN isSudoAuthorization() returns: false

    Thread ID: 1 time: 2015-08-03 14:14:56.979 class: org.identityconnectors.genericunix.GenericUnixConfiguration method: isRbacAuthorization level: OK Message: ENTER isRbacAuthorization()

    Thread ID: 1 time: 2015-08-03 14:14:56.979 class: org.identityconnectors.genericunix.GenericUnixConfiguration method: isRbacAuthorization level: OK Message: RETURN isRbacAuthorization() returns: false

    Thread ID: 1 time: 2015-08-03 14:14:56.979 class: org.identityconnectors.genericunix.GenericUnixConfiguration method: validate the level: Message INFO: END

    Thread ID: 1 time: 2015-08-03 14:14:56.980 class: org.identityconnectors.genericunix.GenericUnixConfiguration method: validate the level: OK Message: RETURN validate()

    Thread ID: 1 time: 2015-08-03 14:14:56.980 class: org.identityconnectors.genericunix.GenericUnixConnector method: init level: Message INFO: END

    Thread ID: 1 time: 2015-08-03 14:14:56.980 class: org.identityconnectors.genericunix.GenericUnixConnector method: init level: Message OK: init (cfg=org.identityconnectors.genericunix.GenericUnixConfiguration@fa1b2d) RETURN

    Thread ID: 1 time: 2015-08-03 14:14:56.980 class: org.identityconnectors.genericunix.GenericUnixConnector method: checkAlive level: OK Message: ENTER checkAlive()

    Thread ID: 1 time: 2015-08-03 14:14:56.980 class: org.identityconnectors.genericunix.GenericUnixConnector method: checkAlive level: Message of INFO: checkAlive:BEGIN

    Thread ID: 1 time: 2015-08-03 14:14:56.980 class: org.identityconnectors.genericunix.GenericUnixConnector method: getConnection level: OK Message: ENTRY getConnection()

    Thread ID: 1 time: 2015-08-03 14:14:56.980 class: org.identityconnectors.genericunix.GenericUnixConnector method: getConnection level: Message INFO: START

    Thread ID: 1 time: 2015-08-03 14:14:56.980 class: org.identityconnectors.genericunix.GenericUnixConnector method: getConnection level: Message INFO: creating a connection because UnixConnection is zero

    Thread ID: 1 time: 2015-08-03 14:14:56.982 class: org.identityconnectors.genericunix.GenericUnixConnection method: < clinit > level: OK Message: ENTRY < clinit >)

    Thread ID: 1 time: 2015-08-03 14:14:56.982 class: org.identityconnectors.genericunix.GenericUnixConnection method: < clinit > level: OK Message: RETURN < clinit >)

    Thread ID: 1 time: 2015-08-03 14:14:56.982 class: org.identityconnectors.genericunix.GenericUnixConnection method: < init > level: OK Message: ENTRY GenericUnixConnection (configProperties=org.identityconnectors.genericunix.GenericUnixConfiguration@fa1b2d)

    Thread ID: 1 time: 2015-08-03 14:14:56.982 class: org.identityconnectors.genericunix.GenericUnixConnection method: connectResource level: OK Message: ENTER connectResource()

    Thread ID: 1 time: 2015-08-03 14:14:56.982 class: org.identityconnectors.genericunix.GenericUnixConnection method: connectResource level: Message INFO: START

    Thread ID: 1 time: 2015-08-03 14:14:56.982 class: org.identityconnectors.genericunix.GenericUnixConfiguration method: getConnectionType level: OK Message: ENTER getConnectionType()

    Thread ID: 1 time: 2015-08-03 14:14:56.983 class: org.identityconnectors.genericunix.GenericUnixConfiguration method: getConnectionType level: OK Message: RETURN getConnectionType() returns: SSH

    Thread ID: 1 time: 2015-08-03 14:14:56.983 class: org.identityconnectors.genericunix.GenericUnixConnection method: createSSHConnection level: OK Message: ENTER createSSHConnection()

    Thread ID: 1 time: 2015-08-03 14:14:56.983 class: org.identityconnectors.genericunix.GenericUnixConnection method: createSSHConnection level: Message INFO: START

    Thread ID: 1 time: 2015-08-03 14:14:56.986 class: org.identityconnectors.genericunix.GenericUnixConfiguration method: getLoginUser level: OK Message: ENTER getLoginUser()

    Thread ID: 1 time: 2015-08-03 14:14:56.986 class: org.identityconnectors.genericunix.GenericUnixConfiguration method: getLoginUser level: OK Message: RETURN getLoginUser() returns: oimsysuser

    Thread ID: 1 time: 2015-08-03 14:14:56.986 class: org.identityconnectors.genericunix.GenericUnixConfiguration method: getHost level: OK Message: ENTRY getHost()

    Thread ID: 1 time: 2015-08-03 14:14:56.986 class: org.identityconnectors.genericunix.GenericUnixConfiguration method: getHost level: OK Message: RETURN getHost() returns: 10.10.10.10

    Thread ID: 1 time: 2015-08-03 14:14:56.986 class: org.identityconnectors.genericunix.GenericUnixConfiguration method: getPort level: OK Message: ENTRY getPort()

    Thread ID: 1 time: 2015-08-03 14:14:56.986 class: org.identityconnectors.genericunix.GenericUnixConfiguration method: getPort level: OK Message: RETURN getPort() returns: 22

    Thread ID: 1 time: 2015-08-03 14:14:56.992 class: org.identityconnectors.genericunix.GenericUnixConfiguration method: getLoginUserpassword level: OK Message: ENTER getLoginUserpassword()

    Thread ID: 1 time: 2015-08-03 14:14:56.992 class: org.identityconnectors.genericunix.GenericUnixConfiguration method: getLoginUserpassword level: OK Message: RETURN getLoginUserpassword() returns: org.identityconnectors.common.security.GuardedString@ace304b

    Thread ID: 1 time: 2015-08-03 14:14:56.993 class: org.identityconnectors.genericunix.GenericUnixConnection method: $100 access level: OK Message: ENTRY access$ 100 (x0=org.identityconnectors.genericunix.GenericUnixConnection@10699ea)

    Thread ID: 1 time: 2015-08-03 14:14:56.993 class: org.identityconnectors.genericunix.GenericUnixConnection method: $100 access level: OK Message: BACK access$ 100 (x0=org.identityconnectors.genericunix.GenericUnixConnection@10699ea) returns: com.jcraft.jsch.Session@62fb35

    Thread ID: 1 time: 2015-08-03 14:14:56.993 class: org.identityconnectors.genericunix.GenericUnixConnection method: $100 access level: OK Message: ENTRY access$ 100 (x0=org.identityconnectors.genericunix.GenericUnixConnection@10699ea)

    Thread ID: 1 time: 2015-08-03 14:14:56.993 class: org.identityconnectors.genericunix.GenericUnixConnection method: $100 access level: OK Message: BACK access$ 100 (x0=org.identityconnectors.genericunix.GenericUnixConnection@10699ea) returns: com.jcraft.jsch.Session@62fb35

    Thread ID: 1 time: 2015-08-03 14:14:56.993 class: org.identityconnectors.genericunix.GenericUnixConnection method: $200 access level: OK Message: ENTRY access$ 200 (x0=org.identityconnectors.genericunix.GenericUnixConnection@10699ea,x1=SSH)

    Thread ID: 1 time: 2015-08-03 14:14:56.993 class: org.identityconnectors.genericunix.GenericUnixConnection method: getSSHConfig level: OK Message: ENTRY getSSHConfig (connectionType = SSH)

    Thread ID: 1 time: 2015-08-03 14:14:56.993 class: org.identityconnectors.genericunix.GenericUnixConnection method: getSSHConfig level: OK Message: RETURN getSSHConfig (connectionType = SSH) returns: {StrictHostKeyChecking = no, PreferredAuthentications = keyboard-interactive, password}

    Thread ID: 1 time: 2015-08-03 14:14:56.993 class: org.identityconnectors.genericunix.GenericUnixConnection method: $200 access level: OK Message: BACK access$ 200 (x0=org.identityconnectors.genericunix.GenericUnixConnection@10699ea,x1=SSH) returns: {StrictHostKeyChecking = no, PreferredAuthentications = keyboard-interactive, password}

    Thread ID: 1 time: 2015-08-03 14:14:56.993 class: org.identityconnectors.genericunix.GenericUnixConnection method: $100 access level: OK Message: ENTRY access$ 100 (x0=org.identityconnectors.genericunix.GenericUnixConnection@10699ea)

    Thread ID: 1 time: 2015-08-03 14:14:56.993 class: org.identityconnectors.genericunix.GenericUnixConnection method: $100 access level: OK Message: BACK access$ 100 (x0=org.identityconnectors.genericunix.GenericUnixConnection@10699ea) returns: com.jcraft.jsch.Session@62fb35

    Thread ID: 1 time: 2015-08-03 14:14:56.993 class: org.identityconnectors.genericunix.GenericUnixConnection method: $100 access level: OK Message: ENTRY access$ 100 (x0=org.identityconnectors.genericunix.GenericUnixConnection@10699ea)

    Thread ID: 1 time: 2015-08-03 14:14:56.993 class: org.identityconnectors.genericunix.GenericUnixConnection method: $100 access level: OK Message: BACK access$ 100 (x0=org.identityconnectors.genericunix.GenericUnixConnection@10699ea) returns: com.jcraft.jsch.Session@62fb35

    Thread ID: 1 time: 2015-08-03 14:14:57.386 class: org.identityconnectors.genericunix.GenericUnixConnection method: $100 access level: OK Message: ENTRY access$ 100 (x0=org.identityconnectors.genericunix.GenericUnixConnection@10699ea)

    Thread ID: 1 time: 2015-08-03 14:14:57.386 class: org.identityconnectors.genericunix.GenericUnixConnection method: $100 access level: OK Message: BACK access$ 100 (x0=org.identityconnectors.genericunix.GenericUnixConnection@10699ea) returns: com.jcraft.jsch.Session@62fb35

    Thread ID: 1 time: 2015-08-03 14:14:57.386 class: org.identityconnectors.genericunix.GenericUnixConnector method: have level: OK Message: ENTRY dispose()

    Thread ID: 1 time: 2015-08-03 14:14:57.386 class: org.identityconnectors.genericunix.GenericUnixConnector method: have level: Message INFO: START

    Thread ID: 1 time: 2015-08-03 14:14:57.386 class: org.identityconnectors.genericunix.GenericUnixConnector method: have level: Message INFO: END

    Thread ID: 1 time: 2015-08-03 14:14:57.386 class: org.identityconnectors.genericunix.GenericUnixConnector method: have level: OK Message: dispose() RETURN

    Thread ID: 1 time: 2015-08-03 14:14:57.386 class: org.identityconnectors.framework.api.operations.TestApiOp method: level test: OK Message: Exception:

    org.identityconnectors.framework.common.exceptions.ConnectorException: com.jcraft.jsch.JSchException: authentication failure

    at org.identityconnectors.framework.common.exceptions.ConnectorException.wrap(ConnectorException.java:101)

    to org.identityconnectors.genericunix.GenericUnixConnection$ 3.access(GenericUnixConnection.java:340)

    at org.identityconnectors.common.security.GuardedString.access(GuardedString.java:105)

    at org.identityconnectors.genericunix.GenericUnixConnection.createSSHConnection(GenericUnixConnection.java:328)

    at org.identityconnectors.genericunix.GenericUnixConnection.connectResource(GenericUnixConnection.java:87)

    to org.identityconnectors.genericunix.GenericUnixConnection. < init > (GenericUnixConnection.java:74)

    at org.identityconnectors.genericunix.GenericUnixConnector.getConnection(GenericUnixConnector.java:138)

    at org.identityconnectors.genericunix.GenericUnixConnector.checkAlive(GenericUnixConnector.java:118)

    to org.identityconnectors.framework.impl.api.local.ConnectorPoolManager$ ConnectorPoolHandler.testObject (ConnectorPoolManager.java:105)

    to org.identityconnectors.framework.impl.api.local.ConnectorPoolManager$ ConnectorPoolHandler.testObject (ConnectorPoolManager.java:74)

    at org.identityconnectors.framework.impl.api.local.ObjectPool.borrowObject(ObjectPool.java:229)

    at org.identityconnectors.framework.impl.api.local.operations.ConnectorAPIOperationRunnerProxy.invoke(ConnectorAPIOperationRunnerProxy.java:83)

    to com.sun.proxy. $Proxy4.test (unknown Source)

    at sun.reflect.NativeMethodAccessorImpl.invoke0 (Native Method)

    at sun.reflect.NativeMethodAccessorImpl.invoke (unknown Source)

    at sun.reflect.DelegatingMethodAccessorImpl.invoke (unknown Source)

    at java.lang.reflect.Method.invoke (unknown Source)

    at org.identityconnectors.framework.impl.api.local.operations.ThreadClassLoaderManagerProxy.invoke(ThreadClassLoaderManagerProxy.java:107)

    to com.sun.proxy. $Proxy4.test (unknown Source)

    at sun.reflect.NativeMethodAccessorImpl.invoke0 (Native Method)

    at sun.reflect.NativeMethodAccessorImpl.invoke (unknown Source)

    at sun.reflect.DelegatingMethodAccessorImpl.invoke (unknown Source)

    at java.lang.reflect.Method.invoke (unknown Source)

    at org.identityconnectors.framework.impl.api.DelegatingTimeoutProxy.invoke(DelegatingTimeoutProxy.java:107)

    to com.sun.proxy. $Proxy4.test (unknown Source)

    at sun.reflect.NativeMethodAccessorImpl.invoke0 (Native Method)

    at sun.reflect.NativeMethodAccessorImpl.invoke (unknown Source)

    at sun.reflect.DelegatingMethodAccessorImpl.invoke (unknown Source)

    at java.lang.reflect.Method.invoke (unknown Source)

    at org.identityconnectors.framework.impl.api.LoggingProxy.invoke(LoggingProxy.java:76)

    to com.sun.proxy. $Proxy4.test (unknown Source)

    at org.identityconnectors.framework.impl.api.AbstractConnectorFacade.test(AbstractConnectorFacade.java:235)

    at oracle.iam.connectors.testutility.TestUtility.doTest(TestUtility.java:91)

    at oracle.iam.connectors.testutility.Main.main(Main.java:50)

    Caused by: com.jcraft.jsch.JSchException: authentication failure

    at com.jcraft.jsch.Session.connect(Session.java:482)

    at com.jcraft.jsch.Session.connect(Session.java:160)

    to org.identityconnectors.genericunix.GenericUnixConnection$ 3.access(GenericUnixConnection.java:336)

    ... 32 more

    Thank you

    ConnectorException: com.jcraft.jsch.JSchException: Auth fail

    Just an approximation of education:ssh/id_dsa your "Identity Server Keys" is you are remote to a UNIX system.

Maybe you are looking for

  • Additional storage for iTunes movies

    I have a 32 GB IPad Air and want to store a few movements of ITunes so I can watch on a few flights. I won't have enough space so I need a USB any. Can I store movies on that and I'll be able to recover the memory stick to look at? Thanks in advance.

  • Replacing the screen for Satellite Pro L10

    The screen is cracked badly on my Satellite Pro L10. About how much can I expect to pay for a replacement within the United Kingdom. Is this something that I can wait to replace me with a screwdiver and some care? How much would a complete hull and t

  • Satellite 1800-814-new 80 GB HDD works fine!

    For general information: I recently installed a Western Digital Scorpio 80 GB at 5400 RPM 2 MB Cache 2.5 "HDD 12MS and it works very well. The old 20 GB drive is now in a case/enclosure and works like a disk external DRIVE for my old Multimedia 6500

  • HP Pavilion Notebook - 15_p151: Wi - Fi adapter, not recognized in Device Manager

    Earlier, the laptop was to have very well internet, but after installing a new driver for the Realtek RTL8188EE b/g/n, the adapter has stopped working. Currently, the Device Manager even if hidden devices are displayed in the wi - fi adapter is not d

  • Impossible to recognize the second disk hard when it is connected to the motherboard.

    OK via a USB adapter... W - XP pro. SATA drives, They do not work at the same time... Same problem with the W - 7 computer... Can I have 2 hard drives that do not recognize the motherboards. ??