Custom View not visible in Overview page as AB unless "Reset to Default"

Hi Experts,
I am facing a strange issue here.
I enhanced the component TPMOE and created a custom view ZTRADESPENDEXCEPTION in it.
Now i have added this view as assignment block in all 6 configuration available for the overview page.
I have redefined the DETACH_STATIC_OVW_VIEWS and REATTACH_STATIC_OVW_VIEWS.
The issue i am facing is that my view assignment block is not visible to the user unless he/she goes to the personalization of the overview page and hits "Reset to Default". Once this is done, later on users can change there personalizations and everything works fine.
Now i am not sure i can go and tell all end users to go to personalization of the TPMOE overview page and click on "Reset to Default".
Is there any other way i can show my view to the end users?
I have done this on the lines of overview page layout changing when you select product planning basis while creating Trade Promotions.
Thanks and Regards
Gaurav Kumar Raghav

Hi Amar,
My coding is given below.
In DETACH_STATIC_OVW_VIEWS, the coding is:
Call Super Method
ls_viewid-view_id = '<My View Name>'.
Append ls_viewid to rt_view_id
In REATTACH_STATIC_OVW_VIEWS, the coding is:
Call Super Method
if <flag>  = 'X'.
ls_viewid-view_id = '<My View Name>'.
Append ls_viewid to rt_return.
endif.
In debug mode, the coding get executed correctly and my view is returned for attachement.
For each user, the first time, i need to say "Reset to Default".
After that it works fine, my view is displayed.
Is the program "BSP_DLC_DELETE_PERSONALIZATION"  a good solution to my problem?
Thanks and Regards
Gaurav Kumar Raghav

Similar Messages

  • Account generation workflow custom process  not visible in lov

    Hi guru,
    i have created a sample process in "Project Supplier Invoice Account Generation".
    but when i upload the work flow in data base by the concurrent program . i dont find the sample process in " account generation window" in GL.
    Please help gurus.
    Regards
    vishal

    Hi,
    See the foll notes for solution:
    Note 541877 - CUF: Customer fields as checkbox
    Note 1016297 - Header customer fields are not displayed in bbpsc02
    Note 1034079 - Customer fields not visible in shopping wizard
    BR,
    Disha.
    Pls reward points for useful answers.

  • Table header not visible on all pages

    I have created a table, which have the following subforms.
    MaterialBody ( Type -Flow Content  & Flow direction - Table )
    - Header     ( Type - Flow Content & Flow direction - Table row )
       - Data        (  Type - Flow Content & Flow direction - Table row )
    Also Checked the check BOX , Include Header Row in Initial Page
    In the output of my form i see all the records in table format, but my header is not visible on all the pages.
    The header is visible only on the firs and second page.
    Can anyone suggest, why the header is not visible on every page.

    Hi Ayesha,
    can you please show us the screenshot of your elements you have declared under smartforms.
    Please check this too, for your header data you have checked or not.

  • SP 2010 Publishing - Rollup and Page Images not visible when entering page edit mode

    All:
    Hello, I have an odd issue recently appearing after installation of FEB 2013 CU install. When users select to Edit a Publishing Page the Rollup Image and also Page Image(Article Page Layout) are not visible. Only the "Click here to insert Image from
    SharePoint" link is visible.
    The issue has be confirmed in 5 servers across two farms
    DEV, QA, and PROD on client recently updated
    DEV and PROD in a completely separate client farm
    I have confirmed the issue does not exist in two separate farms running April 2012 CU. In both of those environments the image appears with issue even in Edit page mode.
    In the farms where the issue exists you can click the insert image link and simply hit OK to see the image again. An easy enough work around for tech savvy but my client's content admins are very confused/frustrated by.
    Is this a bug? I have confirmed in two separate farms including brand new web applications using out of the box publishing site templates.

    Hi.
    We have been facing the same issue in a 2013-environment (SP1), but in this case an upgraded 2010 Solution, which still runs in 2010-mode. Because of this, SharePoint still use resource-files in the 14-hive (as we have not performed an upgrade of Master
    Pages etc.) The problem is also reproduced on a clean 2010 Site Collection in the same 2013-environment.
    I have managed to find the cause of the problem (at least in our environment), and that is that as long as the selected picture/image has
    not defined an "AltText"/"Alternate Text" the problem seems to occur.
    In other words, try to define an Alternate Text and click OK in the "Edit Image Properties" Dialog.
    I don't know if this may be the case for everyone else, but give it a try.
    From this, I've further discovered (after hours of js-debugging) that there is a minor change (from 2010 to 2013) in a js-file called "SelectorControls.js" which is responsible for updating the various controls used in Page Layouts etc.
    The problem exist in a method called ASO_UpdateButtonsAndPanels(), which checks whether the Image Control in question has content or not (Url). The local variable "hasContent" is then determined of an if statement, if(this.AssetData.ManageLinkDisplayText)
    which in 2010 (14-hive) seems to be "true" regardless whether the Control is of type Image or Hyperlink. Further the code checks for AssetText (Alternate Text) which on an Image may be left empty.
    In 2013 (15-hive) however, this if statement has been changed to, if(this.SelectorType==ConstLinkSelectorType), which clearly states "Image" or "Link" depending on the type of control.
    I don't know if this is the cause of the problem in 2013, but in 2010 it seems to be exactly that.
    Pending a solution from Microsoft, we have modified SelectorControls.js to overcome this issue until the customer decides to do a Visual Upgrade to 2013.
    This is by all means not a supported nor a a permanent solution to the problem, as future Hotfixes, Service Pack etc. may "reset" our fix.
    Below is a copy of the working solution:
    function ASO_UpdateButtonsAndPanels()
    {ULSuBa:;
    var hasContent=!!this.AssetData.AssetUrl;
    //SharePoint 2010: ManageLinkDisplayText is always "True"
    //var hasContent=!!this.AssetData.AssetUrl;
    //if(this.AssetData.ManageLinkDisplayText)
    //hasContent=hasContent && !!this.AssetData.AssetText;
    //SharePoint 2013
    //var a=!!this.AssetData.AssetUrl;
    //if(this.SelectorType==ConstLinkSelectorType) a = a && !!this.AssetData.AssetText;
    //Fix for preventing existing selected image to disappear when saving page and/or editing a page with existing image.
    if(this.SelectorType!=ConstImageSelectorType)
    if(this.AssetData.ManageLinkDisplayText)
    hasContent=hasContent && !!this.AssetData.AssetText;
    if( hasContent )
    if (this.ClearAssetButton !=null)
    this.ClearAssetButton.EnableButton();
    this.GetAssetSelectedPanel().style.display="inline";
    this.GetEmptyPanel().style.display="none";
    else
    if (this.ClearAssetButton !=null)
    this.ClearAssetButton.DisableButton();
    this.GetAssetSelectedPanel().style.display="none";
    this.GetEmptyPanel().style.display="inline";
    I hope this helps anyone else struggling with the same problem.
    Thanks!
    Øyvind

  • Custom field not visible for Project task in PPM 5.0

    Hi,
    I have done the SPRO configuration required to add a custom field in Project task
    1. Enhance DB table. added  the field in structure DPR_TS_TASK_EXTENDED_ATTR, object type TTO
    2. Define field groups for custom fields
    3. Set up field control.
    The custom field tab has come after making SPRO changes. But the field is not visible on the tab.
    Please let me know if I am missing any steps.
    Thanks,
    Yomesh

    Dear Yomesh;
    You have to config the view or subview at:
    SAP Portfolio and Project Management -> Portfolio Management -> Global Customizing -> Global Field Settings -> Assign Fields to Views/Subviews
    Here try to to setup the view that you want to see the custom field.
    Hope you help you.
    Regards.
    Mariano

  • Safari 8.0 preferences such as homepage or customized view not saved or maintained.

    Cannot seem to maintain Safari 8.0 preferences such as homepage or customized view between sessions.

    Back up all data before proceeding.
    This procedure will unlock all your user files (not system files) and reset their ownership, permissions, and access controls to the default. If you've intentionally set special values for those attributes on any of your files, they will be reverted. In that case, either stop here, or be prepared to recreate the settings if necessary. Do so only after verifying that those settings didn't cause the problem. If none of this is meaningful to you, you don't need to worry about it, but you do need to follow the instructions below.
    Step 1
    If you have more than one user, and the one in question is not an administrator, then go to Step 2.
    Triple-click anywhere in the following line on this page to select it:
    sudo find ~ $TMPDIR.. -exec chflags -h nouchg,nouappnd,noschg,nosappnd {} + -exec chown -h $UID {} + -exec chmod +rw {} + -exec chmod -h -N {} + -type d -exec chmod -h +x {} + 2>&-
    Copy the selected text to the Clipboard by pressing the key combination command-C.
    Launch the built-in Terminal application in any of the following ways:
    ☞ Enter the first few letters of its name into a Spotlight search. Select it in the results (it should be at the top.)
    ☞ In the Finder, select Go ▹ Utilities from the menu bar, or press the key combination shift-command-U. The application is in the folder that opens.
    ☞ Open LaunchPad and start typing the name.
    Paste into the Terminal window by pressing command-V. I've tested these instructions only with the Safari web browser. If you use another browser, you may have to press the return key after pasting.
    You'll be prompted for your login password, which won't be displayed when you type it. Type carefully and then press return. You may get a one-time warning to be careful. If you don’t have a login password, you’ll need to set one before you can run the command. If you see a message that your username "is not in the sudoers file," then you're not logged in as an administrator.
    The command may take several minutes to run, depending on how many files you have. Wait for a new line ending in a dollar sign ($) to appear, then quit Terminal.
    Step 2 (optional)
    Take this step only if you have trouble with Step 1, if you prefer not to take it, or if it doesn't solve the problem.
    Start up in Recovery mode. When the OS X Utilities screen appears, select
              Utilities ▹ Terminal
    from the menu bar. A Terminal window will open. In that window, type this:
    resetp
    Press the tab key. The partial command you typed will automatically be completed to this:
    resetpassword
    Press return. A Reset Password window will open. You’re not going to reset a password.
    Select your startup volume ("Macintosh HD," unless you gave it a different name) if not already selected.
    Select your username from the menu labeled Select the user account if not already selected.
    Under Reset Home Directory Permissions and ACLs, click the Reset button.
    Select
               ▹ Restart
    from the menu bar.

  • View not visible

    Hi Gurus,
    I have a requirement wherein i have to use component BP_DATA/IDNumberWindow in the component ICCMP_BP_DETAIL. Here are the steps I followed:
    1. Add a component usage for   BP_DATA/IDNumberWindow in component ICCMP_BP_DETAIL.
    2.Assigned this to VS BuPaMoreCustomerVS  after creating a new view area.
    3.Redefined the component controller's WD_USAGE_METHOD to do context node binding.
    4.Redefine the htm page of viewset to display the embedded view.
    5.Redefined the set_context_viewgroup method of view embedded.
    But when I go to UI this view is not visible. Please help.
    Thanks.

    Hi.
    in component ICCMP_BP_DETAIL component CreateW window is the default window which does not hv viewset View ICCMP_BP_DETAIL/BuPaMoreCustomerVS .
    Ensure  that when chking in UI either MoreWindow is being diplayed or else add ur view to   viewset ICCMP_BP_DETAIL/BuPaCreateVS .
    Rgds,
    Swati.

  • Custom fields not visible in the Active Subject Area column

    Hello,
    I have created several custom fields in the Object Service Request. I need to create a report with those fields, but some of them are not visible / displayed.
    Is there any delay between the custom field creation and its availability in Oracle Answer? Because, only the "old" custom fields appears in the list.
    Thanks in advance for your advices.
    Laurent

    it generally takes one day to appear in analytics

  • Custom subtype not visible in ESS benefits

    Hi Experts,
    in erp2005, i created a custom subtype 9B for IT0021 (family members). defined a use case to maintain records through ESS personal information workset. so, a new button with name beneficiaries is seen on portal. however, these beneficiaries are not visible when employee wants to add them in the benefits plans as a beneficiary in certain plans. in the backend system, they are visible however. they can be added to a plan.
    thanks for reading, i appreciate your help.

    Kumarpal,
    did you check this thread
    https://forums.sdn.sap.com/click.jspa?searchID=17218337&messageID=6299502
    Thanks
    Bala Duvvuri

  • Contract Account Custom view not called when replicating thru CRM

    Hi All,
    We have modified the Contract account screen through BDT.
    Functionality -
    We have a custom table, that needs to be updated during contract account creation when reference contract account is used for creation.
    The update is successful when creating contract account via ISU, but when creating thru CRM, the custom view is not getting triggerred.
    I have checked in debugging as well, the process flow triggered via CRM is different than that from ISU. When Business Agreement is created via CRM, neither of PAI / PBO event is triggerred defined for the custom view created in BDT.
    When we have the custom field passed from CRM, it is getting updated correctly, but if the field is not passed from CRM view and we are updating using code logic in BDT modules, it is not successful.
    Could you please help in case I have missed on some config or is there any alternate way to get the custom requirement achieved.
    The requirement is to have custom table updated in both Create and Change mode.
    Thanks in Advance!!
    Regards,
    Rajesh Popat

    Hi Siva,
    Contract Account was replicating correctly for the ISU system. The issue was, we want to update some custom fields that are not passed as a part of CRM data, but using BDT and some validations, we were trying to populate that field and also update the custom table and link the same to sub screen attached for the contract account screen.
    The issues is now resolved. The custom view is getting triggered through CRM. There was some config missing for the BDT.
    When using BDT, only the PAI module gets called for all the views defined for the BDT.
    Thanks!!
    Regards,
    Rajesh Popat

  • View not visible error

    Dear Experts,
    the situation is as follows:
    I have a windows which contains four views. One is the main view and the other three views will
    be called if a button is clicked.
    the In and Outbound Plugs are connected like this:
    Main -> outbound Plug1 Main view -> Inbound Plug show view -> show view
    Main -> outbound Plug2 Main view -> Inbound Plug change view -> change view
    Main -> outbound Plug3 Main View -> Inbound Plug create view -> create view
    show view -> outbound Plug show view -> inbound plug main view1 -> main view
    change view -> outbound Plug change view -> inbound plug main view2 -> main view
    create view -> outbound Plug create view -> inbound plug main view3 -> main view
    Problem is as follows:
    i enter data in the main view and navigate to show view -> no Problem.
    then i navigate back with a button to main view -> no Problem.
    then i navigate to change view -> no Problem.
    but when i then want to navigate back to main i get the following error message:
    The view show of the component z_net_cats_multi is not visible. Navigation is not possible.
    How can i make the view visible so i can navigate back.
    Thanks for help and best regards
    René

    Dear Rene,
    Please check the outbound plug of change view is properli  linked to the inbound plug of Main view.
    Check for the chain symbol between outbound plug of change view and inbound plug of main view.
    Also check the action event of button in change view which you call for navigation to main view.

  • English font "Ostrich" not visible in german pages.

    Hi
    I have a MacBook Pro, August 2013 and yosemite and latest version of pages.
    I have installed a free font named "Ostrich Sans". But in pages this font and a lot of others from the font collection are not visible, I suppose because they are english fonts. How can I activate these fonts?
    Thanks a lot!!
    Simone

    There is no German Pages they are all the same Pages, and there is no such thing as an "English" font.
    It either has the Latin letters, which it does, or it has a non-Latin set and even then practically all non-Latin fonts include the Latin.
    Look further down the list, Apple has a couple of different categories for the fonts. Also since Ostrich is an extremely thin font it can be hard to see in the list. I see it in all versions of Pages.
    Do you see Ostrich in TextEdit?
    Peter

  • Custom refiners not translated on Search Page

    Hi,
    I have created a product catalog site.
    On the category page i have added some custom refiners, all using the excelent tutorial:
    http://blogs.technet.com/b/tothesharepoint/archive/2013/06/20/stage-15-add-refiners-for-faceted-navigation-to-a-publishing-site.aspx
    All of this works fine... the refiners are translated in the category page of the product catalog.
    I have created my own search page and i have added the same refiners to it. The refiners themselves work fine but they are not translated.
    I'm wondering why they are translated on the category page, but not on the search page?
    Best Regards,
    Peter

    Ok... i figured it out.
    Turns out, you need to use the "Display Name" for each refiner defined on the refiners web part.
    Still is bizarre that the translation doesn't work in this case.

  • Views not visible

    Hi,
    We created a Procurement Catalog and created views under it, defined the integrated call structure and also assigned views to roles.
    But despite that when we click on the Procurement Catalog we are unable to view the "View".
    System details.
    CCM 2.0
    SRM 5.0
    EBP 5.5
    Kindly reply at the earliest.
    Thanks,
    Swetha

    Vishal,
    Are you able to crack the issue, as even we are not able to see the view defined in our Master Catalog?
    Views have been correctly defined with proper assignment to roles.
    They are very much active with assigned items and the master catalog has also been republished. But still views are not visible while creating shopping cart from Catalog.
    We are working on SRM 5.5 and SP pack level 9.
    Regards,
    Sandeep

  • Flash file not visible in web page

    Hello,
    I'm Udayakumar from chennai (India). I created some flash
    files and uploaded in web site. That are working properly in India
    only. But not visible in other countries. What's the problem? I'm
    exporting in swf format with following settings.
    Version - Flash player 8, Loard orfer - bottom up,
    Actionscript version - actionscript 2.0, options - compress movie,
    local play back security - local files only.
    And I'm inserting the swf files in html pages using plugin
    commands. (ie)
    <embed width="100" height="100" src="images/x.swf"
    menu="false">
    So I can't able to understand, why was the flash files are
    not visible in other countries?
    Pls explain me......
    My email id - [email protected], [email protected]
    Thanks & Regards
    P. Udayakumar

    You will need the following in your HTML (with modifications
    to target your document) ...
    <!--url's used in the movie-->
    <!--text used in the movie-->
    <!-- saved from url=(0013)about:internet -->
    <object
    classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" codebase="
    http://fpdownload.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=8,0,0,0"
    width="pudaya enter your document width here" height="pudaya enter
    your document height here" id="pudaya enter swf file name here
    (without ".swf" extension)" align="middle">
    <param name="allowScriptAccess" value="sameDomain" />
    <param name="movie" value="pudaya enter swf file name here
    WITH ".swf" extension" /><param name="quality" value="high"
    /><param name="scale" value="noborder" /><param
    name="bgcolor" value="#pudaya enter background color as hexidecimal
    here" /><embed src="pudaya enter swf file name here WITH
    ".swf" extension" quality="high" scale="noborder" bgcolor="#pudaya
    enter background color as hexidecimal here" width="pudaya enter
    your document width here" height="pudaya enter your document height
    here" name="pudaya enter swf file name here (without ".swf"
    extension)" align="middle" allowScriptAccess="sameDomain"
    type="application/x-shockwave-flash" pluginspage="
    http://www.macromedia.com/go/getflashplayer"
    />
    </object>
    All of the above will be generated with all values in place
    using the "Publish Settings" function in Flash if you check HTML as
    one of the export settings.

Maybe you are looking for

  • Iphone 5 wifi not stable/wifi range issues

    I know there are loads of discussions but every discussion that I went through seemed without any solution. I have just bought a new iphone 5 considering that my iphone 4 broke down.  With the iphone 4 I have never had any wifi instability even on th

  • How to reverse Brochure I Fox Mahoney Plugin

    Hello all still new to Motion 5 and learning alot. I am using a plugin called Brochure I by Fox Mahoney. Great Plugin thanks Fox! I have got it to do what I like.... opening...showing some photos then doing a reveal of a video clip but I am not sure

  • Can't format a flash drive into exFAT

    Hi, so I have a flash drive and I want to formate it into exFAT/NTFS. I go and do everything, but then I got MS-DOS (FAT). Also I do not have option for NTFS. I apply 2 screenshots so that to see what is happening here.

  • Change standard price

    Hi experts,              can u explain me how to valuate the material for which split valuation is active?  When i am going to t code MR22  i entered material it asked for valuation type i entered the batch which are existing next what to do. plz exp

  • Touch Pad Freezing

    My notebook touch pad keeps freezing. Device # 15-d038dx. Please tell me how to fix this. I do not have a external mouse.