Problem displaying HANA description fields in Explorer

We have created a number of attribute views and a analytic view based on ECC tables.  The underlying attribute views reference text tables, for example TSPA and TSPAT.
A data preview of the Analytic view in HANA Studio shows all the text fields correctly.
But when we display the analytic view in Explorer, certain text (description) fields fail to display, instead defaulting to the code.
When we reactivate the analytic view, we notice some of the originally-working text fields display correctly but others are now not working properly.  Each time we reactivate the view we get different results.
Mutliple information spaces built on the same Analytic model all behave the same way.
We are using HANA rev 25.
Can anyone offer some advice of help on this issue?!

Hi Joe,
I am not sure about the same but many times this will happen when the attribute (in your case description) is the private attribute. So, you can check if the attribute is not a private attribute then how the report look like.
Regards,
Neha Singla

Similar Messages

  • Problems displaying rtf memo fields

    Post Author: Davidm
    CA Forum: General
    We use Crystal Reports X to run reports on an Access database with a significant number of rtf memo fields. We use Total Access Memo to allow extended use of rtf within Access as our users require the additional formatting capabilities that this offers.
    However, there are considerable problems displaying items like bullet points, tables and hyperlinks in the Crystal Viewer with tables in particular coming out in a real mess with all entries in the table being displayed in a list with a small square marking each cell at the end of each line.
    Curiously, if you preview the report in the full version of Crystal X, it appears a bit better with the hyperlinks still underlined (bullet points still vanish) and rows in rtf tables are at least presented as a row even if the columns are not ordered and mixed (with no bounding cells visible).
    Firstly, is this disparity of end result between full Crystal X Print Preview and the Crystal X Viewer fixable?
    Secondly, is the limited handling of rtf tags likely to be solved in the next release of Crystal?

    Hi Mathias,
    If I caught you correctly, you want to display data in Adobe forms in form of tabel, right?
    So, follow the steps:
    1. Insert one sub form on your adobe form.
    2. Set its type as "flow content" in object->subform property.
    3. Set flow direction as "Table".
    4. Insert another subform inside this subform.
    5. set its type as "flow content" and flow direction as "Table row".
    6. Now, choose binding tab, and there check "repeat subform for each Data item check box" and specify min. count for your rows.
    7. Now, insert your column fields inside this sub form once.
    8. Format its look and feel as you want.
    When you run this application, it will show you multiple data as table on Adobe form.
    Regards,
    Bhavik

  • Problem displaying a related field with an ADF Table

    I am trying to use an ADF table to display data that is setup with TopLink as a one-to-one mapping. The database table is the TICKET table and it has a field STATUS_ID. I would like to display the STATUS from the STATUS table instead of the STATUS_ID. The STATUS table has a STATUS_ID key and the ticket table is setup with a FK constraint on the STATUS table.
    I have two objects, Ticket and Status, that were created from the TopLink reverse engineer. I have created the TopLink mapping and generated the data controls ( this is the same process I used when going through the SRdemo). From the data control palette I dragged the FindAllTickets to my listTicket,jspx page and it shows a menu of options. I selected the ADF Read only table option and the only fields available in the dialog are from the TICKET table??
    The ADF table works and display all the data in the TICKET table but I have not been able to add another column to show the status from the STATUS table. There is a node under the findAllTickets data controlI for the Status. I dragged the individual fields over as ADF output test I can see the data from all the fields including the STATUS.STATUS field but I only see the last row. Also,this is not in a table format.
    Does anyone know how to set this up with an ADF table or is there a better way?
    Thank you
    Todd

    Hello,
    I'm encountering the same problem. One solution seems to use business components (a view object based on many entitiy objects) as described in the ADFBC tutorial, but like you i've based my development on the ADF tutorial and i think there is a solution but i didn't find it for the moment. I'm keep looking for a solution and if i find something, i'll send it to you.
    Good luck
    tif

  • How can I use Document Set description field in a SharePoint workflow

    We bundle together related documents into a Document Set and then route the Document Set for approval using a Sharepoint 2010 workflow.  Within the workflow, we are also sending an email to each approver, and an email to a manager if items become past
    due.  I have been asked if I can add the Description field from the Document Set to the email text.
    I am familiar with the use of the "Add or Change Lookup" control to insert fields into the email text.
    For example: Data Source "Current Item" with field "Title" becomes
    [%Current Item:Title%].
    The problem is that I can't find a data source that will pull in the Document Set description.
    Any help would be appreciated.

    Hi,
    According to your post, my understanding is that you wanted to use Document Set description field in a SharePoint workflow.
    I recommend to modify the view to display the description field.
    If you add the description, it will display the value.
    Then you can create workflow as below:
    Thanks,
    Linda Li                
    Forum Support
    Please remember to mark the replies as answers if they help and unmark them if they provide no help. If you have feedback for TechNet Subscriber Support, contact
    [email protected]
    Linda Li
    TechNet Community Support

  • I want a stamp to write to the file metadata and be able to display the result in windows explorer.

    I want a stamp to write to the file metadata and be able to display the result in windows explorer. I have read PDF Stamp Secrets and can write to Custom Metadata but don't know how to display that custom field in explorer. Can I have the stamp write to a standard (non-custom) metadata field? Or, how do it get the custom field to display in explorer? Windows is pretty stingy with the file details it displays for PDF files, in fact there are no editable fields provided (like are available for Office files).   I want this to work for multiple users hopefully without having to get the IT group involved to make (or allow) system modifications to make this work. Any ideas? Thank you.

    Metadata for Windows Explorer is tagged with different names than the metadata for PDFs. Acrobat cannot copy the metadata to the tagged items of the file header.
    There are tools like EXIFTool that can manipulate the data as necessary. Phil Harvey also provides the details about the file types and their metadata tags and values so you should be able to map the tags that need to be updated.

  • Change XSD / XML dataset during runtime and display texts in field explorer

    Hi there,
    I am changing the datasource of a report during runtime. Afterwards, I would like to change the texts of the fields appearing in the field explorer.
    I tried:
    CrystalDecisions.ReportAppServer.DataDefModel.XMLDataSetClass xmlDS =
    new CrystalDecisions.ReportAppServer.DataDefModel.XMLDataSetClass();
    byte[] xmlContent = reportContent.getXmlContent();
    byte[] xsdContent = reportContent.getXsdContent();
    CrystalDecisions.ReportAppServer.CommonObjectModel.ByteArray xmlData =
    new CrystalDecisions.ReportAppServer.CommonObjectModel.ByteArray();
    CrystalDecisions.ReportAppServer.CommonObjectModel.ByteArray xsdData =
    new CrystalDecisions.ReportAppServer.CommonObjectModel.ByteArray();
    xmlData.ByteArray = xmlContent;
    xmlDS.XMLData = xmlData;
    xsdData.ByteArray = xsdContent;
    xmlDS.XMLSchema = xsdData;
    rasDoc.DatabaseController.SetDataSource(xmlDS, "", "");
    rasDoc.Database.Tables[0].Description = "POMMES";
    for (int i = 0; i < rasDoc.DatabaseController.Database.Tables[0].DataFields.Count; i++)
    rasDoc.Database.Tables[0].DataFields.Name = "TEST";
    MessageBox.Show(rasDoc.Database.Tables[0].DataFields.Name);
    rasDoc.Database.Tables[0].DataFields.HeadingText = "HOORAY";
    rasDoc.Database.Tables[0].DataFields.Description = "NOPE";
    MessageBox.Show(rasDoc.Database.Tables[0].DataFields.Description);
    MessageBox.Show(rasDoc.Database.Tables[0].DataFields.HeadingText);
    When running this, the message boxes include the right strings I set before but when this is done, the filed explorer still shows no changes. What am I doing wrong?
    Also, I would like to change the field texts that are displayed in the field explorer. How can this be done?
    Thanks,
    Pascal

    Also, I do not understand why I am not able to change the display of the fields in the filed explorer.
    This coding does not change a bit, but why??
    //preparation
    string tableName = reportDataSet.Tables[0].TableName;
                  // Get the table definition exactly like the definition of my own dataset.
                  CrystalDecisions.ReportAppServer.DataDefModel.Table table = GetTable(tableName);
                  table.ConnectionInfo = connectionInfo;
                  //delete all existing tables if there are any
                  foreach (CrystalDecisions.ReportAppServer.DataDefModel.Table oldTable in rasDoc.DatabaseController.Database.Tables)
                      rasDoc.DatabaseController.RemoveTable(oldTable.Name);
                  //add my new table with the IDs of the XSD
                  rasDoc.DatabaseController.AddTable(table, null);
                  //now I want to change the displayed fields texts
                  CrystalDecisions.ReportAppServer.DataDefModel.Tables modifyTables =
                      rasDoc.DatabaseController.Database.Tables;
                  CrystalDecisions.ReportAppServer.DataDefModel.Table myTable =
                      (CrystalDecisions.ReportAppServer.DataDefModel.Table)modifyTables[0];
                  Fields fields = myTable.DataFields;
                  for (int i = 0; i < fields.Count; i++)
                      ISCRField field = fields<i>;
                      ResultFieldController resultFieldController =
                         rasDoc.DataDefController.ResultFieldController;
                      try
                          resultFieldController.Remove(field);
                          string sText = "";
                          sText = "Bäschreibung" + i.ToString();
                          field.Description = new string(sText.ToCharArray());
                          sText = "Häding" + i.ToString();
                          field.HeadingText = new string(sText.ToCharArray());
                          //sText = "Näme" + i.ToString();
                          //field.Name = new string(sText.ToCharArray());
                          resultFieldController.Add(-1, field);
                      catch (Exception exp)
                          MessageBox.Show(exp.Message);
    I am completely stuck.
    Thanks for any help.
    Pascal
    Edited by: Pascal Schmidt-Volkmar on Sep 30, 2008 9:31 AM

  • Problem in displaying the description of item

    Hi,
    I am working on a report of production order and i want to display the description of the Item but the problem the matnr is stored in ITPO1 AND i am displaying the values of ITPO5 which contains the difference value of qty of Item . To display the quantities i am using the table AUFM and i want to display the description of the production order Item which is stored in the ITPO1 .
    I am declaring the value of item in the ITPO5 and writing this select single query but it is not displaying the data.
    LOOP AT ITPO5.
          SELECT SINGLE MAKTG FROM MAKT INTO ITPO5-ITEMDESC WHERE MATNR = ITPO1-MATNR.
          WRITE: / ITPO5-AUFNR,ITPO5-ITEMDESC,ITPO5-I_QTY.
          TOT_QTY = TOT_QTY + ITPO5-I_QTY.
        ENDLOOP.
    Plzz provide me guidelines how to solve this problem.

    HI,
    Check this way..
    LOOP AT ITPO5.
    LOOP AT ITPO1 WHERE AUFNR = ITPO5-AUFNR.
    CALL FUNCTION 'CONVERSION_EXIT_MATN1_INPUT'
      EXPORTING
        input              = ITPO1-MATNR
    IMPORTING
       OUTPUT             = ITPO1-MATNR
    EXCEPTIONS
       LENGTH_ERROR       = 1
       OTHERS             = 2 .
    IF sy-subrc <> 0.
    * MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
    *         WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
    ENDIF.
    SELECT SINGLE MAKTG FROM MAKT INTO ITPO5-ITEMDESC WHERE MATNR = ITPO1-MATNR.
    IF SY_SUBRC EQ 0.
    WRITE: / ITPO5-AUFNR,ITPO5-ITEMDESC,ITPO5-I_QTY.
    TOT_QTY = TOT_QTY + ITPO5-I_QTY.
    ENDIF.
    ENDLOOP.

  • Material Description Field to be in Display mode.

    Hi Gurus,
    I am trying to make the Material Description field in the Display mode for PR. I changed the screen layout value into display for screen variants ME51N and also for NBB. Then also it is not getting effected. please advice on this issue on what needs to be done from the config setting side. Thanks.
    With Regards,
    Saakithyan.

    Hi,
    its fine that you made changes in NBB Field selection group for PR, but have you assigned that field selection group in Document type please check once,
    untill and unless you assign the field selection group in Doc type you will not get the expected results.
    Regards,
    Ninad Kshirsagar

  • VirtualBox Description Field Does Not Display

    The VirtualBox description field does not show up any more. Here is what it looks like
    It happened right after I was modifying a description at the same time I was shutting down that same guest machine. I got a message asking me to save one thing or discard it and save something else, I chose to save the machine information and discard my entry into the description field. Now, no machines display a description.
    I can see the description if I click on it.
    To fix this, I even tried uninstalling and re-installing VirtualBox.
    Any ideas on how to fix this?

    You may want to provide information about what primary OS and which version of VirtualBox you are using.
    Perhaps you have renamed the Virtual machine folder. I suggest to locate the directory on your computer and edit the machine name of your Guest OS accordingly.

  • I have a FP-1600 and a FP-AO-200 module, 0-20 ma. When I use Field Point Explorer 3.0.1, I can not command any of the channel output current. The current remains in the lowest value 0.0035 A. What is the problem ?

    I have a FP-1600 and a FP-AO-200 module, 0-20 ma. When I use Field Point Explorer 3.0.1, I can not command any of the channel output current. The current remains in the lowest value 0.0035 A. What is the problem ? The communications with the module are OK, because it shows when the current are open or closed.

    Jorg,
    I noticed that you claimed to be using the module in 0-20mA mode, yet the reading you are seeing is 3.5mA. This is the minimum value (with overranging) when the module is set to 4-20mA mode. My guess is that your module is defaulting back to 4-20mA mode, but your IAK file still thinks the module is in 0-20mA mode. You can verify this by using the find devices button in FieldPoint Explorer and then trying to write to the channel.
    To fix this problem, you should use the snapshot feature to change the default power-up mode for that channel.
    Regards,
    Michael Shasteen
    Applications Engineering
    National Instruments
    www.ni.com/ask
    1-866-ASK-MY-NI

  • Is there a way to display again the description field by clicking on the gold star near the url (useful to type memos about this site)?

    In the previous versions of Firefox, when you click on the star near the url, you can add this website on your favorites. Another click and you can edit some fields about this bookmark, like the url, the folder, etc...
    But with FF17, the Description field is no longer there. You can only find it when managing your bookmarks, that is not really user friendly.
    Is there a way to add again the description field when clicking on the gold star? It's very useful for adding notes about this website, and it's also synch with addins like Xmarks

    Add code to the userChrome.css file below the default @namespace line.
    *http://kb.mozillazine.org/userChrome.css
    The customization files userChrome.css (interface) and userContent.css (websites) are located in the chrome folder in the user profile folder.
    *http://kb.mozillazine.org/Editing_configuration
    <pre><nowiki>@namespace url("http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul"); /* only needed once */
    #editBMPanel_descriptionRow { visibility: visible !important; }
    </nowiki></pre>

  • Problem in displaying output - MBLNR FIELD

    Hi,
    I had developed a code in which i am not able to display the 1st fields properly in the output i.e. mblnr field.
    In debugg mode i am able to fetch data coreectly for it ,but whne it comes to the display it shows no correct data for that field and rest of the fields data is correct.
    here's d code:-
    Tables: RSEG,MKPF.
    DATA: BEGIN OF ITBKPF OCCURS 0,
          BUKRS LIKE BKPF-BUKRS,
          BELNR LIKE BKPF-BELNR,
          GJAHR LIKE BKPF-GJAHR,
          AWKEY LIKE BKPF-AWKEY,
          BUDAT LIKE BKPF-BUDAT,
          XBLNR LIKE BKPF-XBLNR,
          AWTYP LIKE BKPF-AWTYP,
          END OF ITBKPF.
    DATA: BEGIN OF ITAB2 OCCURS 0,
          BUKRS LIKE BSIK-BUKRS,
          GJAHR LIKE BSIK-GJAHR,
          XBLNR LIKE BSIK-XBLNR,
          BELNR LIKE BSIK-BELNR,
          WRBTR LIKE BSIK-WRBTR,
          LIFNR LIKE BSIK-LIFNR,
          END OF ITAB2.
    DATA: BEGIN OF ITDEMO OCCURS 0,
          BELNR LIKE RSEG-BELNR,
          GJAHR LIKE RSEG-GJAHR,
          LFBNR LIKE RSEG-LFBNR,
          END OF ITDEMO.
    DATA: BEGIN OF ITFINAL OCCURS 0,
          BUKRS LIKE BKPF-BUKRS,
          BELNR LIKE BKPF-BELNR,
          GJAHR LIKE BKPF-GJAHR,
          AWTYP LIKE BKPF-AWTYP,
          AWKEY LIKE BKPF-AWKEY,
          MBLNR LIKE MKPF-MBLNR,
          MJAHR LIKE MKPF-MJAHR,
          LFBNR LIKE RSEG-LFBNR,
          WRBTR LIKE BSIK-WRBTR,
          LIFNR LIKE BSIK-LIFNR,
          END OF ITFINAL.
    *SELECT-OPTIONS: S_MBLNR FOR MKPF-MBLNR.
    SELECT-OPTIONS: P_LFBNR FOR RSEG-LFBNR.
    START-OF-SELECTION.
    BKPF
        SELECT BUKRS BELNR GJAHR AWKEY BUDAT XBLNR AWTYP
        FROM BKPF
        INTO (ITBKPF-BUKRS,ITBKPF-BELNR,ITBKPF-GJAHR,
             ITBKPF-AWKEY,ITBKPF-BUDAT,ITBKPF-XBLNR,ITBKPF-AWTYP)
        WHERE AWTYP EQ 'MKPF' OR AWTYP EQ 'RMRP'.
    MKPF
    ***********BEGIN OF TRY CODE***********
        ITDEMO-BELNR = ITBKPF-AWKEY(10).
        ITDEMO-GJAHR = ITBKPF-AWKEY+10(4).
        SELECT LFBNR FROM RSEG INTO
        (ITDEMO-LFBNR) WHERE
        BELNR EQ ITBKPF-AWKEY(10)
        AND GJAHR EQ ITBKPF-AWKEY+10(4) AND LFBNR > 0.
    ***********END OF TRY CODE**************
      CHECK SY-SUBRC EQ 0 AND ITDEMO-LFBNR IN P_LFBNR.
    BSIK
        ITAB2-BUKRS = ITBKPF-BUKRS.
        ITAB2-GJAHR = ITBKPF-GJAHR.
        ITAB2-BELNR = ITBKPF-BELNR.
        ITAB2-XBLNR = ITBKPF-XBLNR.
        SELECT WRBTR LIFNR FROM BSIK
        INTO (ITAB2-WRBTR, ITAB2-LIFNR)
        WHERE BUKRS EQ ITBKPF-BUKRS
          AND GJAHR EQ ITBKPF-GJAHR
          AND BELNR EQ ITBKPF-BELNR
          AND XBLNR EQ ITBKPF-XBLNR.
        APPEND ITAB2.
        EXIT.
        ENDSELECT.
      CHECK sy-subrc EQ 0?
        APPEND ITDEMO.
        EXIT.
        ENDSELECT.
        APPEND ITBKPF.
        ENDSELECT.
    Fields Found?
      READ TABLE ITBKPF TRANSPORTING NO FIELDS INDEX 1.
      IF sy-subrc NE 0.
        MESSAGE i000(zmm1) WITH 'No documents found!'.
      ENDIF.
    Prepare Output
      LOOP AT ITBKPF.
        CLEAR ITAB2.
        READ TABLE ITAB2
        WITH KEY   BUKRS = ITBKPF-BUKRS
                   BELNR = ITBKPF-BELNR
                   GJAHR = ITBKPF-GJAHR
                   XBLNR = ITBKPF-XBLNR.
        ITFINAL-MBLNR = ITDEMO-LFBNR.
        ITFINAL-BELNR = ITBKPF-BELNR.
        ITFINAL-GJAHR = ITBKPF-GJAHR.
        ITFINAL-AWKEY = ITBKPF-AWKEY.
        ITFINAL-WRBTR = ITAB2-WRBTR.
        ITFINAL-LIFNR = ITAB2-LIFNR.
        APPEND ITFINAL.
        CLEAR  ITFINAL.
      ENDLOOP.
    DELETE ITFINAL WHERE WRBTR = 0.
    END-OF-SELECTION
    END-OF-SELECTION.
    DELETE ITFINAL WHERE WRBTR = 0.
    Output
      LOOP AT ITFINAL.
        WRITE: / ITFINAL-MBLNR,ITFINAL-BELNR, ITFINAL-GJAHR,ITFINAL-AWKEY, ITFINAL-WRBTR, ITFINAL-LIFNR.
      ENDLOOP.

    HI,
      Don't use offset values in the WHERE class of SELECT. I replied the same thing in the first day in your earlier posting.
    Check the below code.....
    CLEAR : lv_belnr,lv_gjahr.
    lv_belnr = ITBKPF-AWKEY(10).
    lv_gjahr = ITBKPF-AWKEY+10(4).
    SELECT LFBNR FROM RSEG INTO
    (ITDEMO-LFBNR) WHERE
    BELNR EQ lv_belnr
    AND GJAHR EQ lv_gjahr
    AND LFBNR > 0.
    Rgds,
    Bujji

  • How can I display FK description in a JDev9i DataEdit Component

    Hi all,
    I have a difficult issue here on the JDev9i.
    I use an XXXView_Edit.jsp where XXXView is a View Object.
    XXXView is actually based on a XXX entity object which in turn wraps the XXX Database Table.
    These .jsps have generated from the JDev9i wizards BC4J application and BJ4J JSP application.
    The XXX table has, among others, some fields with FKs pointing to some lookup tables. Assume that XXX has a field 'f' that holds the FK of the lookup table FFF. FFF table consist of a PK field 'p' and a description field 'd'.
    And now the problem:
    I want to display in the XXXView_Edit.jsp form the description 'd' of the FK instead of the FK 'f' itself, connected with an LOV pointing to the FFF table (some FFFView Object).
    How can I do this by modifying the DataEdit Component ?
    Thanx!

    Anfortunately,
    This is not the same when I have a DataQuery component.
    The question now becomes as following:
    How can I use FK description in a BC4J data query component?
    Thanks in advance
    Aggelos

  • FIAA AS01, AS02 format & list in the description fields

    Hi Guru,
    I am adm. I have to do in:
    ANLA-TXT50 link to the table with the list of names (create table z* and link it to this field)
    ANLA-TXA50 display the date in special format
    so in the transaction AS01, AS02 the users can in Description field  choose the name from the list and in the Additional description field displays the dates in correct fomat.
    How and where can I do these???
    Regards,
    Betta

    Hi,
    These transactions don't resolve my problem.
    Could you help me to do:
    1. I have to create table Z*   Where and how can I do it?
    2. In the transaction AS01, AS02, I have to assign under button F4 this above table in the field ANLA-TXT50
    3. In the transaction AS01, AS02, I have to set the display date format in the field ANLA-TXA50 e.g. '123 00 45 89' (now it is '123004589' )
    Thanks in advance.
    Regards,
    Betta
    Edited by: Bernadeta Woroch on Apr 27, 2010 2:11 PM

  • Improper display of dropdown field values in dashboard

    Hi all,
    We are working on cprxrpm v4.5.
    We are having certain custom fields which are dropdowns in RPM. These fields are not present in cprojects and are used only in RPM. These are defined by domains having a value list and description.
    In Item overview tab, these are displayed correctly ( description for the value list is displayed ).
    However, in item Dashboard, we are having an issue as we are getting the value list and not the description.
    Has anyone else come across this problem?
    Please give suggestions on how to rectify this issue.
    Thanks in advance.
    Best Regards,
    Mz

    Yes, you can do this by specifying this parameter in your web item.
    <param name="ONLY_VALUES" value="X"/>
    This will return all the objects as part of a form so you need to write your own html form around this.
    To sort this within javascript, the easiest thing to do is convert this list of form values to an array, sort this array, and then re-render the form values. There's an example online of doing this with a table here:
    http://javascript.internet.com/forms/sort-data-table.html
    You could do this with for a form in a similar manner.

Maybe you are looking for

  • Remote control and speaker track 60 is not working on c60

    Dear team, We have facing issue for using remote control after the installation of speaker track 60.remote working fine on another telepresence equipment and the speaker track 60 is also not on voice also.kindly please resolve the issue as soon as po

  • I have not been able to view and download images for two days

    My name is Erik Fielding not Johnson. However, you xxx would not allow me to register with my real name. In case you want to have your attorney or the police contact me after what I have to say, ''personal information removed''' I am I am neither rud

  • Qosmio G40-10Z: Question about energy use in sleepmode

    When I turn my new Qosmio G40-10Z in sleeping mode, with full battery (and off the AC power), I can't start the computer next day. I can only start it up after connecting it to AC power. I get a message windows Vista wasn't closed properly and I am a

  • Field Symbol not assigned Error SAP R3 46c

    Good day, so what i want is: assigning a component of a field symbol to another field-symbol to access its values. This works very well in SAP 47 releases but doesn t work in sap 46c or do i do something wrong? REPORT Z_GL_FIELDSYMBOLS . Data: begin

  • Keyboard letter issues.

    All of a sudden i was unable to use my S, D, and F keys but i can only use them if i hold down my A key. How would i be able to fix this so i wouldn't have to hold down my A key?