Relationship Display in PO13 for User is Incomplete

-This is a peculair situation post upgrade to ECC 6.0 where a couple of the recruiters are unable to view the entire list of relationships attached to a position using PO13.
If he/she hits the overview button it does NOT display ALL the relations. Instead, in QA2-100 the user is able to see the entire list.
The roles have been correctly mapped from QA--Porduction and PD Profiles unchanged?
Has anybody ever come across this situation before? Any insights would be greatly appreciated!!!
-Thanks
Tan

Hi,
Which Basis release are you on?
Please check SAP Note# 1274183 (P013: Displaying object name).
Incase, this issue is encountered for only few users in the system, please check if those users have LIST/DISP access for the missing relationship via auth object PLOG for OM IT1001.
Thanks
Sandipan
Edited by: Sandipan Choudhury on Jan 26, 2011 1:29 AM

Similar Messages

  • Context Menu not displayed in KM for users except Administrator

    Hi Experts
      Can you please suggest where the permission should be given in order to make context menu visible for users who are not super-administrators but are content admin?
      We are facing issue with context menu not shown at all to the users.
       Please suggest.
    Regards
    Shaily

    Hi Shaily,
    You may need to look into the permissions on your Layout set and Resource renderer in use.
    This thread will help you navigate and do the required changes.
    http://scn.sap.com/thread/99088
    Thanks,
    Biroj

  • Report to Display All Authorizations for User

    Dear Experts,
    Is the any standard report or table from which we can get the full authorization details of a user.
    EX: User Name -> Role -> T-Codes -> Authorization Objects -> Field Values.
    Atleast pointing User Name -> Authorization Objects -> Field Values.
    Please Help.
    Thanks

    Hello Simonjohn,
    There is not any direct way to do that, but you can do one thing,
    Through table "AGR_1251" you can fetch the authorization object and field value by mentioning the roles assigned to particular user, which you can fetch using table "AGR_USERS".
    You can also create quick view by joining these two tables using t-code "SQVI", which will help you to get your result.
    Here after joining tables you can also get report name which is created by SQVI automatically in "quickview"--> additional functions --> display report name
    Hope it helps.
    Regards,
    Amit Barnawal
    Edited by: Amit Barnawal on Jan 5, 2012 11:20 AM
    Edited by: Amit Barnawal on Jan 5, 2012 11:22 AM
    Edited by: Amit Barnawal on Jan 5, 2012 11:33 AM

  • Reports successfully execute but generate a login failed for user 'sa' err

    I am running Crystal Reports Server XI R2. Classic ASP is used to generate embedded reports within our application. The crystal reports use ODBC to connect to a SQL Server 2005 database. The reports successfully generate in our Classic ASP application. However in SQL Server 2005,  the following error messages are being generated each time a crystal report is ran:
    - Login failed for user 'sa'.
    - Error: 18456, Severity: 14, State: 8.
    We know that we are passing the correct username/password to the crystal reports, becuase they execute successfully.
    It appears that when the report is called, Crystal Reports appears to conect to SQL Server using a username/password that we didn't provide it at execution time, this fails and the SQL Server 'login failed for user' is generated. Then it runs the report using the username/password we provide and it successfully generates a report.
    I have ran Profiler against the SQL Server Database and the 'Login failed for user 'sa' ' errors have a ApplicationName of either 'Seagate Crystal Reports' or 'Crystal Reports'. Therefore I know it is Crystal Reports generating these errors in SQL Server.
    Does anyone have any ideas on how to stop these SQL Server 'Login failed for user 'sa' ' errors being generated?

    What happens if you use Profiler when running the report using Crystal Report Designer?
    If the report is ran through Crystal Report Designer, NO 'Login failed for user' error messages appear in profiler. Everything looks ok when ran in Designer.
    Also, need to know what patch level you are on?
    We are running Crystal Reports Server XI Release 2, Version: 11.5.8.8265
    No additional patchs have been applied since Crystal Reports Server was installed.
    We may try the SA account if one of the connections fail to log on with the credentials you provided. Verify the user you logged on with has rights to all tables.
    The reports were running through our application using the SA account. The SA account has permissions to these tables. The reports do generate results and appear perfectly fine in the application.  The issue is that when our application requests the report from Crystal Reports Server. Crystal Reports Server delivers the correct report to our application. However during the process to generate the report, 'login failed for user 'sa' ' errors are being generated in SQL Server 2005.
    Also, I have tried creating a completely new SQL user called 'crystaluser'. I ran the report using Crystal Report Designer and used the crystaluser logon and saved the report. Then I ran the same report through our application. SQL Profiler will then display 'login failed for user 'crystaluser''. 
    Its seems as though Crystal Reports Server is first executing the report using the default SQL user saved with the report, but is either sending a blank password or no password at all. This generates the 'login failed for user' in SQL Server 2005. But it then uses the SQL username/password my application gives it and successfully generates the report. Of course this is only speculation.

  • To fix the length of a textfield for user to enter date

    hi,
    i need to display a textfield for user to enter the date in the format MM/DD/YY.With the slash in between present and fixed and the possibility of entering only 2 digit figures for the month,day n' year.I am using JTextField .how can i acheive that pls help.

    You must design you own document where you will manage the text that will be entered/displayed in your textfield
    here's a sample of the code I use to do this:
    import javax.swing.JTextField;
    import java.io.*;
    import javax.swing.*;
    import javax.swing.text.*;
    import java.awt.*;
    import java.awt.event.*;
    public class MaskedTextField extends JTextField
    private String initStr;
    public MaskedTextField (String mask, String initStr)
    super();
    setDocument(new MaskedDocument(initStr, mask, this));
    setText(initStr);
    this.initStr = initStr;
    this.addMouseListener(new java.awt.event.MouseAdapter()
    public void mouseClicked(MouseEvent m)
    this_mouseClicked(m);
    private void this_mouseClicked(MouseEvent m)
    if (getText().equals(initStr)) setCaretPosition(0);
    class MaskedDocument extends PlainDocument
    String mask;
    String initStr;
    JTextField tf;
    public MaskedDocument(String initStr, String mask,
    MaskedTextField container)
    this.mask = mask;
    this.initStr = initStr;
    tf = container;
    void replace(int offset, char ch, AttributeSet a)
    throws BadLocationException
    super.remove(offset,1);
    if (capitalised) super.insertString(offset,
    String.valueOf(ch).toUpperCase(),a);
    else super.insertString(offset, "" + ch, a);
    public void remove(int offs, int len) throws BadLocationException
    if (len==0)
    return;
    // Remove current contents
    super.remove(offs, len);
    // Replace the removed part by init string
    super.insertString(offs,initStr.substring(offs,offs+len),
    getAttributeContext().getEmptySet());
    tf.setCaretPosition(offs);
    public void insertString(int offset, String str, AttributeSet a)
    throws BadLocationException
    if ((offset==0) && str.equals(initStr))
    // Initialisation of text field
    super.insertString(offset,str,a);
    return;
    if (str.length()==0)
    super.insertString(offset,str,a);
    return;
    for (int i=0;i<str.length();i++)
    while ((offset+i) < mask.length())
    if (mask.charAt(offset+i)=='-')
    // Skip fixed parts
    offset++;
    else
    // Check if character is allowed according to mask
    if (str.charAt(i) != this.initStr.charAt(i))
    switch (mask.charAt(offset+i))
    case 'D': // Only digitis allowed
    if (!Character.isDigit(str.charAt(i)))
    return;
    break;
    case 'C': // Only alphabetic characters allowed
    if (!Character.isLetter(str.charAt(i)))
    return;
    break;
    case 'A': // Only letters or digits characters allowed
    if (!Character.isLetterOrDigit(str.charAt(i)))
    return;
    break;
    replace(offset+i, str.charAt(i),a);
    break;
    else
    i++;
    offset--;
    // Skip over "fixed" characters
    offset += str.length();
    while ((offset<mask.length()) && (mask.charAt(offset)=='-'))
    offset++;
    if (offset<mask.length())
    tf.setCaretPosition(offset);
    if (offset == mask.length()) tf.setCaretPosition(offset);
    Enjoy
    Bernie

  • 4016: User/Role relationship for user

    Hi Guru,
    I have a requirement to send email notifications to mulitple users.
    I created a adhoc role and tried assigning the users to the role but I am getting this error. I am on R12.1.3
    4016: User/Role relationship for user
    Where do I pick the user to assign it to the role. Should I use wf_users, fnd_user.
    I have the user_name in fnd_user and the name iin wf_users is the same.
    v_role_name := 'XX_CUSTOM_ROLE'
    v_role_display_name := 'XX Custom Display Role'
       wf_directory.createadhocrole(role_name => v_role_name
                        ,role_display_name => v_role_display_name
                        ,role_description => null
                        ,notification_preference => 'MAILHTML'
                        ,email_address => null
                        ,status => 'ACTIVE'
                        ,expiration_date => NULL);
           for i in v_asset_manger(g_project_id)
    -----------v_asset_manger is a cursor which picks up all the assets managers on the project--------------
           loop
                select wfr.name into v_full_name from per_all_people_f papf, fnd_user fu, wf_local_roles wfr
            where papf.person_id = fu.employee_id
            and wfr.name = fu.user_name
            and person_id  = i.person_id;
            select count(name) into v_count from per_all_people_f papf, fnd_user fu, wf_local_roles wfr
            where papf.person_id = fu.employee_id
            and wfr.name = fu.user_name
            and person_id  = i.person_id;
                        if v_count > 1 then
                        v_name :=  v_full_name||' '||v_name;
                        v_full_name:= null;
                        else
                        v_name :=v_full_name ;
                        end if;
            end loop;
            wf_directory.adduserstoadhocrole(role_name => v_role_name,
                                                role_users =>v_name);
                wf_engine.setitemattrtext (itemtype      => p_itemtype,
                                        itemkey       => p_itemkey,
                                        aname         => 'XX_ASSET_MANAGER',
                                        avalue        => v_name
                

    Hi Sree,
    THanks for your reply. user_name in fnd_user, the role in wf_local_rules are same.
    ex. KSURNAJ in wf_local_roles is same as in KSURNAJ fnd_user
    Activity Type  Function
    Error Name  WF_DUP_USER_ROLE
    Error Message  4016: User/Role relationship for user 'KSURNAJ' and role 'MAIL_TO_ASSET_MANAGERS-1' already exists.
    Error Stack  Wf_Directory.CreateUserRole(KSURNAJ, MAIL_TO_ASSET_MANAGERS-1, PER, 2680, WF_LOCAL_ROLES,0) Wf_Directory.AddUsersToAdHocRole2(MAIL_TO_ASSET_MANAGERS-1) Wf_Directory.AddUsersToAdHocRole(MAIL_TO_ASSET_MANAGERS-1, "MINUHYE KSURNAJ") XXPA_BUDGET_APPROVAL_WF_PKG.Inside my look XXXX(PABUDWF, 120524, 258610, RUN) XXPA_BUDGET_APPROVAL_WF_PKG.xx_assign_approver(PABUDWF, 120524, 258610, RUN) Wf_Engine_Util.Function_Call(XXPA_BUDGET_APPROVAL_WF_PKG.xx_assign_approver, PABUDWF, 120524, 258610, RUN)

  • $DISPLAY stopped working for one user

    Have 3 secondary users that I use daily on this desktop, that runs Arch x86_64 up-to-date (systemd compatible). WM is i3-wm 4.3-2.
    As of today, USER2 can launch GUI applications, USER3 sudently can't.
    Can't see what configuration I could have edited (I barely touch those secondary users config files).
    First tho secondary users are allowed to use X with 'xhost +SI:localuser:<USER{2,3}>' in a startup script, so that I can launch various GUI apps.
    Both share the same groups (audio,video,...) beside their own peculiar group.
    Oh and a last one that is used for skype only (as per the wiki). It is launched with an alias:
    alias skype='xhost +local: && sudo -u skype /usr/bin/skype'
    Runs fine.
    Logged as USER3:
    $ echo $DISPLAY
    $ leafpad
    leafpad: Impossible d'ouvrir l'affichage:
    translation: "Can't open display: "
    Logged as primary User I typed successively:
    $ xhost +SI:localuser:<USER>
    $ xhost +localhost
    $ xhost +local:
    $ xhost + (access control disabled)
    None worked.
    As root:
    # export XAUTHORITY=~<USER>/.Xauthority
    Same thing than before :-o
    Note : I happened to shift from Nvidia to nouveau while I had this issue; same issue
    Only way I found atm is:
    $ sudo -u <USER> -H PROGRAM
    Which runs fine.
    Please have you got a clue where this might come from?
    Refs:
    [Solved] Cannot open display :0.0  https://bbs.archlinux.org/viewtopic.php?id=132532 with the 2 links that eirika provided.
    Running web browser as separate user?   https://bbs.archlinux.org/viewtopic.php … 8#p1058358
    Last edited by kozaki (2012-09-25 11:01:11)

    Follow-up
    Same issue happened after last update on my netbook, for both secondary users.
    /var/log/pacman.log
    [2012-09-26 13:31] Running 'pacman -S -u'
    [2012-09-26 13:31] starting full system upgrade
    [2012-09-26 13:32] removed eject (2.1.5-7)
    [2012-09-26 13:32] upgraded coreutils (8.17-3 -> 8.19-1)
    [2012-09-26 13:32] upgraded gtk-update-icon-cache (2.24.12-1 -> 2.24.13-1)
    [2012-09-26 13:32] upgraded gtk2 (2.24.12-1 -> 2.24.13-1)
    [2012-09-26 13:32] upgraded hwids (20120906-1 -> 20120922-1)
    [2012-09-26 13:32] upgraded ladspa (1.13-3 -> 1.13-4)
    [2012-09-26 13:32] upgraded libarchive (3.0.4-1 -> 3.0.4-2)
    [2012-09-26 13:32] upgraded libsigc++ (2.2.10-2 -> 2.2.11-1)
    [2012-09-26 13:32] upgraded mlocate (0.25-2 -> 0.26-1)
    [2012-09-26 13:32] upgraded procps-ng (3.3.3-3 -> 3.3.3-6)
    [2012-09-26 13:33] upgraded qt (4.8.3-2 -> 4.8.3-3)
    [2012-09-26 13:33] upgraded util-linux (2.21.2-5 -> 2.22-6)
    [2012-09-26 13:33] upgraded sysvinit-tools (2.88-7 -> 2.88-8)
    As far  I can remember I haven't edited any config file on that system for last month - other than power management related: cpupower, jupiter and kernel-netbook
    Problem hasn't changed on the desktop PC: $DISPLAY works fine with one secondary user, and not at all with the other. Have no clue as where it may comes from, so any advice would be much appreciated.

  • I connect my Macbook 13" to my thunderbolt to display on my HD television but it keeps asking for a KeyChain password for "user-hp". My key keychain password is nothing but it does not want to accept and not display my screen to the Television. Suggestion

    I connect my Macbook 13" to my thunderbolt to display on my HD television but it keeps asking for a KeyChain password for "user-hp". My key keychain password is nothing but it does not want to accept and not display my screen to the Television. Suggestion

    Apple support article:
    Mail Keeps Asking for Password
    Maybe this will help. If you monitor the "More Like This" box (top right), other threads appear. Opening them usually displays other threads.
    https://discussions.apple.com/message/20549403#20549403

  • HOW DO I CHANGE THE FONT OF "Message to Display" IN THE Prompt User for Input

    Hi,
    HOW DO I CHANGE THE FONT OF "Message to Display" IN THE  Prompt User for Input?
    Thanks for your help 
    XN 

    Right click and select Open front panel >> Convert.
    Change the vi as you need. then you can save it as a normal sub-vi.
    If you have Labview 8.6, maybe (i am not sure) you can edit the express vi. Express vis are supported in 8.6

  • Search for user role but help poppup display

    Anyone ever trying to search for user role from search action bar or user admin page?
    Whenever select role and clicked on the magnifying glass icon, help content displays instead of role selection.
    At first I think this is a bug. But when I asked Customer Care they said its an expected behaviour which means that this is how the engineers designed it.
    Dont you feel weird? because other field like status, correctly displays status info after clicking the icon.
    Hope u can try it this out and give your opinion here.

    Can you provide a little more detail on what you were trying to do.

  • Display a message without waiting for user response

    Hi,
    I'm currently trying to find the best way to display a message, and multiple messages to the user, so that he is informed of the processing.
    I've tryied the dialog box but it's waiting for user confirmation so it interrupts the execution of the VI.
    Another precision is that I call the dialog in a case structure, so does it act?
    I'm thinking about using a VI dedicated to the displaying of the message but I may not be able to display multiple message boxes.
    Can anyone help me to use the best way?
    Thank you in advance.
    Bim

    You can build the message display into your vi by using the techniques shown in the attached vi (LV7.1.1)
    It is just a string indicator with large font size, and using property nodes to show/hide when necessary.
    - tbob
    Inventor of the WORM Global
    Attachments:
    MessageDisplay.vi ‏31 KB

  • Default account setting for this user is incomplete

    Hi,
    I have created a user and gave rights(connect and resource) to that user. i have logged in and when i trying to open form module im getting a message.
    default account setting for this user is incomplete. Contact system administrator
    How to resolve this?
    skud.

    default account setting for this user is incomplete. Contact system administratorThis is an application error not an Oracle Forms error. Contact your system administrator to determine what is missing from the user account you created.
    Hope this helps,
    Craig B-)
    If someone's response is helpful or correct, please mark it accordingly.

  • "Search for User" display no user

    Hi,
    I'm testing the Early access release of the SVDI.
    I discovered a problem connecting to our OpenLDAP-Directory. The directory is configured with correct values for host, port, Base DN, User DN and password. The setup wizard finished without errors. But the search function on the "Users -> Users and Groups" tab returns no users.
    This might be an issue with the structure of our openldap-tree, so I digg a little deeper. :-)
    Our ldap tree looks like this:
    / ou=department,o=organization,c=de
    |--- ou=Users
    |--- ou=Groups
    |--- ou=Computers
    When I look at the logfiles of openldap, I recognize a ldap query with
    'filter=&(&(|(?objectClass=user)(objectClass=person)(objectClass=inetOrgPerson)(objectClass=organizationalPerson))(!(?objectClass=computer)))(|(cn=*demo*)(uid=*demo*)(mail=*demo*)))'
    This query doesn't return any entries.
    While playing around with ldapserach I removed the '(!(?objectClass=computer))' part and the query works.
    Removing this part from /etc/cacao/instances/default/modules/com.sun.vda.Service_Module.xml and restarting cacao makes me happy. :-)
    What are the requirements for a supported ldap structure? I know that only active directory and Sun directory server are supported, but changing the directory service is not a 'near-time' option for me.
    Currently we are using SUN VDI 2.0 and all (my) missing features are in 3.0. :-)
    Thanks,
    Thomas

    Hi Thomas,
    you did the right thing.
    OpenLDAP doesn't seem to support LDAP queries about object classes it doesn't know.
    This is impossible to have generic LDAP queries that are supported by every type of LDAP directory, and we know it is out of the question for customers to change their LDAP schema. That's why we made the LDAP filters and LDAP attributes, used by VDI, editable, so that customers can customize them to match their LDAP directory requirements.
    The default filters would work OK for quick demos with Active Directory and Sun DS, but for production deployment, it would still be recommended to adapt the filter to match most closely the schema of the directory and to put less strain on the LDAP directory. This will be documented with our official release.
    In Active Directory, computer objects have objectclass=user and objectclass=computer, so the (!(objectclass=computer)) part is there to avoid that computer objects are returned in a search for users and groups. But it is useless for the other type of directories that don't have such a specificity.
    FYI, here is how VDI performs the search for users and groups:
    The filter used by the web-GUI to search for users is: (&<ldap.user.object.filter><ldap.user.search.filter>)) and then the $SEARCH_STRING placeholder is replaced by \*criteria\* where criteria is the string you type in the web-GUI search field.
    Same applies for groups, using the group filters.
    We search first for users and then for groups.
    Regards,
    Katell

  • Screen "Define Status Profile for User Status" should not open in changemod

    Dear all ,
    After following the path CRM>SPRO>SAP IMG -->Customer Relationship Management -->Transactions -->Basic Settings --> Status Management -->Define Status Profile for User Status.
    the screen opens in change mode & allows user to carry out the changes, this is very crucial screen & hnece should not be in open mode ,kindly advice on closing the same.so that it opens only in display mode for production system.
    Regards

    Hi Milind,
                 To Block changes to any Object their is a Provision for the same in Client Deatils Screen
    Go to TCode:SCC4
    Check the Tab Cross-Client Object Changes
    Try setting the Option (3.No Changes To Cross-Client Customization Objs)
    Following Options Symbolises:
    Changes to the Repository and cross-client Customizing permitted
    There are no restrictions on the maintenance of cross-client objects for the client when this setting is used. Both cross-client Customizing objects and objects of the SAP Repository can be maintained.
    No change to cross-client Customizing objects
    Cross-client Customizing objects cannot be maintained in the client with this setting.
    No change to Repository objects
    With this setting, objects of the SAP Repository cannot be maintained in the client.
    No change to Repository and cross-client Customizing objects
    Combination of both restrictions: Neither cross-client Customizing objects nor objects of the SAP Repository can be maintained in the client.
    (Choose This One it Should Resolve your Problem)
    Hope it answered Your Queries..
    Thanks and Regards,
    RK.

  • Pause for user click missing after Seamless Tabbing fix.

    I am upgrading a project from Captivate 5.0 to 5.5. Two of the lessons that worked fine in 5.0 have problems in 5.5. Both lessons use the Tab key to move from field to field in a data row and then the Enter key to calculate at the end of the row. This worked fine in 5.0. In 5.5, pressing Tab caused jump to browser address window. I searched blog and found following solution to add:    so.addParam(seamlessTabbing:, :false:);        to the htm file generated when publishing the file. This is not a desirable solution for long term course maintenance, but it did work. Unfortunately a new problem then appeared. The project moved ahead without waiting for user input in the simulation exercises.
    For slides with click boxes using Tab shortcut key and no other interactive objects, the movie just skipped ahead without waiting for user click. I would like the project to pause until the user presses the Tab key and then move to the next slide.  The properties for the click boxes are:
    Action:
    On success: Go to the next slide
    Attempts: Infinite
    Allow mouse click - yes
    Shortcut: Tab
    Options:
    Captions: Failure only
    Others: Pause for Success/Failure Captions and Pause project until user clicks
    Timing:
    Display for: Rest of slide
    Appear after 0 seconds   (I have played around with this setting, but it does not seem to make a difference.)
    For slides with Text Entry, the failure captions display before the user has a chance to input anything. Sometimes the captions flash several times at random. I would like the failure captions to only display when the user  enters an answer that does not match the stored answers.  The properties for the text entry boxes are:
    General:
    Default text: blank
    Retain Text - checked
    Validate User Input - checked
    Var Associated: Text Entry Box ## (## changes from slide to slide)
    On Focus Lost: No action
    Action:
    On Success: Go to the next slide
    Attempts: Infinite
    Shortcut: Tab
    Options:
    Captions: Failure only
    Others: Pause for Success/Failure Captions
    Timing:
    Display For: Rest of slide
    Appear after: 0.5 sec.
    Pause After: 1 sec
    Transition: No Transition
    To test whether it was something I was doing in the editing, I went back to the original 5.0 version of the lesson and imported into 5.5 again and published without doing any editing. The lessons that worked fine in 5.0 did not work in 5.5. Then I tried replacing all the click boxes with new ones created in 5.5. That did not work. I tried adjusting the timing. That did not work. For the text entry boxes, I tried using Show Button, creating transparent button with Tab shortcut. That did not work. Several of these suggestions were ones that I found elsewhere in the Blog with similar but not identical problems. I never found a problem that combined the seamlessTabbing with the missed pauses.
    I am puzzled and frustrated that these lessons that worked fine in 5.0 don't work in 5.5. Our primary edit is only to update the screen images and add a few new fields. I would often reposition an object on the slide, but not change its properties. Since most of the lessons are working fine in 5.5 and only these two that heavily use the Tab key are not working in 5.5. I don't really have the option of going back to 5.0. I need to put them in an aggregator and they all need to be the same version.
    Is there a patch or a quick fix? Also, can the patch to the htm file be built in or is that what is causing the problem? For future course maintenance, it will be complicated to have to treat these two lessons specially. Also, we usually link to the swf file and not the htm file. Our users often use browsers other than Internet Explorer.
    Any suggestions?   Thanks in advance.

    It would seem Intego Virus Barrier X6 has an intermittent habit of putting the IP address of Apple TV into the Blocked Addresses list despite having checked the 'Trust Apple TV' box and inputting the address into the Trusted Addresses list. Over the course of less than a year this has occurred approximately 4 times to me. My last variation on getting to the root of the problem was to lock the settings with the padlock. I will monitor the situation and should it happen one more time will notify Intego of this 'bug'.

Maybe you are looking for

  • Plz help

    hello friends, i was try to get all the line items in vbrp table where two fields donnot match ie. display all the document numbers where fields kzwi2 not equal to kzwi4. in order to do this i thougt of creating 2 aliases a and b for the table vbrp i

  • Map Viewer in Obiee 11G

    Hi, I need to install map viewer in obiee 11g to show maps in dashboards. I have no idea about this, can any one help me. Thanks, PJ

  • Can't share photos to my iMac via iCloud

    I am trying to share photos on iPad mini #1 to an iMac. I am able to share from the mini #1 to mini #2, an iPhone, and to a MacBook Air. The one thing I can't do is get the photos shared to show up on the iMac. When I share from mini #1 to the iMac,

  • Remote Server doesn't display SPRY Tabbed Panel

    I'm using DW CS4.  I inserted a SPRY Tabbed Panel in the main page for navigation.  The local development and testing server displays the Panel, but the remote server (Go Daddy) does not.  All of the data from the panel is displayed in one log page w

  • After installing mountain lion facebook will not load on iMac

    Any helpers Please !!