Problem with enhancing BP_HIER view BP_HIER/EOVPHierarchyTreeV

Hi experts,
Need some urgent help regarding enhancing of view BP_HIER/EOVPHierarchyTreeV  in component BP_HIER.
I am facing a strange issue here.
I enhanced the view BP_HIER/EOVPHierarchyTreeV and redefined a method EH_ONNEW_NODE.
But when i check the TR object list , i do not see this method getting locked  in my TR.
Still when i ported  this TR to the test system , it reflected in the system.
But further when i tried porting the TR to the user test system, this change did not get reflected.
Can anyone help me as to why could this be happening in only one system?
Is it something related to any system setting at the BASIS side since it is happening only in user test system?
Any pointers are highly appreciated.
Thanks
Swapna V.

Hi Bhushan,
Will this work around work when the view class itself is standard and not getting enhanced due to this issue?
I had enhanced the view and the method and tried porting it in  a new TR again. But that also did not work.
The IMPL,CTXT classes got locked in the TR , but the EH_ONNEW_NODE method was not locked in the TR somehow.
Ideally waht i have seen is like , when ever protected section of a view controller class is modified, it gets locked into your TR object list .But here , i dont see even that. Also , the method is missing in the object list.
Shown below is the object list in my TR :
Page/Controller of a BSP Application
     ZBP_HIER                      EOVPHIERARCHYTREEV.DO
     ZBP_HIER                      EOVPHIERARCHYTREEV.HTM
Class (ABAP Objects)
     ZL_BP_HIER_EOVPHIERARCHYT_IMPL
     ZL_BP_HIER_HIERARCHYTREEV_CTXT
Table Contents
     BSPWD_CMP_C_REPL
         ZENHANCEMENT_SET       BP_HIER                       BP_HIER
Thanks
Swapna.

Similar Messages

  • Problem with Local DCs View in NWDS 7.0

    Hi!
    I' ve got a problem with Local DCs view in NWDS: None of the standard-DCs (BI_MMR, BI_UDI, CAF a.s.o.) can be expanded and show their content. I already reinstalled IDE, but without success.
    Has anybody got an idea?
    Thanks a lot in advance!
    Regards,
    Thomas

    Hi,
    This is due to some files missed in Local development.
    Let me know Are you able to see <b>.confdef, .syncdb</b> and <b>buildvariant.config </b> files under Local Developement.
    If you are not able to see, UnInstall your NWDS, Remove Local developement under .dtc folder, then Re-Install NWDS.
    Hope this will help you.
    Thanks & Regards
    Vasundhara

  • Problem with Local DCs View in NWDS

    Hi!
    I' ve got a problem with Local DCs view in NWDS: None of the standard-DCs (BI_MMR, BI_UDI, CAF a.s.o.) can be expanded and show their content. I already reinstalled IDE, but without success.
    Has anybody got an idea?
    Thanks a lot in advance!
    Regards,
    Thomas

    Your setup might be incomplete: The SAR file extraction creates very long paths on your filesystem. If you do not extract to the rootfolder of disk, chances are the paths become too long and the installation exits, without any warning.
    If this is not the cause of your problem, check if the .dcdef files for the local DCs (plugin com.sap.tc.ap if I'm correct) were copied during installation.

  • Problem with pdf chrome viewer and javascript

    I have a problem with chrome pdf viewer. We have created a form with acrobat 9 pro, this form contains a javascript. When the form is printed or saved the javascript checks that all the mandatiry fields are completed and displays a message if some fields are uncompleted. The chrome pdf viewer doesn't display the warning message when the form is saved, and doesn't display the check box included in the warning message pop up to confirm that the user accepts to print the form. The control is correct with FF et IE
    Thanks for your help

    There are many PDF viewers. Adobe's, third party downloads, things that come with systems (Apple Preview, Microsoft 8 Reader), things built into browsers (Chrome, Firefox...) Adobe's software understands the full set of JavaScript. Some ignoresJavaScript altogether. Some do selected JavaScript. This is a bit of a mess, but nothing can be done about it EXCEPT that you can demand your users use Adobe Reader. Whether they actually will depends on how important your needs are to them.

  • Problem with the crystal viewer

    Hi there,
    I have a problem with thw crystal viewer. I have reports developped in Crystal XI that run in vb.net within the "CrystalDecision.Windows.Forms.CrystalReportViewer" object. On all computer client everything works fin except on one of them. When the print button is pressed, it gave a "Object reference not set to an instance of an object" error. Since this error is raised by the "Crystal report windows form viewer" preview window i have no idea why this occured. We tried to uninstall the viewer and reinstall it without chance.
    The only thing i can tell is that this client use a "HP deskjet 3420 series" printer. that's the only difference there is on this computer. Anyone as an idea?
    Thanks
    Ben

    Hi Ben,
    Try moving that printer to another PC and install the print driver. If it fails there it's likely a driver issue. HP and Cr has a history of problems. Mostly it's HP drivers returning the wrong memory structure size.
    If you can find someone who is using Windows XP and Windows 2003 and see if either work. Or possibly plug the printer ina print server and see if that works.
    Next option is if you wrote the software you are running run it in debug mode and see if it captures anything when printing. If did not write it then ask the person who did to test it also.
    Next option if you want to dig deeper into the cause is go to Windows site and download a program called DebugDiag. Run this program and set it to capture crashes. It will generate a dump file which can be analyzed. It should tell you which API or function caused the crash.
    Thank you
    Don

  • Problems with Standard Apps views (eBusiness Suite)

    Hi all,
    I am working with Oracle Application Express and Oracle eBusiness Suite 11.5.10. We have integrated OAE with EBS, but now we are having problems with the standard views (owner APPS).
    I would need the help from somebody that works with OAE and EBS.
    Once we want to query one of the standard views, like ap_invoices, it is necessary to initialize the session with a script like this:
    begin
    DBMS_APPLICATION_INFO.SET_CLIENT_INFO(219);
    end;
    This script lets us to access to the data from the table AP_INVOICES_ALL using the view AP_INVOICES.
    Once I have run the script from SQL Commands (SQL Workshop), I try to run a query using the standard view, for example:
    SELECT * FROM apps.ap_invoices
    From a Report or from SQL Commands (SQL Workshop) always I get the next error:
    "ORA-01722: invalid number."
    However, if I run this query from SQL Plus (same db user), there is any problem, the query works and retrieves rows.
    If I get the source code of the view, remove all the columns, keeping the next SQL:
    SELECT 1
    FROM ap.AP_INVOICES_ALL
    WHERE NVL(ORG_ID,NVL(TO_NUMBER(DECODE(SUBSTRB(USERENV('CLIENT_INFO'),1,1),' ',NULL,SUBSTRB(USERENV('CLIENT_INFO'),1,10))),-99)) = NVL(TO_NUMBER(DECODE(SUBSTRB(USERENV('CLIENT_INFO'),1,1),' ',NULL,SUBSTRB(USERENV('CLIENT_INFO'),1,10))),-99)
    Run this SQL in OAE and I obtain the error again, however from SQL Plus the query works correctly.
    I suppose somebody that works this EBS and OAE has had this problem. How did you solve it?
    Thanks in advance.
    Regards, Luis
    PD. I have tried to not used the views and use the tables filtering the ORG_ID and looks it can work, but I do not like this option.

    Luis - I don't know where you are running these blocks - the SQL Command Processor in APEX? Anyway, for every APEX page request the engine executes something like the following, depending on your version:    begin
        dbms_application_info.set_client_info(g_user);
        dbms_session.set_identifier(substr(g_user,1,(64 - length(g_instance)-1))||':'||to_char(g_instance));
        dbms_application_info.set_module('APEX:APPLICATION '||to_char(g_flow_id),'PAGE '||to_char(g_flow_step_id));       
        exception when others then null;
        end;In the above code, the value of g_user is the logged-in username, perhaps ADMIN in your case.
    Keep in mind that when you do a set_client_info in the database session, that persists only for the duration of the session. On the next page request, you'll get a new database session (or a recycled one).
    Scott

  • A problem with a Materialized View

    Hi,
    I have a ordinary table with a three column compound primary key (COL_Id, COL_ValidFrom, COL_CaseId)
    I also have a MV that selects from that table. This one compiles just fine. It looks like this:
    CREATE MATERIALIZED VIEW "MV_02"
    REFRESH FORCE ON COMMIT
    AS SELECT COL_Id, COL_ValidFrom, MAX(COL_CaseId) CaseId FROM TBL_MediaText GROUP BY COL_Id, COL_ValidFrom;
    Works fine. Now I'm trying to create a second MV that selects from the first MV. It looks like this:
    CREATE MATERIALIZED VIEW "MV_03"
    REFRESH FORCE ON COMMIT
    AS
    SELECT a.COL_Id, a.CaseId, a.COL_ValidFrom, NVL(MIN(b.COL_ValidFrom)-1, TO_DATE('2099-12-31','yyyy-mm-dd')) ValidTo
    FROM MV_02 a, MV_02 b
    WHERE a.COL_Id=b.COL_Id(+) AND a.COL_ValidFrom < b.COL_ValidFrom(+)
    GROUP BY a.COL_Id, a.CaseId, a.COL_ValidFrom;
    This one does not parse. (ORA-12054) There seem to be a probelem with the ON COMMIT command. I have searched the web and found some info on the subject. It tells me to create a MV log, wich I have. I've also tried to put count(*) and count(b.COL_validfrom). But it just wont work.
    I see a possibilty of yhe problem laying in te fact that I join using two parts of my PK. Also there might be a problem with the fact that i can't create a log for MV_02 WITH PRIMARY KEY. Or maybe you can't have a MV selecting from another MV?
    Do anyone know how i should specify my Logs and/or querys in order for this to parse?
    I'm using 10.1, and I do have the ON REFRESH COMMIT-privilege.
    Thanks!
    Message was edited by:
    DavidNils

    May be you are trying for this....I don't know how helpful is my solution for you.
    SQL> CREATE MATERIALIZED VIEW MVE
      2  TABLESPACE JAM
      3  REFRESH FORCE ON COMMIT
      4  AS SELECT D.DEPTNO,D.DNAME, E.ENAME, E.JOB FROM
      5  EMP E, DEPT D
      6  WHERE D.DEPTNO = E.DEPTNO(+)
      7  /
    Materialized view created.
    SQL> CREATE MATERIALIZED VIEW MVEF
      2  TABLESPACE JAM
      3  REFRESH FORCE WITH ROWID
      4  AS SELECT * FROM MVE;
    Materialized view created.Message was edited by:
    Jameel

  • Problem with enhancement RSR00001

    Hi,
    I hope you can help me. I've got a problem with the enhancement RSR00001. The include ist activated, but the coding isn't execute when I start my querie. No break-point help me. Nothing will run.
    Any ideas?
    Release BI 7.0.
    Thanks
    Martin

    Hi,
    I_STEP plays improtant role in filling up customer exit variable. Check it in your code. If not there, test it as follows.
    First add IF I_STEP = 1 & your logic to fil your variable. And make you varibae as "Ready for Input". If you runn the report, you can see the values in selection screen.
    Note: That the project which is having this enhancement RSR00001 should be in active version through CMOD. Sometimes usotmer exit won't work if project is in inactive versions.
    Hope it helps tp solve your issue.
    Regards,
    Arun Thangaraj.

  • Problem with maintain table views SM30 Transaction

    Hello All,
    i have a problem with the table maintenance view SM30, it doesn't permit me to modify the rows in the table.
    we have added a field into the table and when i tried to change the table view from menu: Utilities ==> table maintenance generator==> change the system propose me a message that the screen 0001 will be deleted and recreated...but the system has deleted the screen and doesn't recreate it...in somewehere on internet we find that we should use the transaction SE55 menu:
    Environment==> modification ==> Maintenance screen ==> button Layout which open the tool Screen Painter and from that we have created our screen with 4 fields of our table...our result that the screen is created and i can see it from the SM30 transaction but i can't insert rows in the table...when i try to go to maintain table: menu: Utilities ==> Table maintenance generator to try if i can modify something the system give me a message: "set the compare flag dialog ZIV_DP_PLCHAR_LA"
    the ZIV_DP_PLCHAR_LA is the name of my table...
    can you give me some advices please how should i do to fix this problem to insert rows in table throughout the transaction
    SM30 "maintain table views: initial screen"
    if i want to delete the screen from the SE55 transaction to recreate it newly what should i do to take care about some options
    to have a new screen?
    thanks for all
    Bilal

    Hi
    First delete the old table maintainence generator.
    Now Recreate the screen and your table is good to go..
    These error messages come when we add new fields and different version of the table maintainence generator in database.

  • Problem with the table view's _visibleBounds when used on a scroll view

    I've had numerous problems with getting a table view to work on a scroll view since the table view keeps resizing (http://discussions.apple.com/thread.jspa?threadID=2618816&tstart=0)
    I have created the views in IB. The scroll view is attached to the controller's view, and is assigned as the controller's view. The frame size of the scroll view is 320x436. I am manually setting the content size in code:
    UIScrollView* tempScrollView = (UIScrollView*) self.view;
    tempScrollView.contentSize = CGSizeMake(320, 720);
    The table view's frame's width/height is set to 280x88 in IB (i.e the size of two cells), and the header and footer are set to size 0.
    However, when I run the code, the table view is smaller, it is only 280x68. I have looked in the debugger, and the table view's _contentSize (of its scroll view) is 280x88; however, the _visibleBounds property is 280x68.
    I've tried looking into the documentation for the UITableView class, but can't find anything on the _visibleBounds property, or where it is being set and how to force it to the correct size.
    If anybody has any advice, I'd appreciate it.

    I can get around this problem by going to the scrollview which the tableview belongs to, and unchecking the Autoresize Subviews box.
    But if anybody knows about the _visibleBounds property, or the rules which are applied when resizing subviews, I'd be interested.

  • Problems with the "Pre-view" button in an OO ALV!

    Hey all,
    I have a problem with my OO ALV...when I press the "Pre-View" function button from my ALV I get a dump.
    It says "Fieldsymbol not yet assigned".
    I check my Fieldcatalog, my out_itab of the ALV....I do not know where is the problem.
    When I use the debugger I get the place where the dump occures, but I do not know why it occurs....
    When the ALV tries to convert the content of my ALV the dump occurs. The Fieldcatalog does not seemes to be the problem, because SAP convert the catalog correctly, but when he tries to convert the rows of my ALV he crashes...but only after the second row. The first row of the content he convert, but when he tries to convert the second row....bumm!!!
    Does somebody has an idea? Or does somebody knows of a generelly problem with OO ALV's which could be the reason for my problem?
    I apreciate any help.
    Thanks a lot.
    Marcelo

    please reward points if your problem solves.
    and try to close the thread.
    thansk and regards
    vijay
    Message was edited by: Vijay Babu Dudla

  • Problem with Crystal report viewer

    I am using Crystal viewer 2008 with Crystal report 2008.
    I am using a static parameter.  When running with viewer I can not clik on modify to change the parameter because the modify button is grey.
    Help ty.
    Also where can I read limit of using Crystal Viewer ?
    And how much to get something better ?

    You can update the parameters using Crystal Viewer 2008. I had the same problem with the "CHANGE" button being grayed out.
    Go to your Report -> Select Expert -> and now you have three choices: Record, Group, Saved Data. Put your select statement using your parameters in the Saved Data only (remove it from Record if already there).
    It works awesome and even works on dynamic parameters!

  • Problem with HDR pro viewer

    Hey. i have some problem with my viewer in hdr pro. If i click "OK" the image is normal but in it looks like this. im runing a macbook pro retina
    thanks

    reinstalled. but problem is still there.

  • Problem with Enhanced Healing Brush

    LR5.0, Windows7 (64 bit)
    I am having a problem with the Advanced Healing Brush, where the colors in the destination area don't match the colors in the source area, even with opacity at 100. Is this a known bug, or is this something I am doing wrong?
    Here's the original picture. I want to remove the date, and the spotlight underneath the date, on the bottom right.
    Using the enhanced healing brush, I try to remove this and replace it with a similar area of grass
    You can see the opacity is 100, and yet the color of the grass in the destination area is noticeably darker than the color of the grass in the source area.
    So, what is wrong here? Bug, or user error?
    By the way, I also performed a similar operation in Photoshop Elements, with much nicer results.

    Hi DJ,
    I find the healing brush a bit so-so. I've had the same result as yourself - it will blend in poorly leading to muddy tones.
    Also the boundaries of the brushed area are too distinct. Overall, I see the clone setting as more useful.
    I've had a cut at your picture, using multiple selections. I could do better,(the shadow lines are not well aligned) but I think this illustrates my point.
    I find that one large selection (even though that's the example used in the LR video) rarely works well for me.
    I think this tool can use some improvement.
    Hope this helps,
    hans

  • Problems with exporting PWA views (grids in general) to Excel 2010 with Windows 8 + IE 10 as a client configuration

    Hello,
    I wondering if windows 8 + IE10 is a supported client configuration for PWA (Project Server 2010). I am unable to export PWA views to Excel 2010. No problems with Windows 7 + IE8/9
    Any ideas?
    thanks,
    Daniel
    Daniel Villacis

    Hi,
    We followed the below steps in the local machine and check the behavior.
    a. Open the Windows registry editor (regedit.exe)
    b. Go the location HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\App Paths\excel.exe
    c. Here, you’ll see a string value named “useURL”
    d. Rename this value to something else.  For example “useURLx”
    Note: You might have to restart the machine to apply the registry change to take effect.

Maybe you are looking for