CPreferenc​esManager: Configurat​ion Value for /Preferenc​es/ Account_2_​131074/Syn​cAccount_2 not set in TransConfi​g.xml for translator RimBB

can anybody help to fix this problems? best regards

Trying the Resolution here might help:
http://btsc.webapps.blackberry.com/btsc/viewdocume​nt.do?externalId=KB34453&sliceId=2&docType=kc&noCo​...

Similar Messages

  • Sync Error :CPreferencesManager: configuration Value for /Preferences/Account_3_196609/DevicePin notset in TransConfig.xml for translator RimBB

    Very frustrated with BB Link, I keep getting sync error:
    CPreferencesManager: configuration Value for /Preferences/Account_3_196609/DevicePin notset in TransConfig.xml for translator RimBB
    Does anyone know how to fix this?
    Thanks
    Tom

    Although this shows for a different version of Link it is the same error and the only info available:
    http://btsc.webapps.blackberry.com/btsc/viewdocument.do;jsessionid=6B27934ACA9100D504829F8506B4AFE3?...
    If you do not have this version upgrading may help:
    https://swdownloads.blackberry.com/Downloads/contactFormPreload.do?code=A8BAA56554F96369AB93E4F3BB06...

  • "Device Pin not set in TransConfig.xml.for translator RimBB" message when I try to sync my BBZ10 with Outlook Calendar and Contacts

    Hello, Does anyone know how I can sync my BBZ10 with my computers Outlook Calendar and Contacts? It was working but since my computer returned from being repaired it doesn't sync and gives me the following message
    "Device Pin not set in TransConfig.xml.for translator RimBB"

    I did resolve it, it was so long ago but here's what I suggest:
    -First remove the software on your computer by going to the add/remove programs if you're using a PC. If you're using Mac, I'm not sure where you go. 
    -Then go to BB website and download the correct program for you phone
    -Check both your phone and computer have all their updates
    With the newest updates I have no trouble syncing my calendar/contacts from my PC to my BB and vice versa. It was just initially when the BB was so new they hadn't updated the programs. Over time the fixed the glitch, this is why I recommend you remove the program you have and start over, it will probably fix itself.

  • Configurat​ion value on program start

    I am not sure that it is a right thread or should it be in just LabView section.
    I have USB 6008 and I have created procedure of writing configuration file on exit (it writes values of different controls, Double, Boolean,string, etc.) and works fine. I have created procedure of reading of configuration file as well and it works. But I can not wire it to controls. I would like to have this values loaded and made default on program start. Is it possible? I have placed this procedure outside main while loop. Can somebody help me to make it right.
    Thanks. Sergey.

    Hi sergey,
    You need to place the local variables before you enter the loop- not in the while loop.
    Inside the loop everytime you go through another itteration, the local variable to reinitiate the values.  That is what's going wrong.
    Write to all of the local variables before you enter the while loop and the values will only be written to once. (at the start of the program)
    I have have attached the solution to your problem.  (You do however need to tidy up the code)
    Is that what you need?
    Hope it helps
    Many thanx
    AdamB
    Applications Engineer
    National Instruments
    Applications Engineering Team Leader | National Instruments | UK & Ireland
    Attachments:
    Basic20control-feedback5[1].vi ‏619 KB

  • The configurat​ion steps for stepper motoer with UMI7772

    I am using a UMI-7772 and a PCI-7330 board to control a stepper motor(KL34H260-60-4A) with a CW230 Microstep motor driver. Could you please tell me how to connect the wires and how to setup in Labview to control the motion of the motor? Thanks.  

    Hi jingrui,
    As far as the physical wiring of the UMI 7772 to the CW230 Microstep Motor Drive, go ahead and take a look at the manual I linked below. This will provide the pinout information for the PCI-7330 which corresponds to the pins of the UMI-7772. Then all you need to do is consult the manual for the CW230 and match pins from the UMI-7772 to the corresponding input on the CW230.
    http://www.ni.com/pdf/manuals/370837a.pdf
    As far as the software configuration of the motor, check out the two tutorials that I've linked below. They provide a good starting point on what configuration settings you need to adjust in Measurement & Automation Explorer as well as how to begin programming in LabVIEW. Let me know if you have any other questions.
    http://zone.ni.com/devzone/cda/tut/p/id/3126
    http://zone.ni.com/devzone/cda/tut/p/id/3367
    Paul M
    National Instruments | Applications Engineer | www.ni.com/support

  • Help with Basic Configurat​ion of Parameters for NIDAQmx

    Hey all,
    I'm struggling to get data from my DAQ at the rate I expect. I've read through the scattered documentation I've been able to find, but it does not behave as I expect.
    I simply want to have a loop that continually reads the latest sample from the DAQ and publishes it (using the robot operating system). Unfortunatelly, I'm seeing delays on the order of many seconds between when events occur and when they show up from the DAQ. I suspect that events are stacking up in the buffer faster than I'm reading them. How should I deal with this?
    // Timing parameters
    char clockSource[] = "OnboardClock";
    // Data read parameters
    #define bufferSize (uInt32)1
    float64 data[bufferSize * channelCount];
    // how many points to read per channel
    int32 pointsToRead = bufferSize;
    int32 pointsRead;
    // timeout in seconds... should be even smaller than 1.0s
    float64 timeout = 10.0;
    int32 totalRead = 0;
    bool isHigh = false;
    adc_msgs::ADCSignal adc;
    DAQmxErrChk(DAQmxBaseCreateTask("", &taskHandle));
    DAQmxErrChk(
    DAQmxBaseCreateAIVoltageChan(taskHandle, channels.c_str(),"",DAQmx_Val_Cfg_Default,min,max,​DAQmx_Val_Volts,NULL));
    // The sampleRate used here determines how fast samples are read on the hardware side into its internal buffer
    DAQmxErrChk(
    DAQmxBaseCfgSampClkTiming(taskHandle, clockSource, sampleRate, DAQmx_Val_Rising, DAQmx_Val_ContSamps, 1));
    DAQmxErrChk(DAQmxBaseCfgInputBuffer(taskHandle, 200000));
    DAQmxErrChk(DAQmxBaseStartTask(taskHandle));
    while (ros::ok()) {
    DAQmxErrChk(
    DAQmxBaseReadAnalogF64(taskHandle,pointsToRead,tim​eout,DAQmx_Val_GroupByScanNumber,data,bufferSize*c​hannelCount,&pointsRead,NULL));
    adc.header.stamp = ros::Time::now();
    adc.signal.clear();
    if (meta != NULL){
    //ROS_INFO('Meta: %s', meta->data.c_str());
    adc.meta = meta->data.c_str();
    for (int i = 0; i < channelCount; ++i) {
    float32 val = (float32) data[i];
    adc.signal.push_back(val);
    // here for debugging
    if (i==0) {
    if (!isHigh && val > 1.0) {
    isHigh = true;
    printf("going high\n");
    if (isHigh && val < 1.0) {
    isHigh = false;
    printf("going low\n");
    pub.publish(adc);
    ros::spinOnce();
    // this ensures we sleep for the appropriate amount of time so that the loop rate is
    // sampleRate
    loop_rate.sleep();

    I think maybe I have a misunderstanding of how this should work.
    Say I want to sample at 1kHz, so I need to get a value every 1ms. Can my while loop not just grab the latest value from the channel? Ideally, I think it would make sense if I used a higher sampleRate than the actual rate at which I want data, say 2kHz, and a buffer that only stored one sample, so that the buffer always contained the latest value. Everything I've tried to get this kind of behavior hasn't worked.
    Regarding your suggestion:
    If I use this buffered system, won't I end up getting burst behavior? So, as you propose I would try to read in 250 samples on each iteration. So that means in one second I would end up burst publishing 250 samples 4 times.
    Is that the kind of behavior I should expect from this sort of system? Is there no way to do a non-blocking call when reading?
    I've tried to do an on demand loop, but when I do that the best I can get is about 300Hz on my system. This is very surprising to me as audio recording devices, which work over USB, sample above 44kHz, with low latency. Are they in fact working in a bursting fasion as well or are the devices just designed better?

  • What the Initial value for sy-tabix & sy-index

    Hi Folks
       I have a small doubt.
    What the Initial value for sy-tabix & sy-index?
    Can anyone please clarify me?
    Regards,
    Sree

    hi sree,
    both values are initialized to 0 before processing and after processing values are changed according to used scenarios.
    if helpful reward some points.
    with regards,
    suresh babu aluri.

  • Report on Open Items along with Qty & Value for LA confirmed items

    Hi,
    I would like to know a report of Open POs(No Goods receipt made) but LA confirmed Items along with Values(Amount)
    i.e
    List of confirmed,unsent items along with Values for plant wise or vendor wise or PO Number wise.
    Regards,
    Vengat

    Hi,
    Any other inputs?
    Our client's requirement is to know how many (Both Qty & Value) of items for the input LA confirmed(ASN received) but no GR Made
    Regards,
    Vengat

  • Error that "specify a value for variable posting period (single value entry

    hi
    My query is running testing fine in RSECADMIN under some username..but when i try and open it using analyzer (under same username) it gives me error that "specify a value for variable posting period (single value entry, mandatry)" it does'nt even asks to enter variable values and gives this error message.
    However the same query appears to be working fine under different username.
    plz advise.

    Hi Abhinav,
    Just do one thing compare the Roles of two different users for which Query is getting executed and not.
    Check the Object S_RFC.
    Compare the Objects detail for Both the Users.
    Please Assign points if useful.
    Regards,
    Rajdeep.

  • Error while reading UcdContext [trying to read / set application values for users]

    Hi,
    I am trying to write a program to store user selected values on NW7.3 Portal using "User Content Directory". I can see and read some code snippets on how to set and read the context but I am getting one error after another.
    The error message I am getting is
    "com.sapportals.portal.pcd.gl.PcdGlContext:service:[email protected]entClassLoader@84507ed@alive incompatible with interface com.sapportals.portal.pcd.gl.IPcdContext:sap.com/[email protected]der@f46d103@alive ". Code snippet is as given below at the end of the message.
    1) I tried different ways to have a lookup and always gave message as "look up not found" and for pcd:portal_content came up with above error.
    2) Once I read the UCD context, I would like to store some values based on user selection and store them. User may change the values whenever they like and I will be using the values for other purposes in another application.
    3) Has any one successful in setting and reading UCD Context in NW 7.3. Will it be possible to share such sample code as the code snippets at http://help.sap.com/saphelp_nw73ehp1/helpdata/en/4a/8e1bce28e24dd8abd9f4de05e5587d/content.htm are not much of use unless I am able to read the UCD.
    Thanks for your help!
    Regards,
    Raju
    TestingUCD is my test application and the following is code snippet
    InitialContext initialContext = null;
    IPcdContext pcdCtx;
    Hashtable env = new Hashtable();
    env.put(UCD_INITIAL_CONTEXT_FACTORY, UCD_INITIAL_CONTEXT_FACTORY);
    env.put(Context.SECURITY_PRINCIPAL, request.getUser());
    env.put(Constants.REQUESTED_ASPECT, IPcdAttribute.PERSISTENCY_ASPECT);
    try{
    initialContext = new InitialContext(env);
    //response.write("Before pcdCtx lookup");
    try {
    pcdCtx = (com.sapportals.portal.pcd.gl.PcdGlContext) initialContext.lookup("pcd:portal_content");
    } catch(Exception e){
    response.write("Some problem with lookup" + e.getMessage());

    Hi,
    There are quite few differences in the standard code snippet given by SAP Help on UCD and the once that you put above in the question.
    Below is standard snippet.
    Hashtable<Object, Object> env = new Hashtable<Object, Object>();
    env.put(Context.INITIAL_CONTEXT_FACTORY,
    IPcdContext.UCD_INITIAL_CONTEXT_FACTORY);
    env.put(Context.SECURITY_PRINCIPAL, user);
    InitialContext ctx = new InitialContext(env);
    pcdCtx =  (IPcdContext) ctx.lookup("");
    ============================
    Check the ones highlighted in BOLD and compare them in your code. In your code when ur doing initial lookup you are not using the Correct class type cast for the returned lookup object!
    Your code shows as below:
    pcdCtx = (com.sapportals.portal.pcd.gl.PcdGlContext) initialContext.lookup("pcd:portal_content");
    But may be it shd have been something like below:
    pcdCtx = (IPcdContext) initialContext.lookup("pcd:portal_content");
    Pls verify and hopefully this resolves your issues around look up.
    Thanks,
    Swapna Priya.

  • NOT Getting Values for LOCATION...on MultiProvider REPORT

    HI All,
    I have a MultiProvider on 4 cubes.All these 4 cubes having object LOCATION. I can see data in all cubes for LOCATION. I am running a report on this MultiProvider.
    Problem:
    I am not getting Values for LOCATION. Why?
    What I did:
    I checked all location objects of all 4 cubes @ MultiProvider level .
    I didn't use any Infoprovider in Qry designer sections.
    Please suggest. What is the reason how to solve..
    THanks & Regards.
    Sri.
    Edited by: siri26 k on Dec 5, 2008 10:41 AM
    Edited by: siri26 k on Dec 5, 2008 10:41 AM

    hello,
    in the identification tab of the MP,make sure you have checked all four checkboxes across the 4 infoproviders.
    then in Listcube T-Code, select your MP,display the records based on selection inputs and see if location is populated.
    If the data is not coming in listcube, then it will not come in the Query too.
    Reg,
    Dhanya

  • Can not input data when removed the value for seleciton condition

    Dear Experts,
    We met a very strange issue for the IP.
    We create a aggregation level and relatd query for user to key in data.
    We have a filter in the aggregation level.
    It will set value for A,B,C,D
    When user opent he report, system will require user to key in the value for A,B,C,D.
    Now we found that if we key in value for B, cell is input ready.
    If we removed the value in for the B in the selection condition (I mean the value of B is empty, this means tha all the value of B will display in the report), we can not key in data.
    Could you kindly let me kow the reason?
    Thanks and best regards
    Alex yang

    Dear Experts,
    Many thanks for your information.
    I know the principle for the IP.
    But I think you may misunderstanding this issue due to my incorrect explaination.
    First, we think the aggreagtion level is ok. This is due to that for the B in my example, we set its as column value in the query.
    This is means for each record in the IP query, it has only one B value to reflect it.
    But strange things is that if we set fixed value for B, IP input is ok.
    If we removed fixed value for B, IP function is error.
    Now, we will test if we key in multi value for B whether IP input function is ok or not.
    Any update, I will inform you.
    Thanks and best regards
    Alex yang

  • Sy-ucomm value for print preview

    Hi friends,
    Can any one tell me the sy-ucomm value for the print preview..?

    Hi,
    If you are asking the function code of Pop-up you get while printing ..then answer is no..even if you get the fcode you cannot handle it in your program.
    What exactly you are looking for ?

  • Sy-ucomm value for enter

    Hi,
    Can anyone plz help me with the sy-ucomm value for enter key.
    Thanks..

    Hi Renu,
    The OKCODE  or SY_UCOMM value is not same for 'ENTER' in all the cases. So its better to go for debugging .
    Whenever you want to know the ok code or sy-ucomm value  of a key , type '/h' in the command box and press enter. It shows a message on the status bar 'Debugging Switched On'. Now if you press any key , it switches to debugging mode  and type sy-ucomm in the fields list then you will get the SY-UCOMM or OK CODE.
    Incase of ALVs also you can get the SY-UCOMM. But in some cases the SY-UCOMM value may be NULL.
    <REMOVED BY MODERATOR>
    Edited by: Alvaro Tejada Galindo on Mar 25, 2008 4:50 PM

  • Error: Missing initial value for session parameter

    Hi,
    I'm facing a problem while running the ETL process for Complete 11.5.10 Execution Plan in DAC Client. Some tasks are getting failed beacuse of the following error:-
    ERROR : TM_6292 : (5080|4064) Session task instance [SDE_ORA_Product_Category_Derive_Full]: VAR_27026 [Error: Missing initial value for session parameter:[$DBConnection_OLAP].].
    ERROR : TM_6292 : (5080|4064) Session task instance [SDE_ORA_Product_Category_Derive_Full]: CMN_1761 [Timestamp Event: [Mon Nov 19 21:01:52 2007]].
    ERROR : TM_6292 : (5080|4064) Session task instance [SDE_ORA_Product_Category_Derive_Full]: TM_6270 [Error: Variable parameter expansion error.].
    ERROR : TM_6292 : (5080|4064) Session task instance [SDE_ORA_Product_Category_Derive_Full]: CMN_1761 [Timestamp Event: [Mon Nov 19 21:01:52 2007]].
    ERROR : TM_6292 : (5080|4064) Session task instance [SDE_ORA_Product_Category_Derive_Full]: TM_6163 [Error initializing variables and parameters for the paritition.].
    ERROR : TM_6292 : (5080|4064) Session task instance [SDE_ORA_Product_Category_Derive_Full]: CMN_1761 [Timestamp Event: [Mon Nov 19 21:01:52 2007]].
    ERROR : TM_6292 : (5080|4064) Session task instance [SDE_ORA_Product_Category_Derive_Full]: TM_6226 [ERROR:  Failed to initialize session [SDE_ORA_Product_Category_Derive_Full]].
    ERROR : LM_36320 [Mon Nov 19 21:02:08 2007] : (2108|2632) Session task instance [SDE_ORA_Product_Category_Derive_Full]: Execution failed.
    When i checked the parameter file i can see the value assigned to the $DBConnection_OLAP. The same tasks ran successfully when i ran the ETL process for Complete 11.5.10 for the first time. I did not change anything after that and also all these are came built-in with the installation of Oracle BI Applications.
    Please anyone give me an idea what is causing the problem.
    Thanks,

    in DAC > Run History > Task Details, query
    Name = SDE_ORA_Product_Category_Temporary
    Open Status Description, look for string -lpf, the file after it is the actual parameter file DAC send to INFA server. E.g
    -lpf D:\DACTOPUS\Informatica\parameters\SDE_ORAR12_Adaptor.SDE_ORA_Product_Category_Temporary.txt
    Open the parameter file, most likely the [session_name] does not match with SDE_ORA_Product_Category_Derive_Full or some parameters are missing.

Maybe you are looking for

  • MIRO-Planned delivery Cost

    Hi, We have made a PO where there is a problem with one of the wrong condition type(Transit Insurance) which does not have any secondary vendor assingement,but the condition type  is having  Account key (Other Clearing) As the MIRO-Planned delivery C

  • Java error when creating Auto Reply in iMS52&iDS51

    Hi, I have installed iDS51, patch with ims_dssetup.pl, installed iMS52. When creating user with a mail account and clicking on the Auto Reply tab, encounter java error: PageUI exception: java.lang.NullPointerException PageUI exception: java.lang.Null

  • "Download linked file as".....

    Whenever I use Safari 8 on Yosemite to download a file from OWA (Outlook Web Access) via "Download linked file as".....the file downloads as Attachment.ashx (this happens as well using "Download linked file". This does not happen when using Firefox,

  • How can we Restore a corrupted cube.

    Hi All, Please let me know if a cube is corrupted then is their any way of restoring the cube and data. Please help me in detail on this. In which scenario we need to stop and start the cube? how this method help us? Thanks in Advance, Raj.

  • Wifi is not an option under network settings? how can i get it to appear? I have OS X 10.8.5

    Help, wifi is not an option under network settings? how can i get it to appear? I have OS X 10.8.5. This is a Mac i inherited, all software is updated. Thanks in advance for any help on this issue.