Incorrect Display of Account View

Dear Gurus,
In our project, we have created two business roles for ex. Power User and Sales Rep.
While we are trying to open an Account through Opportunity/Activity search result list, we are getting incorrect view of the Account in Power User Role and the Correct View of the Account in Sales Rep Role.
In summary,
- Login and choose Sales Rep Role->Sales -> Opportunity Search->Select Account from result list->Account View (BP_HEAD) - Correct View
- Login and choose Power User Role -> Sales -> Opportunity Search->Select Account from result list->Account View (BPFS_HEAD) - Incorrect View
We would request all you gurus to kindly let us know why this is happening and what should be checked to resolve this issue.
regards
Srikantan

Hi Xavier,
Thanks for your reply. Through the use of F2 button only I found out that the system is retrieving incorrect view when we logon in one role and correct view when we login in another.
When we try to open an account through search result list in Opportunities/Activity it is opening:
- BPFS_HEAD Component in Power User Role - Incorrect view.
- BP_HEAD Component in Sales Rep Role - Correct View.
Is there anything else which I could try to resolve this?
Thanks once again,
regards
Srikantan

Similar Messages

  • Period change is not appearing in accounting view of material master

    Hello SAP lovers
    As we know once we close the period with MMPV, Latest perion appeared in material master --> Accounting view.
    Now period open is March 2007 for a company code. It is expected that material created in all the plants assigned to same company code should display latest period in accounting view. This is happening for all thousands of material in system but i found 1 material which is displaying the period as Nov 2006.
    I have doubled check that this material is created for the same plant which is assgned to the company code for which Mar2007 is open....
    Anybody ......Any clue......
    Best Regards
    Avinash

    Hello Mani
    I have already checked all the open items.....
    No sale order. No entry in table MSEG.
    Only one PO without GR.....So that should not make any difference.
    Br
    Avinash

  • Wrong description of columns is displayed in PDF view

    Hi Gurus,
    Please help me on the below issue.
    Issue: I open accoutn plan and clicked on "Print Account Plan" (which will export account plan data into PDF file for printting), from one assignment block the description of column is getting displayed wronglly in print view(ex Last year Amount in Planing block in Account plan, but just "Amount" is displayed in Print View). Please help me on this issue, what could be the issue and what things hould  be checked.
    Please do needful.
    Thanks and Regards,
    Venkatesh

    Hi
    If the field description is not coming as expected in displayed fields, we can edit the description from the Field properties option of that field from the configuration tab.
    If this field's description changes need to be applicable in all the components wherever used, we can change the description from the Design layer so that the changes will be replicated wherever the field is used.
    Thanks.

  • Display Intercompany Account Payable Posting document

    Hi Friends,
    We have a query related to Intercompany account payable posting document.  In Intercompany process, we are posting the intercompany account posting in receiving company by using standard SAP EDI functionality.  It mean once the AR is realized, we post the AP using Outbound & Inbound IDOC.  Now when we like to display the account payable document, there are two ways -
    1. Go to Account Receivable document, Environment->Document Environment->Relationship Browser-> IDOC->AP Document
    2. Change view of billing document, Services for Objests->Display Relationshis->IDOC Number->AP document
    Here we have a requirement to display the AP document directly without going to all the above ways, could you please whether any transaction/approach to display the AP document from AR document.
    Thanks in advance
    Best Regards,
    Goutham

    Please take the Invoice Number put "0" in Prefix go to FB03>Document List> remove all the values given in the screen if there is any, enter the Invoice Number with ZERO Prefix in reference Number Field.
    This will give you two documents one will by IC-AR and Other will be IC-AP.
    Hope this helps.
    Regards,
    Vivek

  • Very strange issue when displaying the Account PDF Factsheet.

    We have a very odd situation.
    We have one users (user1) who has the same business role as everyone else in the office. They can enter the UI (CRM 7), display an account and then click on the PDF Factsheet option. It seems to process and then simple says 'Done', but there's no PDF document displayed. At first I thought it was an Adobe issue, but, if someone in the office (user2) logs into SAP on user1's  PC (in the same Windows session), they can perform the same process in the UI and the PDF is displayed, so it can't be a PC related issue, and must somehow be related to user1's SAP profile or role in some way.
    Comparing User1 and User2's roles displays no differences, and their SU01 entries are also the same.
    Can anyone come up any recommendations as to what it could be?.
    I've more or less exhausted all my options.
    Jason

    I think we have discoverd what is causing the problem.
    In CRM 7, when you view an Account (BP) the first assignment block to be show is the account details block. If you have this block collapsed (not expanded) or not on the screen at all then PDF fact sheet does not work. If I then expand the Account details block and review the PDF Fact Sheet, it then displays perfectly.
    I guess there must be some dependancy of the PDF Fact sheet on the Account details block. I placed a breakpoint (normal and external) in the method of the class CL_UIU_PRN_ACCOUNT, but this code never gets called when the Account details block is collapsed. I'll have to find out what code is executed before this class/method is called.
    Jason

  • MRP group field can not be displayed in MRP1 view

    Hi all
    MRP group field can not be displayed in MRP1 view
    please guide me
    thx

    Hi avinash
    consulte your MM guy material master screen group and selection is done by MM guys in general. There they can do setting for this.
    Also why you need MRP group. If it is maintained. It should be done properly otherwise it will create lot of problems.
    Regards
    J . Saravan

  • Display a schematic view with icons (jpg, gif, etc).

    I'm trying to display a schematic view and use icons to represent the difference objects in this schematic view.
    For example: to show a 3 phones conference call. The description will be the phone number (or person's name) and the icon will be the person's face or company logo.
    I have tried to use JLabel, and JButton but then I have to use a Layout. Without a layout the are one-on-top of another.
    I tried to use setLocation and it doesn't look to have any effect on the location of JLabel or JButton.
    The following is my code:
    import java.awt.Container;
    import java.awt.Insets;
    import java.awt.Point;
    import java.awt.Dimension;
    import javax.swing.ImageIcon;
    import javax.swing.JButton;
    import javax.swing.JFrame;
    * ShowIcons.java is a 1.4 application that requires no other files.
    * @author Benny Regev
    * @version 1.0.00.0000
    public class ShowIcons {
        public static void addComponentsToPane(Container pane) {
            ImageIcon iconHE, iconCPE, iconNode, iconDemo;
            Point point1, point2, point3;
            pane.setLayout(null);
            iconHE = createImageIcon(NODE_HE_ICON);
            iconNode = createImageIcon(NODE_ICON);
            iconCPE = createImageIcon(NODE_CPE_ICON);
            iconDemo = createImageIcon(NODE_CPE_ICON);
            JButton b1 = new JButton(HE_TEXT, iconHE);
            JButton b2 = new JButton(NODE_TEXT, iconNode);
            JButton b3 = new JButton(CPE_TEXT, iconCPE);
            point1 = new Point(0, 500);
            point2 = new Point(500, 0);
            point3 = new Point(500, 500);
            b1.setLocation( point1 );
            b2.setLocation( point2 );
            b3.setLocation( point3 );
            pane.add(b3);
            pane.add(b2);
            pane.add(b1);
    //        pane.add(iconDemo);
            Insets insets = pane.getInsets();
            Dimension size = b1.getPreferredSize();
            b1.setBounds(25 + insets.left, 5 + insets.top,
                         size.width, size.height);
            size = b2.getPreferredSize();
            b2.setBounds(55 + insets.left, 40 + insets.top,
                         size.width, size.height);
            size = b3.getPreferredSize();
            b3.setBounds(150 + insets.left, 15 + insets.top,
                         size.width + 50, size.height + 20);
        /** Returns an ImageIcon, or null if the path was invalid. */
        protected static ImageIcon createImageIcon(String path) {
            java.net.URL imageURL = ShowIcons.class.getResource(path);
            if (imageURL == null) {
                System.err.println("Resource not found: "
                                   + path);
                return null;
            } else {
                return new ImageIcon(imageURL);
        }   //  End of Method protected static ImageIcon createImageIcon(String)
         * Create the GUI and show it.  For thread safety,
         * this method should be invoked from the
         * event-dispatching thread.
        private static void createAndShowGUI() {
            //Make sure we have nice window decorations.
            JFrame.setDefaultLookAndFeelDecorated(true);
            //Create and set up the window.
            JFrame frame = new JFrame("AbsoluteLayoutDemo");
            frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
            //Set up the content pane.
            addComponentsToPane(frame.getContentPane());
            //Size and display the window.
            Insets insets = frame.getInsets();
            frame.setSize(300 + insets.left + insets.right,
                          125 + insets.top + insets.bottom);
            frame.setVisible(true);
        public static void main(String[] args) {
            //Schedule a job for the event-dispatching thread:
            //creating and showing this application's GUI.
            javax.swing.SwingUtilities.invokeLater(new Runnable() {
                public void run() {
                    createAndShowGUI();
        public static final String NODE_HE_ICON = "images/shop_icon_esd_110.gif";
        public static final String NODE_CPE_ICON = "images/Default_feature1.gif";
        public static final String NODE_ICON = "images/icondesktop.gif";
        public static final String HE_TEXT = "Headent";
        public static final String CPE_TEXT = "CPE";
        public static final String NODE_TEXT = "10.0.0.10";
    }Anyone has an idea??

    Hi,
    This might help
    http://www.techonthenet.com/oracle/errors/ora01446.php
    Regards,
    Jari

  • Does anyone know if it is possible to change the display in week view to show 24 hours per day for those of us that work irregular hours

    Does anyone know if it is possible to change the display in week view to show all 24 hours per day for those of us that work irregular hours.
    Also is it possible to have all of the 'all day' entries showing, not just 3.5 of them.
    The app Week Cal HD was the perfect calendar until Apple removed it so could they please offer the same facilities that it offered.

    Does anyone know if it is possible to change the display in week view to show all 24 hours per day for those of us that work irregular hours.
    Also is it possible to have all of the 'all day' entries showing, not just 3.5 of them.
    The app Week Cal HD was the perfect calendar until Apple removed it so could they please offer the same facilities that it offered.

  • Report in Crystal 10 incorrectly displays rows when it shouldn't

    We have a problem in Crystal Reports 10 whereby the report incorrect displays 6 rows/records in the report but when we run the exact same SQL statement on its own (outside of Crystal) it does not bring back any results.
    Clare

    That didn't work either. I'm still getting the wrong timestamp.
    But, I did try something else, with more unexpected results. Just for the heck of it, I exported my workbook to excel (the workbook showing the 12:00 AM timestamps). When I opened the Excel file, it has the Archive Date with the correct times. Very strange. I export the workbook with all 17-NOV-09 12:00 AM timestamps in every Archive Date row, and in Excel it opens with the correct dates (17-NOV-09 10:15, 10:18 and 10:23 AM). So weird.
    That seems to reinforce that Discoverer can at least see the dates as they exist in the data warehouse, but for some reason, it insists on displaying 12:00 AM. And exporting the 12:00 AM results to Excel actually produces the correct times. Is this like some Java bug or something? I seem to get bit by Java problems more often than not.
    ***EDIT***
    I shouldn't say your suggestion didn't work entirely. It worked in that I am no longer getting 17-NOV-09 12:00 AM. But, it's returning a timestamp that does not exist for the given record. For example, all 3 Nov 17th timestamps (in the Discoverer report) are now showing 17-NOV-09 10:11 AM. 10:11 AM isn't even a timestamp available in the database for any record in the table. Why did it arbitrarily pick 10:11? It seems like your suggestion to create a TO_CHAR calculation from the column is on the right track, but the 10:11 AM thing is odd.
    Edited by: user527082 on Nov 17, 2009 4:29 PM

  • Multiple (not full) day events displaying in monthly view

    If I have an event that starts on 8:00 AM on Tuesday, and ends on 5:00 PM on Wednesday, It won't display in monthly view on Wednesday in iCal. It looks as though I have nothing scheduled on Wednesday.
    Is this "feature" something that Apple is working to eliminate?

    Ramone4130,
    The first and easiest troubleshooting step involves replacing/refreshing the com.apple.iCal.plist file.
    Quit iCal and find the com.apple.iCal.plist file in your Macintosh HD/Users/yourusername/Library/Preferences Folder. Drag the file to your Desktop, log out/in or restart and check iCal for normal behavior.
    ;~)

  • Can't display in Week View

    I just can't get iCal to display in week view (which is how I always use it). If I click on day view or month view the calendar window appears, but as soon as I click week view it disappears. I've tried deleting iCal and reinstalling the package from the OS X DVD. I've also tried deleting Library/Application Support/iCal. Any ideas?

    One possible issue is that the preferences have become corrupted. Try to throw out the plist for the calendars... found in your user home > library > preferences.
    Try trashing the com.apple.iCal.plist.
    Ted

  • Items to display in list view web part not showing the items setup

    Hi, I have the following issue. I have a list view web part, but the web part is showing more items that the ones setup in the: Number of items to display in list view web part for this view.
    It is because that works when using datasheet view and not a normal view? Is there any technical documentation from Microsoft supporting this?

    thank you for your answer. It is interesting that the mobile view with the items to show in the mobile view doesn't work in the webpart, but it works when you are using datasheet view, but if you uncheck to activate the mobile view, then, the webpart doesn't
    show information, so, it works partially because one part works and not the other.

  • Display a Calendar View in the Portale Server

    Hi, we use portal server 6.2 and we want to display a view of the calendar inside a channel of the portal.
    We know that portal have a calendar provider but we really didn't understand how can we use this provider to call a custom view of the calendar.
    Is it possible to display a custom view of the calendar inside a page of the portal ?
    Thanx

    Probably better to be posting this in the Calendar forum.

  • How to display a new view from a nib ?

    how to
    display a new view from a nib in the main window after clicking on a button.
    When I click a the button named for example "goToGokyo", the link to my procedure
    runs correctly because I see my NSLog message "goToGokyo button pressed".
    My nib, which name is "GokyoViewController" does exist.
    I did as follow for the moment but I'm stuck now, my nib  :
    - (IBAction)goToGokyo:(id)sender
        NSLog(@"goToGokyo button pressed");
      //[self stopSound];
      if (gokyoViewController == nil)
            GokyoViewController *aGokyoViewController = [[GokyoViewController alloc]
                                                         initWithNibName:@"GokyoViewController" bundle:nil];
            self.gokyoViewController = aGokyoViewController;
            //[aGokyoViewController release];
        [self GokyoView:gokyoViewController animated:YES completion: nil];
    Thanks in advance for your advice.
    Cheers

    I did that now :
    - (IBAction)btnLoadMyViewController:(id)sender
        NSViewController *viewController = [[NSViewController alloc] initWithNibName:@"MyView" bundle:nil];
        NSView *view = [viewController view];
        [_myWindowController.window setContentView:view];
        //view addSubview:view];
        //[self.myView addSubview:view];
    Using
    "_myWindowController.window setContentView:view];"
    or
    "[self.myView addSubview:view];"
    does not an error but does nothing !
    Would you help me one more times please ?
    Thanks in advance

  • Error while creation of Accounting view in background

    Hi Experts,
    I am creating the Materials using the Function MATERIAL_MAINTAIN_DARK in my program.
    I am passing the pstat as appropriate for the views to be created.
    Now, my problem comes When i am creating a Plant view and dont require an Accounting view.
    Even if I dont pass the PSTAT for the Accounting view, it gives me an exit message saying 'MBEW-BKLAS is defined as a required field.'.
    Please help me solve the issue.
    Any helpful answer will surely be rewarded.
    Thanks in Advance.
    Regards,
    Himanshu

    Hi,
      Please follow the below steps.
    Creating the Classification View using the Function module 'BAPI_OBJCL_CREATE'.
    Check the Class Type and Class Number which you are passing.
    Generally it will be Class type - 001 (Material Class) and Number will be ENGINEERING.
    It depends.
    But, what you can do is, Check material which has classification data filled.
    And just use the same class Type and Class Number Details.
    Try this way.It should work.
    To know the Available Class Types refer to table TCLA.
    Please let me know, if you want further help.
    Thanks & Regards,
    Vamsi.

Maybe you are looking for

  • InDesign CC - "Create App" option missing from Folio Builder panel

    I am using Windows 7, InDesign CC.  While watching a Terry White video I made an app along wth the tutorila All works fine in the Desktop Viewer. When it reaches the point of going to the "Folio Builder" panel mine does not have the "Creat App" optio

  • No luck copying regions

    Hi, Ive tried option click to copy regions & all it does is drag the region. any help? Ive managed to do it via the local region menu but would like to be able to do it either way. cheers Rob

  • Table entries for Personnel administration and organisation management

    Hi , For a functional consultant do we need to remember the table entries where the employee infotypes saved or where the table entries is useful as far as Personnel administration and organisation management is concerned..... and one more thing how

  • Adobe toolbar in office application

    Hi there, Is there anyways to turn off the adobe toolbar in all of the office application? after i installed adobe creative suite2, evertime i start up excel and word the adobe toolbar will appear as default no matter what. i even went to the custome

  • External mapping context

    Hello. I have one problem. I have 2 components? for example compA and compB. In compB I used compA. From compB I give parameters to compA throuth Context mapping and in compA execute RFC using this parameters. After execute I want to mapping result c