GRC AC 10 NWBC Work Inbox - Standard View

I have created a personal view for the work inbox in NWBC, but would like to make that the default view for all users. Does anyone know how this can be done?

Hi Ameet,
Once we use %LINK%, system automatically generates the approver link on its own.
Link has dynamically generated MSMP ID(linked to each request).
Link example:
Request Link:
http://sabad11111.clientalist.com:8000/sap/bc/webdynpro/sap/grfn_msmp_inst_status?GRFN_MW_INSTANCE_ID=53E6C03CA35107B0E10080000AEE152F
This looks quite big when we see it. need to shorten just as hyper link

Similar Messages

  • Gmail Options button not working in standard view for Firefox 4

    Since upgrading to Firefox 4 gmail does not work correctly in standard view. I can't select my username or options at the top right or select emails to delete or perform any actions on. I use IE and everything works fine. I tried restarting in safe mode and still same problem. I also cleared all recent history.

    A little bit more detail... I am also having this issue, but I think it's more widespread than just google. My desktop is experiencing this issue (Vista x64) but my laptop isn't (Win 7 x64). Both are running Firefox 4.
    Anyway: the problem seems to be with dynamic webpage content, javascript, html5, or something like that.
    As amc-1 mentioned, the two buttons at the top right of google pages aren't doing anything in firefox 4.
    In addition to the settings thing on google pages, in Facebook, if I type in a name into the search bar, suggestions pop up, but if I click on them, nothing happens.
    In google maps, I can get it to open the directions section, but when I click "get directions," nothing happens there either.
    I've tried starting in safe mode. Not working there either.
    '''Edit''': I can confirm that this is fixed by creating a new profile. However, I would like to avoid this if at all possible.
    Possibly relevant info from Troubleshooting Information in help menu: http://pastebin.com/uNUxsp2d

  • SetWhereClause not working for standard view object

    Hi All,
    We are trying to customize one standard page and for that we have add extra where conditions in the standard view object. In th standard view object query is null which is actually getting executed in vo impl using setQuery as follows:
    Please refer setUpQuery Method:
    Below is the controller code from where it is getting fired:
    if(oapagecontext.getParameter("SearchButton") != null)
                            oapagecontext.putParameter("CurrAction", "SEARCH");
                            validateCategoryCriteria(oapagecontext, oawebbean);
                            SupplierSearchVOImpl suppliersearchvoimpl = (SupplierSearchVOImpl)suppliersearchamimpl.findViewObject("SupplierSearchVO");
                            if(flag)
                                suppliersearchvoimpl.setupQueryForRequestedSupplier(oapagecontext, oawebbean);
                            else
                                suppliersearchvoimpl.setupQuery(oapagecontext, oawebbean);
                            suppliersearchvoimpl.executeQuery();
                            oapagecontext.setForwardURLToCurrentPage(null, true, "S", (byte)99);
                            break label0;
    As in the seeded condition setForwardURLToCurrentPage is getting fired we have added additional where condition in the processRequest of the extended controller as follows:
    public void processRequest(OAPageContext pageContext, OAWebBean webBean) {
    super.processRequest(pageContext, webBean);
        pageContext.writeDiagnostics(this, "inside PR",1);
        OAApplicationModule am = (OAApplicationModule)pageContext.getApplicationModule(webBean).findApplicationModule("SupplierSearchAM");
       // OAViewObject vo = (OAViewObject)am.findViewObject("SupplierSearchVO");
        SupplierSearchVOImpl vo = (SupplierSearchVOImpl)am.findViewObject("SupplierSearchVO");
        //String voQuery = vo.getQuery();
        //pageContext.writeDiagnostics(this, "SupplierSearchVO Query : "+voQuery, 1);
        //String whereClause1 = vo.getWhereClause();
        //pageContext.writeDiagnostics(this, "SupplierSearchVO Where Clause : "+whereClause1, 1);
        //pageContext.writeDiagnostics(this, "vo count "+vo.getRowCount(),1);
        //vo.setWhereClauseParams(null);
         pageContext.writeDiagnostics(this, "sessionVal PR"+pageContext.getSessionValue("sessionVal"),1);
        if (pageContext.getSessionValue("sessionVal")!=null) {
           if(pageContext.getSessionValue("sessionVal").equals("NO")) {
               if(vo!= null){
              // vo.setWhereClause("QRSLT.vendor_id = :2");
              // vo.setWhereClauseParam(1,1486622);
                 //  vo.setWhereClause("vendor_id = 1486622");
                  String voQuery = vo.getQuery();
                  StringBuffer stringbuffer = new StringBuffer(" ");
                      stringbuffer.append("SELECT select_flag,vendor_id,vendor_name,asl_entry,trading_partner_id,\n" +
                          "Po_Hold_Switcher_Col,po_docs_totals,tot_invited_negs,tot_awarded_negs,requested_supplier_id from (");
                      stringbuffer.append(voQuery);
                      stringbuffer.append(") where vendor_id = 1486622" );
                      String str = stringbuffer.toString();
                   vo.setQuery(null);
                   vo.setFullSqlMode(vo.FULLSQL_MODE_AUGMENTATION);
                          pageContext.writeDiagnostics(this, "new query string==>" + str,1);
                   vo.setQuery(str);
                          pageContext.writeDiagnostics(this, "new query after vo==>" + vo.getQuery(),1);
                   pageContext.writeDiagnostics(this, "new query ready toexecute==>" + vo.isPreparedForExecution(),1);
               if(vo.isPreparedForExecution()) {
                   vo.executeQuery();
               else {
                   vo.setPreparedForExecution(true);
                   vo.executeQuery();
                   pageContext.writeDiagnostics(this, "vo count "+vo.getRowCount(),1);
                   pageContext.writeDiagnostics(this, "new query "+vo.getQuery(),1);
    * Procedure to handle form submissions for form elements in
    * a region.
    * @param pageContext the current OA page context
    * @param webBean the web bean corresponding to the region
    public void processFormRequest(OAPageContext pageContext,
    OAWebBean webBean) {
         // sessionVal="No";
          pageContext.putSessionValue("sessionVal","NO");
          pageContext.writeDiagnostics(this, "sessionVal PFR"+pageContext.getSessionValue("sessionVal"),1);    
    super.processFormRequest(pageContext, webBean);
    pageContext.writeDiagnostics(this, "ProcessFormRequest called...", 1);
    OAApplicationModule am = (OAApplicationModule)pageContext.getApplicationModule(webBean).findApplicationModule("SupplierSearchAM");
    //if (pageContext.getParameter("SearchButton")!=null)
    //  pageContext.writeDiagnostics(this, "inside serach button custom",1);
    //super.processFormRequest(pageContext, webBean);
    //    SupplierSearchVOImpl vo = (SupplierSearchVOImpl)am.findViewObject("SupplierSearchVO");
    //OAViewObject vo = (OAViewObject)am.findViewObject("SupplierSearchVO");
    //String voQuery = vo.getQuery();
    //pageContext.writeDiagnostics(this, "SupplierSearchVO Query : "+voQuery, 1);
    //String whereClause1 = vo.getWhereClause();
    //pageContext.writeDiagnostics(this, "SupplierSearchVO Where Clause : "+whereClause1, 1);
    //pageContext.writeDiagnostics(this, "vo count "+vo.getRowCount(),1);
    //vo.setWhereClauseParams(null);
    //vo.setWhereClause("vendor_id = :1");
    //vo.setWhereClause("city = :2");
    // vo.setWhereClause("vendor_id = :1");
    //vo.setWhereClauseParam(0, "1486622");
    // vo.executeQuery();
      // pageContext.writeDiagnostics(this, "new query after execute ==>" + vo.getQuery(),1);
       // vo.executeQuery();
    //pageContext.writeDiagnostics(this, "vo count "+vo.getRowCount(),1);
    // SupplierSearchAMImpl suppliersearchamimpl = (SupplierSearchAMImpl)pageContext.getApplicationModule(webBean).findApplicationModule("SupplierSearchAM");
    // boolean flag = "PROSPECTIVE".equals(pageContext.getParameter("SupplierStatus"));
      //  if(pageContext.getParameter("SearchButton") != null)
           // pageContext.putParameter("CurrAction", "SEARCH");
           // validateCategoryCriteria(pageContext, webBean);
           // SupplierSearchVOImpl suppliersearchvoimpl = (SupplierSearchVOImpl)am.findViewObject("SupplierSearchVO");
           // if(flag)
           //     suppliersearchvoimpl.setupQueryForRequestedSupplier(pageContext, webBean);
           // else
            //    suppliersearchvoimpl.setupQuery(pageContext, webBean);
            //suppliersearchvoimpl.customExecuteQuery();
           // oapagecontext.setForwardURLToCurrentPage(null, true, "S", (byte)99);
           // break label0;
      We have tried setting both where clause and query but the issue is condition is getting added in the query when I am printing getQuery but while executing it is executing the old vo query only.
    So can anyone help us on this?

    When you post a question, please use the Advanced Editor and paste the code with appropirate syntax. It will make it easy to read. Otherwise your question might get ignored by others as it is very very difficult to read.
    What is the output you are getting for the below diagnostic messages  ? Is it returning the correct query and correct count ?
    pageContext.writeDiagnostics(this, "vo count "+vo.getRowCount(),1);
    pageContext.writeDiagnostics(this, "new query "+vo.getQuery(),1);
    Cheers
    AJ

  • How to configure SBWP inbox items to NWBC work inbox?

    Hello Experts,
    I got a requirement where i need to trigger workflow, i have done that but the work item is available in SBWP, but i need to show that workitem in NWBC inbox. How to achieve it??
    Thanks & Regards,
    Mohammed.

    Hi Mohammed,
    The below link may help you.
    http://scn.sap.com/thread/3417006
    Regards,
    Murali Krishna.

  • ARQ: GRC work items refresh problem in Work Inbox???

    Hi All,
    While accessing any GRC work items from Work Inbox in NWBC, I have to click on "Refresh" button manually to reflect the latest work items!
    I tried to look for any ABAP program which does this but could not succeed.
    May I know what is the program used to update these GRC work items for all users? OR How do I make it automatic to reflect the latest work items quickly?
    Please advise.
    Regards,
    Faisal

    Hi Mangesh,
    Thanks for your reply.
    Below are my settings:
    As you can see, no role is assigned
    Currently the refresh type is "On Every Page visit" as per note#1635072 (which is default)
    Not sure why this is not working for me.
    Regards,
    Faisal

  • Help Required to configure GRC Work Inbox Type Not Found Error

    All .. I am new to the hands on part on GRC 10. Am trying to configure RM Work INbox. When I go through NWBC to Risk Asessments and try to create a Risk am getting the below error: Type _Not-Found Error for the transaction GRRM_POWL_RNP and GRRM _POWL_RESPONE. Have tried some of the suggestions on earlier threads e.g SICF etc. Appreciate your help to resolve

    Fernando . Thanks for the response. I am getting this error when I am trying to create a risk. Attached is the snapshot of the error. I have tried stuff like deleting the cache, checked SICF to see if Web Dyn Pro is active etc

  • GRC PC3.0 Task name in work inbox = WI Text - cannot access the task detail

    Hi all
    We are using PC 3.0 -ECC6 has been upgraded to 6.05
    We cannot access PC tasks from the work inbox - this is true for all the users
    We can view the task - task name = WI TEXT
    Cannot click on the object name to get to task details
    Your help will be appreciate in case you face the same kind of issue
    Thanks
    Joelle

    SAP Note 1546241 solved the issue

  • Gmail inbox won't open in standard view only html. what to do and/or why?

    My gmail inbox won't open in the standard view. It will say "loading.." on the upper left and "Done" on the bottom but is blank in between. I have to switch to html in order to see the messages. Advise, please.

    Clear the cache and the cookies from sites that cause problems.
    * "Clear the Cache": Tools > Options > Advanced > Network > Offline Storage (Cache): "Clear Now"
    * "Remove the Cookies" from sites causing problems: Tools > Options > Privacy > Cookies: "Show Cookies"
    Start Firefox in [[Safe Mode]] to check if one of the add-ons is causing the problem (switch to the DEFAULT theme: Tools > Add-ons > Themes).
    * Don't make any changes on the Safe mode start window.
    See:
    * [[Troubleshooting extensions and themes]]

  • My husband's gmail account works fine in standard view but mine has to be put in HTML only to keep it from locking up.

    My husband has had a gmail account for two years. When I switched from IE8 to Firefox 3.6 last week the account switched over with no problems. Loads and runs normally in standard view. I created my own gmail account yesterday and if I can't use it in standard view. It won't let me reply, open settings, sign out, etc. I can open emails and use the "back to inbox" button but clicking anything else locks up the whole browser. The only way around this issue is to switch to "HTML only" view which I don't particularly care for. Any idea why? I also added my ISP's McAfee security suite after switching to Firefox last week. I'm not getting an error message from either one but my ISP assures me that the problem isn't the anti-virus software. Any idea what could be causing this and how to fix it?

    Settings > iCloud > Delete Account will only delete his account from your iPad. Then you can add your own.

  • GRC AC 10 Show approved requests in work inbox

    Hello,
    Is it possible to show approved requests in work inbox?
    Denis.

    Hi Victor,
    No, there are no such tables which could give the relations between the ARM requests and the corresponding violations.
    You have only one option; like Neeraj suggested, run the reports for this need.
    Regards,
    Ameet

  • GRC 10 Work Inbox Notification or Universal Work List instead of SMTP

    Hi,
    I wanted to check with you all if there is a possibility to get SAP internal Work Inbox or UWL notification instead of outlook/SMTP notification.
    The scenarios this will be required for us are
    1. User ID details communication at the end of the request.
    2. Notification if access is approved/ rejected.
    3. Notification for Firefighter approved or rejected.
    4. BRM role approval notification
    Kindly let me know if we can pull the notification from Outlook/SMTP to internal SAP Mailbox.
    Regards,
    Prasad Chaudhari

    Hi Guru,
    If I am not wrong the items mentioned send notification to outlook/smtp and not work inbox. The work inbox will get request for approval and uar/sod review.
    Are you talking of some parameter/settings to change this behaviour?
    Thanks,
    Prasad Chaudhari

  • Work items not appearing in NWBC work overview

    Hi,
    I am using NWBC work overview to execute work items (EHSM3.0 - Incident management).
    I have a custom workflow with one custom task (of type Standard). When the workflow gets triggered I can see the work item for my custom task in R/3 inbox (which we access using Tx SBWP). But the same work item is not appearing in NWBC work overview.
    When I replaced my custom task with standard task TS00500003 in the workflow, it did appear in NWBC work overview.
    I added an entry in table IBO_C_WF_TAS for my custom task with following details but it did not resolve my issue.
    Application ID: EHHSS_INBOX
    Task ID: <custom_task_no>
    Default Action: INCIDENTEDIT
    Is there any other setting/config I need to do in order to view work items (for custom tasks) in NWBC work overview?

    Hi,
    This is a job of portal consultant to launch SAP GUI for portal UWL workitems  also similar to SAP SBWP.
    Your portal consultant will be the best guy to answer.
    Regards,
    Ibrahim

  • Unable to open "compose mail/settings/contacts" in standard view in 2 out of 3 Gmail accounts

    Unable to open "compose mail/settings/contacts" in standard view in 2 out of 3 Gmail accounts. When "compose new mail" is selected "loading...." appears at the top then the page is frozen. ie you can't select inbox etc. Changing from standard to basic h/ml then clears the Loading... and gmail can be used (without spellcheck etc).
    This might not be Mozilla, but I can access these accounts in standard view on another computer.

    Your Gmail account may well be an IMAP account, just like the iCloud mail account. In which case it will work in just the same way as iCloud mail, except that you will have to set it up manually on each device, where as iCloud mail adds the account itself when you log into iCloud.
    Whilst it works the same as iCloud mail it isn't iCloud that syncs it for you.

  • Gmail won't load in standard view

    Using Firefox 29. Today, Gmail refuses to load in standard view. I have tried clearing my cache, clearing cookies, starting in Firefox safe mode - nothing works. It loads fine in IE but not in Firefox. No problem with any of the other Google apps I've tried, only Gmail.

    Raw data copied below. I haven't tried it in Windows Safe Mode yet, I will try that next.
    It has been happening every day since the day I posted that question. Sometimes ''eventually '' it does load, but I never had this happen before now.
    "application": {
    "name": "Firefox",
    "version": "29.0",
    "userAgent": "Mozilla/5.0 (Windows NT 6.3; WOW64; rv:29.0) Gecko/20100101 Firefox/29.0",
    "supportURL": "https://support.mozilla.org/1/firefox/29.0/WINNT/en-GB/"
    "crashes": {
    "submitted": [],
    "pending": 0
    "modifiedPreferences": {
    "accessibility.typeaheadfind.flashBar": 0,
    "browser.cache.disk.capacity": 358400,
    "browser.cache.disk.smart_size.first_run": false,
    "browser.cache.disk.smart_size.use_old_max": false,
    "browser.cache.disk.smart_size_cached_value": 358400,
    "browser.places.smartBookmarksVersion": 6,
    "browser.search.suggest.enabled": false,
    "browser.search.useDBForOrder": true,
    "browser.sessionstore.upgradeBackup.latestBuildID": "20140410150427",
    "browser.startup.homepage_override.mstone": "29.0",
    "browser.startup.homepage": "https://mail.google.com/mail/u/0/#inbox|https://www.google.com/calendar/render?tab=mc",
    "browser.startup.homepage_override.buildID": "20140410150427",
    "browser.tabs.onTop": false,
    "browser.tabs.insertRelatedAfterCurrent": false,
    "browser.tabs.drawInTitlebar": false,
    "dom.mozApps.used": true,
    "extensions.lastAppVersion": "29.0",
    "gfx.direct3d.last_used_feature_level_idx": 0,
    "network.cookie.prefsMigrated": true,
    "places.database.lastMaintenance": 1397494546,
    "places.history.expiration.transient_current_max_pages": 104858,
    "plugin.state.npitunes": 1,
    "plugin.importedState": true,
    "plugin.state.npmcsnffpl": 1,
    "plugin.disable_full_page_plugin_for_types": "application/pdf",
    "plugin.state.nppdf": 1,
    "plugin.state.npwlpg": 1,
    "plugin.state.npintelwebapiipt": 1,
    "plugin.state.npspwrap": 1,
    "plugin.state.npintelwebapiupdater": 1,
    "plugin.state.nppicasa": 1,
    "plugin.state.npgoogleupdate": 1,
    "plugin.state.npqtplugin": 1,
    "plugin.state.flash": 1,
    "privacy.sanitize.migrateFx3Prefs": true,
    "storage.vacuum.last.places.sqlite": 1396383634,
    "storage.vacuum.last.index": 1
    "graphics": {
    "numTotalWindows": 1,
    "numAcceleratedWindows": 1,
    "windowLayerManagerType": "Direct3D 10",
    "windowLayerManagerRemote": false,
    "adapterDescription": "Intel(R) HD Graphics Family",
    "adapterVendorID": "0x8086",
    "adapterDeviceID": "0x0a16",
    "adapterRAM": "Unknown",
    "adapterDrivers": "igdumdim64 igd10iumd64 igd10iumd64 igdumdim32 igd10iumd32 igd10iumd32",
    "driverVersion": "10.18.10.3316",
    "driverDate": "10-3-2013",
    "adapterDescription2": "",
    "adapterVendorID2": "",
    "adapterDeviceID2": "",
    "adapterRAM2": "",
    "adapterDrivers2": "",
    "driverVersion2": "",
    "driverDate2": "",
    "isGPU2Active": false,
    "direct2DEnabled": true,
    "directWriteEnabled": true,
    "directWriteVersion": "6.3.9600.16384",
    "webglRenderer": "Google Inc. -- ANGLE (Intel(R) HD Graphics Family Direct3D9Ex vs_3_0 ps_3_0)",
    "info": {
    "AzureCanvasBackend": "direct2d",
    "AzureSkiaAccelerated": 0,
    "AzureFallbackCanvasBackend": "cairo",
    "AzureContentBackend": "direct2d"
    "javaScript": {
    "incrementalGCEnabled": true
    "accessibility": {
    "isActive": true,
    "forceDisabled": 0
    "libraryVersions": {
    "NSPR": {
    "minVersion": "4.10.3",
    "version": "4.10.3"
    "NSS": {
    "minVersion": "3.16 Basic ECC",
    "version": "3.16 Basic ECC"
    "NSSUTIL": {
    "minVersion": "3.16",
    "version": "3.16"
    "NSSSSL": {
    "minVersion": "3.16 Basic ECC",
    "version": "3.16 Basic ECC"
    "NSSSMIME": {
    "minVersion": "3.16 Basic ECC",
    "version": "3.16 Basic ECC"
    "userJS": {
    "exists": false
    "extensions": [
    "name": "Adblock Plus",
    "version": "2.5.1",
    "isActive": true,
    "id": "{d10d0bf8-f5b5-c8b4-a8b2-2b9879e08c5d}"
    "name": "Add Bookmark Here ²",
    "version": "23.0.20140225",
    "isActive": true,
    "id": "[email protected]"
    "name": "Add to Search Bar",
    "version": "2.2",
    "isActive": true,
    "id": "[email protected]"
    "name": "Back/forward dropmarker",
    "version": "1.0",
    "isActive": true,
    "id": "{d618933b-9eb4-1c04-949d-0f9b1a39ebb9}"
    "name": "Better Gmail 2",
    "version": "1.2",
    "isActive": true,
    "id": "[email protected]"
    "name": "Classic Theme Restorer",
    "version": "1.1.7",
    "isActive": true,
    "id": "ClassicThemeRestorer@ArisT2Noia4dev"
    "name": "Diigo Toolbar",
    "version": "5.1.0.39",
    "isActive": true,
    "id": "{fc2b8f80-d9a5-4f51-8076-7c7ce3c67ee3}"
    "name": "F.B. Purity - Cleans Up Facebook",
    "version": "9.8.0",
    "isActive": true,
    "id": "[email protected]"
    "name": "Google Translator for Firefox",
    "version": "2.1.0.3",
    "isActive": true,
    "id": "[email protected]"
    "name": "Greasemonkey",
    "version": "1.15",
    "isActive": true,
    "id": "{e4a8a97b-f2ed-450b-b12d-ee082ba24781}"
    "name": "MEGA",
    "version": "2.0.119",
    "isActive": true,
    "id": "[email protected]"
    "name": "Old Compose - Undo All The New Gmail Changes",
    "version": "0.8",
    "isActive": true,
    "id": "[email protected]"
    "name": "Restart Firefox",
    "version": "0.5",
    "isActive": true,
    "id": "[email protected]"
    "name": "TrackMeNot",
    "version": "0.6.728",
    "isActive": true,
    "id": "[email protected]"
    "name": "Add-on Compatibility Reporter",
    "version": "2.0.1",
    "isActive": false,
    "id": "[email protected]"
    "name": "Anonymouse-Toolbar",
    "version": "1.0.1",
    "isActive": false,
    "id": "{00E2F4E0-F208-4826-A101-FE547C6DA4A1}"
    "name": "Awesome screenshot: Capture and Annotate",
    "version": "2.4.3",
    "isActive": false,
    "id": "jid0-GXjLLfbCoAx0LcltEdFrEkQdQPI@jetpack"
    "name": "BugMeNot",
    "version": "2.2",
    "isActive": false,
    "id": "{987311C6-B504-4aa2-90BF-60CC49808D42}"
    "name": "Calculator",
    "version": "1.1.31",
    "isActive": false,
    "id": "{AA052FD6-366A-4771-A591-0D8DC551585D}"
    "name": "Copy Frame Address",
    "version": "0.1",
    "isActive": false,
    "id": "{c71ff04d-f001-1fc1-1fc1-c71ff04df003}"
    "name": "CustomizeGoogle",
    "version": "0.76",
    "isActive": false,
    "id": "{fce36c1e-58d8-498a-b2a5-66ad1cedebbb}"
    "name": "Facebook Toolbar",
    "version": "1.8.2",
    "isActive": false,
    "id": "[email protected]"
    "name": "FaviconizeTab",
    "version": "1.0.6",
    "isActive": false,
    "id": "[email protected]"
    "name": "IE View",
    "version": "1.5.6",
    "isActive": false,
    "id": "{6e84150a-d526-41f1-a480-a67d3fed910d}"
    "name": "No FB Tracking",
    "version": "1.3.1",
    "isActive": false,
    "id": "[email protected]"
    "name": "Password Exporter",
    "version": "1.2.1",
    "isActive": false,
    "id": "{B17C1C5A-04B1-11DB-9804-B622A1EF5492}"
    "name": "Split Browser",
    "version": "0.6.2009110501",
    "isActive": false,
    "id": "{29c4afe1-db19-4298-8785-fcc94d1d6c1d}"
    "name": "Split Pannel",
    "version": "1.00",
    "isActive": false,
    "id": "[email protected]"
    "name": "TrashMail.net",
    "version": "2.6.3",
    "isActive": false,
    "id": "[email protected]"
    "name": "Update Scanner",
    "version": "3.1.12",
    "isActive": false,
    "id": "{c07d1a49-9894-49ff-a594-38960ede8fb9}"
    "name": "User Agent Switcher",
    "version": "0.7.3",
    "isActive": false,
    "id": "{e968fc70-8f95-4ab9-9e79-304de2a71ee1}"
    }

  • Create a new button in a sap-standard-view WD4A

    In webdynpro for ABAP
    I have changed the text on an existing button in a sap-standard-view using configuration (change application configuration/go to component configurator/implicit configuration and then on the view-component change the text) it works perfect.....
    my next step is to create a new button beside the old one with a new text on it, I created a new button by using "enhance view" (I copied the existing button) the new button appears (so far so good) but when I go into the configuration to change the text on the new button (using configuration the same way I did when I changed the text on the existing button) I  cant find my new button in the view-component list....why can't I find it there so I can change the text?
    Can anyone help me this one?

    I don't believe that the Configuration tool picks up Enhancement Objects because of the way they are linked to the original component at Runtime. Why set the text using configuration?  You can control the text within the enhancement object.  Do you want different texts based upon multiple configurations?

Maybe you are looking for

  • MIGO - Recebimento de Material estocável avaliado com preço standard

    Bom dia Pessoal, estamos com um problema num recebimento de um pedido pela MIGO, com registro de NF, para material estocável, avaliado e com preço standard. Temos um processo de compra para entrega futura. Já foi feita a MIRO da NF principal e agora

  • Open application via. command line with parameters - Multiple times

    I'm using ANT to compile a program, then launch in FireFox ... I've looked all over for a solution to this, but have yet to find one. I need the command to open a specified URL in FireFox... easy enough, right? Solution #1 was to use the "open -a" co

  • Hey have anyone noticed Safari being Slower after Installing LION OSX ?

    I purchased the LION OSX as soon as they have launched it and from the day I had Installed this OS , my Safari Browser is not the same ( in comparision with  speed ) as in Snow Leopard . I have deleted all the Cache , Reset the Safari many times as i

  • Transitioning off Creative Cloud.

    I currently own Photoshop CS5 and Lightroom 3 on CD.   I have also been using Creative Cloud since it launched and have since moved to the Photographer edition of Creative Cloud. I am having a hard time justifying continuing to pay for a subscription

  • Reversal of cost from the  WBSE & posting same into assigned network

    Hi, There is requirment of reversal of cost from WBSE & posting the same into assigned network of WBSE. The scenario is like this. actual cost will get posted into WBSE during PGI of materials during delivery in VL02N transaction. Whereas we don't wa