URGENT!!! Create a user form like SBO Default Form

Hi every one,
I would like to create a user form like the SBO Default Form, from an UDO.
A form only with a Matrix, that I can Add, Delete e Update information from the matrix.
I have tried the UDO Form Generator, but it didn't work.
I'm desperate... 
Thanks.
Fran.

Hi Fran,
Its quite simple, all you have to do is, to create a form using Screen Painter, the columns should be db data source bound and then, assign UDO for the same.  It will work fine.
Satish.

Similar Messages

  • When create a new user into AD by default permissions also added for share point site

    HI
    i have a sharepoint farm.
    when i create new  user in AD, by default below permissions are added to that user,
    how its happen ?
    site permissions:
    View Web Analytics Data  
    Browse Directories  -  Enumerate files and folders in a Web site using SharePoint Designer 
    and Web DAV interfaces. 
    View Pages  -  View pages in a Web site. 
    Enumerate Permissions  -  Enumerate permissions on the Web site, list, folder, document, or 
    list item. 
    List permissions:
    View Items  -  View items in lists and documents in document libraries. 
    Open Items 
    View Versions  -  View past versions of a list item or document.  
    View Application Pages  -  View forms, views, and application pages. Enumerate lists. 
    Use Remote Interfaces
    adil

    Hi
    yes i dont know how these permissions are added in sharepoint?
    how its happen? , even i did not added this user in any sharepoint group or sitepermission
    adil

  • Problem in Creating Default Form Through DI API

    Hi All,
    I am using the below code to create UDO and make it as Default Form through DI API. But the Default Form property is not getting set, that is the Default Form is not being created. The UDO is getting created. Any help is appreciated.
    // Verify that UDO is defined
                if (!(oCreateUDO.UDOExist(oCompany, "WEB_USER")))
                    SAPbobsCOM.UserObjectsMD MyUDO = (SAPbobsCOM.UserObjectsMD)oCompany.GetBusinessObject(SAPbobsCOM.BoObjectTypes.oUserObjectsMD);
                    //Set Services
                    MyUDO.CanCancel = SAPbobsCOM.BoYesNoEnum.tYES;
                    MyUDO.CanCreateDefaultForm = SAPbobsCOM.BoYesNoEnum.tYES;
                    MyUDO.CanDelete = SAPbobsCOM.BoYesNoEnum.tYES;
                    MyUDO.CanFind = SAPbobsCOM.BoYesNoEnum.tYES;
                    MyUDO.CanClose = SAPbobsCOM.BoYesNoEnum.tYES;
                    MyUDO.CanLog = SAPbobsCOM.BoYesNoEnum.tYES;
                    MyUDO.CanYearTransfer = SAPbobsCOM.BoYesNoEnum.tNO;
                    //MyUDO.ManageSeries = SAPbobsCOM.BoYesNoEnum.tYES;
                    MyUDO.Code = "WEB_USER";
                    MyUDO.Name = "Define Portal User";
                    MyUDO.ObjectType = SAPbobsCOM.BoUDOObjType.boud_MasterData;
                    MyUDO.TableName = "PORUSR";
                    MyUDO.FindColumns.ColumnAlias = "Code";
                    MyUDO.FindColumns.ColumnDescription = "Code";
                    MyUDO.FindColumns.Add();
                    MyUDO.FindColumns.ColumnAlias = "Name";
                    MyUDO.FindColumns.ColumnDescription = "Name";
                    MyUDO.FindColumns.Add();
                    MyUDO.FindColumns.ColumnAlias = "U_name";
                    MyUDO.FindColumns.ColumnDescription = "Name";
                    MyUDO.FindColumns.Add();
                    MyUDO.FindColumns.ColumnAlias = "U_Email";
                    MyUDO.FindColumns.ColumnDescription = "Email";
                    MyUDO.FindColumns.Add();
                    MyUDO.FindColumns.ColumnAlias = "U_Status";
                    MyUDO.FindColumns.ColumnDescription = "Status";
                    MyUDO.FindColumns.Add();
                    MyUDO.FindColumns.ColumnAlias = "U_TAG";
                    MyUDO.FindColumns.ColumnDescription = "TAG";
                    MyUDO.FindColumns.Add();
                    MyUDO.FindColumns.ColumnAlias = "U_bp";
                    MyUDO.FindColumns.ColumnDescription = "BP Code";
                    MyUDO.FindColumns.Add();
                    MyUDO.FindColumns.ColumnAlias = "U_password";
                    MyUDO.FindColumns.ColumnDescription = "Password";
                    MyUDO.FindColumns.Add();
                    if (MyUDO.Add() != 0)
                        MessageBox.Show("Failed to add UDO");
    Thanks and Regards,
    Noor Hussain

    Dear All,
    Thanks a lot. I had forgot to add the form columns to the UDO object while creating UDO.
    Regards,
    Noor Hussain
    Edited by: noor_023 on Mar 1, 2012 11:54 AM

  • Create new user same as a existing roles and Privileges

    Hi Team,
    I am a junior DBA. New user Joined in Application team. So, Client requested me.....
    Crerate new user with same privileges as like as existing user.
    As of now i am creating user like "create user username identified by "password". Then grant privileges to that user. earliar I never comapare or copied users.
    Please suggest any one how to create new user as like as existing user roles and privileges.
    Thanks,
    Venkat

    For basic cloning:
    select dbms_metadata.get_ddl('USER', '...') FROM DUAL;
    SELECT DBMS_METADATA.GET_GRANTED_DDL('ROLE_GRANT','...') FROM DUAL;
    SELECT DBMS_METADATA.GET_GRANTED_DDL('SYSTEM_GRANT','...') FROM DUAL;
    SELECT DBMS_METADATA.GET_GRANTED_DDL('OBJECT_GRANT','...') FROM DUAL;
    SELECT DBMS_METADATA.GET_granted_DDL(‘TABLESPACE_QUOTA’, ‘...’) FROM dual;
    Then just replace the username with the new one you want to create.

  • User field in goods entry form

    Is it possible to create a user field in goods  entry form production? I tried but It's possible  only to fill the order  production. thanks

    To add user defined fields to either the issue from production or the receipt from production then you need to add the user fields to the marketing document rows.  Then if they are not visible in the forms you will need to use the form settings.
    Regards,
    Adrian

  • Re:Default Form

    Hi all,
    How to make validations in the default form.
    Regards
    Mohana

    Hello Mohana,
    You have to do it with a UI add-on, the same with other form. Each Default Form has its own unique form type. Thus you can hanldle the et_Validate event for the target field. The same as other addon to validate the field.
    'et_Validate hanlder for the
    if pVal.ColUID = ** Then
         if oMatrix.Columns.Item(pVal.ColUID).Cells.Item(pVal.Row).Specific.String = "" Then
               oApp.MessageBox("Enter value for ***")
               BubbleEvent = False
         End If
    End If
    Kind Regards
    -Yatsea

  • Master details form: in the details form the List of values is not working

    The master details have an upper form and a lower form OK
    So, the List of values of values in the upper is working fine,
    the lower form or the details form the list of values not working on it and the code is right, and mean not working like when you press on it its not showing any thing
    also is work on a regular form like a tabular form .
    so please help !!!
    Edited by: user8925579 on May 12, 2011 2:28 PM
    Edited by: user8925579 on May 12, 2011 2:37 PM
    Edited by: user8925579 on May 12, 2011 2:37 PM

    SOLVED
         CMC -> Connections
    -     Right click connection name, Click u201CTools > Check Relationshipu201D
    -     In u201CQuery Resultsu201D, Right click Connections, Click u201CUser Securityu201D
    -     Assign Security for u201CEveryoneu201D
    -     UNTICK both Inherit from Parent Folder and Inherit from Parent Group
    -     Assign u201CView on Demandu201D
         CMC -> Universes
    -     Right click u201CUniversesu201D folder, click u201CPropertiesu201D
    -     Under u201CUser Securityu201D, click Everyone and assign security
    -     UNTICK both Inherit from Parent Folder and Inherit from Parent Group
    -     Assign u201CView on Demandu201D

  • User tables default forms

    Hello,
    I want to use the user tables default forms (after adding the user table in Uer Tables menu, it's generated a form to view that table: add, delete, update info).
    I'd like to lauch this form from my add-on menu. I know how to do that, but I wonder if that MenuID of the menu depends on the SBO installation (on what other tables were added before in SBO). Also, I'd like to put Choose from list capabilities in that form. I know also how to do this (just like a system form), but I also don't now if the FormID is the same on each installation.
    Thank you for your answer.
    I hope I made myself clear.
    Irina Stanca

    You may try this to find the MenuUID of your UDT:
    Start Saved Query through menuitem
    Have you checked Application.ResourceData? I'm not sure whether UDT forms are considered system forms, though. Anyway, you should be able to get the FormID of your UDT form on the fly by iterating the Application.Forms collection and checking the Title property, which equals the UDT Description.
    HTH
    Juha

  • Search Facility in User Defined Object (Default Forms)

    Hi,
    I have created a User Defined Object in the Default Forms section and chose the 'Find' tickbox when registering the UDT.  Now I have populated the data into the UDO but I can't search for data in columns.
    Am I doing something wrong please?  Can this be done?
    Thanks.

    Hi Vankri,
    Check the thread
    UDO Default form "find" function
    Regards
    Jambulingam.P

  • Working with user-defined forms in SBO

    Hi, newby here.
    What is the right way to work with userdefined-forms in SBO?
    My add-on adds a button to a system-form (when it is loaded).
    User presses the new button, and the following code is executed:
    - LoadFromXML("MyForm.xml")         ( like the sample code)
    - oForm = SBO_Application.Forms.Item("SBOFormEditor_11")
    - oForm.visible = true
    The user-form is displayed
    User presses the OK button on the new user-form, which triggers
    - oForm.close()
    This works. But a possible disadvantage may be that the form is loaded from XML, each time the user clicks the new button on the system-form.
    I would prefer to load the form once, upon starting the add-on. And then display or hide it, by simply turning the oForm.visible-switch on and off. So, when user clicks the OK button: oForm.visible = false.
    The problem here is that when the user clicks the close-form button (X), the new form seems to be gone/destroyed/removed.
    So, when the user clicks the new button, I need to know how the user exited the new form previously:
    If user clicked OK, then I can set the oForm.visible switch on,
    but if the user had closed the form, I need to re-load it from XML.
    In my experience, if a solution is not pretty, there is usually a better one. But then again...beauty is in the eye of the beholder.
    Any comments, or better alternatives, would be appreciated.
    Thanks
    Erwin

    Hi Erwin,
    Welcome to the forum.
    I don't think I've ever seen an addon which hides its forms until they are needed again but it's an interesting idea. Whereas I can see some advantages, I'd be inclined to always load the form from XML for a few reasons:
    1) Most of the time I tend to be working with multiple instances of the same user form (ie the user can open my form multiple times like a lot of the system forms). Keeping track of how many instances of my form are open and whether they are hidden or not is more of a pain than just closing and opening the form.
    2) Hidden forms still take up memory on the workstation, although that's probably a minor issue for one or two forms at a time.
    3) Unless the form is quite complex (ie large number of controls or lots of comboboxes to populate) the load speed is acceptable.
    If your form is quite complex and the user is likely to be opening and closing it regularly then I can see an advantage in hiding the form until it is needed again as this should speed up the response time.
    There are ways to stop the user closing your form unless they use the Ok or Cancel buttons:
    Re: Menu UID for Minimize/Maximize/Close buttons
    Kind Regards,
    Owen

  • Help Pls: Create New User Form and display custom attributes +++

    Hi All,
    I am trying to create a user screen where a user would see all the organizations he is responsible for and clicking on the organization he would see the certain attribute of all the users that belong to the organization. (Kind of report)
    Account attribute need to be defined with 2 custom attributes:
    1. Organizations Responsible for
    2. Belongs to which organization.
    3. Status
    The first 2 attributes are used to define the organization heirarchy (we can't use the org heirarchy as is in IDM).
    I am just starting on the Sun IDM (very new to the product). Could you please let me know how this could be done? Which form I need to modify and any other changes I need to make.
    Thanks a lot and have a pleasant day,
    Ritesh
    PS: I know this is a long question but i really don't know how to better explain the problem.

    A workaround is to write a PL/SQL procedure to render the custom item (pass in each attribute as a paramter and then use htp.p to print it whatever format you want). You can then disable the default display of attributes (i.e. edit the style so none of the attributes are rendered).
    Hope that helps,
    Mark

  • CREATE A USER LIKE ANOTHER

    Hi,
    how can I create an oracle applications USER exactly like another oracle applications user ?
    Many thanks before.

    Thank hsawwan, I found this :
    procedure CreateUser (
    x_user_name in varchar2,
    x_owner in varchar2,
    x_unencrypted_password in varchar2 default null,
    x_session_number in number default 0,
    x_start_date in date default sysdate,
    x_end_date in date default null,
    x_last_logon_date in date default null,
    x_description in varchar2 default null,
    x_password_date in date default null,
    x_password_accesses_left in number default null,
    x_password_lifespan_accesses in number default null,
    x_password_lifespan_days in number default null,
    x_employee_id in number default null,
    x_email_address in varchar2 default null,
    x_fax in varchar2 default null,
    x_customer_id in number default null,
    x_supplier_id in number default null)
    is
    dummy number;
    begin
    dummy := fnd_user_pkg.CreateUserId(
    x_user_name,
    x_owner,
    x_unencrypted_password,
    x_session_number,
    x_start_date,
    x_end_date,
    x_last_logon_date,
    x_description,
    x_password_date,
    x_password_accesses_left,
    x_password_lifespan_accesses,
    x_password_lifespan_days,
    x_employee_id,
    x_email_address,
    x_fax,
    x_customer_id,
    x_supplier_id);
    end CreateUser;
    in that package, but how to use it and how to use it for create like ?
    Many thanks.

  • I have a main fillable form.  From this main form the user may need additional forms.  I want to create checkboxes that link to these additional forms.  This part I believe I know how to do (Properties/Actions/Open a File).  What I want to add is a javasc

    I have a main fillable form.  From this main form the user may need additional forms.  I want to create checkboxes that link to these additional forms.  This part I believe I know how to do (Properties/Actions/Open a File).  What I want to add is a javascript to the checkbox that when the new file (or form) opens some of the data (the repetitive data like name, date, etc.) from the main form is placed into the form opened where the same form fields exist.  Is this possible?

    Yes, but then it all has to be done using a script. You can't use the built-in Open A File command.

  • How to restrict users to not default layout while creating a user specific?

    Hi all,
               I have a problem with frequent changes in report layout setting. When users trying to create a user specific layout in the window "Default" is set, out of "User specific" & "default" checkbox defaultly, so users saving the layouts. so it's overwritting on existing layout. we are ossing the old data. how to restrict end users to create new one with out changing the existing one.How to change that default check in "Default" check box to user specific defaultly. where i have to do settings for this. Thanks in advance.
    Pradeesh

    Hi ,
    My problem is still not resolved. I tried applying the people picker property and set a specific field(an email id field) to be available to only admins. Now the field is not visible to the normal users but only admins which is good but that email field
    should be able to take normal users as wel as admin's email ID. currently due to the people picker property it only takes admin's ID and not normal user's ID - which is not as per expectation.
    What this email ID field does is - when a normal user is logged in he/she wont see this field in that view. But when an admin logs in he/she can switch to admin view and see this field . The admin can put any user's ID in this field and pull out the required
    resource's Time Report for modification.
    Please let me know how do i overcome my problem. Detailed step description will be very helpfull .
    As per Cameron's suggestion (add a rule on the "additional admin section") , i am not sure how exactly that is done. Would help a lot if i got to know how this works.
    Regards,
    Guru

  • I created a form using acrobat XI pro.  SOME users of the form cannot save the form.  what can i do from my side to 'correct' the issue?

    i created a form using acrobat XI pro.  SOME users of the form cannot save the form.  what can i do from my side to 'correct' the issue?

    Do you know what PDF viewer those users were using? Do you have any more details about what happens when they attempt to save?

Maybe you are looking for

  • Why would white space and line breaks in sql query increase runtime

    Using 11.2.0.3.0 on unix sprac server, 8 cpus 32 cores 12TB storage. We have 16 batch servers doing inserts and ~100 users doing mostly queries. We have a wierd issue,  we have a long query that takes 30 seconds to run 1st time then 10-20 secs every

  • Is there anyway to retrieve apps that were erased after phone was locked?

    Duplicate post - please see: how do I retrieve apps that got erased? Message was edited by: Admin Moderator

  • Multiple value parameters in JSP to Portal

    Hello all, I'm creating parameter forms in JSP to run from the Portal 9i. I have a parameter form with select boxes that allows the user to select multiple choices. But when I submit the parameters. Only the first selection of the choices are being p

  • NTFS Permissions

    Hi Everyone, I have a server running Windows Server 2008 R2, and have come across an unusual issue. We have a large folder tree and at the end of it several documents with multiple permissions. for example. user1 - read/write user2 - read only when u

  • Trouble playing a complete .mov or .mpeg file

    Hello folks. I'm having trouble playing some downloaded .mov and .mpeg files. For example, I've downloaded a 50MB file and it only plays about the first 30 seconds of the file. However if I put the same file into VLC, I can see the whole movie (albei