BC and Field User Properties

Hi,
I want to learn more about various Siebel BC and Field User poperties.
Can anybody guide from where can I get the details for the same. Any specific documents or anything.
Thanks :-)

Hi,
In the ToolsDevRef pdf you can see the user properties for the following sections:
About User Properties” on page 79
*“About Setting Numbered Instances of a User Property” on page 80*
*“Applet User Properties” on page 80*
*“Business Component User Properties” on page 98*
*“Business Service User Properties” on page 189*
*“Control User Properties” on page 190*
*“Field User Properties” on page 192*
*“Integration Component User Properties” on page 202*
*“Integration Component Field User Properties” on page 204*
*“List Column User Properties” on page 205*
Regards,
Joseph

Similar Messages

  • "Description" and "Email" user properties?

    I've noticed that there are a lot of things you can do in the API that you can't do through the other interfaces. For example, you can disable all non-supervisor logins, which is cool.<BR><BR>Looking through the "ESB_USERINFO_T" structure, I noticed it includes these two properties:<BR><BR> Description As String * ESB_DESCLEN ' user/group description<BR> EMailID As String * ESB_DESCLEN ' user/group email address<BR><BR>Eager to make use of them, I put together some VB code to set/get the properties. However, doing a "get" after setting either property returns garbage characters. For example, "??????".<BR><BR>So, has anyone had any luck setting these properties? If so, how do you do it? And why in the world would Hyperion include them, but not make them available even in EAS?<BR><BR>Thanks,<BR>Jared

    Yes, I have looked into these proporties. These properties are reserved for future use and are currently not available in the user structure. Hopefully, they will implement these soon in the upcoming releases.You cannot get the values because in relaity you cannot set the values for these properties as they are reserved for future use.

  • Problems with Flash CC user interface. Mainly I can't seem to click certain buttons and input fields on various modal windows. (eg. Scale and Rotate, Sound Properties,

    Hi there,
    I'm wondering if anyone else is experiencing issues like this. I'm basically finding that a bunch of different buttons, fields, and tabs do not respond to my clicks. This seems to be spread out throughout the application.
    I've had to work around most of this by using the tab and arrow keys to navigate around modal buttons and fields... but it is a bit of a pain.
    There are some parts of the interface that can't be accessed via tabs and arrow keys... for example the ActionScript Tab on the Sound Properties window... there's no way to get to that... and clicking the tab itself does nothing, although I can see that the rollover state of the tab is activated.
    I've ended up having to run Flash CS6 in order to set the export classes of sound files and that's a bigger pain.
    Similar UI issues exist with other things... for example the color picker (eye dropper) seems to pick colors near, but not directly under itself.
    I'll be honest... I'm running on Windows 7... via boot camp... on a Mac Book Pro with retina display... so the issues could stem from this combination. However... Flash CS6 does not have any of these issues... so I can only think that it is a Flash CC issue.
    I appreciate any input you can provide. ( Although the obvious "run it on OSX instead" or "just use CS6" aren't the kinds of answers I'm looking for. I have my reasons for the setup. )
    Thanks.
    Cheerfully,
                           - JR

    Thank you for the suggestion. I've just done the uninstall, clean, re-install process.
    No luck.
    Even the first-run modal that comes up to choose Sync Settings has the same problem. All three buttons will go to a rollover state if I mouse over them... however, none of them are clickable. The only clickable item is the OS window close button. If I use the TAB key to move from button to button it moves the yellow button selector accordingly. If I press the ENTER key it responds correctly. For some reason clicking is not working on these parts of the Flash CC UI.
    *Note: This does not happen with all of the Flash CC UI elements... only some key ones (Save As - Confirm Overwrite, Symbol Properties and Swap Symbol dialog boxes also do not work with clicks, only with the keyboard navigation). Really a pain in the posterior.
    Again, I'm wondering if this is an issue particular to my hardware/os combination but I have had no luck finding answers online.
    Any other possible solutions out there?

  • Need help to check multiple conditions and set AD user properties

    hello All,
    I have a data csv sheet where information as follows, using below information I need to update AD account attributes based on below conditions . I have full right and I can set any user properties. So this is not access right issue.   
    samaccountname,Othertelephone,language,employeeId
    abcd                      XXXXXXXXX     EN         SMS
    Now I need to check following conditions:
    Othertelephone =  if this should not be blank ,if so display message " filed is blank " and no changes should allowed in further attributes and  it should abort
    language= this field should only contain  EN or FR value if No display msg " error in language field " and no further changes to  the user attributes and it should abort
    employeeID= this field should only contain OTP or SMS value if Not filled display msg " error in Employee ID field " No further changes to the user attributes and it should abort
    changes to user will permit  when all attributes is filled. I do the testing taking samaccountname , othertelephone and employeeId into consideration but it did not helped. Getting error
    THIS is complete Code Of my Task where you need my focus on conditions
    group=Get-QAdGroup -SearchRoot  "domain/vpn group"
    Import-Csv D:\VPN.csv |
    ForEach-Object{
    if ($_.samaccountname -eq "")
       Write-Host "SAMACCOUNTNAME is blank"   -fore red
    else
     $user=Get-QAduser $_.samaccountname
    if ($user.memberof -contains  $group.DN)
     Write-Host "$($_.Samaccountname) user is allready a member" -fore red
    else
     Add-QADGroupMember $group $_.Samaccountname
    If ($_.othertelephone -eq "")
    Write-Output "$($_.samaccountname) telephone Number is blank"
    else
    if ($_.EmployeeID -notmatch 'OTP' -and 'SMS')
    Write-Output "$($_.samaccountname) EmployeeID field is not correctly field")
    Else
    Set-QADUser $_.SamAccountName -ObjectAttributes @{telephonenumber=$_.othertelephone;EmployeeID=$_.EmployeeID}
    error
    Set-QADUser : Access is denied.
    At C:\Users\g512263\AppData\Local\Temp\5f8facb6-f942-4c3d-b924-8953d9a706da.ps1:37 char:8
    +                    Set-QADUser $_.SamAccountName -ObjectAttributes @{telephonenumber=$_.othe ...
    +    ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
        + CategoryInfo          : NotSpecified: (:) [Set-QADUser], UnauthorizedAccessException
        + FullyQualifiedErrorId : System.UnauthorizedAccessException,Quest.ActiveRoles.ArsPowerShellSnapIn.Powershell.Cmdlets.SetUserCm
       dlet

    <title>Untitled - PowerGUI Script Editor</title>
    Hello JRV,Thank you for your time, There is no comma in my csv file , I double check. below I wrote a simple code.I removed all the conditions and just try to set the EmployeeID and it is working fine with same file.But as soon as I add conditions it gives access denied. as well as if I remove employee Id from your previous code and only try to set telephone No. still it gives access denied.I am just trying to figure out what is causing this.
    $group=Get-QAdGroup -SearchRoot "com/Group"
    Import-Csv D:\VPN.csv |
    ForEach-Object{
    if ($_.samaccountname -eq ""){
    Write-Host "SAMACCOUNTNAME is blank" -fore red
    }else{
    $user=Get-QAduser $_.samaccountname
    if ($user.memberof -contains $group.DN){
    Write-Host "$($_.Samaccountname) user is allready a member" -fore red
    }else
    Add-QADGroupMember $group $_.Samaccountname
    If ($_.othertelephone -ne "")
    Set-QADUser $user.SamAccountName -ObjectAtt Aributes @{telephonenumber=$_.othertelephone}
    } else
    Write-Output "$($_.samaccountname) phonenumber is blank"
    If ($_.EmployeeID -ne "")
    Set-QADUser $_.SamAccountName -ObjectAttributes @{EmployeeID=$_.EmployeeID}
    }else
    Write-Output "$($_.samaccountname) EmployeeID field is blank"
    If ($_.Preferredlanguage -ne "")
    Set-QADUser $_.SamAccountName -ObjectAttributes @{Preferredlanguage=$_.preferredlanguage}
    } else
    Write-Output "$($_.samaccountname) PreferredLanguage field is blank"

  • How to get the user created at and modified at properties for a site collection using powershell

    Hi guys, I Know how to get the list of users of a site collection by Get-SPUser cmdlet but hte problem is that this cmdlet doesnt give me the user Created at and modifed at properties 
    can any one tell me how to get these values via powershell???? 
    ps: ignore the 2013 screenshot.. i just want a way to get those values .. if you provide me solution in either 2010 or 2013 , i will crack the other..
    plz guys help me ...

    Get the User Information list and then get the user from that list
    $web = Get-SPWeb "siteUrl"
    $userInfoList = $web.SiteUserInfoList
    $userItem = $userInfoList.Items[0]; #0 here is just for demonstration. You take the user you want here or loop through all users.
    $created = $userItem["Created"]
    $modified = $userItem["Modified"]

  • Order of execution of named method user properties and server script

    Dear All,
    If for a Custom method on an applet, we have scripts in WebApplet_preinvokemethod and WebApplet_invokemethod and also for the same Custom method we have applet Named Method user properties and BC Named Method user properties, what will be the order of execution of these scripts and Named Method user properties??

    The Private Event Submission sample portlet shows how to achieve this. It is part of the PDK download.
    Peter

  • Powershell export User properties and policy settings

    is there a Powershell script "out-there" that export and import all the user properties from the User Profile service Application - including their individual placement on the various sections (contact, basic, details etc), and also including their
    policy settings (only me /everyone/replicate settings) - basic all the settings - and if the AD mapping is there as weel it would be nice...
    So I can export from environment A and then import them to environment B... ?

    Did you try this blog:
    POWERSHELL TO EXPORT / QUERY ALL USER PROFILE PROPERTIES AND AD MAPPINGS
    http://www.sharepointfix.com/2012/01/powershell-script-to-print-user-profile.html
    also
    SharePoint 2010: Updating User Profile Properties with PowerShell
    Please remember to mark your question as answered &Vote helpful,if this solves/helps your problem. ****************************************************************************************** Thanks -WS MCITP(SharePoint 2010, 2013) Blog: http://wscheema.com/blog

  • In ICWEB where we add the fields and field properties

    Hi icweb guys,
      plz tell me   in ICWEB where we add the fields and field properties  is it same through crmc_blueprint_c  or thorough wat.
      we add code in the methods of crm_ic   am i correct
      plz tell me.
    regards,
    ram

    You got it completely wrong and dont jump into conclusions directly .
    PCUI Applications & IC WebClient are different BSP applications and  have completely different architecture.
    Get some online help or cookbooks on both topics and read the books.
    Thirumal.

  • Ger-AD user properties and present them in different titled headers

    I want to present the AD-user properties as headers under different titles, how do i change that as in my codefor the properties highlighted in bold.Get-ADGroup -Filter * -Properties * | ForEach-Object {
    $Group = $_
    Get-ADGroupMember $Group |
    Where-Object { $_.objectClass -eq 'user'} |
    Get-ADUser -Properties * | Select-Object FullName, SamAccountName, Disp*, DistinguishedName, @{
    Name = 'Group Name'
    Expression = { $Group.Name }
    Name = 'Type'
    Expression = { $Group.GroupCategory }
    Name = 'Managed By'
    Expression = { $Group.ManagedBy }

    I have just tried that but it throws an error: "Missing expression after ','."
    Get-ADGroup -Filter * -Properties * | ForEach-Object {
    $Group = $_
    Get-ADGroupMember $Group |
    Where-Object { $_.objectClass -eq 'user'} |
    Get-ADUser -Properties * | Select-Object @{Name = 'Name' , Expression = $_.FullName}|, @{Name = 'Username' ; Expression = $_.SamAccountName}, Disp*, DistinguishedName, @{
    Name = 'Group Name'
    Expression = { $Group.Name }
    Name = 'Type'
    Expression = { $Group.GroupCategory }
    Name = 'Managed By'
    Expression = { $Group.ManagedBy }

  • Not able to figure out the table index for Edit table User Properties Dialo

    Studio Edition Version 11.1.1.0.0
    Build JDEVADF_MAIN.D5PRIME_GENERIC_080403.0915.4920
    I'm trying to automate the various features in Jdeveloper dialogs. At one point I got struck with table in Edit Table Dialog.
    Right Click on New -> Database Tier-> Select APPS: Import to offline database Objects. Step 1- Step5 dialogs comes up. Click on Next till finish button comes up. After that one table along with xdf file will be shown in the Jdeveloper Tree Menu. Right click on Table, Go to Properties. Then Select User Properties in the Left Pane. On Right Side table will be shown. I want to know what is the index for this table and also I need to input certain text and select some drop downs from this table.
    Automation Tool: JFCUnit
    Could you please tell how can I put values in some of the fields and select the values from the drop downs.
    Kindly let me know if you need any more Information for the same.

    Hi,
    if you are from Oracle, please use an internal forum. If not, the JDeveloper 11 forum is at: JDeveloper and OC4J 11g Technology Preview
    Frank

  • Adding attributes to ADUC user properties

    Hi,
    I want an extra field to appear in the user properties box for ADUC.  I know I have to do this in ADSI edit, but after trawling through a few articles I am still non the wiser what needs adding where and how :-S
    I would like to add an extra field in the users Address tab that would indicate which floor they work on.  Below is an example of where I would like this field adding.
    Any advice on how this can be added would be gratefully received!

    I don't want to bee offending, but if you don't understand how, don't touch it.
    Consider adding the info in one of the existing fields/attributes. you could for example include the floor number in the address field.
    You can see all attributes and their values by choosing view - advanced features in ADUC. This will add a tab attribute editor. (not it does not work when you searched for an account). There are even 'ExtensionAttributes' which allow you to store additional
    info without changing he schema.
    If you wan to add  a real custom property, you need to extend the AD schema. doing this is not something you can do and undo at will, so trial and error is out of the question! http://technet.microsoft.com/en-us/library/cc759633(v=ws.10).aspx
    Aside from the challenge of selecting an appropriate attribute, you also need some configuration to make ADUC display it. the way you want it (a nice textfield on an exsiting tab) will involve some coding effort
    http://msdn.microsoft.com/en-us/library/aa814681(v=vs.85).aspx
    MCP/MCSA/MCTS/MCITP

  • Manage user Properties

    Hi All,
    I am planning to import some users from AD to Sharepoint. The user profile sync service has started successfully. I could configure the sync connnections successfully and I did a full sychroniczation.
    When i go to manage user profiles, the user is listed but i cant edit the profile. Same goes for manage user properties where the field can't be edited.
    Rgds,
    Ashley

    Hi Ashromeo,
    Whether you could not edit all fields in the user profile or just some fields.
    Whether there were some errors when you tried to edit user profile.
    Please have a try with the farm account, compare the result.
    Please provide some screenshots about this isue, it will make others in the forum easy to find a solution for you.
    Best Regards,
    Wendy
    Wendy Li
    TechNet Community Support

  • My lock screen just shows a black background and a User Name/Password dialog after opening the screen from sleep. How do I get it back to where it blurs my desktop image with the dialog and my account image displayed?

    I'm not sure when it began, but now my Macbook Air only shows a black background and a User Name and Password dialog box when I wake it from sleep. It used to show my desktop background blurred with my user name and icon displayed with only a text field for entering my password. I'm currently using Yosemite (OS X 10.10.1) and all updates have been done. Any help or suggestions would be greatly appreciated as I know this isn't a real problem, just an annoyance since I couldn't find how to change it back in the System Preferences.

    I just have to point out that after looking at a related post (https://discussions.apple.com/message/22661092#22661092), it brought to memory that my issue most certainly began happening after I added some DoD certificates to the keychain. This obviously has something to do with it, but it still leaves me wondering what actually causes this to happen. :/

  • About Asset report - table and fields

    Hi ,
    I am developing an Asset Report, I need table and field names for following -
    a) GL A/C P&L
    b) ASSET DEPRECIATION SCHEDULED
    c) FORCASTED DEPRECIATION
    d) PLANNED EXPENSES VERSES ACTUAL EXPENSES
    e) GAP DEPRECIATION CATEGORY
    e) When user enters the asset into SAP, the depreciation expense will automatically book to the sub-ledger. However in order to get the amount on the general ledger, which would be closed for prior periods, user must book a manual entry. So , I need this manual entry field.
    Please guide me.
    Regards,
    Narayan

    problem solved

  • Sale Order Item Level Text Field which table and field

    Hi,
    Thanks for your prompt reply and best solution.
    Can you please tell me one more thing, in sale order at item level the TEXT Field maintaining by user at transaction level now they want that field in one of the report, so can you please tell what is the table and field where i will get this sale order item level text details.

    Hello,
    is this going to work for item level text as well.
    can you tell how to proceed with this functional module
    or is there any other thing required.Please elaborate to
    understand better way.
    You can check out two table in respect to Sales TEXT i.e. STXH (STXD SAPscript text file header) and STXL(SAPscript text file lines).
    The best approach of tracing out the Text in respect to Sales Order would be to use the Function module READ_TEXT and put this FM in SE37 and execute with the following parameter.
    Client
    Text ID of text to be read
    Language of text to be read
    Name of text to be read
    Object of text to be read
    Archive handle
    Text catalog local
    When you are essentially looking to read item level Text with respect to Sales Order then your Text OBject would be VBBP.
    Regards,
    Sarthak

Maybe you are looking for

  • How to set session timeout per user

    Hi, Ho do I set the session timeout per User in the Application.cfm File?? I tried using <cfif SESSION.UID EQ 1> <CFAPPLICATION NAME="appControl" SESSIONMANAGEMENT="Yes" sessiontimeout="#CreateTimeSpan(0,0,20,0)#"> </cfelse> <CFAPPLICATION NAME="appC

  • HT201210 i want to downgrade my ipad 2  IOS 6.0 to 5.1.1

    my ipad 2 is cannot use after updating ios 6.

  • I::001 Only available with the RFC library from 4.0C onwa

    Hello all! I'm using SAP .NET Connector for integration between .NET application and SAP System. When I try to work with standard document bapi methods like  BAPI_DOCUMENT_CHECKIN or BAPI_DOCUMENT_CHECKOUTVIEW, I get an error in out RETURN parameter

  • PUB01015 Error - Location Locked - While Deploying modules in parallel

    Hi I wrote a TCL script to deploy the OWB Objects to environments. I am calling the script 30 times for deploying 30 modules in a batch file in parallel. (I am using the 'start' dos command to start them in parallel.) I am getting the following error

  • How to access HttpSessionListener instance

    Hi, I use a HttpSessionListener to count the active sessions in my WebApp. Therefore the HttpSessionListener implementation has two fields (an int and an ArrayList<HttpSession>). The HttpSessionListener is defined in the web.xml. The listener works a