Issue with User Creation in AS ABAP

Hi Experts,
We are implementing IDM 7.2 SP8. We have successfully performed initial load from CRM systems and also created Business Roles in CRM containing privelleges from CRM system. We can successfully assign roles from IDM to users in CRM for users loaded in IDM after initial load.
However, we are not able to create users in CRM backend system. Please find below details on the same:
Creating user from IDM UI and also assigning role:
1) We try to create user using the standard SAP Provisioning Task - "Display Identity". We maintain the user details like - first name, last name, validity etc and also the
2) We select the Business Role to be assigned to user and click on save. Workflow is triggered for the same and after approval from role owner, the correspodning tasks get executed.
3) The user gets created in IDM UI and also the desired role is assigned to user. However, no changes occur in backend CRM system.
4) Job logs and found that the job "SETABAPROLES&PROFILESFORUSER"(from standard sap framework) fails with error -
putNextEntry failed storing
Exception from Modify operation:com.sap.idm.ic.ToPassException: User 1 does not exist
Creating User from IDM UI without assigning any role:
1) We create a user using "Create Identity Task", maintain the attribute "ACCOUNT<repository name>" for the user, maintain the validity dates and click on save.
2) User is created in IDM UI but nothing happens in backend CRM system.
I followed thread 3331868 and understand that "Account Privilege PRIV:<Repository>:ONLY" should be assigned to user for creation in backend system. However, i am not able to find the privellege in IDM UI for assignment while user creation.
Kindly help me with steps on how to assign this privelege while creation of new user in IDM UI so that user can be created in backend system.
Thanks and regards,
Nitin

The repository:ONLY privilege should be created when you do the initial load if you use one of the SAP templates.  If not, you can manually create it.
On the repository, set the master privilege to be SAP:repository:ONLY (note, it can be anything but changing it would make life hard for anyone following you).
Create a task called 'Assign Master Privilege' which has:
MSKEYVALUE     %mskeyvalue%
MXREF_MX_PRIVILEGE  PRIV:$rep.$Name:ONLY
Ensure that the repository is set to 'inherited'
Assign your new task as the 'No Master Task' on all repositories.
When a user gets a privilege in a back end system, it will check to see if they have an 'ONLY' priv for that repository.  If not, it triggers the 'No Master Task' which assigns it and then it will assign the backend privilege.
Peter

Similar Messages

  • Issues with user creation in Oracle 10g

    ear All,
    After logon to database with sysdba user i created one user by following query:
    CREATE USER BI_USER
    IDENTIFIED BY VALUES '0CE8A6E883EE4E19'
    DEFAULT TABLESPACE BI_USER
    TEMPORARY TABLESPACE TEMP1
    PROFILE DEFAULT
    ACCOUNT UNLOCK;
    After creating this i have given following privledges to it:
    GRANT RESOURCE TO BI_USER;
    GRANT CONNECT TO BI_USER;
    GRANT SCHEDULER_ADMIN TO BI_USER;
    GRANT DBA TO BI_USER;
    GRANT SELECT_CATALOG_ROLE TO BI_USER;
    GRANT GLOBAL QUERY REWRITE TO BI_USER;
    GRANT ANALYZE ANY TO BI_USER;
    GRANT EXECUTE ANY PROCEDURE TO BI_USER;
    GRANT CREATE SEQUENCE TO BI_USER;
    GRANT CREATE SYNONYM TO BI_USER;
    GRANT EXECUTE ANY PROGRAM TO BI_USER;
    GRANT SELECT ANY DICTIONARY TO BI_USER;
    GRANT DROP ANY VIEW TO BI_USER;
    GRANT CREATE DIMENSION TO BI_USER;
    GRANT DROP ANY TYPE TO BI_USER;
    GRANT CREATE ANY DIRECTORY TO BI_USER;
    GRANT ALTER ANY MATERIALIZED VIEW TO BI_USER;
    GRANT CREATE MATERIALIZED VIEW TO BI_USER;
    GRANT UNLIMITED TABLESPACE TO BI_USER;
    BEGIN
    SYS.DBMS_RULE_ADM.GRANT_SYSTEM_PRIVILEGE(
    PRIVILEGE => SYS.DBMS_RULE_ADM.EXECUTE_ANY_RULE,
    GRANTEE => 'BI_USER',
    GRANT_OPTION => FALSE);
    END;
    GRANT EXECUTE ANY TYPE TO BI_USER;
    GRANT CREATE ANY MATERIALIZED VIEW TO BI_USER;
    GRANT CREATE TRIGGER TO BI_USER;
    GRANT CREATE ANY TABLE TO BI_USER;
    GRANT CREATE TABLE TO BI_USER;
    BEGIN
    SYS.DBMS_RULE_ADM.GRANT_SYSTEM_PRIVILEGE(
    PRIVILEGE => SYS.DBMS_RULE_ADM.EXECUTE_ANY_RULE_SET,
    GRANTEE => 'BI_USER',
    GRANT_OPTION => FALSE);
    END;
    GRANT CREATE TYPE TO BI_USER;
    GRANT DROP ANY INDEX TO BI_USER;
    GRANT SELECT ANY TABLE TO BI_USER;
    GRANT CREATE JOB TO BI_USER;
    GRANT QUERY REWRITE TO BI_USER;
    GRANT CREATE VIEW TO BI_USER;
    GRANT CREATE SESSION TO BI_USER;
    GRANT EXECUTE ANY CLASS TO BI_USER;
    BEGIN
    SYS.DBMS_RULE_ADM.GRANT_SYSTEM_PRIVILEGE(
    PRIVILEGE => SYS.DBMS_RULE_ADM.EXECUTE_ANY_EVALUATION_CONTEXT,
    GRANTEE => 'BI_USER',
    GRANT_OPTION => FALSE);
    END;
    GRANT CREATE INDEXTYPE TO BI_USER;
    GRANT CREATE DATABASE LINK TO BI_USER;
    GRANT ALTER SESSION TO BI_USER;
    GRANT DROP ANY DIRECTORY TO BI_USER;
    GRANT CREATE PROCEDURE TO BI_USER;
    GRANT DROP ANY SYNONYM TO BI_USER;
    GRANT DROP ANY TABLE TO BI_USER;
    Now following are the issues i am facing:
    1). After all this when i logon to this user through toad it is successful but through SQL it says invalid username and password
    2). Whenever i create a table it is created in SYS schema not in the user schema for creating it in user schema i have to right username.tablename also in select statement.
    Can any body help me in this.

    2). Whenever i create a table it is created in SYS schema not in the user schema for creating it in user schema i have to right username.tablename also in select statement.
    <code>
    sqlplus scott/tiger
    Connected.
    SQL> desc t
    Name                         Null? Type
    TESTCOL                         VARCHAR2(10)
    SQL> select * from t;
    TESTCOL
    1
    2
    3 new
    SQL> conn / as sysdba
    Connected.
    SQL> sho user
    USER is "SYS"
    SQL> select * from scott.t
    2 ;
    TESTCOL
    1
    2
    3 new
    SQL> create table scott.t_copy as select * from scott.t;
    Table created.
    SQL> conn scott/tiger
    Connected.
    SQL> select * from t_copy;
    TESTCOL
    1
    2
    3 new
    <code>
    1). After all this when i logon to this user through toad it is successful
    but through SQL it says invalid username and password
    <code>
    $ echo $ORACLE_SID
    orcl
    $ tnsping orcl
    TNS Ping Utility for Linux: Version 10.2.0.2.0 - Production on 27-AUG-2009 14:38:34
    Copyright (c) 1997, 2005, Oracle. All rights reserved.
    Used parameter files:
    /home/oracle/oracle/product/10.2.0/db_1/network/admin/sqlnet.ora
    Used TNSNAMES adapter to resolve the alias
    Attempting to contact (DESCRIPTION = (ADDRESS = (PROTOCOL = TCP)(HOST = localhost.localdomain)(PORT = 1521)) (CONNECT_DATA = (SERVER = DEDICATED) (SERVICE_NAME = orcl)))
    OK
    $ sqlplus scott/tiger
    SQL*Plus: Release 10.2.0.2.0 - Production on Thu Aug 27 14:38:42 2009
    Copyright (c) 1982, 2005, Oracle. All Rights Reserved.
    Connected to:
    Oracle Database 10g Enterprise Edition Release 10.2.0.2.0 - 64bit Production
    With the Partitioning, OLAP and Data Mining options
    SQL> sho user
    USER is "SCOTT"
    SQL> select * from t_copy;
    TESTCOL
    1
    2
    3 new
    <code>
    please tell the syntax how you connect through sqlplus

  • Issue with User decision handler in UWL

    Hi Friends,
      I am facing an issue with user decision hander in UWL. We have modified the XML file to show up the comments box to enter the rejection reason, this is working fine with two approval tasks already but the same thing is not working now with a new task id. In the back end(R/3) everything is the same for both the tasks, in the Portal side my portal consultant says the same. But we were not able to figure out the issue. I even created a new task and tried to use implement the handler changes, but still it is not working. Please advice what could be the issue

    Hi,
    can you elaborate what the issue, what do you mean by not working. you are not getting the reason box, or it's giving error,something like that.
    Hope we'll be more clear then about your requirement.
    venu

  • Issue with index creation of an infocube.

    Hi,
    I have an issue with creation of index's for a info cube in SAP BI. when i create index's using
    a process chain for the cube it is getting failed  in the process chain. when i try to check the index's  for this
    cube  manual the following below massage is shown.
    *The recalculation can take some time (depending on data volume)*
    *The traffic light status is not up to date during this time*
    Even i tried to repair the index's using the standard program "SAP_INFOCUBE_INDEXES_REPAIR" in SE38
    to repair the index so it is leading to dump in this case.
    Dear experts with the above issue please suggest. 
    Regards,
    Prasad.

    Hi,
    Please check the Performance tab in the Cube manage and try doing a repair index from there.
    This generates a job so check the job in SM37 and see if it finishes. If it fails, check the job log which will give you the exact error.
    These indices are F fact table indices so if nothing works, try activating the cube by the pgm 'RSDG_CUBE_ACTIVATE' and see if that resolves the issue.
    Let us know the results.

  • Issue with users trying to save reports to thier Documents on one drive.

    I am working
    on a 2013 SharePoint environment and users who use Power View reports.  I
    have a user who can create reports on a site I have set up (no problems
    there).  They can also save reports to PowerPivot Gallery they have added
    in their Newsfeed for their personal site (no problems here).  The problem
    is when they try to save the report and go to Documents on one Drive it fails
    with below error message.  I am an admin but can save just fine to my
    documents.  I know the error shows an access issue but not sure where or
    how to resolve this issue for users.  <o:p></o:p>
    P.S. the
    issue happens before they even save button it happens when they see the My
    Documents and try to open it.  Again it is there personal SharePoint site
    so not sure why they would not have access.<o:p></o:p>
    SoapAction: ListChildren
    HttpStatus: 500
    ServerErrorCode: rsAccessDenied
    ServerError: <detail><ErrorCode xmlns="http://www.microsoft.com/sql/reportingservices">rsAccessDenied</ErrorCode><HttpStatus xmlns="http://www.microsoft.com/sql/reportingservices">400</HttpStatus><Message
    xmlns="http://www.microsoft.com/sql/reportingservices">The permissions granted to user 'HQEAGLEVIEW\levi.bond' are insufficient for performing this operation. ---&gt; Microsoft.ReportingServices.Diagnostics.Utilities.AccessDeniedException:
    The permissions granted to user 'HQEAGLEVIEW\levi.bond' are insufficient for performing this operation.</Message><HelpLink xmlns="http://www.microsoft.com/sql/reportingservices">http://go.microsoft.com/fwlink/?LinkId=20476&amp;EvtSrc=Microsoft.ReportingServices.Diagnostics.Utilities.ErrorStrings&amp;EvtID=rsAccessDenied&amp;ProdName=Microsoft%20SQL%20Server%20Reporting%20Services&amp;ProdVer=11.0.3412.0</HelpLink><ProductName
    xmlns="http://www.microsoft.com/sql/reportingservices">Microsoft SQL Server Reporting Services</ProductName><ProductVersion xmlns="http://www.microsoft.com/sql/reportingservices">11.0.3412.0</ProductVersion><ProductLocaleId
    xmlns="http://www.microsoft.com/sql/reportingservices">127</ProductLocaleId><OperatingSystem xmlns="http://www.microsoft.com/sql/reportingservices">OsIndependent</OperatingSystem><CountryLocaleId
    xmlns="http://www.microsoft.com/sql/reportingservices">1033</CountryLocaleId><MoreInformation xmlns="http://www.microsoft.com/sql/reportingservices"><Source>ReportingServicesLibrary</Source><Message
    msrs:ErrorCode="rsAccessDenied" msrs:HelpLink="http://go.microsoft.com/fwlink/?LinkId=20476&amp;EvtSrc=Microsoft.ReportingServices.Diagnostics.Utilities.ErrorStrings&amp;EvtID=rsAccessDenied&amp;ProdName=Microsoft%20SQL%20Server%20Reporting%20Services&amp;ProdVer=11.0.3412.0"
    xmlns:msrs="http://www.microsoft.com/sql/reportingservices">The permissions granted to user 'HQEAGLEVIEW\levi.bond' are insufficient for performing this operation.</Message></MoreInformation><Warnings
    xmlns="http://www.microsoft.com/sql/reportingservices" /></detail>
    here is actual screen shot
    <v:shapetype coordsize="21600,21600" filled="f" id="_x0000_t75" o:preferrelative="t" o:spt="75" path="m@4@5l@4@11@9@11@9@5xe" stroked="f">
     <v:stroke joinstyle="miter">
    <v:formulas>  <v:f eqn="if lineDrawn pixelLineWidth 0">
      <v:f eqn="sum @0 1 0">
      <v:f eqn="sum 0 0 @1">
      <v:f eqn="prod @2 1 2">
      <v:f eqn="prod @3 21600 pixelWidth">
      <v:f eqn="prod @3 21600 pixelHeight">
      <v:f eqn="sum @0 0 1">
      <v:f eqn="prod @6 1 2">
      <v:f eqn="prod @7 21600 pixelWidth">
      <v:f eqn="sum @8 21600 0">
      <v:f eqn="prod @7 21600 pixelHeight">
      <v:f eqn="sum @10 21600 0">
     </v:f></v:f></v:f></v:f></v:f></v:f></v:f></v:f></v:f></v:f></v:f></v:f></v:formulas>
     <v:path gradientshapeok="t" o:connecttype="rect" o:extrusionok="f">
     <o:lock aspectratio="t" v:ext="edit">
    </o:lock></v:path></v:stroke></v:shapetype><v:shape alt="" id="Picture_x0020_1" o:spid="_x0000_i1025" style="width:7in;height:426.75pt;" type="#_x0000_t75">
    <v:imagedata o:href="cid:[email protected]" src="file:///C:\Users\KEN~1.CRA\AppData\Local\Temp\msohtmlclip1\01\clip_image001.png">
    </v:imagedata></v:shape>
    Ken Craig

    Hi Ken,
    It's strange that the User Profile Service Application is not available there. Please use PowerShell to check it, and you can run the command below:
    Get-SPServiceApplication | where-object{$_.DisplayName -like 'User Profile*'}
    Please ensure you are connecting to the correct farm, and open PowerShell with administrator permission. Meanwhile, add a test user in your Active Directory, and test to see whether the user's My Site can be created.
    If the User Profile Service Application can be listed by PowerShell, and the new user's My Site can be created, there might be an UI issue in your Central Administration. Otherwise, you may consider to recreate or restore your User Profile Service Application.
    Here are references:
    https://technet.microsoft.com/en-us/library/gg985419.aspx
    http://sharepoint.stackexchange.com/questions/55087/user-profile-service-application-unable-to-create-a-new-user-profile-service-ap
    https://joanneklein.wordpress.com/2011/11/08/recreated-user-profile-service-application-deletes-user-profiles/
    Thanks,
    Reken Liu

  • Issue with user exit ZXPADU01 and ZXPADU02

    Hi,
    I am trying to change the existing record for the info type 0015 for an employee in Pa30 transaction.
    my requirement is i need old value and new value when i am changing the existing record in info type 0015.
    When i kept break point in user exit ZXPADU01 it is not triggering it is triggering only when we creating the record.
    i tried with user exit ZXPADU02 it is not working as per my requirement.
    My requirement is :whenever i am changing the existing record(modifying record) i need old value and new value.
    Anybody can suggest me how to fix this issue.
    Thanks,
    Maheedhar

    Dear Maheedhar,
    The best way to achieve this requirement is to use the PAI user exit ZXPADU02 import parameter PSAVE. The PSAVE parameter contains the PBO original / initial record, before any changes take place.
    The INNNN parameter contains the current PAI record as usual, in order to be used for customer check and new values. Thus, you've got both the old and the new record in place, and you can make your comparison according to the business requirements:

  • New User Creation in an ABAP system and email notification

    Dear All,
    We are on SRM 7.0.
    When a new user is created in an ABAP System ( SRM 7.0) , we want an email to be sent to the user with the user name/password?. How can this be done?. Can this done by some config settings?.
    Thanks
    velu

    Hi,
    Probably you may need to define some workflow for the same. With the help of your ABAPER you can do it.
    Regards,
    Sharath Babu M

  • Issue with user running Outlook on Windows XP

    We are having an issue with many of our users who have had their sent items disappear from Outlook. We are running Exchange 2010 SP2 with Rollup 8. All users on Windows 7 appear to be working fine, it is just users on XP that are having the issue. All
    PCs are SP3 with updates applied. The messages were there previously, but the Sent folder shows empty as of Monday. They show correctly in OWA, it is just in Outlook itself that is the problem. If we enable cached mode the items populate, but our standard
    policy is to run online with no local PST. We have tried running Outlook with /clearviews and in Safe Mode, but this does not resolve the issue.

    Hi
    Cached mode will use an OST file not a PST file.
    If you remove the contents from the folder and add a new profile does it work? Are you planning on upgrade to SP3 on exchange 2010?

  • ACS SE 4.1.1.23 patch 5 issue with users

    HI There, I am facing very weired issue with ACS SE 4.1.1.23 patch 5. I am trying to add users in ACS it is added successfully but I can not see these users when I click list all users.
    But I can see users are increasing in groups when I add users..but when I do list all users it say there are no users defined. and I tried to login with newly created users from devices  ....I am able to login with those new users.....
    also when I go to that particular group in which I added new users....and say list users in group...I get message from ACS saying that "can not read users from group" ....
    what could be issue any one has any idea....customer complained that he was unable to login to devices...with the users created on ACS...when I saw there was no users in database....then I added 2-3 users by looking at old passed and failed authentication... but I dont know how users got deleted automatically...even I tried to see appliance audit logs...could not see any thing which indicates someone deleted users...
    please help me to solve this issue..
    Thanks

    Issue resolved. The CRL that was being parsed from the cert was one level higher than the CRL that needed to be checked. The User CRL was ppointing to the Intermediate CA's CRL. I had to manually change the URL from this:
    http://DOMAINvmsp.DOMAIN.xxxx-xx.edu/pkipub/DOMAIN%20Intermediate%20CA%201.crl
    to this:
    http://DOMAINvmsp.DOMAIN.xxxx-xx.edu/pkipub/DOMAIN%20User%20CA%201.crl
    Mark

  • Variations issues with User & Group Site Column value

    Hi all,
    I have created variation sites. e.g. http://mydomain/en-us for english & http://mydomain/de-de for german language. I have created custom page layouts. This page layouts are based on custom content types. I have created a column called "User"
    which is type of "User/Groups". I am registering this column to my page layout.  http://mydomain/de-de is my default site.
    Now I am editing column called "User" on page & save it. It saves data properly. But when I am propagating these changes to another site that is http://mydomain/en-us. It shows me all controls with values filled. but with "User"
    column, its showing me blank value.
    Any suggestion. ?
    Thanks in advance.

    http://webcache.googleusercontent.com/search?q=cache:kNlxGIj5f1kJ:sjoere.blogspot.com/2007/11/5-reasons-why-you-should-not-use.html+&cd=2&hl=en&ct=clnk&gl=in
    Content types not propagated
    Risk
    When you add a content type to a page library in the variation source, this type is not automatically propagated to the other labels (see
    my previous post). If you then create a page with that content type in the variation source, it does get published to the other labels but loses its content type field values.
    Proposed solutions
    Set up your site via a site definition that already contains the proper content type bindings to the page libraries. All labels will use the same content types
    Put a good governance plan in place to make sure manual changes are done in every label
    If this helped you resolve your issue, please mark it Answered

  • Role reconciliation issue with user ID in acting (HDA) position

    Hi all,
    I am experiencing an issue with my role reconciliation for user who is in a HDA (acting) position. This user has a 008 relationship to her own position and a A081 relationship to the position she is acting in. Roles are assigned to these 2 positions.
    After the programme PFCG_TIME_DEPENDENCY has been run, I would assume the user to acquire the roles assigned to the HDA position and lose the roles assigned to her in her original position. However, this isn't the case.
    I am just wondering whether anyone else has encountered this issue and know of a solution to this.
    Thank you.
    Kim

    Kim,
    After the programme PFCG_TIME_DEPENDENCY has been run, I would assume the user to acquire the roles assigned to the HDA position and lose the roles assigned to her in her original position. However, this isn't the case.
    Before PFUD takes place, change of assignment should be done in PA40(automatically or manually depending on your setup).
    Thanks,
    Sri

  • Powershell : Issues with user input collection from Multiple InPutBox Form

    I am having issues with getting user input to pass from a form that a user fills out into variables that I can then use in other methods and commands. (ex; SQL Query, SQL Data Add, ... )
    I have attached the Powershell script I am using in it's designed form but I am having issues getting the DataCollection function to grab the content of the InputBox and send it to a variable for later use.
    Note: I'm running this at this time from the ISE so I can actually see what is going on.
    Any help would be appreciated.
    DAS
    [System.Reflection.Assembly]::LoadWithPartialName( “System.Windows.Forms”)
    [System.Reflection.Assembly]::LoadWithPartialName( “Microsoft.VisualBasic”)
    $FormDBA = New-Object System.Windows.Forms.Form
    $FormDBA.Size = New-Object System.Drawing.Size(300,500)
    $FormDBA.Text = "MIS Data"
    $FormDBA.StartPosition = [System.Windows.Forms.FormStartPosition]::CenterScreen;
    function DataCapture
    $SubSID = $InBoxSID.text
    ECHO $SubSID
    $InBoxTxtSID = New-Object System.Windows.Forms.Label
    $InBoxTxtSID.Location = New-Object System.Drawing.Size(25,15)
    $InBoxTxtSID.Text = "Sticker ID : "
    $InBoxSID = New-Object System.Windows.Forms.TextBox
    $InBoxSID.Location = New-Object System.Drawing.Size(130,10)
    $InBoxSID.Size = New-Object System.Drawing.Size(120,20)
    $InBoxTxtUSR = New-Object System.Windows.Forms.Label
    $InBoxTxtUSR.Location = New-Object System.Drawing.Size(25,55)
    $InBoxTxtUSR.Text = "User Name ; "
    $InBoxUSR = New-Object System.Windows.Forms.TextBox
    $InBoxUSR.Location = New-Object System.Drawing.Size(130,50)
    $InBoxUSR.Size = New-Object System.Drawing.Size(120,20)
    $InBoxTxtPCN = New-Object System.Windows.Forms.Label
    $InBoxTxtPCN.Location = New-Object System.Drawing.Size(25,95)
    $InBoxTxtPCN.Text = "PC Name : "
    $InBoxPCN = New-Object System.Windows.Forms.TextBox
    $InBoxPCN.Location = New-Object System.Drawing.Size(130,90)
    $InBoxPCN.Size = New-Object System.Drawing.Size(120,20)
    $InBoxTxtDPT = New-Object System.Windows.Forms.Label
    $InBoxTxtDPT.Location = New-Object System.Drawing.Size(25,135)
    $InBoxTxtDPT.Text = "Department : "
    $InBoxDPT = New-Object System.Windows.Forms.TextBox
    $InBoxDPT.Location = New-Object System.Drawing.Size(130,130)
    $InBoxDPT.Size = New-Object System.Drawing.Size(120,20)
    $InBoxTxtPCT = New-Object System.Windows.Forms.Label
    $InBoxTxtPCT.Location = New-Object System.Drawing.Size(25,175)
    $InBoxTxtPCT.Text = "PC Type : "
    $InBoxPCT = New-Object System.Windows.Forms.TextBox
    $InBoxPCT.Location = New-Object System.Drawing.Size(130,170)
    $InBoxPCT.Size = New-Object System.Drawing.Size(120,20)
    $InBoxTxtMAK = New-Object System.Windows.Forms.Label
    $InBoxTxtMAK.Location = New-Object System.Drawing.Size(25,215)
    $InBoxTxtMAK.Text = "Make : "
    $InBoxMAK = New-Object System.Windows.Forms.TextBox
    $InBoxMAK.Location = New-Object System.Drawing.Size(130,210)
    $InBoxMAK.Size = New-Object System.Drawing.Size(120,20)
    $InBoxTxtMOD = New-Object System.Windows.Forms.Label
    $InBoxTxtMOD.Location = New-Object System.Drawing.Size(25,255)
    $InBoxTxtMOD.Text = "Model : "
    $InBoxMOD = New-Object System.Windows.Forms.TextBox
    $InBoxMOD.Location = New-Object System.Drawing.Size(130,250)
    $InBoxMOD.Size = New-Object System.Drawing.Size(120,20)
    $InBoxTxtOPS = New-Object System.Windows.Forms.Label
    $InBoxTxtOPS.Location = New-Object System.Drawing.Size(25,295)
    $InBoxTxtOPS.Text = "O.S. : "
    $InBoxOPS = New-Object System.Windows.Forms.TextBox
    $InBoxOPS.Location = New-Object System.Drawing.Size(130,290)
    $InBoxOPS.Size = New-Object System.Drawing.Size(120,20)
    $InBoxTxtDIS = New-Object System.Windows.Forms.Label
    $InBoxTxtDIS.Location = New-Object System.Drawing.Size(25,335)
    $InBoxTxtDIS.Text = "Disposed : "
    $InBoxDIS = New-Object System.Windows.Forms.TextBox
    $InBoxDIS.Location = New-Object System.Drawing.Size(130,330)
    $InBoxDIS.Size = New-Object System.Drawing.Size(120,20)
    $button = New-Object System.Windows.Forms.Button
    $button.Location = New-Object System.Drawing.Size(150,400)
    $button.Width = 100
    $button.Text = “Ok”
    $button.Add_Click({DataCapture})
    $FormDBA.Controls.Add($button)
    $FormDBA.Controls.Add($InBoxTxtSID)
    $FormDBA.Controls.Add($InBoxTxtUSR)
    $FormDBA.Controls.Add($InBoxTxtPCN)
    $FormDBA.Controls.Add($InBoxTxtDPT)
    $FormDBA.Controls.Add($InBoxTxtPCT)
    $FormDBA.Controls.Add($InBoxTxtMAK)
    $FormDBA.Controls.Add($InBoxTxtMOD)
    $FormDBA.Controls.Add($InBoxTxtOPS)
    $FormDBA.Controls.Add($InBoxTxtDIS)
    $FormDBA.Controls.Add($InBoxSID)
    $FormDBA.Controls.Add($InBoxUSR)
    $FormDBA.Controls.Add($InBoxPCN)
    $FormDBA.Controls.Add($InBoxDPT)
    $FormDBA.Controls.Add($InBoxPCT)
    $FormDBA.Controls.Add($InBoxMAK)
    $FormDBA.Controls.Add($InBoxMOD)
    $FormDBA.Controls.Add($InBoxOPS)
    $FormDBA.Controls.Add($InBoxDIS)
    $FormDBA.ShowDialog()

    Change this:
    $button = New-Object System.Windows.Forms.Button
    $button.Location = New-Object System.Drawing.Size(150,400)
    $button.Width = 100
    $button.Text = “Ok”
    $button.DialogResult='Ok'  #<<<<<-------
    #$button.Add_Click({DataCapture})
    Remove function andrun like this:
    if('Ok' -eq $FormDBA.ShowDialog()){
        $FormDBA.Controls|%{$_.Text}
    With names you can get values by control name.
    ¯\_(ツ)_/¯
    This suggestion works for the purpose I needed. 
    If I could, I would attach the file instead of pasting the script so you can see what all I am using this to do.
    But in short, we have a main form we use to pull records from a database and call up an application at the click of a button for remote assistance.  However, we seem to now need the ability to have this application to edit and add new records into said
    database.  That's where this second form came in and also when I hit my issue with the information capture.
    At this time I'm getting this to format the information collected so that I can start using using it with SQL commands.

  • Wss3 Issues with user check in files from within excel or word 2010

    I have got a user reporting that he is experiencing (and it is getting more and more often) that when a file is checked out in excel or word, he then edit it, followed by clicking check in on the File tab within either excel or word. He then gets error see
    image below.
    Just wonder if anyone has seen this before? and where do I start...?
    i have checked the site collection is about 12 GB in size, there are quite a few subsites in the area where this user is working, there are about 150 subsites, 3 levels... our wss3 version is 12.0.0.4621

    Yesterday I just had another user report the similar issue with with office complaining that the file was not checked out therefor upload (check-in) was failed.
    Please see the version and build number of MS Office
    Forgot to say, we are all on the same release and updates for MS Office as well as IE.

  • Issue with PDF creation

    Hi,
    We have an issue with the PDF file generated using standard SAP program 'RFFOEDI1'. The issue is that special characters for the country 'CZ' are printed as '#' in the PDF.
    However, the spool for 'CZ' prints the special characters correctly.
    Can any one please let us know why is the program 'RFFOEDI1' not printing special characters for 'CZ' correctly????
    Cheers,
    Raghav.

    Please update to latest Acrobat 9 release which is 9.4.2.
    Also do let us know
    a) office 2003 flavour: Standard or professional?
    b) OS flavour? Also whether it is 32bit or 64bit?
    Also as you mentioned that "Not all documents are affected", so we would require any of your affected file to analyze the issue. Can you please share the file? You can use acrobat.com to share the file.
    Thanks,
    Vishal

  • Issue with users accessing video card and /dev/nvram

    Hello,
    I have Lenovo x60s and i can't access with normal user (group users) the file
    /dev/nvram
    ever I restart de computer have execute "chmod 777 /dev/nvram" for fallowing access for users
    and with users i can't use video i810 alone use vesa
    with root i can use driver i810 on xorg, why??
    I don't understand?!?!?!

    The problem with my video is with root i can play games 3D, with users i can't, my config video card on xorg:
    Section "Device"
    ### Available Driver options are:-
    ### Values: <i>: integer, <f>: float, <bool>: "True"/"False",
    ### <string>: "String", <freq>: "<f> Hz/kHz/MHz"
    ### [arg]: arg optional
    #Option "ShadowFB" # [<bool>]
    #Option "DefaultRefresh" # [<bool>]
    #Option "ModeSetClearScreen" # [<bool>]
    Identifier "Card0"
    Driver "vesa" ---->> Now I write "VESA", while I write i810 i can't execute "startx" with normal user
    VendorName "Intel Corporation"
    BoardName "Mobile 945GM/GMS, 943/940GML Express Integrated Graphics Controller"
    BusID "PCI:0:2:0"
    EndSection
    the /dev/nvram is device when i use especial keys of keyboard on my notebook,
    ever restart my pc the permissions change, I have execute "chmod 777 /dev/nvram" else i can't use with normal user.
    i think the udev always create this device on start and always create with the permission alone read and write for root, but I just find that the group is kmen and I add my user in the group.
    I restart system and verify the result.

Maybe you are looking for

  • Mail Server Bouncing Mail

    I am having a major problem since moving to 10.6 mail system. A lot of my mail is being bounced and never received, my logs are indicating this error, NOQUEUE: reject: RCPT from mail2.onlineregister.com[207.66.2.58]: 554 5.7.1 <[email protected]>: Rel

  • PDF Viewer Bookmarklet

    As a user of Chrome in linux, there are still some things that are broken. For example, whenever I load a PDF, most of the time the Docs PDF Viewer extension will display it properly. However, there are still times where the PDF doesn't load properly

  • Solaris 3/05 install on new W2100Z

    I have a Sun W2100Z 2x2.0Ghz proc/2Gb mem & 72Gb Hdd workstation & it will not install Solaris 10 - i have the DVD & Cd's. No matter how far you get in to the install it bombs out with read errors or locale problems 7 hangs.Solaris 9 no probs but 10

  • Can we check the Objects modifiable " option for standard objects

    Dear Friends              In IR , we have imported SRM SERVER->SRM SERVER5.5 Then we  have checked the option<u><b> "Objects are modifiable"</b></u> then we imported the IDOC from R/3 system under SRM SERVER 5.5 swcv. Then created the mapping.It is w

  • Java Swing and WIndows User Localles

    HI, We need to develop a java applet/application which can be switchable at run time to accept and display characters in multilanaguages. This java applet will run on a windows 2000 server with multilanguage pack installed. Is it possible to dynamica