Import users from BIAR file -- users not listed in import screen of Wizard

Hi,
we try to import users from a BO XI R2 SP4 running on Windows to our BO XI R2 SP4 running on Linux (both use Oracle database).
When I try to import users with the Import Wizard, I can't see the list of users so at the end of the import  and show in the log --> 0 user simported.
I have activate the trace on Wizard import but don't see errors in the log files.
Also I open the file with a ZIP tool and I can see that it contains data.
So why this ?
regards,

Hi,
thnaks for the info.
It is what we do, we use directlty the user:  Adminsitrator.
I have also set the -trace parameter on the Wizard import but nothing special in the trace about any errors or warnings. (nothing).
regards,

Similar Messages

  • Importing text from XML file, "\n" not working

    Hi I'm currently trying to set up my game so it pulls in all text from an external XML file (to make switching between different languages easier). The problem is that on several occasions I need to use the special code "\n" to start a new line (for formatting purposes) but when I'm pulling the text in from the XML file this is not starting a new line any more - it is just appearing as normal in the text. (e.g "Here is some \n example game text") How do I get around this?
    Any help here appreciated, I'm supposed to be finished everything by tomorrow so I need suggestions asap haha Thanks.

    I don't see how I can be setting it wrongly, I have the exact line:
    XML.ignoreWhitespace = false;
    Before this I tried myXMLDocName.ignoreWhitespace = false; (before I realised it was a static function)
    This line is placed immediately after I have loaded my XML document and assigned it to a variable. e.g.
    private function XMLLoaded(e:Event):void
                trace("XML Loaded");
                MyGameGlobalVars.xmlDoc = new XML(e.target.data);
                XML.ignoreWhitespace = false;       //previously: MyGameGlobalVars.xmlDoc.ignoreWhitespace = false;
                xmlLoaded = true;

  • How do you import a list of users from a file? (BPC 7.5NW)

    In adding users from a network domain, the related personnel filter provides three choices.  One of the choices allows a BPC administrator to import a list of users from file.  For some reason, the radio button alongside that option is grey and the choice is inoperable.  Does anyone know what steps-configuration or later-must be taken to make this choice operable and to be able to import the list of users from a file?
    Edited by: Greg Tyrl on Jul 11, 2011 8:17 PM

    make a new addressbook and in that import Outlook's

  • Error importing from BIAR file (BO XI 3.0)

    Dear BO community,
    I am using the BIAR tool for backup purposes. For my backup, I use a properties file as input which looks like the one shown below:
    action=exportXML
    exportBiarLocation=C:/Temp/BOBackup.biar
    userName=Administrator
    password=XXX
    CMS=XXX:6400
    authentication=secEnterprise
    includeSecurity=true
    exportDependencies=true
    exportQuery1=select * from ci_infoobjects
    exportQuery2=select * from ci_systemobjects
    exportQuery3=select * from ci_appobjects
    exportQueriesTotal=3
    The file creation seems to work without any problems. A file is created. However, when importing the file into another CMS, I am getting the following error:
    Failed to open the BIAR file. Reason: com.businessobjects.sdk.biar.om.internal.iw.ObjectManagerIWException:Input/Output exception occurred: 'Couldn't find entry 'BusinessObjects.xml'.
    I have opened the BIAR file using a ZIP program and checked that there is no "businessobjects.xml" file in there. When creating BIARs using only a single query, this file exists and the import is no problem.
    Does anyone have an idea what's happening and can help me?
    Thank you and best regards!

    Hello ALL,
    I have the same problem when I am trying import from BIAR file. Please tell me how you resolved this issue.
    I did not understand much from your previous message.
    We are using BO XI R3.1 and below is the error message that Import Wizard is throwing.
    Failed to open the BIAR file. Reason: com.businessobjects.sdk.biar.om.internal.iw.ObjectManagerIWException:required dependencies not found target system : 'AWAS3XkMSEtGn1TXI370kAU'
    In both pc  BO version is boxir3.1 sp3 and currently i m using windows xp professional version 2002 sp3
    Thanks
    Saurabh shivam

  • Restricting users from uploading files greater than certain size in Kpro

    Hi,
    How can we restric users from uploading files in SAPoffice which are greater than certain size (5MB)?
    Awaiting for reply.

    Hello Gino,
    you go to Tcode DC10, in the define document type,
    there is a option file size, this gives you restriction , only if you are not using KPro and content server.
    If you are using Kpro and content server, then please do the enhancement (SE80, package ,CV)
    With the help of this you can restrict and put the warinig message if your original size is exceed.
    Thanks & Regards,
    nitin
    Award point if useful

  • Why can't i import photos from a different user account?

    Why when i import photos to iphoto from my user account it works fine. If i try importing them from the other user account it the photo it shows the event folder in the events page but when you go into it there are no photos, and when you close the app it dissappears completely. I dont understand why it is doing this? The iphoto library is actually from the other user account so there shoudnlt be any sharing issues. The only thing is that i iorignially installed on the other user account but it all started when i updated it to iphoto11 and installed it on my account. that shouldnt make a difference though??
    Also if it is not possible to be able to import from both accounts how can i change it so that the other account is able to import only and not from my account?

    I have the same iphoto library selected for both user acounts
    How?
    and share my photos is checked on both accounts from preferences.
    If they use the same Library, why are you sharing this way?

  • Getting input from a file(user I/O redirection)

    alright i am stuck on this program. Heres what i have to do
    I have to write a program usinbg arrays and looping. The program should get its input from a file (user I/O redirection). The first number in the file will be the number of numbers that follow to find the average of (maximum of 100) and print if they are above or below the average.
    I have called the program lab9.java. I already made a file called lab9.dat. This is whats inside the lab9.dat file.
    16
    15
    751
    24
    -56
    81
    227
    54
    99
    0
    102
    57
    58
    43
    245
    47
    73
    16 is how many numbers i am using.
    I am just stuck on how i should do this.
    I have to have the program look at those numbers from that file and then calculates the average and then it has to look at each individual number and print out if that number is above or below average. First off im getting an error when i put in java lab9 < lab9.dat. Am i messing up somewhere.
    I also have the loop:
    int numnums = cisio.GetInt();
    double nums[] = new double[numnums];
    int k;
    for(k=0;k<numnums;k++)
    nums[k]=cisio.GetInt();
    This is where im stuck. I need the program to get the average of the numbers and then compare each number to the average and say if its above or below average. I dont know how to do that. If someone can help me out that would be great.

    Yes, you would need three loops: one to get the input, other the calculate the sum, and a third to print out what numbers are less than and what more than the average. That is the easiest thing to do. It's possible to combine getting the input and calculating the sum in one single loop though. I'm glad you got it working! :)

  • Restrict Users from saving files on Local PC but forced to Network Shared Location

    Hi,
    We have the Domain in Windows 2003 Standard.
    How can I restrict users from saving files in their Local PC? 
    Also, need to forced them to save the files in Network Location with permissions...
    Thanks.
    ~CoolPra~

    Hi,
    You can create a file screen to prevent users from saving files on a certain volume. File screens are used to block specific types of files from being saved on a volume or in a folder tree. A file screen affects all folders in the designated path. You need
    to update the server to Windows Server 2003 R2 to install the File Server Resource Manager.
    File Screening Management
    http://technet.microsoft.com/en-us/library/cc772675(v=ws.10).aspx
    Best Regards,
    Mandy 
    We
    are trying to better understand customer views on social support experience, so your participation in this
    interview project would be greatly appreciated if you have time.
    Thanks for helping make community forums a great place.

  • Automatically Deleting Users from Oracle Files

    Hi,
    We have written code to add/remove users in the OID.
    Deleting in OID works fine but the user remains in OF.
    Is there configuration setting to cascade the deletion request to Oracle Files?
    Is there away to programmatically delete the user from Oracle files?
    Thanks in Advance

    Hi Kate
    I have the same problem than you : my users also appears in the approbation paths.
    Also, how did you delete a lot of users ? Manually ? Is there a way to mass delete users, instead of deleting them 1 by 1 ?

  • Create an user from the existing user.

    Hi All,
    Recently i have created one user from the existing user in a different server.
    Oracle version :10.2.0.1.0
    I have granted the similar roles same as in production.
    In Production:
    SQL> select granted_role,grantee from dba_role_privs where grantee in ('TRADELOANS');
    GRANTED_ROLE                   GRANTEE
    RESOURCE                       TRADELOANS
    CONNECT                        TRADELOANS
    In Test:
    SQL> select granted_role,grantee from dba_role_privs where grantee in ('TRADELOANS');
    GRANTED_ROLE                   GRANTEE
    RESOURCE                       TRADELOANS
    CONNECT                        TRADELOANS
    But the user complained that he is getting error like 'user lacks CREATE SESSSION privilege'. He also says he is able to connect to production but for the test he is getting that error
    Can anybody let me know where i have done the mistake?
    Regards
    Arun

    arundba wrote:
    Hi Kamran,
    I listed the roles given to the user in my first post. I have granted connect and resource role to the user.
    and it is same in production also. But the thing is why he is able to connect to production and not for test?
    Regards
    ArunSee the following demonstration:
    SQL> create user t identified by t;
    User created.
    SQL> connect t/t
    ERROR:
    ORA-01045: user T lacks CREATE SESSION privilege; logon denied
    Warning: You are no longer connected to ORACLE.
    SQL> conn / as sysdba
    Connected.
    SQL> grant connect to t;
    Grant succeeded.
    SQL> conn t/t
    Connected.
    SQL>

  • Colum names mapping from formate file is not working

    Hi All,
    i tried to import data from text file using BULK INSERT format file option, am able to load the data from file to table but when i change the column name order in the input file it is not inserting according to change column order 
    BULK INSERT monsanto55_Steelwedge_monsanto_manualBuild_filters.dbo.bulk_test
       FROM '\\192.168.97.23\poc\bulk.txt'
       WITH( FORMATFILE = '\\192.168.97.23\poc\build.fmt',FIRSTROW = 2)
    TABLE COLUMS: P_Id,LastName,FirstName,age,Address,City,no
    Format file is :
    10.0
    7
    1       SQLCHAR             0       12      "\t"     1     P_Id                   ""
    2       SQLCHAR             0       255     "\t"     2     LastName               SQL_Latin1_General_CP1_CI_AS
    3       SQLCHAR             0       255     "\t"     3     FirstName              SQL_Latin1_General_CP1_CI_AS
    4       SQLCHAR             0       12      "\t"     4     age                    ""
    5       SQLCHAR             0       255     "\t"     5     Address                SQL_Latin1_General_CP1_CI_AS
    6       SQLCHAR             0       255     "\t"     6     City                   SQL_Latin1_General_CP1_CI_AS
    7       SQLCHAR             0       12      "\r\n"   7     no                     ""
    input data file:
    P_Id FirstNameLastName
    ageAddress Cityno
    1 first
    one 11
    sanathnagar HYD 5
    2 second
    two 12
    xyz abc
    0
    3 third
    three 20
    ameerpet SEC
    30
    according to mapping the data in table must be like:
    P_Id,LastName,FirstName,age,Address,City,no
    1 one first 11 sanathnagar HYD 5
    2 two second 12 xyz abc 0
    3 third three 20 ameerpet SEC 30
    but it inserting same as input file format so first name and last name are miss matching
    please let me know if you have any idea.
    Thanks,

    Hi All,
    i tried to import data from text file using BULK INSERT format file option, am able to load the data from file to table but when i change the column name order in the input file it is not inserting according to change column order 
    BULK INSERT monsanto55_Steelwedge_monsanto_manualBuild_filters.dbo.bulk_test
       FROM '\\192.168.97.23\poc\bulk.txt'
       WITH( FORMATFILE = '\\192.168.97.23\poc\build.fmt',FIRSTROW = 2)
    TABLE COLUMS: P_Id,LastName,FirstName,age,Address,City,no
    Format file is :
    10.0
    7
    1       SQLCHAR             0       12      "\t"     1     P_Id                   ""
    2       SQLCHAR             0       255     "\t"     2     LastName               SQL_Latin1_General_CP1_CI_AS
    3       SQLCHAR             0       255     "\t"     3     FirstName              SQL_Latin1_General_CP1_CI_AS
    4       SQLCHAR             0       12      "\t"     4     age                    ""
    5       SQLCHAR             0       255     "\t"     5     Address                SQL_Latin1_General_CP1_CI_AS
    6       SQLCHAR             0       255     "\t"     6     City                   SQL_Latin1_General_CP1_CI_AS
    7       SQLCHAR             0       12      "\r\n"   7     no                     ""
    input data file:
    P_Id FirstNameLastName
    ageAddress Cityno
    1 first
    one 11
    sanathnagar HYD 5
    2 second
    two 12
    xyz abc
    0
    3 third
    three 20
    ameerpet SEC
    30
    according to mapping the data in table must be like:
    P_Id,LastName,FirstName,age,Address,City,no
    1 one first 11 sanathnagar HYD 5
    2 two second 12 xyz abc 0
    3 third three 20 ameerpet SEC 30
    but it inserting same as input file format so first name and last name are miss matching
    please let me know if you have any idea.
    Thanks,
    Hi all,
    Thanks for your response, and sorry for wrong question here i need to supply default values to column of
    table based on input file so default values of columns will be changed based on input file, and one more thing i don't have any rights to change the table structure my work is to load data from file to table. Is there any chance to supply default values by XMLformat
    file instead of .fmt file
    or any other scenarios please let me know the possibility.

  • Dear ladies and gentlemen! I recently received on my notebook, operating system 8.1, the message "Adobe Acrobat is no longer working properly". I also found myself that I can copy from einerPDF file excerpts not without problems in another document. My Ad

    Dear ladies and gentlemen!
    I recently received on my notebook, operating system 8.1, the message "Adobe Acrobat is no longer working properly". I also found myself that I can copy from einerPDF file excerpts not without problems in another document. My Adobe Acrobat 9 Pro has released version 9.0.0. Two updates this version is not listed. Please inform me how I can fix this problem.
    Sincerely, Walter Hacksteiner
    mailto: [email protected]

    The first thing I would try is to update Acrobat 9 to the latest version 9.5.5
    The next thing would be to run Acrobat 9 in Windows 7 or Vista or XP Compatibility Mode.

  • Import data from excel file

    Hello.
    Is anybody can help how to import data from excel file to the form created with designer 7.0. Originally there is a script inside the form to populate drop down list and depending from data selected in the ID number drop down list, there will be filled out the description and the prices text fields. But now I have to modify this form with data from excel file, which has more than 30000 lines and put all this data to script is too much.
    So, can somebody know how can I after filling the ID number field , populate the description and price text fields with data from excel file corresponding to this ID number ?
    This form is used in Adobe reader.
    Any comments are welcome.
    Regards,
    Aivar

    Hi
    That's what i said in my prev. Post to clear cache... :)
    disable your cache from nqsconfig.ini
    In cache section of NQSConfig file,
    you find
    ENABLE     =     YES;
    set to NO
    OR
    if you are using data ware house as the source for OBIEE,
    you know that when ETL is done, so just create iBot to purge cache automatically at that particular intervals,
    So that report runs freshly at that time
    And what happened to your View Selector question?
    Edited by: Kishore Guggilla on Jul 3, 2009 3:52 PM

  • Import data from excel file - best practice in the CQ?

    Hi,
    I have question related to importing data from excel file and creates from those data a table in the CQ page. Is inside CQ some OOTB component which provides this kind of functionalities? Maybe somebody implement this kind of functionality or there is best practice to do this kind of functionalities?
    Thanks in advance for any answer,
    Regards
    kasq

    You can check a working example package [1] (use your Adobe ID to log in)
    After installing it, go to [2] for immediate example.
    Unfortunately it only supports the old OLE-2 Excel format (.xls and not .xlsx)
    [1] - http://dev.day.com/content/packageshare/packages/public/day/cq540/demo/xlstable.html
    [2] - http://localhost:4502/cf#/content/geometrixx/en/company/news/pressreleases/my_personal_bes ts.html

  • Error message in creating EBP users from existing SU01 users

    I am getting the following error messages when i try to create EBP users from existing SU01 users using users_gen: Error during creation of user: User not created or error(s) occurred during user creation. ``Central person`` already exists for user (BBPU_MESSAGES 042). Pls what does it mean and how do i solve this?

    Babalola-
    The message is indicating that the user you are attempting to create was previously created in the EBP system.
    First I would try to correct the user via users_gen using the "check users" option.  This may repair the user, but if the user has lost the association to the org then you will need to take some manual steps to re-establish the links for the user in the org details.
    If this doesn't correct it, then use transaction PP01 to correct/verify the following relationships for the user.  Start with the org unit and work your way down looking for the broken link/s.
    Here are the required relationships for the objects:
    ORG UNIT:
    Relationship     Object
    B 003          Position(of user)
    POSITION:
    Relationship     Object
    A 003          Org Unit
    A 008          Central Person (of user)
    A 008          User
    CENTRAL PERSON:
    Relationship     Object
    B 008          Position
    B 207          Business Partner
    B 208          User
    USER:
    NONE
    BUSINESS PARTNER:
    NONE
    Hope this helps you.
    b

Maybe you are looking for

  • Why can i no longer listen to audio books i bought on i store - won't recognise my password?

    So how is one supposed to listen to an audio book you have started to then have to confirm passwords to find it is not reading this informaiton ? getting bored of apple nonsens

  • SAP R/3(IDOC) to SAP XI to  HTTP and RETURN Through SAP XI to SAP R/3

    Hello Friends, i have to do this object.. i am not familiar with this subject... <b> SAP R/3 to SAP XI to HTTP Server then it comes back through SAP XI to SAP R/3</b> 1.What i have to use? 2.how can i configure? 3.which adapters,servers etc..i have t

  • Links do not work RH5 to RH 8

    I upgraded a context sensitive, Oracle Help output, from RH5 to RH8.  Now several of the old topic ID links do not work. The links are not "broken" and some links within the same topic work and some do not. It gives the message that the address is in

  • Bad date format in generated client API (weblogic server Workshop)

    Hello, i'm making web service client from oracle weblogic workshop. I have used "clientgen" Ant task to generate the client library. The WSDL indicates that certain fields are of type xsd:date.      <xs:complexType name="declarationType">           <

  • Ayuda con fotos en Raw,  POR FAVOR!!!

    Tengo un problema para poder leer fotos sacadas hace tiempo (2 ó tres años) en formato Raw. Resulta que antes en un PC, ahora antiguo ya, las podía ver sin ningún problema. Pero hoy en día cuando intento volver a visualizarlas, ahora uso un iMac, no