Is it possible to design a GUI for Displaying KM Docs with limited options?

Hi all,
The task is to secure the documents published in KM and accessible (read&write)to a limited group,the proposal is to display the docs in a new GUI which lacks options like, "save as , print,copy,paste," and i should also be able to disable certain Keyboard strokes like "printscreen,ctrl+C" etc.
Request you all to tell me the possiblity of such GUI design else kindly suggest me any other alternative like role based splitting....etc...
Many thanks in advance
SantoshKumar Adapa

Hi Santosh,
you may fulfill your requirement from these links
[https://www.sdn.sap.com/irj/sdn/go/portal/prtroot/docs/library/uuid/504e31fc-f46f-2910-98b4-dd94478c22f8]
see the link "customization – Change the layout, context menus as per your choice!" from the below link
[https://www.sdn.sap.com/irj/sdn/weblogs?blog=/pub/u/251732004]
hope this helps you
vv

Similar Messages

  • Can we design a custom GUI for Displaying KM docs

    Hi all,
    The task is to secure the documents published in KM and accessible (read&write)to a limited group,the proposal is to display the docs in a new GUI which lacks options like, "save as , print,copy,paste," and i should also be able to disable certain Keyboard strokes like "printscreen,ctrl+C" etc.
    Request you all to tell me the possiblity of such GUI design else kindly suggest me any other alternative like role based splitting....etc...
    Many thanks in advance
    SantoshKumar Adapa

    Hi Santosh,
    you may fulfill your requirement from these links
    [https://www.sdn.sap.com/irj/sdn/go/portal/prtroot/docs/library/uuid/504e31fc-f46f-2910-98b4-dd94478c22f8]
    see the link "customization – Change the layout, context menus as per your choice!" from the below link
    [https://www.sdn.sap.com/irj/sdn/weblogs?blog=/pub/u/251732004]
    hope this helps you
    vv

  • Tcode SD related for displaying a report with completed deliveries

    Dear SAP Experts,
    I would like to ask you a question.
    Is there any Tcode for displaying a report with all the completed outbound deliveries (8000++) or posted goods issues (4900++) with the relevant net values of the relevant sales orders, BEFORE the creation of the relevant billing documents.
    Great Thanks in Advance
    Kind Regards
    John

    You can use transaction VF04 - Billing due list.

  • Report for display the list with details of quantity stock order etc

    Can anybody give the code to display a list with details of quantity stock for specific materials in specific plants or storage locations based on the input values like plant, storage location, material and product hierarchy entered on the selection screen?

    Yes it is possible.
    we can try doing this by user exsits. with one of our client we have added a new tab in MIGO transaction.
    For details on user exsits user below links
    Check out the below links
    http://www.sap-img.com/abap/what-is-user-exits.htm
    http://www.sap-img.com/abap/a-short-tutorial-on-user-exits.htm
    http://www.sapgenie.com/abap/code/abap26.htm
    here is the user exit examples..
    https://www.sdn.sap.com/irj/sdn/go/portal/prtroot/docs/library/uuid/6378ef94-0501-0010-19a5-972687ddc9ef
    all the user exits for sd
    https://www.sdn.sap.com/irj/sdn/wiki?path=/display/erplo/sd%2buser%2bexits
    Regards

  • Need guide on how to design LabVIEW layout for displaying an output from Kelly Controller to control the CompactRio

    Hi guys. Do need some help here.
    My task is to design a LabVIEW design shematic to display the regeneration current drawn from the BLDC motor through Kelly Controller with an output voltage range of 0-5V. The Kelly Controller is to communicate with the CompactRio. However, I do not know how to start it and I'm kinda new to LabVIEW.
    Really appreciate any kind help and guide that can progress me ahead. Thanks.

    Hi kienyang90,
    CompactRio guide can be found in NI website via this link http://www.ni.com/pdf/products/us/fullcriodevguide.pdf 
    By reading the guide, you will get an idea on how it works.
    To connect compactRio with external module or sensor, you need an i/o module.
    for example an analog input module is this one http://sine.ni.com/nips/cds/view/p/lang/en/nid/208798
    You have to pick modules depend on what kind of output source you are going to give to the compactRio
    Hope this help
    TuiTui

  • Is it possible to create a shortcut for current time / date with iPhone native apps?

    is it possible to create a shortcut to insert the current time / date in a text such as a Note with iPhone (IOS 6) native apps (not a 3rd. party app)?
    By "shortcut" I mean a combination of characters, the same as under settings/general/keyboards/shortcuts.
    thanks.

    Code that does it is here:
    http://forum.java.sun.com/thread.jsp?forum=48&thread=453846&tstart=0&trange=15
    MOD

  • F4 help for PO number field with SELECT OPTIONS

    Hi all,
    I have a field (PO no) using SELECT OPTIONS on my selection screen.I need F4 help for this field.How shud i declare it?
    I have declared it as follows:
    SELECTION-SCREEN BEGIN OF BLOCK b1 WITH FRAME TITLE text-001.
    select-options sel_po for ZPO_LOI-zobject_id obligatory .
    SELECTION-SCREEN END OF BLOCK b1.
    ZPO_LOI is a table view with a z data element ZOBJECT_ID to which i have attached a search help which displays the required values for the PO field in the selection screen.But now the problem is i cant see the F4 icon for the field on the sel screen.
    Please help.

    Hi I have a sapmle code for this.
    *&                AT SELECTION SCREEN ON VALUE REQUEST
    *-- F4 help for IDOC numbers
    AT SELECTION-SCREEN ON VALUE-REQUEST FOR s_docnum-low.
      PERFORM value_request_status USING 'S_DOCNUM-LOW'.
    AT SELECTION-SCREEN ON VALUE-REQUEST FOR s_docnum-high.
      PERFORM value_request_status USING 'S_DOCNUM-HIGH'.
    *&      Form  value_request_status
          text
         -->fp_field  dynpro field that gets the return value
    FORM value_request_status  USING fp_field TYPE dynfnam.
      STATICS tl_values TYPE STANDARD TABLE OF tp_value.
      IF tl_values IS INITIAL.
         SELECT docnum FROM edidc UP TO 500 ROWS INTO TABLE tl_values
              WHERE credat   IN  s_credat
              AND   cretim   IN  s_cretim.
         IF sy-subrc eq 0.
            CALL FUNCTION 'F4IF_INT_TABLE_VALUE_REQUEST'
             EXPORTING
              retfield        = 'DOCNUM'
              dynpprog        = syst-repid
              dynpnr          = syst-dynnr
              dynprofield     = fp_field
              value_org       = 'S'
             TABLES
              value_tab       = tl_values
             EXCEPTIONS
              parameter_error = 1
              no_values_found = 2
             OTHERS          = 3.
             IF sy-subrc IS NOT INITIAL.
               MESSAGE i999(zz) WITH 'No values found'(004).
             ENDIF.
          ENDIF.
        ENDIF.
    ENDFORM.                    " value_request_status
    Regards,
    Amit.

  • Is it possible to create indexes & use them on xml docs with namespaces?

    I have put an XML doc in a BDBXML container which looks like this:
    *<ns1:note xmlns:ns1="http://www.testsch.org/ns">*
    *<ns1:to>Eric</ns1:to>*
    *<ns1:from>Brendan</ns1:from>*
    *<ns1:msg>How r u?</ns1:msg>*
    *</ns1:note>*
    Now, I am creating an index on the element "to", as:
    addIndex "ns1" "to" node-element-equality-string
    Though the index has been shown as getting created using the listIndexes command, if I lookup that index with the following command:
    lookupIndex node-element-equality-string "ns1" "to"
    the output is:
    *0 objects returned for eager index lookup 'node-element-equality-string'*
    Whereas, if I do the whole procedure without the namespaces in the document & the commands, the result is fine:
    *1 object returned for eager index lookup 'node-element-equality-string'*
    Can someone please tell me whether using namespaces, the indexes can be created or not? If yes, how?
    Thanks,
    Dev
    Edited by: user11871332 on Sep 7, 2009 3:53 PM

    Hi Dev,
    When using XML, the prefix for the namespace is really just syntactic sugar. The actual namespace in your example is "http://www.testsch.org/ns", and that's the value that you need to use when creating your index:
    addIndex "http://www.testsch.org/ns" "to" node-element-equality-stringJohn

  • T-code for display open PR with block message/ indicator

    Hi experts,
    I would like to export the open PR list with block message / indicator to excel.
    Could you please tell me the T-code and the steps?
    Thank you.

    Dear,
    And also try tran: SE16 table EBAN and with the field STATU you can check the open PRs.
    Block - in the sense 1) Mark like item with deletion so that further documents cannot be created.
                                     2) PR item not yet released.
    Blocking also be considered marking item as Closed [MEREQ3321-EBAKZ].
    Your requirement differs the selection of table to be selected get data. Please check.
    Regards,
    Syed Hussain.

  • HT204407 App won't open... Installed it, added friends, used it a few times and now it opens for a brief moment with no options to touch and then closes

    App won't open completely.  I touch it, it opens, no options to touch.  Then it closes

    Try quitting it completely by double tapping the homebutton twice and closing the app at the bottom of the screen. If this doesn't help:
    Try deleting the problematic app and then re-downloading the app from the app store.
    You can re-download content purchased from the app store using the purchased option which is revealed by tapping the updates option at the bottom of the screen of the App store app on your iOS device.

  • Connect to SAP R/3  using SAP GUI for HTML through saprouter

    Hello,
    I have my system running on my intranet, but I need to connect some support enginners through an Internet connection. Nowadays some users can connect to QAS and PRO systems using SAP GUI for windows and java with the saprouter string,  but the support enginners are using SAP GUI for HTML, do I need a special string or configuration so html users can connect to my system from the Internet?
    Thanks in advance.

    thanks, I can get the data from SAP R/3 to crystal report.
    but still dont know how to do the second question mentioned in previous message:
    once the table I want to get the data from is a cluster, and have found the mapping data dictionary of this data cluster, which displayed in crystal report connection as well, however, the data is not what I wanted.

  • What is the use for CREATING VIEW WITH CHECK OPTION?

    Dear Legends,
    I have a doubt
    What is the use for creating view?
    A: First Data Integrity, Selecting Particular Columns..
    What is the use for creating a view with check option?
    A: As per oracle manual I read that its a referential integrity check through views.
    A: Enforcing constraints at DB level.
    A: using CHECK OPTION we can do INSERTS UPDATES for a view for those columns who have no constraints... is it right??
    A: If we do a INSERT OR UPDATE for columns who have constraints it will show error... is it right???
    Please clear my doubt's Legends
    Lots of Thanks....
    Regards,
    Karthik

    Hi, Karthick,
    karthiksingh_dba wrote:
    ... What is the use for creating view?
    A: First Data Integrity, Selecting Particular Columns..Most views are created and used for convenience. A view is a saved query. If the same operations are often done, then it can be very convenient to code those operations once, in a view, and refer to the view rather than explicitly doing those operations.
    Sometimes, views are created and used for security reasons. For example, you many want to allow some users to see only certain rows or certain columns of a table.
    Views are necessary for INSTEAD OF triggers.
    What is the use for creating a view with check option?
    A: As per oracle manual I read that its a referential integrity check through views.The reason is integrity, not necessarily referential integrity. The CHECK option applies only when DML is done through the view. It prohibits certain changes. For example, if a user can't see certain rows through a view, the CHECK option keeps the user from creating such rows.
    A: Enforcing constraints at DB level.I'm not sure what you mean. Please give an example.
    A: using CHECK OPTION we can do INSERTS UPDATES for a view for those columns who have no constraints... is it right??No. Using CHECK OPTION, you can do some inserts and updates, but not others. The columns involved may or may not have constraints in either case.
    A: If we do a INSERT OR UPDATE for columns who have constraints it will show error... is it right???If you try to violate a constraint, you'll get an error. That happens in views with or without the CHECK OPTION, and also in tables.

  • How to find Ship to party number for a Sale doc.

    Hi,
    Currently, I have a sale doc number with type ZDR (Debit memo request). Could you please let me know how can I get the ship to party number for that document number.
    In General, Could you please show me how to get ship-to party number for a sale doc with all sale doc type ?
    Thanks,

    Hi Krishna,
    Your answer is correct, I just go to table VBPA pass the sale doc number & choose the partner function as ship to party, then I can get the ship-to-party ID.
    Hi Sandipsinh,
    The KUWEV is the customer master data view that is used in standard T-code. However It is not a table, therefore I can't get data from it.
    Hi  senya_1111,
    You know, with a sale order we have only one sold-to-party. However, we can have several corresponding ship-to-partys.
    Moreover, In table VBAK(Sale order header)  we just have sold-to-party not ship-to-party. That means we can get wrong value in case ship-to-party is not the same as sold-to-party.
    Overall, Thank all of you for your opinion.

  • Image quality for displaying photos

    I like to use my Apple TV (3rd gen) for displaying photos taken with a variety of devices - Fuji X100s, iPhone 5, Nikon d7000. The output from these devices looks great on my 3Gen iPad but quite a bit less so on the 1080p Samsung tv, they almost look a little pixelated. On the other hand, Apples stock screen saver photos look great on the same tv.
    I don't believe that my cameras don't take good enough jpg's to display well and have concluded that Apple may be doing something to their photos that I haven't figured out.
    Any suggestions?

    Not all my photos are great to begin with, many are taken in poor lighting conditions, but the good photos are equally as good as the stock photography.

  • Requesting all for urgent help ...Designing a new GUI for KM docs.

    Hi all,
    As i know the KM docs are opened in a new browser ( IE or Firefox ) can we display them in a sort of GUI which can have limited options like " No File save as ", or "Print " etc, can this be done? Can someone give me a workflow as to how these are fetched and executed in browser and **if i have the JSP scripts for blocking some browser options and keyboard keys where do i write them ?**
    Requesting your help please ,
    Many thanks in advance
    SantoshKumar Adapa
    Edited by: Santosh Kumar Adapa on Mar 25, 2008 7:49 AM

    Hi Sumit,
    Thanks for the reply the blog was a great starter for me, but my primary concern is like when u open a KM doc its displayed in a browser right like IE or Firefox, which has all file options like save as, print etc, now my task is to make the docs available to only a limited no of ppl who can only see them but cannot save it, for this i have been asked to display the KM docs in a new GUI which lacks all these options.I know tht we can use some scripting to block the browser options and disable the keyboard strokes even but i donot know how to integrate these scripts to where and how far is this approach feasable?
    Can you please help me out with this or else suggest me an alternate method of doing this using out KM layouts?
    Thanks in advance
    Santosh

Maybe you are looking for

  • Creation of logical standby in 9i from physical standby

    Hi all, I want to create logical standby from physical standby in 9i. can anyone send a doc for this

  • Office web apps crome issue

    I have SharePoint 2013 integrated with office web apps. I have activated the feature Open Documents in Client Applications by Default. If I open word document in Internet explorer it opens in client application but if I open same word document in cro

  • W2 & 1099 reporting

    Hi, If any one can provide the w2 & 1099 reporting config documents it will be really appreciated. thanks in advance.... Regards, Vipin

  • Installing iTunes 9.0.2 problem

    After having problems installing iTunes 9.0.2 the straightforward way, I went through the proces of clearing the Temp file, uninstalling the old iTunes and getting the new one. However this time I get a new error message, reading: "Error getting file

  • N80 Firmware fixes ?

    Hi, Does anybody know when a bugfixed firmware for N80 is available ? For bugfixed I mean so that WiFi EAP-LEAP and PEAP works with hidden SSIDs. I still lack any info about users who succesfully runs a N80 with EAP-PEAP MSCHAPv2 or EAP-LEAP.