Narrative Report-Edit Option?

Hi
Is there any option to edit once the narrative report generated through weblink.?
(i.e we have rdf for refresh,download,print,similarly any way to edit the report content)
regards
sowm

Hi
Is there any option to edit once the narrative report generated through weblink.?
(i.e we have rdf for refresh,download,print,similarly any way to edit the report content)
regards
sowm

Similar Messages

  • ALV Report -  edit  option

    Hi,
             This is BalaNarasimman. i am making one field  as editable field in alv report.
    The requirement is that field should have input with  decimal  also. Eg. 2.2.
    So   i  am  declaring    data   type as, data:per    type  P DECIMALS 1.
        if i am giving  input as '2',  then system  is converting as  '0.2'.
        if i want to get '2.2',then i  need  to give '22'.  so    How  can i  avoid       such       kind of situation?                                     
               Please give suggestion to me.

    hi,
    check this
    *& Report  ZDEMO_ALVGRID_EDIT                                          *
    *& Example of a simple ALV Grid Report                                 *
    *& The basic ALV grid, Enhanced to display specific fields as          *
    *& editable depending on field value                                   *
    REPORT  ZDEMO_ALVGRID_EDIT                 .
    TABLES:     ekko.
    TYPE-POOLS: slis.                                 "ALV Declarations
    *Data Declaration
    TYPES: BEGIN OF t_ekko,
      ebeln TYPE ekpo-ebeln,
      ebelp TYPE ekpo-ebelp,
      statu TYPE ekpo-statu,
      aedat TYPE ekpo-aedat,
      matnr TYPE ekpo-matnr,
      menge TYPE ekpo-menge,
      meins TYPE ekpo-meins,
      netpr TYPE ekpo-netpr,
      peinh TYPE ekpo-peinh,
      field_style  TYPE lvc_t_styl, "FOR DISABLE
    END OF t_ekko.
    DATA: it_ekko TYPE STANDARD TABLE OF t_ekko INITIAL SIZE 0,
          wa_ekko TYPE t_ekko.
    *ALV data declarations
    DATA: fieldcatalog TYPE slis_t_fieldcat_alv WITH HEADER LINE.
    DATA: it_fieldcat TYPE lvc_t_fcat,     "slis_t_fieldcat_alv WITH HEADER LINE,
          wa_fieldcat TYPE lvc_s_fcat,
          gd_tab_group TYPE slis_t_sp_group_alv,
          gd_layout    TYPE lvc_s_layo,     "slis_layout_alv,
          gd_repid     LIKE sy-repid.
    *Start-of-selection.
    START-OF-SELECTION.
      PERFORM data_retrieval.
      PERFORM set_specific_field_attributes.
      PERFORM build_fieldcatalog.
      PERFORM build_layout.
      PERFORM display_alv_report.
    *&      Form  BUILD_FIELDCATALOG
          Build Fieldcatalog for ALV Report
    FORM build_fieldcatalog.
      wa_fieldcat-fieldname   = 'EBELN'.
      wa_fieldcat-scrtext_m   = 'Purchase Order'.
      wa_fieldcat-col_pos     = 0.
      wa_fieldcat-outputlen   = 10.
      wa_fieldcat-emphasize   = 'X'.
      wa_fieldcat-key         = 'X'.
      APPEND wa_fieldcat TO it_fieldcat.
      CLEAR  wa_fieldcat.
      wa_fieldcat-fieldname   = 'EBELP'.
      wa_fieldcat-scrtext_m   = 'PO Item'.
      wa_fieldcat-col_pos     = 1.
      APPEND wa_fieldcat TO it_fieldcat.
      CLEAR  wa_fieldcat.
      wa_fieldcat-fieldname   = 'STATU'.
      wa_fieldcat-scrtext_m   = 'Status'.
      wa_fieldcat-col_pos     = 2.
      APPEND wa_fieldcat TO it_fieldcat.
      CLEAR  wa_fieldcat.
      wa_fieldcat-fieldname   = 'AEDAT'.
      wa_fieldcat-scrtext_m   = 'Item change date'.
      wa_fieldcat-col_pos     = 3.
      APPEND wa_fieldcat TO it_fieldcat.
      CLEAR  wa_fieldcat.
      wa_fieldcat-fieldname   = 'MATNR'.
      wa_fieldcat-scrtext_m   = 'Material Number'.
      wa_fieldcat-col_pos     = 4.
      APPEND wa_fieldcat TO it_fieldcat.
      CLEAR  wa_fieldcat.
      wa_fieldcat-fieldname   = 'MENGE'.
      wa_fieldcat-scrtext_m   = 'PO quantity'.
      wa_fieldcat-col_pos     = 5.
      APPEND wa_fieldcat TO it_fieldcat.
      CLEAR  wa_fieldcat.
      wa_fieldcat-fieldname   = 'MEINS'.
      wa_fieldcat-scrtext_m   = 'Order Unit'.
      wa_fieldcat-col_pos     = 6.
      APPEND wa_fieldcat TO it_fieldcat.
      CLEAR  wa_fieldcat.
      wa_fieldcat-fieldname   = 'NETPR'.
      wa_fieldcat-scrtext_m   = 'Net Price'.
      wa_fieldcat-edit        = 'X'. "sets whole column to be editable
      wa_fieldcat-col_pos     = 7.
      wa_fieldcat-outputlen   = 15.
      wa_fieldcat-datatype     = 'CURR'.
      APPEND wa_fieldcat TO it_fieldcat.
      CLEAR  wa_fieldcat.
      wa_fieldcat-fieldname   = 'PEINH'.
      wa_fieldcat-scrtext_m   = 'Price Unit'.
      wa_fieldcat-col_pos     = 8.
      APPEND wa_fieldcat TO it_fieldcat.
      CLEAR  wa_fieldcat.
    ENDFORM.                    " BUILD_FIELDCATALOG
    *&      Form  BUILD_LAYOUT
          Build layout for ALV grid report
    FORM build_layout.
    Set layout field for field attributes(i.e. input/output)
      gd_layout-stylefname = 'FIELD_STYLE'.
      gd_layout-zebra             = 'X'.
    ENDFORM.                    " BUILD_LAYOUT
    *&      Form  DISPLAY_ALV_REPORT
          Display report using ALV grid
    FORM display_alv_report.
      gd_repid = sy-repid.
    call function 'REUSE_ALV_GRID_DISPLAY'
      CALL FUNCTION 'REUSE_ALV_GRID_DISPLAY_LVC'
           EXPORTING
                i_callback_program      = gd_repid
               i_callback_user_command = 'USER_COMMAND'
                is_layout_lvc               = gd_layout
                it_fieldcat_lvc             = it_fieldcat
                i_save                  = 'X'
           TABLES
                t_outtab                = it_ekko
           EXCEPTIONS
                program_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.
    ENDFORM.                    " DISPLAY_ALV_REPORT
    *&      Form  DATA_RETRIEVAL
          Retrieve data form EKPO table and populate itab it_ekko
    FORM data_retrieval.
      SELECT ebeln ebelp statu aedat matnr menge meins netpr peinh
       UP TO 10 ROWS
        FROM ekpo
        INTO  CORRESPONDING FIELDS OF TABLE it_ekko.
    ENDFORM.                    " DATA_RETRIEVAL
    *&      Form  set_specific_field_attributes
          populate FIELD_STYLE table with specific field attributes
    form set_specific_field_attributes .
      DATA ls_stylerow TYPE lvc_s_styl .
      DATA lt_styletab TYPE lvc_t_styl .
    Populate style variable (FIELD_STYLE) with style properties
    The NETPR field/column has been set to editable in the fieldcatalog...
    The following code sets it to be disabled(display only) if 'NETPR'
    is gt than 10.
      LOOP AT it_ekko INTO wa_ekko.
        IF wa_ekko-netpr GT 1000.
          ls_stylerow-fieldname = 'NETPR' .
          ls_stylerow-style = cl_gui_alv_grid=>mc_style_disabled.
                                                 "set field to disabled
          APPEND ls_stylerow  TO wa_ekko-field_style.
          MODIFY it_ekko FROM wa_ekko.
        ENDIF.
      ENDLOOP.
    endform.                    " set_specific_field_attributes
    regards,
    Prabhu
    Reward if it is helpful

  • "Block EDIT option*" for all WEBI Reports with Administrator Account

    Hi,
    I had opening CMC with Administrator Account.Due to some reasons i want to "Block EDIT option" for all WEBI Reports.Just Viewing is sufficient.In the same way for Universe"Blocking EDIT object option".Instead of Administrator guide reference (chap no 18 &19)option.Could you help in steps resolving issue.Thanks in advance.
    Regards,
    Swapna.

    Hi Swapna,
    You could perform the following steps:
    1. Login to CMC.
    2. Go to Folders >> Manage >> Top Level Security
    3. Click on Add Principal and add the user or group for which you have to set the security.
    4. Click on assign Security >> Advanced tab >> Add/Remove Rights.
    5. Select Content >> Web Intelligence Report
    6. assignt "Edit Object" right as denied and click on apply ok.
    This would help you to block edit option for only webi reports and all the webi reports in your environment.
    Regards,
    Nakul

  • Narrative Report with Iframe to dispay

    Hi,
    I have a Requirement for displaying activities of a contact on contact related information page in a calendar format, for this i've created report with calling calendar iframe in report and displaying it in the layout througjh webapplet but it showing all the activities instead showing the related contact activities in the calendar.
    Please see the report parameters and webapplet parameters below:
    Narrative Report:
    </td><td><iframe src="/OnDemand/user/GrpCalendar" width="830" height="400" scrolling="no" name="calendarFrame" onload="document.frames['calendarFrame'].scrollTo(170,115)"></iframe></td></table>
    Web Applet
    iframe frameborder="0" height="400px" width="100%" scrolling=auto src='/OnDemand/user/analytics/saw.dll?Go&Path=%2fshared%2fCompany_HE2790-1JAZ2_Shared_Folder%2fContacts_By+Calendar&Options=r&Action=Navigate&p0=1&p1=eq&p2=Contact."Contact ID"&p3=%%%Id%%%'></iframe>.
    Can anybody help me out to display the related contact activities in the iframe.
    Thanks & Regards
    Bhas.......
    Edited by: user10925194 on 21-Oct-2009 06:01

    Bhas,
    What you are including in the Narrative report will only show the user's calendar, there is nothing in your example which would modify the Calendar view to display activities related to a Contact. This is a fundamentally flawed approach and has no chance of working.
    You can use a web applet to display a report which shows Activities related to a Contact. To display these in a "calendar" format, you will need to completely build the calendar from scratch in html. Narrative can be used for this, perhaps, but it seems a lot of work. Unfortunately there are no shortcuts.
    Good luck,
    Louis

  • Narrative Report-Language Localization

    Hi,
    I used some Service Request custom fields in narrative report and those fields are not getting transated whenever i change my language.
    For instance,when i change language to dutch,the service request custom fields in narrative report not translated(field's name shows like Text_2,Text_3 ) and the reports throws some error.
    Anyone having experience in this issue,give suggesstions.
    regards
    sowm
    Edited by: sowm on Jul 9, 2009 8:48 PM

    Be careful spending time on a Narrative Report if your end goal is to print to PDF. Currently Oracle CRM OnDemand is deffective when it comes to printing Narrative Reports.
    For example we designed a customer contract spending weeks on formatting and design only to find out that the Printer Friendly PDF option scrunches the entire report into 2 inches. Aweful!
    Oracle response to the enhancement request has not been much better.

  • Using Javscript in Narrative report

    Hi,
    Can anyone help me how to use a javascript in Narrative report, Its better if anyone could send the sample code. I am trying to create a label kind of a report using narrative option, I am able to create 12*1 format i.e(12 rows and 1 columns) , but i wanted in 12*2 format i.e.(12 rows and 2 columns). I hope using javascript we can achieve this.
    Thanks & Regards,
    Ambarish

    Hi,
    What you can do is, create another view with either narrative or static script, and in that call javascript. In this new script, read the html code of report generated, by doing document.getElementsByTagName("td") or document.getElements ByTagName("tr") depending on your table structure. Introduce alert statments for debugging and you will be able to read rows one by one.
    It would be better to use pivot table structure as you will be able to read all the data at once.
    Hope this helps.
    Thanks,

  • How to disable an "open for editing" option in word/excel viewers

    Hi All.  It's my first post on here so please be gentle! ;-)
    We have a situation on an RDS server whereby the majority of the users simply need Excel Viewer to review reports generated from an application, with only a very small number of users that actually need to amend and save these reports within Excel 2013 i.e.
    a version of Excel that we need a license for.
    There is an option within Excel Viewer that says "Open for editing" and unfortunately, because we also have Excel installed on the server this allows them to launch the Excel 2013 application i.e. full-blown Excel.
    Is there a way that I can disable this menu item, or can anyone suggest a way that I can stop users from launching Excel 2013?  I suspect that I can use AppLocker to prevent them calling on the excel.exe, but I was rather hoping that there was a more
    elegant way i.e. to simply disable the menu item in Excel Viewer.
    Any help / suggestions would be greatly appreciated.

    It may be difficult for us to disable the "Open for Editing" option in Excel Viewer. 
    If you want to allow only view access to certain files, you should consider controlling access to the file location with network security. Grant the "view only" users with Read-only permission to access the document file location.

  • Narrative Report

    Hi,
    What is Narrative Report??.....how to create a Narrative Report
    Regards
    Raghu

    Be careful spending time on a Narrative Report if your end goal is to print to PDF. Currently Oracle CRM OnDemand is deffective when it comes to printing Narrative Reports.
    For example we designed a customer contract spending weeks on formatting and design only to find out that the Printer Friendly PDF option scrunches the entire report into 2 inches. Aweful!
    Oracle response to the enhancement request has not been much better.

  • Narrative Report Performance

    I have created a Narrative Report in the Reporting section (Not Analytics) because the customer might need to see the report within the same day. I know the performance will be slower but how much slower? The report takes about 1-2 minutes to generate...is that normal. I am only pulling from a few areas Owned by User, Date Opened, Opportunity and Contact. I have also created a prompt that will only pull data from 1 Oppty. record. My question is that normal performance from the Reporting side or is there something I can do to help performance?

    Be careful spending time on a Narrative Report if your end goal is to print to PDF. Currently Oracle CRM OnDemand is deffective when it comes to printing Narrative Reports.
    For example we designed a customer contract spending weeks on formatting and design only to find out that the Printer Friendly PDF option scrunches the entire report into 2 inches. Aweful!
    Oracle response to the enhancement request has not been much better.

  • Read picklist values in narrative reports

    hi
    In narrative report i'm using one picklist field and one currency field.
    Reports i created is dynamic report and it works fine for different SR.
    the report should hold the value chosen in picklist.Unfortunately it always populates the same value i.e value chosen first(i.e not updating proprely whenever i edit the picklist )
    i.e picklist value remains static always doesn't change on user selection in reports
    How to solve this.

    I have this same question. I note that the Custom Object uses, for instance, 03_09 to refer to the 9th item on the picklist for Custom Object 3 instead of the actual name of the field. This causes problems when items get added/removed to the picklist and the field becomes, say, 03_08. Do I have to edit the report every time the picklist changes?

  • (( Hello -ENABLE REPORT PRINTING - OPTION NOT SHOWING  ))

    2010-07-28
    Hello,
    I am trying to print a report in APEX 4.0
    using the free account APEX.ORACLE.COM .
    I learning how to do this using the tutorial at:
    http://st-curriculum.oracle.com/obe/db/apex/r40/apexstart/apexstart_b/apexstart_b_ll.htm
    In the tutorial it says:
    (about 40% down the page)
    17 .
    Select Yes in the ****Enable Report Printing**** drop-down menu and select Portrait in the Orientation drop-down menu under Page Attributes. Then click the Page Header tab.
    The screenshot the tutorial shows looks like this:
    HTTP://mankindwins.com/__7700-2900-APEX-GLOBAL-201/850-500-SCREENSHOTS-FOR-EMAILS-203/ENABLE-REPORT-PRINTING--SCREENSHOT-FROM-TUTORIAL.jpg
    However, when I go into the page for my application, the screen looks
    like this:
    HTTP://mankindwins.com/__7700-2900-APEX-GLOBAL-201/850-500-SCREENSHOTS-FOR-EMAILS-203/PRINT-ATTRIBUTES--FROM-INSIDE-APEX-PAGE.jpg
    As you can see, there is no option for:
    ****ENABLE REPORT PRINTING****
    What do I have to do this make this option appear?
    How do I get the
    ****ENABLE REPORT PRINTING****
    option to appear?
    I believe I saw something somewhere that said you had to do
    so-and-so to ****enable report printing****.
    How do you do this?
    Thanks for your help!
    DAVID888
    Edited by: DAVID888 on Jul 28, 2010 11:30 PM

    Hi,
    What model number is listed o the back of the printer?
    The HP Wireless Direct feature is only available for the CE658A model, not for the CE657A model.
    Regards,
    Shlomi
    Say thanks by clicking the Kudos thumb up in the post.
    If my post resolve your problem please mark it as an Accepted Solution

  • The "Edit" option in Dutch is lowercase

    The "Edit" option in Dutch begins with a lowercase letter instead of upercase like all the other options.I've searched for a way to report this but did not find any so that's why I'm putting this here.It's been like this for a couple of versions already so I figure nobody reported it yet.

    Finally someone who notices this huge issue!  :) 

  • Restriction of Edit option in InfoView

    Hi All,
    I have created one universe and based on that created one report using WEBI. Now when user running report from its giving data but user can able to Edit the report in Info View.
    How to restrict the Edit option for users and also tell if the user will do some changes whether it will reflect to database too?
    Thanks in advance.
    Regards,
    Abhishek Jain
    Edited by: Abhishek Ricky on Nov 23, 2011 4:47 PM

    Hi,
    EDIT in what way????????
    Is the edit option is appearing in the InfoView or the user is able to change text values data deletion from the output data.
    If Edit button appears means you can restrict it by access rights. that is for that particular user you have to give only View and View on demand rights at the CMC level.
    In the second case if the infoview is in the interactive mode the user can delete data, change column and row length etc but one thing you have to notice that he cannot save the file since it is disabled for him if there is any access rights.
    Hope this will help you.
    Regards,
    ArunKG

  • Narrative report problem

    I am just learning about the narrative reporting function.
    I have a report where I want a narrative report to list among other things
    Account Name
    Assets - Product Names
    I would like the Account and Customer name listed once, and a list of Assets to follow.
    For example:
    Acme Industrial Company
    John Smith
    Product A
    Product B
    Product C
    etc
    I am finding that if I have the number of rows set to more than one (ie 5 times) , the report will display each individual product, but it also redisplays the Account and Customer name.
    (i.e.)
    Acme Industrial Company
    John Smith
    Product Name A
    Acme Industrial Company
    John Smith
    Product Name B
    Acme Industrial Company
    John Smith
    Product Name C
    Does anyone know if you can specify that things like the Account, Customer name only display once while the multiple products will be displayed?
    I didn't see if there is a way to repress certain rows from being displayed multiple times
    I hope this makes sense.

    u need multiple narrative section.
    In ur report, Add view->Narrative (which will become Narrative 1 for the 1st time)
    then add the Account Name
    Remember to specify "Row to display=1"
    then click ok.
    again, Add view->Narrative (which will become narrative 2)
    then add the Assets - Product Names
    leave out the "Row to display" (as this will display multiple time)
    then click ok.
    should get it by then
    Edited by: edenbugys on Oct 24, 2008 3:14 AM

  • Can't find the edit option for my own wiki content.

    I can't find Edit option for my own wiki document..
    I've created a wiki yesterday How to update Assignment field in FBL*N report - ERP Financials - SCN Wiki
    At the time all images are visible.. But now, I only can see the images. I got a report from other user, that they can't able to see the images..
    I log out from my account, then I see, Images are not visible in this content..
    I can't find the edit button..

    You have hotlinked the (jive scn.sap) images in wiki. This is not the correct way to embed images.
    The image needs to be first uploaded there(atlassian wiki.scn.sap), and then embed to wiki page.
    I believe you are able to see the image because they are hosted on scn.sap, you are logged in, and the images are part of your "draft" space.
    When your access issue with wiki is being corrected. also get access to upload images in wiki.
    There are tutorials available on how to embed images to new wiki platform.

Maybe you are looking for