Single Object Assignmentblock - table not visible

Hello,
i created a Z_Singleobject for Hotels in the area of the businesspartner.
I added this Z_Assignmentblock in the component usage and UI configuration of BP_HEAD.
The assignmentblockheaderline is visible.
If i open the assignmentblock the debugger shows me that i have in the Z_component the corret BuilHeader as focus_bo.
But for some reason the table in the assignmentblock is not displayed - it still just looks like lazy mode.
The UI configuration is done.
Maybee some issue with the .htm page - but i´m a beginner with this .htm and don´t know what should be changed.
Here is the .htm like it is now:
<%@page language="abap" %>
<%@extension name="chtmlb" prefix="chtmlb" %>
<%@extension name="thtmlb" prefix="thtmlb" %>
<%
  data: lv_xml    type string.
  lv_xml    = controller->CONFIGURATION_DESCR->GET_CONFIG_DATA( ).
%>
<thtmlb:areaFrameSetter toolbarButtons  = "<%= controller->ab_button %>"
                        maxButtonNumber = "2"
                        displayMode     = "<%= controller->view_group_context->is_view_in_display_mode( controller ). %>" />
<chtmlb:tableExtension tableId = "prodtable"
                       layout  = "FIXED" >
  <chtmlb:configTable xml                   = "<%= lv_xml %>"
                      id                    = "Table"
                      navigationMode        = "BYPAGE"
                      onRowSelection        = "select"
                      table                 = "//BP_HOTEL/Table"
                      width                 = "100%"
                      displayMode           = "<%= controller->view_group_context->is_view_in_display_mode( controller ). %>"
                      headerVisible         = "FALSE"
                      hasLeadSelection      = "TRUE"
                      usage                 = "ASSIGNMENTBLOCK"
                      personalizable        = "FALSE"
                      actions               = "<%= controller->gt_button %>"
                      allRowsEditable       = "TRUE"
                      downloadToExcel       = "FALSE"
                      visibleFirstRow       = "<%= BPHOTEL->visible_first_row_index %>"
                      selectionMode         = "<%= BPHOTEL->selection_mode %>"
                      selectedRowIndex      = "<%= BPHOTEL->SELECTED_INDEX %>"
                      selectedRowIndexTable = "<%= BPHOTEL->SELECTION_TAB %>" />
</chtmlb:tableExtension>
Thank you
Best regards
Manfred

Yes, it is a bug since 2 years now!
As (temporal) workarounds, you could:
1. log on as "SYS" (or ask your DBA) and go change the "generated" flags for the tables you need (subtract 4 from sys.obj$.flags - would leave it at 0 normally).
2. delete the AND O.GENERATED='N' line from the SELECT in +\sqldeveloper\extensions\oracle.sqldeveloper.jar\oracle\dbtools\raptor\navigator\table.xml+
3. create a user defined XML extension, starting from the xml obtained above.
Have fun,
K.

Similar Messages

  • My existing object styles are not visible

    My existing object styles are not visible in the object style panel- only via quick apply (so I know they exist)
    Any idea how I can make this panel functional again?
    Using CS6
    Thanks!

    @ Bob, I think you posted the response to a differnt question...
    @ chandasz, see Replace Your Preferences

  • Errors occurred during extraction of UD Connect object field- table not fou

    Hi,
    In BI 7.0 system I can't select any UD Connect source object on the "Extraction" tab page of  the DataSource maitenance screen. If I type the table name (which is "UDITEST") into it and then hit the "Proposal" tab page, I get the following error:
    Errors occurred during extraction of UD Connect object field-list: Errors occurred during extraction of UD Connect object field-list: UDCADAPTERROR::RSSDK|200|Table: uditest not found|
    Message no. RSDS_ACCESS036
    Analysis:
    1) We have tested the BI JDBC Connector using the URL:
    http://xxxabcdev03:50000/TestJDBC_Web/TestJDBCPage.jsp
    We got the list of tables displayed (UDITEST table is also displayed)=> connector is configured properly.
    2) When we are trying to configure the Source system in rsa1->modelling->source systems-> UD connect -> create,
    a) RFC Destination: We are using an RFC Connection that is already in place of type 'T'   between the J2EE engine and BI ABAP engine. We tested this connection from SM59 -> TCP/IP connections and it is working fine.
    How do we test whether the RFC between J2EE engine and BI ABAP engine is a 2 way RFC connection?
    b) Logical System Name: We have manually typed in free text 'UDC_local'. Could you please clarify do we need to type in manually or select the logical system name from the F4 help?
    Which logical system name should we enter here exactly.. pls clarify.
    Do we have a seperate logical system name for the J2EE server...?
    c) Type of Connector : JDBC
    d) name of connector: SDK_JDBC
    e) Source system name: SDK_JDBC
    f) Type and Release : blank
    Thanks to any answers in advance!
    Best regards,
    Syam

    Hi,
    Tried to give the Logical System Name in uppercase ie: UDC_LOCAL.
    Now, when I click on the F4 of 'UD Connect Source Object' in Extraction tab, I get the message as below:
    "Extraction of existing UD Connect data source objects".
    But no list of tables is being displayed. When I entered the table name (UDITEST) manually, it gives the same error as :
    " Errors occurred during extraction of UD Connect object field- table not found"...
    Could you please specify from where is the UD Conenct source object fetched from?
    Rgds
    Syam

  • Entire Table not visible/ transferred to a file on application server

    HI Experts,
    My req is to pass an entire internal table to a file on the application server.
    How ever some of the fields in the table are not shown / transferred when i check that file.
    The fields are not visible when i try to scroll side wise.
    When I download the internal table to an excel all the fileds are present . There is no problem with the internal table that is being transferred.
    Below is the code snippet.
    CLEAR w_filepath.
        MOVE p_file TO w_file_ext.
        CALL FUNCTION 'FILE_GET_NAME_USING_PATH'
          EXPORTING
            logical_path               = c_zstore
            file_name                  = w_file_ext
          IMPORTING
            file_name_with_path        = w_filepath
          EXCEPTIONS
            path_not_found             = 1
            missing_parameter          = 2
            operating_system_not_found = 3
            file_system_not_found      = 4
            OTHERS                     = 5.
        IF sy-subrc NE 0.
          MESSAGE e068(zz_material).
    *   File could not be downloaded to the application server
        ELSE.
          OPEN DATASET w_filepath FOR OUTPUT IN TEXT MODE ENCODING DEFAULT.
          IF sy-subrc NE 0.
            MESSAGE e069(zz_material).
    *   Unable to Open File
          ENDIF.
          CLEAR:rec_final.
          LOOP AT t_final INTO rec_final.
            TRANSFER rec_final TO w_filepath.
            CLEAR rec_final.
          ENDLOOP.
          CLOSE DATASET w_filepath.
    Are there any limitations on the no char that can be displayed in one line on the application server.
    Is there any seeting to change that...?

    Hello Abhishek,
    You are not getting the point. AL11 (prog. RSWATCH0) is a simple report used to display the file contents.
    There is a limitation to the maximum length of the file line AL11 can DISPLAY (i.e., 512 characters after applying the notes).
    Please understand what you are seeing in AL11 is the 1st 512 characters of the file width & not the entire file width.
    Hope you get the point.
    BR,
    Suhas

  • Tables not visible after running CHECKDB REPAIR_ALLOW_DATA_LOSS

    Hi everyone,
    I have a server that suffered some kind of power failure. After that the database was in suspect mode. I tried
    EXEC sp_resetstatus [YourDatabase];
    ALTER DATABASE [YourDatabase] SET EMERGENCY
    DBCC checkdb([YourDatabase])
    Msg 8921, Level 16, State 1, Line 2
    Check terminated. A failure was detected while collecting facts. Possibly tempdb out of space or a system table is inconsistent. Check previous errors.
    ALTER DATABASE [YourDatabase] SET SINGLE_USER WITH ROLLBACK IMMEDIATE
    DBCC CheckDB ([YourDatabase], REPAIR_ALLOW_DATA_LOSS)
    ALTER DATABASE [YourDatabase] SET MULTI_USER
    Warning: The log for database 'YourDatabase' has been rebuilt. Transactional consistency has been lost. The RESTORE chain was broken, and the server no longer has context on the previous log files, so you will need to know what they were. You should run
    DBCC CHECKDB to validate physical consistency. The database has been put in dbo-only mode. When you are ready to make the database available for use, you will need to reset database options and delete any extra log files.
    The database is no longer in suspect mode but now none of the tables are visible. Is there anything I can do to bring it back to life.
    Regards,

    Its really surprising to see that checkdb deleted all tables to remove truncation. I am not aware what would have happened but your only option is to restore from valid backup. I still cannot believe repair can delete all tables of a database
    Please mark this reply as answer if it solved your issue or vote as helpful if it helped so that other forum members can benefit from it
    My Technet Articles

  • Changes made in the table not visible in the AM

    Hi,
    I have few validation that i need to conduct on the data that is modified in the table. The problem is that when i create a new VO instance in the AM method it does not show me the updated VO. Instead it shows me the VO before update.
    However, if i use gettransaction.postchanges, i am able to see the changes in the new VO instance i create. Can you please tell me if that is the right way of doing this or do i need to change some property to make the updated VO visible in the new instances i create.
    Thanks,
    Ankit

    Ankit,
    Just to extend to what Ankur said, any VO instance stores cache in JVM when u execute query for the first time....., now when when do some changes... these are there in cache, till u do transaction.commit(). After that they are gone in DB.
    --Mukul                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               

  • 12c: redaction_policies table not visible in dba_tables, dictionary

    The table redaction_policies is visible when we describe it or search tab but is not listed in dictionary or dba_tables.
    NCDB@NCDB> desc redaction_policies
    Name                    Null?    Type
    OBJECT_OWNER            NOT NULL VARCHAR2(128)
    OBJECT_NAME             NOT NULL VARCHAR2(128)
    POLICY_NAME             NOT NULL VARCHAR2(128)
    EXPRESSION              NOT NULL VARCHAR2(4000)
    ENABLE                           VARCHAR2(7)
    POLICY_DESCRIPTION               VARCHAR2(4000)
    NCDB@NCDB> select table_name from dba_tables where table_name like '%REDA%';
    no rows selected
    NCDB@NCDB>  select table_name from dictionary  where table_name like '%REDA%';
    no rows selected
    NCDB@NCDB> select tname from tab where tname like '%REDA%';
    TNAME
    REDACTION_COLUMNS
    REDACTION_POLICIES
    REDACTION_VALUES_FOR_TYPE_FULL
    what could be the reason?
    Regards

    I'd say I wouldn't expect it to be returned from dba_tables, since it's a datadictionary view, just like V$SESSION etc.
    SQL> select * from dba_tables where table_name = 'V$SESSION';
    no rows selected
    However, based on the docs:
    Configuring Oracle Data Redaction Policies
    I'd expect to see it returned from dictionary, just like:
    SQL> select * from dictionary where table_name = 'V$SESSION';
    TABLE_NAME
    COMMENTS
    V$SESSION
    Synonym for V_$SESSION
    1 row selected.
    But, since I'm not on 12c now, I can't really add much more.

  • Business Object Method is not Visible

    Hi Experts,
    I have created a custom business object and created a method for it in t-code SWO1.
    I am trying to use this object's method in one of workflow tasks. I entered the business object and I do not find the method in the method's list.
    I released the business object, still I do not find the method in pull up menu. Am I missing anything?
    Thanks!
    Babu.

    Hi Babu,
    Is this question being answered. If YES then please marked this question as answered.
    I do have some other solution. Hope this will work.
    Well, if you are trying to directly use the method of the Custom BOR in any of the custom task, then check whether the method have been marked as Instance independent?
    Double click in the method.
    Check the box and tick it for the Method to be instance independent.
    Generate it once again and check...
    Reward points if found useful.
    Regards.
    Abhijit.
    [email protected]

  • Attachment table not visible

    Hi, all.
    I put an "Attachment Table" item in my page and I notice that:
    when I create a new record in the table where there is the declared attachment entity and
    the primary key that links the attachment record, the attachment table works fine;
    if I dsconnect from EBS and re-connect looking for the same record, the layout of the page
    does not render any attachment table and the attachment header is shown alone.
    In the FND_DOCUMENT table I see correctly all attachments related to that primary key.
    What happens?
    Thank you
    Regards
    -- Vincenzo

    Hi, all.
    I solved myself the problem.
    Sorry, but I set the wrong VO for the attachment table. Now, it works.
    Thank you
    Bye
    Vincenzo

  • Properties window and Object Browser window not visible anywhere

    Although "Properties"  and "Object Browser" are ticked in the View menu, the windows do not appear anywhere on the screen (yes I have looked everywhere).  The "Components" window appears as normal.  It does not matter what Xcelsisus file I am working in, as the problem is the same even when I first launch Xcelsius.  I was running Xcelsius Engage 2008 with Office 2003 and did not have this problem.  I recently upgraded to Office 2007 and now I have this problem.  I run the same software on my notebook without any problem.  Very frustrating.  Any ideas on how to fix the problem?   Thanks JR

    Hi JR,
    This should be something simple.  Please use the shortcut to get focus to :Object Browser" by pressing Ctrl+4,  If you are unable to spot the object brower, it must be minimised eighter of the corner of Xcelsius window.
    Use "Restore Dwon" button which will be at the right top corner (before Close Button) so that your Xcelsius window become smaller size. Try to find the border of the working window and make it smaller in all 4 sides using mouse.  You will find the Object Browser, Property window somewhere.
    Please revert if this does not helps you.
    With best wishes
    BaaRaa.

  • Generic object services - Object services toolbox not visible in ECC 6

    We recently upgraded from SAP 4.6 C to ECC 6 and are encountering problems in the generic object services in Plant maintenance.
    We use this feature extensively in SAP 4.6 C to attach URL links, documents etc.
    In ECC6 , In Transaction IL02, IE02, IW32 when i click on the services for object, i don't find the object services toolbox through which you can attach the documents, links etc. It surprisingly disappears. Instead of that we get a toolbar to "AddFileNetImage", ViewFileNetImage, DeleteFileNetImage.
    Can this feature be added back to the screen? How is this done? kindly help.

    Thanks Deepak,
    But I thought the described methdology in the PDF pointed by the URL is for how to do it for any custom business object type, will it be useful for the SAP standard business object as well like BUS2093. When I try to edit an already created SAP object, it starts asking for an access key.
    With Regards
    Neha

  • Generated Table not visible in tree

    hi,
    I have registered a Schema and
    select object_name,
    object_type,
    status
    from user_objects
    order by object_name,
    object_type;
    Results of the statement:
    OBJECT_NAME OBJECT_TYPE STATUS
    EXTRADATA177_L LOB VALID
    NAMESPACES178_L LOB VALID
    PLAYER TABLE VALID
    PLAYER$xd TRIGGER VALID
    PLAYER_T TYPE VALID
    SYS_C004803 INDEX VALID
    SYS_XDBPD$176_L LOB VALID
    I am wondering why the PLAYER Table doesn't appear in the connections tree on the left side (Tables node).
    Is this a bug or doesn't show SQL Developer these generated tables? Via DB Search I can find the table but I can't edit it.
    Thanks

    Yes, it is a bug since 2 years now!
    As (temporal) workarounds, you could:
    1. log on as "SYS" (or ask your DBA) and go change the "generated" flags for the tables you need (subtract 4 from sys.obj$.flags - would leave it at 0 normally).
    2. delete the AND O.GENERATED='N' line from the SELECT in +\sqldeveloper\extensions\oracle.sqldeveloper.jar\oracle\dbtools\raptor\navigator\table.xml+
    3. create a user defined XML extension, starting from the xml obtained above.
    Have fun,
    K.

  • Roles and Object queries tab not visible in MBO attribute properties

    Hi,
    We have installed the SUP Personal developer edition 2.0 on a windows 2008 server. I am trying to create a sample application for getting the list of sales orders by using the SAP BAPI. Once I have the MBO in place, I see that I cannot view the 'Roles' and 'Object Queries' tabs in the 'Attributes' section of the MBO properties.
    Does anyone know why this happens? Is it due to configuration issues? Do help me out as we're trying to get a demo working.
    Thanks & Regards,
    Vaishnavi

    Hi Vaishnavi,
    Check whether you have selected "Advanced" mode . You should be able to see it.
    Regards,
    Viju

  • Tables not visible in sqldeveloper

    Hi,
    I can't see any tables when I connect to my Orace9. I've priviliges to read only.
    Do you know why is it so?
    Michal

    This is the Spatial forum. You should try your question on the SQL Developer forum:
    SQL Developer

  • Tables not visible

    Hi,
    I can't see any tables when I connect to my Orace9. I've priviliges to read only.
    Do you know why is it so?
    Michal

    Hi Michal,
    What version of the Oracle 9 are you on?
    Can you still use at least use the worksheet?
    -Turloch
    From the SQLDeveloper 1.2.1 readme.html:
    2.7 Oracle 8.1.7
    SQL Developer is only certified for Oracle database 9.2.0.1 and above. There is limited 8.1.7 functionality, including browsing and editing data, running DML and DDL and general SQL Worksheet functionality. You can edit, compile and debug PL/SQL.

Maybe you are looking for

  • Where are Voice Memos after syncing?

    I've recorded a heap of Voice Memos, ticked "Sync Music" also ticked "Include voice memos" - so how do I now access those Memos in iTunes, and where do they go on my Mac hard drive (they're not in Unknown Artists). It seems to me the Memos don't get

  • Deliveries dropping early than allocated schedule line dates

    Hi Gurus, I have a Scenario, where the deliveries are dropping early than the delivery date assigned in the schedule lines of sales order. Example, Order received on 14th with one line item and schedule lines allocated the delivery date as 19th. But

  • HP Enterprise - Use Cloud-based HP Online Help to Troubleshoot Printing

    HP LaserJet Enterprise printers and HP Officejet Enterprise printers have cloud-based Online Help available to troubleshoot printing issues. HP Online Help users can scan a QR code on the printer display using a mobile phone or tablet, or click an er

  • Windows 8.1 Group Policy based Wireless Profiles do not appear to be working

    I'm wondering if anyone else out there has run into the same issue as I am seeing.  The environment is all Server 2012(not R2), with Windows 8.1 clients.   I configure a GPO that is linked to the entire domain/authenticated users and contains a Windo

  • Doubt in INSTEAD of trigger

    Hi all,   This is very basic doubt in Trigger. i create 2 tables: create table Employeedetails1 EmployeeID varchar(4) primary key, Employeename varchar(10), Deptname varchar(5) create table Temp_Emploeeydetails1 EmployeeID varchar(4), Employeename va