Spml2PersonForm and user view

Hi,
We noticed that the userview is not available in the spml2PersonForm. For instance refering to the previous value of an Lighthouse attribute (waveset.attributes.uvaEndDate etc) does result in null.
It made me wonder if the spml2UserForm should be used for form processing or only for the attribute mappings.
Does anyone know how one should refer to the user attributes in the spml2UserForm? Or, if you are meant not to do it, where should one do the form processing then?
Greetings,
Marijke

Hi Dhiva,
materialized view is essentially a table that is produced from other tables based on a query. It's results are physically stored in the database and are refreshed either when the user requests ('on-demand refresh') or after commit.
A simple view is just a query stored in the database. It's results are not stored anywhere, they're calculated and returned to the user only when the view is queried.
Best regards,
Nikolay

Similar Messages

  • How to Get Most Current User View Before Checking In.

    Hi,
    We have several custom workflows which users can start from end-user menu and have some resource accounts created/modified after approvals.
    User view is checked out once at the beginning of each workflow, then some user attributes are modified through forms and user view is checked in with new attributes at the end.
    If any user starts a workflow (say W2) before completion of another workflow (say W1) he started before, and W1 is completed when W2 is waiting for approvals or etc., W2 completely discards changes made to user view through W1 since it has already checked out the user view before.
    If I checkout the user once more just before checkin, I'm able to get a current user view but this time changes made through forms used in the current workflow are lost.
    What's the best way, to get an updated user view of the user without overwriting any changes made out of the running workflow and losing form data?
    Regards,
    Mehtap.

    In a situation like this, you should probably change the front end to store the changes in workflow variables instead of using the view directly. Then, post approval, you checkout the view and apply the changes. I've used this approach to perform changes on large numbers of users (kind of like a bulk action, only more reliable).
    Alternatively, you can checkout the user object at the beginning of the workflow, and this will prevent your race condition by putting a lock on it. This will obviously cause problems (for you) if your users expect to be able to do multiple changes simultaneously. Don't try this approach if an angry mob will storm your cubicle -- IDM coders are hard to come by.
    Jason

  • How can the info block be assigned with the view and assign view to users.

    Dear Friends,
    Anyone could plz tell me how can the info block be assigned with the view and assign view to users.  Also how can the info block in sale summary be assigned with a view and how to assign this view for user.
    Regards,
    Ashima

    Hi,
    To define view and to make it default
    Goto SAP IMG > Sales and Distribution > Sales Support (CAS) > Sales Summary > Define Reporting Views (Tcode:OVCD).
    To assign default user to the view.
    Goto SAP IMG > Sales and Distribution > Sales Support (CAS) > Sales Summary > Assign Default View To User (Tcode:OVCC).
    To assign Elements of SAPScript "SD-SALES-SUMMARY" to information Blocks To A View use
    Goto SAP IMG > Sales and Distribution > Sales Support (CAS) > Sales Summary > Assign Information Blocks To A View (Tcode:OVCB).

  • Is it possible for a module to remember last viewed slide and user interactions without an LMS?

    I am developing a captivate module (using Captivate 6) that can be run either off a local hard drive or web server (not an LMS).
    I am hoping that the user will be able to close down the module and then return to it at a later time. Considering the module will not be run via an LMS Is it possible for the module to remember not only the last slide that the user viewed but also any interactions that the user has conducted. For example: saved information in variables, image states (whether or not they have been clicked etc), widgets (I am hoping to use the drag and drop widget so I want the course to be able to remember what items they have dragged where).
    Is this possible? I know there is a bookmark widget that uses cookies to remember the last slide the user viewed. I am also aware of another widget that allows you to save variables for use between projects, but in this case I will only have one project file. Is there something out there that does everything I need?
    Does the 'self paced learning' checkbox in the TOC save user interactions?
    Thanks! 

    Thanks Lilybiri. So it sounds like there is no easy way to save  interactions when run locally. Would using javascript (thats run when a user clicks a save button for example) be possible? Get the script to save a cookie with all the variables and 'states'? I know that saving the variables is possible because there is already a widget that does that, so wondering if there is a way to save the slide states as well (for example whether or not images have been clicked etc).
    Alternatively, if I create the project in captivate, is it possible to import into flash with all the functionality and actionscript intact and editable? From there I could then modify it to remember the saved states? (i am not proficient with actionscript  so just thinking of potential solutions).

  • Want to get the list users with select access to v$ synonyms and v$ views

    I've to write a sql (DB 11.1) to get the list of users who has select access to v$ synonym and v$ views. I've written the following sqls to do this but they both return the same result and I don't know how to verify it. It will be a great help if you could validate the sqls and let me know if something is wrong. Thanks for the help.
    -- v$ views
    select 'vview',
    substr(SYS_CONNECT_BY_PATH(c, '->'),3,512) path, c
    from (select null p, view_name c
    from dba_views
    where view_name like ('V$%')
    union all
    select -- users/roles and roles granted
    granted_role p,
    grantee c
    from dba_role_privs
    where granted_role != 'DBA'
    union all
    select -- users/roles with select on DBA views
    table_name p, grantee c
    from dba_tab_privs
    where privilege = 'SELECT'
    and table_name like ('V$%'))
    where (c = 'PUBLIC' OR c in (select username from dba_users))
    AND c NOT IN('MDSYS','DMSYS','CTXSYS','WMSYS','ORDSYS','OLAPSYS','DBSNMP')
    start with p is null connect by p = prior c
    -- v$ synonyms
    select 'vsynonyms',
    substr(SYS_CONNECT_BY_PATH(c, '->'),3,512) path, c
    from (select null p, SYNONYM_NAME c
    from ALL_SYNONYMS
    where table_name like ('V$%')
    union all
    select -- users/roles and roles granted
    granted_role p,
    grantee c
    from dba_role_privs
    where granted_role != 'DBA'
    union all
    select -- users/roles with select on DBA views
    table_name p, grantee c
    from dba_tab_privs
    where privilege = 'SELECT'
    and table_name like ('V$%'))
    where (c = 'PUBLIC' OR c in (select username from dba_users))
    AND c NOT IN('MDSYS','DMSYS','CTXSYS','WMSYS','ORDSYS','OLAPSYS','DBSNMP')
    start with p is null connect by p = prior c

    I've modified the sql to include GV$ and all select [any] privs.
    select 'vview',
    substr(SYS_CONNECT_BY_PATH(c, '->'),3,512) path, c
    from (select null p, view_name c
    from dba_views
    where view_name like ('V$%') OR view_name like ('GV$%')
    union all
    select -- users/roles and roles granted
    granted_role p,
    grantee c
    from dba_role_privs
    where granted_role != 'DBA'
    union all
    select -- users/roles with select on DBA views
    table_name p, grantee c
    from dba_tab_privs
    where privilege like 'SELECT%'
    and table_name like ('V$%') OR table_name like ('GV$%') )
    where (c = 'PUBLIC' OR c in (select username from dba_users))
    AND c NOT IN('MDSYS','DMSYS','CTXSYS','WMSYS','ORDSYS','OLAPSYS','DBSNMP')
    start with p is null connect by p = prior c
    union
    select 'vsynonyms',
    substr(SYS_CONNECT_BY_PATH(c, '->'),3,512) path, c
    from (select null p, SYNONYM_NAME c
    from ALL_SYNONYMS
    where table_name like ('V$%') OR table_name like ('GV$%')
    union all
    select -- users/roles and roles granted
    granted_role p,
    grantee c
    from dba_role_privs
    where granted_role != 'DBA'
    union all
    select -- users/roles with select on DBA views
    table_name p, grantee c
    from dba_tab_privs
    where privilege like 'SELECT%'
    and table_name like ('V$%') OR table_name like ('GV$%') )
    where (c = 'PUBLIC' OR c in (select username from dba_users))
    AND c NOT IN('MDSYS','DMSYS','CTXSYS','WMSYS','ORDSYS','OLAPSYS','DBSNMP')
    start with p is null connect by p = prior c

  • Is there any way i can let another iphone user view my recieved and sent messages?

    Is there any way i can let another iphone user view my recieved and sent messages?

    Of course. Just show them your phone screen, and let them browse through your messages - the same way you would do so yourself.

  • How can user view Central Person ID by Personnel Number and Vice Versa?

    Dear Experts,
    We are not using Concurrent Employment, but since Talent Management requires to use the Central Person object, we have created the relative objects for the employees. What I want to know is, how can user view the Central Person ID by a personnel number and vice versa easily?
    Thanks,
    Steven

    Not User friedly
    This logic is in Function Group HRTMC_PPOM, screens 0700 and 0710.
    You can copy it to Z and change search.
    In transaction OOFRAMEWORKCUST for scenario TMC_PPOM change Report in "Tab Page in Scenario for each Object Type" from HRTMC_PPOM to new Z*.

  • Remote Control and Remote View Problem

    Hi,
    I work at a High School running Netware 6.0 SP5 and Zen works 4.01 ir7.
    Remote Control and Remote View works great but I noticed one problem.
    We have a logo of the school that is forced down on to the desktop when a
    user logs in through group policies. This logo works perfect for the
    desktop wall paper and loads every time a user logs in.
    When I Remote Control or Remote View a computer the users desktop wall
    paper turns from the logo being forced down through group policies to the
    desktop to a blue desktop wall paper.
    I would prefer the desktop wall paper staying the schools logo when I
    Remote Control or Remote View because if the desktop wall paper changes to
    the blue color I mentioned above when I Remote Control or Remote View the
    users computer, they will know that someone is taking over their computer
    which sometimes we dont want them knowing.
    We have Windows 98SE computer running Novell Client 3.4 and we have some
    computers running Windows XP Professional SP1 and Windows XP Professional
    SP2 both running Novell Client 4.91 SP2.
    The Remote Control and Remote View problem of the desktop wall paper
    changing on the users computer occurs on all operating systems mentioned
    above.
    Is there a solution to my above problem? When Remote Controlling and
    Remote Viewing someone's computer I don't want the desktop wall paper to
    change.
    Thanks!

    Bpilon,
    It appears that in the past few days you have not received a response to your
    posting. That concerns us, and has triggered this automated reply.
    Has your problem been resolved? If not, you might try one of the following options:
    - Do a search of our knowledgebase at http://support.novell.com/search/kb_index.jsp
    - Check all of the other support tools and options available at
    http://support.novell.com.
    - You could also try posting your message again. Make sure it is posted in the
    correct newsgroup. (http://support.novell.com/forums)
    Be sure to read the forum FAQ about what to expect in the way of responses:
    http://support.novell.com/forums/faq_general.html
    If this is a reply to a duplicate posting, please ignore and accept our apologies
    and rest assured we will issue a stern reprimand to our posting bot.
    Good luck!
    Your Novell Product Support Forums Team
    http://support.novell.com/forums/

  • Cisco Jabber windows call option and user addition issue

    Hi,
    After uploading the jabber-config.xml (EDI-BDI) on the CUCM, the call option for new user contacts started appearing but the already existing contacts in Jabber client have still no call option. Also when we add new contacts to the Jabber client, it just disappears as such. Any one faced similar issue before. Below are the details and attached jabber-config.xml and LDAP profile snap.
    We are using employeeNumber as attribute in LDAP configuration.
    CUCM - 8.5.1.15900-4
    UCCX - 8.6.3.10000-20
    Jabber for windows - 9.7.0 (Tried with earlier version of jabber as well)

    Hey
    Just right click on the contacts which do not have the call option and select view profile, then see if those contacts that are added are they from the Outlook or the AD, if its AD then they will have a contact number and as such they will have the Call Option enabled.
    If they are from outlook then delete the users and readd them by checking the view profile option to verify they are being pulled from AD.
    Also if i assumed the issue differently then what it is please explain the whole scenario.
    Note-: In case of J4W it will not connect to the directory using the LDAP profile info, it automatically verified and cnnects to the domain using your login creds.

  • When frequently switching between mobile and desktop view

    When I frequently switching between mobile and desktop view I have to open the layers every time since they get closed/collapsed. Adobe may need to fix it for the next version.

    You can use CTRL+# to switch between Code and Design View.
    By the way, this is the Dreamweaver Application Development forum which deals with questions about using server-side scripting languages like PHP or ColdFusion. General Dreamweaver questions should be posted in the regular Dreamweaver General Discussions forum.
    And while I´m at it: please use descriptive headlines such as "how to switch between Code and Design View" for your posts -- mentioning your screen name "Goula129" is not helpful to other users.

  • Excel 2007 and Smart View 9.3.1.4.041

    Dear Experts,
    We are now working with Excel 2007 and Smart View 9.3.1.4.041, and encounter the problem that ervery time open the protected excel file there would be the warning message "Drawing Objectes in one or more sheet(s) in the workbook are protected. Please unprotect them and try to save again."
    Can any one suggest with;
    1. How to set the Excel security settings for Excel 2007 to work for smart view?
    2. How to avoid the message mentioned above while working with Excel 2007?
    3. How to create a protected Excel file to work with Smart View 9.3.1.4.041 both in Excel 2003 and Excel 2007?
    Tks
    Edited by: Moonlight on May 19, 2010 10:00 AM

    I've experiencied similiar problems, though other users may have found a better solution, I've unlocked the spreadsheat, refreshed, and then relocked via a VBA macro. A button object at the top of the spreadsheet was added to make it easier for the users use as well. If there is a better solution I am very interested in this as well.
    JTF

  • User View is not reflecting the source data - Transparent Partition

    We have a transparent partition cubes. We recently added New fiscal year details to the cube (user view as well as source data cube). We loaded the data to the source data cube. From the user view, we tried to retrieve data, it shows up 0's. but the data is availble in the source data cube. Could anyone please provide the information what might be the issue?
    Thanks!

    Hi-
    If u haven't add the new member in the partition area, then Madhvaneni's advice is the one u should do. Because, if u haven't add the member, the target can't read the source.
    If u have already added the new member in the partition area, and still the data won't show up, sometimes it's worth to try re-save the partition, and see what's the outcome.
    -Will

  • Lost disclosure triangles in coveflow and list views in home folder

    I ran the 'chflags nohidden ~/Library' command in terminal to reveal the user library which worked just fine. The problem is that I have lost the disclosure triangles in my Home folder view in List and Coverflow views. When I click home in the sidebar There are no triangles by the folders. Double cicking a folder to see subfolders shows the triangles okay. Problem is only at top level. All other folders in sidebar are fine. I have relaunched finder, ditched finder preferences and cache, booted into safe mode, restarted several times all to no avail. Also reran the chflags command hidden and nohidden. Would appreciate any assistance.

    Please post a screenshot illustrating the problem.
    To take a screenshot, follow the instructions linked below. Be careful not to include any private information.
    Shortcuts for taking pictures of the screen
    Start a reply to this message. Click the camera icon in the toolbar of the editing window and select the image file to upload it. You can also include text in the reply.

  • Apache 2 and ~User Site folder

    I recently installed Apache 2 following the helpful guide at http://www.phpmac.com/articles.php?view=244, at any rate while I have Apache running correctly, and can load http://127.0.0.1 (which displays the Apple default stuff) I cannot load http://127.0.0.1/~username. I have followed the guide, editing the httpd-userdir.conf, so I am not sure what to do. Having looked at an old Apache httpd.conf file I noticed that it had a
    <IfModule mod_userdir.c>
    UserDir Sites
    </IfModule>
    statement which is missing from the new httpd.conf, might that be the source of the problem? For example, there may be a module that I failed to install? If so a little direction would be a big help -- I don't know much about adding modules beyond "LoadModule". Any help is much appreciated!

    >Would you please take a look at my thread 9-22-06
    Not unless you post a link to it.
    In any case I know exactly what I'll say there.
    The first is to ask what the logs say. I'll go out on a limb and say there's an error message that looks something like:
     Permission denied: access to /Users/billjones/Sites/index.php failed because search permissions are missing on a component of the path.
    Am I right?
    If so the log message tells you what's wrong - Apache doesn't have permissions to search the directory tree to get to the document, so it doesn't know if the document exists, or whether it can serve it.
    You need to add world-executable privileges to every directory in the path to the file - that means /Users, /Users/billjones and /Users/billjones/Sites
    Since your other 'guest1' account works it's likely that /Users has the right permissions, so focus on the other directories.
    You'll need to chmod a+x /Users/billjones in order to set the execute bit on your home directory. Then repeat it with the /Users/billjones/Sites directory.

  • Authorization for material type and material views

    Hello all,
    I would need to restrict a user group, in creation (MM01) and modification of material master, based of type material and material views.
    The authorization, for each user should be:
    - view, modify and create of all views, except accounting (B) for type material ZFER;
    - view, modify and create of all views for type material ZOFF.
    I tried to create 2 roles in PFCG with the following authorization objects:
    1) M_MATE_MAR (Material Master: Material Types)  ACTVT = *, BEGRU = ZFER and M_MATE_STA (Maintenance Statuses) ACTVT = *, STATM = A,C, D, E, F, G,K, L, P, Q, S, V, X, Z (excluding B)
    2) ) M_MATE_MAR  ACTVT = *, BEGRU = ZFER and M_MATE_STA ACTVT = *, STATM = B
    but the effect is to be authorized, to all view for material type ZFER and ZOFF.
    I have already updated the authorization group of the type materials (OMS2).
    Is there a solution for this problem?
    (component version SAP ECC 6.0)
    Thanks.
    Regards,
    Luca

    I tried to create 2 roles in PFCG with the following authorization objects: 1) M_MATE_MAR (Material Master: Material Types) ACTVT = *, BEGRU = ZFER and M_MATE_STA (Maintenance Statuses) ACTVT = *, STATM = A,C, D, E, F, G,K, L, P, Q, S, V, X, Z (excluding B) 2) ) M_MATE_MAR ACTVT = *, BEGRU = ZFER and M_MATE_STA ACTVT = *, STATM = B
    - Are both these roles assigned to the same user? then your purpose is not solved, It is more or less like giving full authorization.
    - One role should be
    M_MATE_MAR (Material Master: Material Types) ACTVT = *, BEGRU = ZFER and M_MATE_STA (Maintenance Statuses) ACTVT = *, STATM = A,C, D, E, F, G,K, L, P, Q, S, V, X, Z (excluding B) for view, modify and create of all views, except accounting (B) for type material ZFER. This should be assigned to one user
    - Second role should be
    M_MATE_MAR ACTVT = *, BEGRU = ZOFF and M_MATE_STA ACTVT = *, STATM = * for view, modify and create of all views for type material ZOFF. This role should be assigned to the second user.
    Regards,
    Subbu

Maybe you are looking for

  • Error when downloading Lightroom.

    After having successfully downloaded and installed Illustrator, InDesign, Fireworks and Photoshop, I tried to download Lightroom. The dowload process halted, and I aborted it. When i tried to download and install the program for a second time, the pr

  • Nano software not installing with usb 1.1

    I'm having difficulty getting the initial setup to run on my Windows XP computer. I apparently have USB 1.1, the Apple software during installation will tell me i need to format my Nano, then after an hour or so tell me an error occured and to try ag

  • Query about Tech specs for purchasing new Macbook Pro

    HI, I have an 13-inch, Late 2011 Macbook Pro and all the details are as follows: Processor  2.4 GHz Intel Core i5 Memory  4 GB 1333 MHz DDR3 Graphics  Intel HD Graphics 3000 384 MB Serial Number  C02HLMQRDV13 Software  OS X 10.9.4 (13E28) I wanted to

  • Be Careful, Found out Verizon Edge is Deceptive

    The information contained in this thread is true and there is no deviation from the truth.  Has anyone else experienced this? This letter is to notify you about a problem I am experiencing with my xxx-xxx-xxxx line, which has no come to a resolution.

  • OS X keeps asking for application

    Hello to you all, folks. First of all, excuse me if I don't express my self properly, for English is not my first language. I have a problem that's been bothering me repeatedly at least since Snow Leopard until now, with OS X Mavericks. I've been upd