Need to find records posted from Fiori launchpad or Fiori application

Hi,
We have implemented Fiori Applications at our customer site now they want to identify or find out records posted from fiori launchpad and SAP ERP.
Purpose of this activity to monitor the utilization of Fiori Application. Is anyone know how we can achieve this?
Regards
Shraddha

Hi Sharddha,
Please look at http://scn.sap.com/thread/3621724 and  http://scn.sap.com/thread/3336896
It is better solution.
Regards, Masa
SAP Customer Experience Group - CEG

Similar Messages

  • Need to find out how many users are using Siebel Application

    Hello all,
    I need to find out how many users are using Siebel Application?
    Is there a way I can find out?
    Thanks.
    yasun

    Hi,
    Read the following:
    http://docs.oracle.com/cd/B40099_02/books/SysDiag/SysDiagSysMonitor30.html
    http://docs.oracle.com/cd/B40099_02/books/SysDiag/SysDiagSysMonitor17.html
    For full information about server status and statistics red:
    http://docs.oracle.com/cd/B40099_02/books/SysDiag/SysDiagSysMonitor.html
    T.Abed

  • Need Adobe Premiere Mac post from summer 2000

    Hi,
    I know this must sound crazy, but I need to find a needle in a haystack -- in the summer of 2000 I posted on the Adobe Premiere Mac forums - it was a method of remapping the keyboard in Premiere 5.1c.  I'm pretty sure my screen name was "Graham Jones" -- I had over 600 posts.  It's possible it was "GrahamAJones" but I don't think so.
    Does anyone know how I can retrieve a copy of that post and/or thread?  I'm hoping someone saved the archive.
    If it helps in searching, it talked about modifying the "keyboard.txt" file.
    It's a long story, but I need evidence of that post for my green card application, and I am stumped without it.
    Thanks,
    Graham Jones.

    slight chance, I suppose, I don't know how far back their archives go:
    http://www.archive.org/web/web.php
    added:
    About the Wayback Machine
    Browse through over 150 billion web pages archived from 1996 to a few months ago. To start surfing the Wayback, type in the web address of a site or page where you would like to start, and press enter. Then select from the archived dates available. The resulting pages point to other archived pages at as close a date as possible. Keyword searching is not currently supported.

  • Need to find records which match or unmatch with isd code

    Hi all,
    Having two tables
    1. cdr
    callingno                      calledno
    9891567854                 8613548159929
    9894562145                 8125642136545
    9899546213                 8336547896322
    8856521217                 8174456217789
    2. ISD rates
    code
      81
    817
    818
    819
       82
       84
    850
    852
    853
    8536
    855
      86
    Requirements:
    1] Matching records : Find records from cdr which matches isd code from isd rates table
    it cound be
    select cdr.callingno, cdr.calledno from cdr cdr, isdrates isd where (( substr(cdr.calledno,1,1) =isd.code) or ( substr(cdr.calledno,1,2) =isd.code) or ( substr(cdr.calledno,1,3) =isd.code) or
    ( substr(cdr.calledno,1,4) =isd.code))
    output:
    callingno                      calledno
    9891567854                 8613548159929
    9894562145                 8125642136545
    8856521217                 8174456217789
    2] Unmatching records:
    output required:
    callingno                      calledno
    9899546213                 8336547896322
    Kindly Help.

    this?
    with cdr(callingno,calledno) as (
    select '9891567854','8613548159929' from dual union all
    select '9894562145','8125642136545' from dual union all
    select '9899546213','8336547896322' from dual union all
    select '8856521217','8174456217789' from dual ),
    isd(code) as(
    select '81' from dual union all
    select '817' from dual union all
    select '818' from dual union all
    select '819' from dual union all
    select '82' from dual union all
    select '84' from dual union all
    select '850' from dual union all
    select '852' from dual union all
    select '853' from dual union all
    select '8536' from dual union all
    select '855' from dual union all
    select '86' from dual )
    select q.callingno,
           q.calledno,
           case when count(decode(m, 'MATCHED', 1)) > 0 then 'MATCHED' else 'UNMATCHED' end
      from (select t.callingno,
                   t.calledno,
                   case when (substr(t.calledno, 1, 4) like i.code || '%') then 'MATCHED' else 'UNMATCHED' end m
              from cdr t, isd i) q
    group by q.callingno, q.calledno
    CALLINGNO
    CALLEDNO
    CASEWHENCOUNT(DECODE(M,'MATCHE
    9899546213
    8336547896322
    UNMATCHED
    8856521217
    8174456217789
    MATCHED
    9891567854
    8613548159929
    MATCHED
    9894562145
    8125642136545
    MATCHED
    Ramin Hashimzade

  • Need to find process chain from event

    Dear Experts,
    I need to find out all process chains which are getting triggered by a certain event.
    ( I have an event name , need to find corresponding process chain ).
    Kindly suggest.
    Regards
    Vaibhav Halde

    Hi,
    In SM37 you can find it, give event in SM37 an dsee the log. In the following blog you hav esome comments on the same so see the comments.
    How to trigger the Process Chains in BW from ECC
    /people/surendrakumarreddy.koduru/blog/2009/03/18/how-to-trigger-the-process-chains-in-bw-from-ecc
    Thanks
    Reddy

  • Need help for record deletion from custom table

    Hi friends
    I have to write a custom program which will be generic to delete any table record with date field.
    This program needs to be generic (should be able to delete records from any custom table) in nature with selection screen parameters as:
    Table Name and Number of Days prior to which records are deleted, both mandatory.
    Program Flow:
    1.     From number of days calculate date before which records are deleted, ( current date u2013 no. of days = past date).
    2.     Custom table have date field, delete records prior to that date.
    3.     Program may be scheduled for background job, put default values for both fields. No. of days should not be less than 60.
    4.     Classical Report output with number of records deleted.
    My query is how will I know the name of the Date field so that I can write a DELETE query.
    If I use 'DDIF_FIELDINFO_GET' it gives me all field names but how to filter out?
    with regards
    samikhya

    Hi
    I have added  field on the selection screen as p_fieldname and got the F4 help for it , so that the user will get the field name run time as per the table name.
    Now I am facing problem while writing the DELETE query.
    I wrote like
    DELETE (fp_tab)
    where (fp_fieldname) LE date
    It is not working. I also tried with taking a string to concatenate fp_fieldname, LE and date to l_string
    when I write like this:
    DELETE (fp_tab)
    where (l_string) , sy-subrc is getting 4 and no records are getting deleted.
    I do not understand where the dynamic Delete is failing??
    with reagards
    Samikhya

  • Need help getting record(s) from layered tables

    Greetings,
       The company database has what I can only describe as layered tables.  Table 1 has a record that references actual data in another table.  The data in Table 1 is a numeric reference to the data in Table 2.  I need to be able to get the referenced data from Table 2 based on the identifier in Table 1. 
       Hopefully this makes some sense.  I am on a very short deadline having spent the majority of the weekend trying to figure this out. 
       Any help would be greatly appreciated!!
    Thank you,
    Martin

    The join is in place.  The problem is that I can't get just the data for the record I want.  I think I need to provide more information here...
    diaryentries.did is linked to TNTEntry.did and medsentry.did and painentry.did
    for diaryentries.MID i want to get the related medsentry.medication and the painentry.painlevel and the TNTentry."treatmenttype"  but treatmenttype is a numeric value that is defined in the dropdown_items table.  This table is used for many drop down menus.  I need to be able to extract the corrosponding data to my TNTentry table based on the MID. 
    The TNTEntry table is linked to the dropdown_items table by TNTEntry.DID -> dropdown_items.dd_id.  The dropdown_items table then has several rows that basically translate the various items to different languages.  If I put dropdown_items.english in my report, I seem to get each and every possible entry in the dropdown_items table as opposed to only those entries that corrospond to the MID from diaryentries.

  • Need to find mailbox indentity from a shared calendar

    I have shared calendar in Outlook but can not find the mailbox it is shared from. Any way to find the mailbox identity where it is shared from --may be through the exchange 2010 shell --but don't know how.

    Hi,
    Check your permission on this calendar in Outlook then try this script, replace the “Reviewer” permission to your permission.
    $allmailbox = Get-Mailbox -Resultsize Unlimited
    Foreach ($Mailbox in $allmailbox)
    {Get-mailboxfolderpermission –identity ($Mailbox.alias+':\calendar’) | where {$_.AccessRights -eq “Reviewer”}}
    Best Regards.
    Please remember to mark the replies as answers if they help, and unmark the answers if they provide no help. If you have feedback for TechNet Support, contact [email protected]
    Lynn-Li
    TechNet Community Support

  • How to find out last_query from jsp form in oracle applications

    Hi
    At present i am working on Quality Module.
    in India Localization.
    In Quality module -> Results -> Inquiries -> Skip Lot Inquiry
    If i enter our organization name
    Then its openning one form.
    I am unable to find out the table names from the jsp form.
    User also unable to comment on it.
    So, please help me on this issue.
    Regards,
    Pradeep.

    Hi
    Once you open the jsp form, at below leftside corner you can see link : About This Page. If you click on the link : About this Page this again open another window, there you can see multiple tabs at header level, if you click on page tab, there you can all the VO objects used to build this page. If you click on VO object hyperlink you can see the query.

  • Fiori LaunchPad : Images on Application tile

    Hello All,
    In Launchpad designer , We can add Icons for the application tile.
    Is it possible to add IMAGE rather than ICON here?
    does the new LaunchPad designer supports this feature ?
    Regards,
    Sheetal
    Tags edited by: Michael Appleby

    Hi Sheetal,
    It is not available in launchpad designer SP08.
    Regards, Masa
    SAP Customer Experience Group - CEG

  • Passing Parameter from fiori launchpad to the app in sapui5

    Hi All,
    I have a requirement to pass a parameter from Fiori launchpad to the application. Then i have to use that parameter to construct the OData service URL and read the data. So how can we pass the parameters from Fiori launchpad tile to app? Thank you in advance.
    Regards,
    Seshu
    Tags edited by: Michael Appleby (but please start doing this on your own)

    Hi Masa,
    I will explain scenario:
    I have Main.view.xml and Main.controller.js in my App. I read the data in Main.controller.js using the following statement.
    var bus_scenario="Lead to Deal Approval";
    oModel.read("BusScnCollection('"+bus_scenario+"')?$expand=BusinessProcess",null, null, true,function(data,response)
    Now my requirement is to get the value for bus_scenario variable from Fiori launchpad configuration.
    What I did in Fiori launchpad configuration:
    Then, When I launch my app by clicking on tile, the URL appears in the following way.
    https://<server>:<port>/sap/bc/ui5_ui5/ui2/ushell/shells/abap/FioriLaunchpad.html#ZCIO_DASHBOARD-display?BUS_SCENARIO = "ORDER TO CASH"
    So I can read this parameter in Main.controller.js and assign to bus_scenario variable. But it is possible that user can change the parameter (from ORDER TO CASH to LEAD TO DEAL) directly in the URL, So that he can get the data corresponding to LEAD TO DEAL (which he should not get). Because when he clicks on ORDER TO CASH Tile, he should get only the data corresponding to it.
    So, is there any other way to send parameters from launchpad configuration to app, so that we can use those parameters in app (Main.controller.js) ?
    is there any way to hide parameters in the URL and send them?
    Thanks & Regards,
    Seshu

  • Find records in table that match strin

    Hello,
    I have a comma delimited string that contains zip codes. I
    need to find records in a table that match any of the zip codes in
    the string. The database table is MS SQL. What is the best method
    to do this?
    Thanks in advance for any help!

    ghanna wrote:
    > Hello,
    >
    > I have a comma delimited string that contains zip codes.
    I need to find
    > records in a table that match any of the zip codes in
    the string. The database
    > table is MS SQL. What is the best method to do this?
    >
    > Thanks in advance for any help!
    >
    cfquery
    select ...
    from ...
    where tablename.fieldname IN
    (#listqulify(yourcommadelimitedlist*)#);
    * pass it in as a variable
    OR
    where tablename.fieldname IN (<cfqueryparam
    cf_sql_type="cf_sql_clob"
    value="#yourlistvariable#" list="yes">);
    you might want ot check up on the cfqueryparam syntax - i
    have a feeling
    i didn;t get it quiet right there... :)
    Azadi Saryev
    Sabai-dee.com
    Vientiane, Laos
    http://www.sabai-dee.com

  • Catalog in SAP Fiori Launchpad

    Hi,
    How do I bring predefined catalog delivered by SAP that is used with the SAP Fiori launchpad.
    We are using SAP_UI Rel7.4 SP6
    regards,
    Ranjith
    Tags edited by: Michael Appleby

    Hi Ranjith,
    Step 1. Configure launchpad.
    Maintaining SAP NetWeaver Gateway OData Services - User Interface Add-On for SAP NetWeaver - SAP Library
    SICF Services - User Interface Add-On for SAP NetWeaver - SAP Library
    Configuring Authorization Roles - User Interface Add-On for SAP NetWeaver - SAP Library
    Step 2. Find the roles from App Catalog
    SAP Fiori Apps - SAP Library
    App Implementation: Approve Purchase Orders - SAP Fiori Apps - SAP Library
    Group role is Business Role -> SAP_MM_BCR_Buyer_X1
    Catalog role is Technical Role -> SAP_MM_TCR_T_X1
    Step 3. Assign the roles to users
    If you can not find the Group/Catalog roles on Gateway server, it means you have not installed Fiori app UI components. Please install.
    SAP Fiori - Add-on quick reference for transactional apps
    Step 4. Test and troubleshoot
    https://<host>.<domain>:<port>/sap/bc/ui5_ui5/ui2/ushell/shells/abap/Fiorilaunchpad.html?sap-client=<client>&sap-language=EN
    SAP Fiori LL11 - Consultants should know about OData troubleshooting
    Regards, Masa
    SAP Customer Experience Group - CEG

  • Need Help on HTTP Post ?

    Hi @,
    I need to perform HTTP Post from webdypro application some XML data. How can I do this , I tried searching forums and blogs but couldn't find a suitable solution or Help.
    Is it possible or will have to go for any external apis to achieve the same?
    Regards

    Hi,
    This is possible - though not directly with Exit Plug of Interface View Controller.
    You need to use Suspend plug to pass parameters with http POST. See this thread and this document for further directions.
    From thread above, Replace
    Map postParams = new HashMap();
    postParams.put("Key1", "Value 1");
    postParams.put("Key2", "Value2");
    postParams.put("Key3", "Value 3");
    wdThis.wdGetWDSuspendResumeWindowController().wdFirePlugTestSupend("http://www.sap.com", postParams);
    with
    WDDeployableObjectPart deployableObjectPart = WDDeployableObject.getDeployableObjectPart(deployableObjectName, "TargetApp", DDeployableObjectPartType.APPLICATION);
    String urlToTargetApp = WDURLGenerator.getApplicationURL(deployableObjectPart);
    Map postParams = new HashMap();
    postParams.put("Key1", "Value1");
    postParams.put("Key2", "Value2");
    postParams.put("Key3", "Value 3");
    wdThis.wdGetStartWindowController().wdFirePlugStartAppSuspend(urlToTargetApp, postParams);
    In target application, onPlugDefault, use this code to get the values for parameters.
    String val1 = WDProtocolAdapter.getProtocolAdapter().getRequestParameter("Key1");
    String val2 = WDProtocolAdapter.getProtocolAdapter().getRequestParameter("Key2");
    String val3 = WDProtocolAdapter.getProtocolAdapter().getRequestParameter("Key3");
    wdComponentAPI.getMessageManager().reportSuccess(val1 + "   -   " + val2+ "   -   " + val3);
    I've used this and it works.
    Hope it helps.
    Regards,
    Sunaina Reddy T

  • Find equipment number from the asset number

    hi,
    where i can find ( I NEED TABLE name ) Equipment number,
    its in transaction as03 ->allocations -> right to field Equipment number
    i press f1 and found it's a structure  ra02s
    where i can find it (which table)?
    i know equi is the master data table of equipment but i need to find equipment number from the asset number
    Regards
    Edited by: liu shaochang on Jan 21, 2010 3:31 AM

    Hi
    Please use view M_EQUIA . Hope this will serve your purpose.
    Regards
    Gaurav

Maybe you are looking for