Value of new field in SAP internal table does not appear in HTML

There is already an existing web application. (has both SAP and HTML programs)
I only need to add one field in the SAP internal table and display the value in HTML.
I activated and pushed the publish button in SAP.
Still, it is not read successfully in HTML and therefore not displayed in the GUI.
What step did I miss?

Hi,
To publish completely an internet service, try SIAC_PUBLISH_ALL_INTERNAL transaction.
Hope this helps,
Iván.

Similar Messages

  • New fields added on Bidder data does not appear in Business Partner

    Hi,
    I have added two new fields in Bidder data tab of Maintain Business Partner screen.
    When there are only three tabs viewable i.e Company data , Bidder data , Registration data tabs, the added new fields  does not appear.On approved suppliers (vendors) there will be a also tabs for vendor and supplier classification(customised).   But for companies that are only approved as bidders, there may be only the 3 tabs showing.
    Please help.
    Regards,
    S. K.

    Hi Jay,
    Yes i have used EEWB to add new fields. But i have used badi's  BBP_BUPA_GET_CUF and BBP_CUF_BADI_2 to display those fields on Bidder data tab.
    When business partner is approved bidder that time i am not able to view these new fields, but when business partner is approved vendor that i can view those fields.
    We are using SRM 5.5.
    Regards,
    S K.

  • First occurence of a value from a  field in the internal table.

    How to select the first occurence of a value from a field in an internal table ?
    I don think , we can use select query .
    Any suggestions?
    provide syntaxs also .

    Hi...
    You have to use this code.
    DATA : Begin of IT_MARA occurs 0,
                 mtart type mara-mtart,
                 matnr type mara-matnr,
                 meins type mara-meins,
              END OF IT_MARA.
    START-of-SELECTION.
      SELECT MTART MATNR MEINS FROM MARA INTO TABLE IT_MARA.
    END-OF-SELECTION.
    LOOP AT  IT_MARA.
    <b>  AT NEW MTART.      "This will trigger for every first/new value of the field
                 <<<<WRITE YOUR CODE here>>
       ENDAT.</b>
    ENDLOOP.
    You can also use.
    LOOP AT  IT_MARA.
    <b> <b>  ON CHANGE OF IT_MARA-TART.   
                 <<<<WRITE YOUR CODE here>>
       ENDON.</b></b>
    ENDLOOP.
    <b>Reward if Helpful.</b>

  • How to add new field into dynamic internal table

    Hello Expert.
    how to add new field into dynamic internal table.
    PARAMETERS: P_TABLE(30).    "table name
    DATA: I_TAB TYPE REF TO DATA.
    FIELD-SYMBOLS: <TAB> TYPE standard TABLE.
    *Create dynamic FS
    create DATA I_TAB TYPE TABLE OF (p_table).
      ASSIGN I_TAB->* TO <TAB>.
    SELECT * FROM (p_table) INTO TABLE <TAB>.
       here i want to add one more field into <TAB> at LAST position and my 
       Field name  =  field_stype     and
       Field type    =  'LVC_T_STYL'
    could you please helpme out .

    Hi,
    Please find the code below.You can add the field acc to your requirement.
    Creating Dynamic internal table
    TYPE-POOLS: slis.
    FIELD-SYMBOLS: <t_dyntable> TYPE STANDARD TABLE,  u201C Dynamic internal table name
                   <fs_dyntable>,                     u201C Field symbol to create work area
                   <fs_fldval> type any.              u201C Field symbol to assign values 
    PARAMETERS: p_cols(5) TYPE c.                     u201C Input number of columns
    DATA:   t_newtable TYPE REF TO data,
            t_newline  TYPE REF TO data,
            t_fldcat   TYPE slis_t_fldcat_alv,
            t_fldcat   TYPE lvc_t_fcat,
            wa_it_fldcat TYPE lvc_s_fcat,
            wa_colno(2) TYPE n,
            wa_flname(5) TYPE c. 
    Create fields .
      DO p_cols TIMES.
        CLEAR wa_it_fldcat.
        move sy-index to wa_colno.
        concatenate 'COL'
                    wa_colno
               into wa_flname.
        wa_it_fldcat-fieldname = wa_flname.
        wa_it_fldcat-datatype = 'CHAR'.
        wa_it_fldcat-intlen = 10.
        APPEND wa_it_fldcat TO t_fldcat.
      ENDDO. 
    Create dynamic internal table and assign to FS
      CALL METHOD cl_alv_table_create=>create_dynamic_table
        EXPORTING
          it_fieldcatalog = t_fldcat
        IMPORTING
          ep_table        = t_newtable. 
      ASSIGN t_newtable->* TO <t_dyntable>. 
    Create dynamic work area and assign to FS
      CREATE DATA t_newline LIKE LINE OF <t_dyntable>.
      ASSIGN t_newline->* TO <fs_dyntable>.
    Populating Dynamic internal table 
      DATA: fieldname(20) TYPE c.
      DATA: fieldvalue(10) TYPE c.
      DATA: index(3) TYPE c. 
      DO p_cols TIMES. 
        index = sy-index.
        MOVE sy-index TO wa_colno.
        CONCATENATE 'COL'
                    wa_colno
               INTO wa_flname. 
    Set up fieldvalue
        CONCATENATE 'VALUE' index INTO
                    fieldvalue.
        CONDENSE    fieldvalue NO-GAPS. 
        ASSIGN COMPONENT  wa_flname
            OF STRUCTURE <fs_dyntable> TO <fs_fldval>.
        <fs_fldval> =  fieldvalue. 
      ENDDO. 
    Append to the dynamic internal table
      APPEND <fs_dyntable> TO <t_dyntable>.
    Displaying dynamic internal table using Grid. 
    DATA: wa_cat LIKE LINE OF fs_fldcat. 
      DO p_cols TIMES.
        CLEAR wa_cat.
        MOVE sy-index TO wa_colno.
        CONCATENATE 'COL'
                    wa_colno
               INTO wa_flname. 
        wa_cat-fieldname = wa_flname.
        wa_cat-seltext_s = wa_flname.
        wa_cat-outputlen = '10'.
        APPEND wa_cat TO fs_fldcat.
      ENDDO. 
    Call ABAP List Viewer (ALV)
      CALL FUNCTION 'REUSE_ALV_GRID_DISPLAY'
        EXPORTING
          it_fieldcat = fs_fldcat
        TABLES
          t_outtab    = <t_dyntable>.

  • Extract a value of a fields from an internal table

    hello everyone,
    i need to extract a value of a fields from an internal table, the fields is in a postion "sy-tabix" that i know, so i need to pick this value without using a loop
    thank you.

    Like this?
    DATA: FIELD1 TYPE C,
               FIELD2 TYPE C.
    READ TABLE T_TAB INDEX 3.
    FIELD1 = T_TAB-FIELD1.
    FIELD2 = T_TAB-FIELD2.
    Greetings,
    Blag.

  • To populate values into single field in an internal table

    Hi Friends,
    How we need to populate values into single field in an internal table.
    E.g itab consits of single field ( name)
           i need to assign values to this field name .like
          peter,
          john,
          abrahm,
          daneyal
    Pls tell me i how i need to code for this
    Thanks ,
    Parnith

    Hi,
    Please look at the below code :
    DATA : BEGIN OF itab OCCURS 0 ,
             name(20) TYPE c,
           END OF itab.
    START-OF-SELECTION.
      itab-name = 'Peter'.
      APPEND itab.
      CLEAR itab.
      itab-name = 'John'.
      APPEND itab.
      CLEAR itab.
      itab-name = 'Abrahm'.
      APPEND itab.
      CLEAR itab.
      itab-name = 'Daneyal'.
      APPEND itab.
      CLEAR itab.
      LOOP AT itab.
        WRITE : / itab.
      ENDLOOP.
    Thanks,
    Sriram Ponna.

  • The new Sony DSC-RX10 Lens Profile does not appear in the Enable Lens Profile Develop Module.

    The new Sony DSC-RX10 Lens Profile does not appear in the Enable Lens Profile Develop Module.
    The wrong lens F3.5/6.3  profile is checkmarked and I can not find the new  RX10  Sony 70-200 F2.8 G SMM11 profile.  The meta data in the Library module correctly list the Sony RX10 and the Correct lens. 
    How may I select the correct lens profile for my Sony DSC-RX10?

    Ask in the PS/ LR/ ACR forums
    Mylenium

  • Passing value to a field of SAP Program which do not have "Parameter ID"

    Dear Experts,
    My requirement is that i need to pass a value from my dialog program to a field of SAP Program which do not have "Parameter ID" attached to it.
    For example: If you run SAP Transaction CS14, it has two sections viz., Primary BOM and Secondary BOM. I need to copy and create own screen using Dialog program. The screen appears in custom screen would be similar to that of the SAP Transaction CS14. If you check the fields, all the fields have "Parameter ID" attached to it, except for the following fields which do not have Parameter IDs are "Alternative", "Valid From" and "Required Qty".
    Hence how do i pass value to those fields? Kindly help me
    To those fields where "Parameter IDs" are attached, i can use below two statements:
    Set parameter id <par> field <field>.
    call transaction 'CS14' and skip first screen.
    Regards,
    Ramesh Manoharan

    Hi Harald Boeing,
    Thanks you very much. My problem is solved.
    Rewarded Points.
    Regards,
    Ramesh Manoharan

  • Why new Spacer Item cretaed through personalization does not appear in SSHR

    SR # 6987444.993
    Customer : VIRGIN ATLANTIC LIMITED
    RELEASE : 11.5.10 CU 2
    Patchset: FP K RUP 2
    A Space Item created through Self Service Personalization Does Not Appear in Self Service HRMS Page.
    Responsibility : Employee Self-Service
    Click on "Personal Information".
    Navigate to : Personal Details Region
    Click on : "Personalize Basic Details" hyperlink.
    In the "Personalize Region : Basic Details" page that opens, in the
    Personalize Structure Region : "Complete View" option button is enabled.
    In the Style column choose the Value : Default Single Column
    Click on "Go" button.
    Corresponding to : Default Single Column: Basic Details, Click on "Create Item" icon.
    In the "Create Item" page that opens, choose : Level: Function: Personal Information
    Item Style : Spacer
    ID : Vishu
    Admin Personaliation : True
    Height : 30
    Width : 10
    Click on "Apply" button.
    Click on "Return to Application".
    Simulated in CELALNX10 and crm-au-r12 instance but in both the instances the Spacer items is not appearing.
    Does the information specified in Note # 236618.1 - OA Framework Personalization and Extensibility Guide: Version 5.7+
    under the Section : Create/Update View Page
    is related to this?

    Check that you have specified the HEIGHT and WIDTH properties of the spacer!
    Also, you have created an item, but make sure that it is RENDERED=TRUE at the personalisation level for your responsibility.
    It is good prectice to create an item and render it FALSE. Then go to the specific personalisation level you require and set RENDER=TRUE.
    Also, there is a better document than the one you refer to. Try looking at MetaLink document id 268969.1 - Oracle Framework Personalization Guide (OA Framework 11.5.10).
    Let me know if that helps.
    Regards
    Tim

  • Adding New Fields to a BEx Query does not show up in the CR field explorer

    This could be a silly question.
    I have a CR report based on a BEx query.  I had to add a couple of new fields to the BEx query, and when i want to add those fields to the CR report, I don't see them even after I do a refresh in the field explorer. 
    How do i see this new fields in the CR report?
    Help Please
    Thanks

    Hi,
    you can open the report and go to the menu Database > Verify Database.
    that should add the new fields to the list of fields in CR
    Ingo

  • Workitem exists in SAP Inbox But does not appear in UWL for some users

    Hi,
    We have a peculiar problem with a standard workflow. This workflow is working fine in SAP Inbox and UWL in portal for most of the users. But sometimes, it does not send workitem to UWL for some users.
    Any input of as why this happens?

    Hi All,
    I had experienced this type of problem as well, just to share it could be that the Identity of the Portal user misses a role which can be solved by any user assigning the identity in their identity management or it could also be the connection status of the UWL to the backend, there should be at least two connection statuses for workflow items to get into the UWL I could not recall it but I would post it here once I have the access to our system again.
    Cheers,

  • New calendar (iCal) in my Mac does not appears in my iPad

    I´ve created a new calendar in my Mac, and I want to sync it with my iPad; It´s very important to me that calendar appears in my iPad but isn´t .
    Please, any help?

    Create a new empty calendar from the iCal file menu, select which account you want to create it in.
    If you have only a few appointments you can move them individually by editing them and changing the calendar in the edit options.
    Alternatively you can copy all the appointments in one calendar to another and delete the original.
    To copy a calendar ctrl-click on it from the menu that appears when you select the calendar button (top left corner of iCal) and choose export (export it to your desktop for ease)
    Double click the exported file and choose the new empty calendar to import them into.
    Ctrl-click on the original calendar from the menu that appears when you select the calendar button and choose delete.

  • Downloaded new iTunes on windows, now iPod does not appear in iTunes

    I down loaded the latest version of iTunes to my PC ( Windows XP). Now my iPod does not show up in devices on iTunes or my computer. I have tried what the help section said - uninstalled and reinstalled iTunes, but still no luck. Any suggestions?

    Did you try this Assistant...?
    iPod touch not appearing in iTunes
    From Here
    http://www.apple.com/support/ipodtouch/syncing/

  • Downloaded apple Itunes on our new computer but now the ipod does not appear in the upper left corner and cannot figure how to download songs to my Ipod. Wehave a gatewayunit with windows 8

    Cannot figure this out

    If you  have iTunes 11 turn on the Sidebar.  Go to iTunes>View and click on Show Sidebar. You can also do a Crtl+S to show the sidebar.

  • A new contact entered on I pad does not appear on I phone or on Outlook contacts...Microsoft 8.1

    A contact entered on the I Pad does not push information to I Phone and Microsoft computer.

    On My Mac is a local account, it does not sync to iCloud, use the iCloud account for all contacts/calendars you wish to be available on your devices.
    If you are actually using 10.6.7 and not Lion this will not work at all, iCloud services require Lion (10.7.x) or 3rd party software (Soho Organizer) in order to subscribe on Snow Leopard (10.6.x)

Maybe you are looking for

  • Is it possible to apply a condition on a single column?

    Morning All, Is it possible to apply a condition on a single column? My aim is to create a report that has multiple PTD columns, each based on a different Version ID. I've tried creating a calculation using the case statement shown below, however I g

  • Does anyone know how to remove an unfinished movie download from an ipod touch

    I need some help with my ipod touch 4 I download the movie but it showed that i dont have enough space and it wont let me to remove or delete the movie. I tried everything but no luck. I dont want to see unfinished movie download stuck in my download

  • Form personalization - new custom function - how to pass parameters?

    Hi, My requirement is to call a custom mod pl/sql program (html page) from purchasing when the "approve" button is pressed. I have it working, but don't know how to pass parameters to my function. I have my function defined and registered. In the def

  • Database Sudden Crash (10G)

    Hi all, I installed oralce10.2.0 in Centos5.5. During Normal Working Suddenly DB Crashed and Linux-x86_64's file system became Read-only file system. The error in log file is like that. Errors in file /u01/app/oracle/admin/WELS103/bdump/wels103_dbw0_

  • Opening a local html file

    Hi again guys, sorry to post 2 similar questions in 2 days, but... I used a package called BrowserLauncher to open a browser window and display a URL. The problem with this being that the package only allows me to display pages via the internet. What