Record selector dont work for specific record selection

Hi,
   I have a issue with the record selector in a spotlight.
I want to select specific record, but when I select the check the record don't go in the selected record tab!
the files dataservice.json and endecaBrowserService.json are correctly configure I think. I did compare with the Discover app. but I don't see want would be the issue! not that the dynamic record selection work correctly
endecaBrowserService.json
    "host": "W177",
    "port": "15101",
    "recSpecProp": "Product_SKU",
    "recAggregationKey": "Endeca_Rollup_Id",
    "recFilter": "",
    "recImgUrlProp" : "URL_Thumbnail1",
    "recDisplayProps": [ "Brand","Category_EN","Product_SKU"],
    "textSearchKey": "interface_EN",
    "textSearchMatchMode" : "ALLPARTIAL"
dataservice.json
    "jcr:primaryType": "endeca:unstructured",
    "host": "W177",
    "port": "15101",
    "recordSpecName": "Product_SKU",
    "aggregationKey": "Endeca_Rollup_Id",
    "recordFilter": "",
    "wildcardSearchEnabled": false,
    "recordNameField": "product_name_en",
    "fields": {"Brand" : "", "Category_EN":"","Product_SKU":""}
any Idea
thanks

Hi TimK,
      actualy I dont have space in the record spec, but it look like this 8-474F9138-409-2. I assume that '-' wore bad character like your space.
when I transfore the record spec to 8_474F9138_409_2. the record selector work perfectly
thanks TimK for leading me to the solution
good day

Similar Messages

  • Workflow rules doesn't work for existing record!!?!?!?

    Hi all,
    I've created one workflow rule to update value from one filed to another. Here is my expression:
    [<QuickSearch1>] <> [<plStatus_ITAG>]
    and my action is
    field name = "*Status" (QuickSearch1)
    Value = <plStatus_ITAG>
    and I tick on the Overwrite the existing value
    This is work for new record, but for the existing one the field value doesn't chnage. Any suggestion??
    Thanks
    Note

    The syntax should be: PRE('< QuickSearch1>') <> [<QuickSearch1>] for the condition.

  • Computation only works for FIRST record in detail table

    Hi,
    I am having a weird problem. I have a master/detail form with page computations that work only for the very first record inserted into the detail table. If i try to enter a second or a third record the fields DO NOT get updated with the return values.
    This is driving me nuts and i am on a deadline with this project. HELP!!!!!
    Here is the code for all the computations below. Interestingly enough, only the name computation works for every new detail record. The others work only for the first.
    -- Calulate Social Security PL/SQL Function
    DECLARE
    p_is16to62ssrate NUMBER(6,2);
    p_u16o62ssrate NUMBER(6,2);
    p_dob DATE;
    p_base_date DATE := SYSDATE;
    p_age NUMBER(3);
    p_totalss NUMBER(9,2);
    BEGIN
    SELECT is16to62ssrate, u16o62ssrate
    INTO p_is16to62ssrate, p_u16o62ssrate
    FROM SSC3_RATES
    WHERE ratescheduleid = 1;
    SELECT dob
    INTO p_dob
    FROM SSC3_EMPLOYEES
    WHERE ssno = :P25_SSNO;
    p_age := TRUNC(MONTHS_BETWEEN(p_base_date,p_dob)/12);
    IF (p_age >= 16) OR (p_age <=62) THEN
    p_totalss := (:P25_TOTALWAGES * (p_is16to62ssrate/100));
    ELSIF (p_age < 16) OR (p_age > 62) THEN
    p_totalss := (:P25_TOTALWAGES * (p_u16o62ssrate/100));
    ELSE
    p_totalss := 0.00;
    END IF;
    RETURN p_totalss;
    END;
    -- Calculate Levy PL/SQL Function
    DECLARE
    -- declare local variables to hold rates from rates table
    p_hsdlarate NUMBER(6,2);
    p_hsdlbrate NUMBER(6,2);
    p_hsdlcrate NUMBER(6,2);
    p_hsdldrate NUMBER(6,2);
    p_hsdlaminearnings NUMBER(8,2);
    p_hsdlamaxearnings NUMBER(8,2);
    p_hsdlbminearnings NUMBER(8,2);
    p_hsdlbmaxearnings NUMBER(8,2);
    p_hsdlcminearnings NUMBER(8,2);
    p_hsdlcmaxearnings NUMBER(8,2);
    p_hsdldminearnings NUMBER(8,2);
    p_hsdldmaxearnings NUMBER(8,2);
    p_totalwages NUMBER(8,2);
    p_totallevy NUMBER(8,2);
    BEGIN
    -- Load rate info from table into variables
    SELECT hsdlarate, hsdlbrate, hsdlcrate, hsdldrate, hsdlaminearnings,
    hsdlamaxearnings, hsdlbminearnings, hsdlbmaxearnings,
    hsdlcminearnings, hsdlcmaxearnings, hsdldminearnings,
    hsdldmaxearnings
    INTO p_hsdlarate, p_hsdlbrate, p_hsdlcrate, p_hsdldrate,
    p_hsdlaminearnings, p_hsdlamaxearnings, p_hsdlbminearnings,
    p_hsdlbmaxearnings, p_hsdlcminearnings, p_hsdlcmaxearnings,
    p_hsdldminearnings, p_hsdldmaxearnings
    FROM SSC3_RATES
    WHERE ratescheduleid = 1;
    -- Assign total wages to variable
    p_totalwages := :P25_TOTALWAGES;
    -- Determine applicable levy payment and rate
    IF (p_totalwages < p_hsdlamaxearnings) THEN
    p_totallevy := (p_totalwages * (p_hsdlarate/100));
    ELSIF (p_totalwages >= p_hsdlbminearnings) AND (p_totalwages <= p_hsdlbmaxearnings) THEN
    p_totallevy := (p_totalwages * (p_hsdlbrate/100));
    ELSIF (p_totalwages >= p_hsdlcminearnings) AND (p_totalwages <= p_hsdlcmaxearnings) THEN
    p_totallevy := (p_totalwages * (p_hsdlcrate/100));
    ELSIF (p_totalwages >= p_hsdldminearnings) THEN
    p_totallevy := (p_totalwages * (p_hsdldrate/100));
    END IF;
    RETURN p_totallevy;
    END;
    -- Calculate Total Wages PL/SQL Function
    DECLARE
    t_wages NUMBER(8,2);
    BEGIN
    t_wages := (:P25_WEEK1_WAGE + :P25_WEEK2_WAGE + :P25_WEEK3_WAGE + :P25_WEEK4_WAGE + :P25_WEEK5_WAGE + :P25_BONUS + :P25_OTHER);
    RETURN t_wages;
    END;
    -- Calculate Employee Name PL/SQL Function
    DECLARE
    p_firstname VARCHAR2(20);
    p_lastname VARCHAR2(20);
    p_name VARCHAR2(40);
    p_join VARCHAR2(2) := ', ';
    BEGIN
    SELECT firstname, lastname
    INTO p_firstname, p_lastname
    FROM SSC3_EMPLOYEES
    WHERE ssno = :P25_SSNO;
    p_name := Initcap(p_lastname||p_join||p_firstname);
    RETURN p_name;
    END;
    Regards
    Glenroy Skelton

    Hi,
    The first thing that strikes me is the following IF test:
    IF (p_age >= 16) OR (p_age <=62) THEN
    p_totalss := (:P25_TOTALWAGES * (p_is16to62ssrate/100));
    ELSIF (p_age < 16) OR (p_age > 62) THEN
    p_totalss := (:P25_TOTALWAGES * (p_u16o62ssrate/100));
    ELSE
    p_totalss := 0.00;
    END IF;The first test will be true for every number as all numbers are greater than 16 or less than 62. I'd suggest changing the OR to an AND or use BETWEEN
    Andy

  • Bdc session is not working for multiple records

    Hello Experts
    we have written abdc for f-27 using the session method.it is working fine for one record but if we supply mulite records it
    is giving the error, like bseg-wbter( ie amount which comes in the second screen) is not found in screen 1.
    ie the first screen.The bdc is working fine for one record in notepad.after completing the first record it goes to
    second record and in the first screen itself it says amount field not found in screen 1. But
    actually this field comes in second screen.
    my flat file is like this..
    10.10.2008     DA     9641     10.10.2008     1     IND     TEST          31     10001     320.21     10.10.2008     01     120021     345.94
    10.10.2008     DA     9641     10.10.2008     1     IND     TEST          31     10001     560.22     10.10.2008     01     120021     231.94

    please kindly see my program..
    LOOP AT itab.
        REFRESH itabbdc.
        PERFORM bdc_dynpro      USING 'SAPMF05A' '0100' 'X'.
        PERFORM bdc_field       USING 'BDC_CURSOR' 'RF05A-NEWKO'.
        PERFORM bdc_field       USING 'BDC_OKCODE' '/00'.
        PERFORM bdc_field       USING 'BKPF-BLDAT'  itab-bldat.
        PERFORM bdc_field       USING 'BKPF-BLART'  itab-blart.
        PERFORM bdc_field       USING 'BKPF-BUKRS'  itab-bukrs.
        PERFORM bdc_field       USING 'BKPF-BUDAT'  itab-budat.
        PERFORM bdc_field       USING 'BKPF-MONAT'  itab-monat.
        PERFORM bdc_field       USING 'BKPF-WAERS'  litab-waers.
        PERFORM bdc_field       USING 'BKPF-XBLNR'  itab-xblnr.
        PERFORM bdc_field       USING 'FS006-DOCID' itab-docid.
        PERFORM bdc_field       USING 'RF05A-NEWBS' itab-newbs.
        PERFORM bdc_field       USING 'RF05A-NEWKO' itab-newko.
        PERFORM bdc_dynpro      USING 'SAPMF05A' '0302' 'X'.
        PERFORM bdc_field       USING 'BDC_CURSOR' 'RF05A-NEWKO'.
        PERFORM bdc_field       USING 'BDC_OKCODE' '/00'.
        PERFORM bdc_field       USING 'BSEG-WRBTR'  itab-wrbtr.
        PERFORM bdc_field       USING 'BSEG-ZFBDT'  itab-zfbdt.
        PERFORM bdc_field       USING 'RF05A-NEWBS' itab-newbs2.
        PERFORM bdc_field       USING 'RF05A-NEWKO' itab-newko2.
        PERFORM bdc_dynpro      USING 'SAPMF05A' '0301' 'X'.
        PERFORM bdc_field       USING 'BDC_CURSOR' 'BSEG-WRBTR'.
        PERFORM bdc_field       USING 'BDC_OKCODE'  '=BU'.
        PERFORM bdc_field       USING 'BSEG-WRBTR'  itab-wrbtr2.
       PERFORM bdc_load USING 'F-27' itabbdc.
      ENDLOOP.
    *&      Form  open_session
          text
    -->  p1        text
    <--  p2        text
    FORM session_start .
      CALL FUNCTION 'BDC_OPEN_GROUP'
        EXPORTING
          client = sy-mandt
          group  = 'F-27DA'
          keep   = 'X'
          user   = sy-uname.
      IF sy-subrc <> 0.
        MESSAGE ID sy-msgid TYPE sy-msgty NUMBER sy-msgno
                WITH sy-msgv1 sy-msgv2 sy-msgv3 sy-msgv4.
      ENDIF.
    ENDFORM.                    "session_start
    FORM bdc_load USING tcode TYPE sytcode
                           bdcdata LIKE itabbdc.
      CALL FUNCTION 'BDC_INSERT'
        EXPORTING
          tcode     = tcode
        TABLES
          dynprotab = itabbdc.
      IF sy-subrc <> 0.
        MESSAGE ID sy-msgid TYPE sy-msgty NUMBER sy-msgno
                WITH sy-msgv1 sy-msgv2 sy-msgv3 sy-msgv4.
      ENDIF.

  • ADI not working for multiple records

    Hi,
    We currently have an issue with ADI. The ADI we have produces an MS Word letter based on a custom view and custom integrator.
    On the person form, when I query for an employee and the resultset is 1 our ADI is working fine and the letter/word document is generated.
    When the query returns more than one employee, the Web ADI errors. It does not download any records into the excel file and then when it tries to open the word document it asks for Header Record Delimiters?
    In the excel document I get a Run-Time error '5922' Method 'Run' of object '_Application' failed.
    Is there a setting that only restricts ADI to return one row from this form?
    Any help would be greatly appreciated.
    Many thanks
    Martin

    Hi,
    We currently have an issue with ADI. The ADI we have produces an MS Word letter based on a custom view and custom integrator.
    On the person form, when I query for an employee and the resultset is 1 our ADI is working fine and the letter/word document is generated.
    When the query returns more than one employee, the Web ADI errors. It does not download any records into the excel file and then when it tries to open the word document it asks for Header Record Delimiters?
    In the excel document I get a Run-Time error '5922' Method 'Run' of object '_Application' failed.
    Is there a setting that only restricts ADI to return one row from this form?
    Any help would be greatly appreciated.
    Many thanks
    Martin

  • When joining a Lync dial-in conference the name recording is not working for participants

    When our participants join a Lync conference via dial-in they are prompted with "After the tone please record your name then press pound." But then immediately the conference attendant says "You're now joining the meeting as an unknown participant."
    The system is not allowing time for a recording at all.
    I checked Get-CsDialinConferencingConfiguration and the output originally showed: 
    Identity                               : Global
    EntryExitAnnouncementsType             : UseNames
    EnableNameRecording                    : True
    EntryExitAnnouncementsEnabledByDefault : False
    For troubleshooting I turned off name recording to see what would happen and also changed entry announcement to tone only but there is no change what so ever. The attendant still asks for a recording and doesn't allow any time to actually record.
    Jacen

    Hi,
    Please try to change the value of "EntryExitAnnouncementsEnabledByDefault" to True. and then test again.
    Please also make sure Lync Server update to the latest version.
    Best Regards,
    Eason Huang
    Please remember to mark the replies as answers if they help, and unmark the answers if they provide no help. If you have feedback for TechNet Support, contact [email protected]
    Eason Huang
    TechNet Community Support

  • Cursor Jumping to last record when query mode for Multi-record block.

    I have a multi-record block. the seq field has this validation to check that there should not be a gap
    in sequence for S_type and cer_dl field.The program unit is as below.
    PROCEDURE seq_validation IS
    --Validation to check that there is no gaps in sequence for S_TYPE and cer_dl fields
    l_value_to_check varchar2(100);
    l_seq_found number;
    l_curr_sequence number;
    l_new_value varchar2(100);
    l_found boolean:=FALSE;
    l_new_set boolean := FALSE; --s_type and cer_dl are different from previous set.
    begin
    if trim(:b1.s_type) is not null
    or trim(:b1.cer_dl) is not null
    then
    -- Program continues here only if all the items are not null
    -- Get information from record that needs to be validated
    l_value_to_check := trim(:b1.s_type) || ':'|| trim(:b1.cer_dl) ;
    l_curr_sequence := :sequence;
    if :SYSTEM.CURSOR_RECORD = '1' then
    ---to check sequence is entered as 1 in the first record
    message('Error:Sequence should start with 1');
    raise form_trigger_failure;
    end if;
    go_item('b1.XYZ');
    else
    FIRST_RECORD;
    while :SYSTEM.LAST_RECORD != 'TRUE'
    loop
    l_found := FALSE;
    l_new_value := trim(:b1.S_type) || ':'|| trim(:cer_dl) ;
    if l_new_value = l_value_to_check then --
    l_new_set:= FALSE;
    l_seq_found := :seq;
    if l_seq_found >= l_curr_sequence then
    go_item('b1.seq');
    l_new_set := FALSE;
    elsif l_seq_found < l_curr_sequence - 1 then
    go_item('b1.sequence');
    l_found := FALSE;
    elsif l_seq_found = l_curr_sequence - 1 then
    l_found:= TRUE;
    go_item('b1.xyz); --go to next item
    end if;
    else
    l_new_set := TRUE;
    end if;
    NEXT_RECORD;
    end loop;
    if l_new_set then
    go_item('b1.xyz'); -- go to next item
    else
    if not l_found then
    message('Error:Sequence should be in order.');
    go_item('b1.seq');
    raise form_trigger_failure;
    end if;
    end if;
    go_item('b1.xyz'); ---go to next item
    end if;
    end if;
    end;     
    In the insert mode its working fine(unless you gurus feel to change to make it more perfect.
    When I say enter-query and put 'IAS' in the s_type field and then do a execute query it brings all the records of 'IAS'.
    Now as I want to update the records, and when I navigate across field(s_type,cer_dl,Seq,xyz) using tab and move the cursor down on second
    record(IAS N 2 N), what happens is when I navigate to sequence field the cursor jumps to LAST RECORD( IAS Y 3 N ) of LAST field XYZ.
    I am putting the sample record
    s_type cer_dl seq xyz
    IAS N 1 N
    IAS N 2 N
    IAS N 3 N
    IAS N 4 N
    IAS Y 1 N
    IAS Y 2 N
    IAS Y 3 N
    The cursor moves to last record --IAS -Y -3-N when I tab across the second record.                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               

    When I say enter-query and put 'IAS' in the s_type field...For your validation to work you must not allow users to enter records in the middle of a block, clear records from the block or query specific records. If you allow the users to enter a query then you are allowing 2 of the rules to be broken.

  • Update dont work for update

    Sorry for my english,
    Update dont work whene you have updateted wersion 1.
    how it coms???
    Marc

    Hello,
    You can try to check your Stream by applying the following troubleshooting guide:
    [http://download.oracle.com/docs/cd/B19306_01/server.102/b14229/strms_trouble.htm]
    But as Dan said, a Production database should always be updated to the latest patchset (so here in
    10.2.0.4) after checking it on your Test database.
    Not only it can correct many bugs but, if you have to open a SR to MOS, you'll have a better support
    (sometimes, if they think it's a bug they can ask you to apply the patchset too).
    Hope it can help,
    Best regards,
    Jean-Valentin

  • After installing WMP the media buttons dont work for iTunes(back/play/for and backward)-sound control

    hello, since i got my computer, i've been using  iTunes.
    i was happy, media keys working perfectly and all, but 1 month ago, i had to install WMP to run a diferent format that itunes dont support and after that day, my media keys stop working for itunes, first i think it war my keyboard(microsoft laser 5000) and a software conflict.
    but now i buy a razer blackwidow ultimate(yesterday) and still dont working...
    i spend all my weekend trying to figure out whats the problem, but i dont know.
    i tried tutorials for similar problems, but noting worked...
    and now the media keys arent working even on WMP
    I DONT KNOW WHAT TO DO!

    Hi Josh
    Thanks for this useful information and for the report about your experience.
    I have already noticed this Toshiba Value Added Package for Vista and have already read the More info .
    This option provides details about the single drivers and tools. For Toshiba Value Added Package I found this:
    "This package installs a range of important utilities.TOSHIBA Components Common Driver This module is an essential component on Windows Vista. It is required to make other TOSHIBA original programs work properly.
    bye

  • Field exits dont work for ENJOY trx

    HI All,
    May I know why field exits do not work for ENJOY transction codes.
    Is this same case with User exits and screen exits??
    Please make me clear on this.
    Satish

    I guess field exits have been removed in the recent versions and enjoy transactions are the latest one, SAP has not incorporated the same.
    However, user exits will work with all transactions in the latest versions as well.
    regards,
    Ravi
    Note : Please mark all the helpful answers

  • Data Re-Import does not work for some records stating there are duplicates

    This is CRM 2011 Rollup 6
    The same as this link.
    https://social.microsoft.com/Forums/en-US/2a792269-0094-4673-9760-5178e16299d3/cant-import-xml-for-update-operation-because-a-record-was-not-created-or-updates-because-a?forum=crm
    Thousands work, hundreds do not with the failure code "A record was not created or updated because a duplicate of the current record already exists.
    Is this a data integrity issue in CRM and the same GUID is in use?
    I do get a partially imported record for the import, but the data is not updated.

    I am trying to update my Account records by exporting them and re-importing. I have been successful with re-importing many thousands of records but there are some which are refusing to be updated. The error I get is "a record was not created or updates
    because a duplicate of the current record already exists".
    This doesn't make sense to me because I'm selecting the option to prepare the data for re-import: "Make this data available for re-importing by including required column headings."
    I can't find anything special about these records nor did I find anything special about the records that
    were successfully imported.
    Thanks.

  • Recording voice not working (no input source selected)

    I'm using Garageband 10.0.3 (and Mavericks 10.9.5) and until very recently I could record voice tracks without using a mic - it would record using the in-built mic. Now whenever I try to record my voice, I get the "No input source selected" error message, and it pops up regardless of what I choose in input/output settings in Preferences. I've also tried it with my iMic plugged in (which I use to record guitar), but I get the same error message and nothing records.
    Any ideas? Do you now need to have a mic plugged in for Garageband to record voice?

    Is monitoring turned on? Then disable it or plug in a headset. Otherwise will GarageBand not record from the internal microphone to avoid feedback.
    In the System Preferences > Audio pane select the internal microphone and adjust the recording level. I noticed that the recording level is set to zero by default, whenever I look there.

  • ALV Grid merge cells horizontally for specific record

    Hi Experts,
    We have a requirement regarding ALV Grid developement.
    In ALV Grid, we will have multiple records as normal output.
    Output will be as below.
    In that, we need Summery Text should be in from Field 2 * to*  Field 6 as a single Cell and below that all output
    will be normal each cell wise.
    That Summery will come for each new Field1.
    OUTPUT
    Field1  Field2  Field3    Field4  Field5  Field6  Field7   Field8   Field9
    001  | . ....      ..        ..  Summery  ........... |  10   |  20      |  30
    001  |  10   |    20  |     30  |   40   |    50  |   60 |    70  |   80     |
    001  |  10   |    20  |     30  |   40   |    50  |   60 |    70  |   80     |
    001  |  10   |    20  |     30  |   40   |    50  |   60 |    70  |   80     |
    001  |  10   |    20  |     30  |   40   |    50  |   60 |    70  |   80     |
    Thanks & regards
    Manglesh

    Hi Manglesh,
    sorry ALV is not as flexible as Excel may be.
    You can only define a header in that way but it would be above the column headings.
    The ALV table display allows only to change the width of the whole column.
    Regards,
    Clemens

  • My sound recorder is not working for my HP G60 443CL

    Sound recorder was working but suddenly stopped working

    Hi abbhey,
    Take a look at this document and let me know if the troubleshooting steps help to resolve your issue.
    Good luck!
    ↙-----------How do I give Kudos?| How do I mark a post as Solved? ----------------↓

  • Condtion not working for two records

    Hi All,
    The issue is though the query has conditions to suppress 0 values from the output, strangely, for two account numbers ,that is not happening somehow. They are appearing and showing 0 value in the report, and the data seems correct.
    I have attached two files for better understanding
    1. Condition Screen Shot : Which should suppress Zero Values
    2. Bex Report : Which is displaying 0 Variances in the report.
    Please note this issue is for only two Account Numbers i.e  171105109 and 172115101. For remaining account numbers it suppressing 0 Values as expected.
    Thanks,
    Asim

    Hi,
    G/L A/c and Chart of accounts has relation ships (Functional ) i already mentioned  in my previous rply suppress zero values can be done without using condition  and your query showing in correct according to suppress zero values logic.
    Refer below how G/L a/c and Chart of A/c are related :
    Chart of Accounts - General Ledger Accounting (FI-GL) (New) - SAP Library
    Thanks.

Maybe you are looking for

  • Can I use Time Capsule for iTunes Library?

    I have a Macbook Pro, an Apple TV, 2 iPads, 2 iPhones at home. Just bought 2TB Time Capsule today. My kids purchased a lot of movies/TV shows from iTunes store, and it is building up lots of space in my MacBook. I also like to rip my CDs into Apple L

  • Mac mini running 10.6 - what is the max external HD space supported

    I would like to purchase a mac mini and would like to attach 2 external drives in enclosures for data/mirroring. Does anyone know the max HD size supported by the mac mini running 10.6? Thanks!

  • Upgrade from HDMI 1.2 to HDMI 1.3/4

    Have just purchased recently a HDX - X18 1320EA notebook, which i hadnt realised had the old architecture on the HDMI interface 1.2 version. Does anyone know if this is possible for this to be upgraded to at least the 1.3 version if not the 1.4 versi

  • Multiple different level accounts in iPads?

    Hello. Is there a way to set different level accounts on a single Apple iPad Air with the (lat/new)est iOS v8.1.3? Thank you in advance.

  • Calibration Exec Error -2147467259

    While calibrating a PXI 4472A, I received the following error: Error -2147467259 occurred at Conn Execute.vi->cex_CustStdsDBReadWrite.vi->cex_GUIWizardDBLayer.vi->cex_GUIWizardExitTasksDBWrite.vi->cex_GUIWizardExitTasks.vi->cex_GUIWizardExit.vi->cex_