Application analysis:SAT - unexplained group

Hi,
I am facing a time problem with a background job. The background job contains program that reads data from SAP and sends it using web service (synchronous, through PI) to another system.
I scheduled measurement in SAT and there I can see in the profile tab some strange group, that I do not understand (see the image).
Can you please give me an information what does "Inspect forward and SKIP if..." and "Skip to Continue End" groups mean?
I have searched google, sap notes, but I cannot find any explanation.
Thanks Adam

Hi, thank you for you help, I have found out, that there are some kind of after commit events that are launched after commit work.  In the customer code I have found "WAIT UP TO 1 SECONDS." That is killing the whole integration.
After some more tests I realized that the time load moved in SAT load log to the Dypro-ereignisse->Mainsteps, so probably the trace in the first post was somehow bad.
I do not understand why I shloudn't use SAT, I thought it is just another interface to something that is under the hood of SE30. I used se30 and st12 in the past but our basis guys have taken all the access to those (to keep it for themselves). Fortunatelly I have found this SAT, that is OK for me.

Similar Messages

  • Sales Analysis by Item Group (Monthly) - To include Sales Employee Name

    Hi,
    I have added Sales Employee Name in the Sales Analysis by Item Group (Monthly) report by A/R Invoices. I have added this under Repetitve Area Header0. However, the sales employee name showed in the preview is different than the criteria entered.  It seems that the report only the first Sales Employee Name in the report.
    Anyone have any idea? Thanks in advance
    Regards,
    MH

    That is a good question.  You have to find out any unique relationships between your Sales Employee and your sales analysis data if there is. Hope the help below can assist you:
    Relate to
    This option is relevant for special scenarios only and requires knowledge of SQL.
    This field is used for retrieving data related to key records found in tables other than the table linked as default to the current print template.
    A key record is a field used as a primary key in a certain table. This key record functions as the identifier of the record, and, therefore, it is required to retrieve any additional data related to it.
    Following is an example:
    e.g.If you need to print the name of a certain bank, which is not linked to the table used in the current print template, you must first create a Text field of Database source type using the required table and select a key record, such as Bank Code.
    Then, you need to create an additional Text field of Database source type. Select the table again, select the required column (such as Bank Name), and enter the unique ID of the field with the key record in the Relate to field.
    There might be two or more key records in the same table. In such a case, these two key records are both required for retrieving the data.
    Identical bank codes are used in many countries. If you need to print the name of a specific bank, you need to link it to a relevant country, in addition to its relevant bank code.
    You are currently working on a print template for Incoming Payments. However, you need to retrieve data (such as the business partner's bank name) linked to the key record Bank Code from the Bill of Exchange for Payment table, rather than from the Incoming Payments table.
    In the Relate to field, select the unique ID of the field containing the required key record. In this example, this is a Text field of Database source type containing Bill of Exchange for Payment in the Table field and BP Bank Country in the Column field. The drop-down list contains the unique IDs of all the fields that are situated in the same area as the current field.
    This link makes the system retrieve the Bank Code linked to the BP Bank Country field found in the Bill of Exchange for Payment table.

  • URL access rights of a partner application for different user groups

    I have deployed an application in OC4j_Portal, enabled the SSO feature by doing the required entry in mod_osso file.
    Now I want a certain group of users to be able to access the URL of my application and not the others.
    Right now every valid user of the OID can access it.
    How should i restrict the access?

    If this is a Portal application you could define the access in Portal. Otherwise you might need to change your code and check if the logged in user is a member of the group you want to grant the access.
    Otherwise a custom LoginManager might solve your problem (JAAS). Check out http://www.oracle.com/technology/products/jdev/howtos/10g/jaassec/index.htm
    cu
    Andreas

  • Purchasing Analysis - By material Group

    Hi MM Gurus,
    Could you please give me some reports where I could analyse Purchasing Information based on Material Groups?
    Cheers
    Deepal

    Dear Deepal,
    Please try MCE5 i think it can solve your purpose.
    Regards,
    Manish Jain

  • Performing Top-n Analysis (but per group)

    The Oracle University Guide SQL Volume 2 says:
    To perform Top-n Analysis the general syntax is
    SELECT [column_list], ROWNUM
    FROM (SELECT [column_list]
    FROM table
    ORDER BY Top-N_column)
    WHERE ROWNUM <= N;
    for example
    To display the top three earner names and salaries
    from the EMPLOYEES table.
    SELECT ROWNUM as RANK, last_name, salary
    FROM (SELECT last_name,salary FROM employees
    ORDER BY salary DESC)
    WHERE ROWNUM <= 3;
    or to display the four most senior employees in the company.
    SELECT ROWNUM as SENIOR,E.last_name, E.hire_date
    FROM (SELECT last_name,hire_date FROM employees
    ORDER BY hire_date)E
    WHERE rownum <= 4;
    but what about if I have groups? for example if I want to display the 3 top earners per department?
    In my case now
    I want to fetch the top 4 items per category, with the biggest quantity (posothta)
    SELECT ROWNUM as RANK,
    H.KATHG_EIDOYS,
    H.KATHG_EIDOYS_DESCR,
    H.EIDOS,
    H.EIDOS_DESCR,
    H.CODE_SUP_BASIKOS_NAME,
    H.RAFI_CODE,
    H.LINES,
    H.POSOTHTA
    from (
    SELECT B.KATHG_EIDOYS,
    D.DESCRIPTION KATHG_EIDOYS_DESCR,
    B.CODE EIDOS,
    B.DESCRIPTION EIDOS_DESCR,
    S.NAME CODE_SUP_BASIKOS_NAME,
    C.RAFI_CODE,
    COUNT(A.FLD_SEQ_NUM) LINES,
    nvl(SUM(decode(k.INV_APOGRAFH_FLAG,'0', decode(k.INV_EXAGOGH_POSOTHTA,1, a.POSOTHTA_TIMOLOGHSHS,2,-a.POSOTHTA_TIMOLOGHSHS))),0) POSOTHTA
    FROM ERP_EIDOI_ANA_RAFI C,
    ERP_KODIKOI_KINHSHS K,
    ERP_POLHSEIS_DETAILS A,
    ERP_SUP_CUST S,
    ERP_KATHG_EIDON D,
    ERP_EIDH b
    WHERE B.COMPANY = DECODE(1,1,'9',B.COMPANY)
    AND a.COMPANY_KK=K.COMPANY
    AND a.KK_CODE=K.CODE
    and A.company_WAREHOUSE = c.COMPANY_WARE(+)
    and A.MASTER_WAREHOUSE = c.MASTER_WARE_CODE(+)
    and A.CODE_WAREHOUSE = c.DETAIL_WARE_CODE(+)
    and A.COMPANY_EIDOS = c.COMPANY_EIDOS(+)
    and A.EIDOS = c.CODE_EIDOS (+)
    AND C.DEFAULT_FLAG (+)= 1
    AND b.code = a.EIDOS
    and b.company = a.COMPANY_EIDOS
    AND D.CODE= B.KATHG_EIDOYS
    AND D.COMPANY= B.COMPANY_KATHG_EIDOYS
    AND B.COMPANY_SUP_BASIKOS = S.COMPANY
    AND B.CODE_SUP_BASIKOS = S.CODE
    AND B.PROMHTHEYTHS_FLAG_BASIKOS = S.PELATHS_PROMHTHEYTHS_FLAG
    AND /*&p_where*/
    a.COMPANY='9' and (a.group_source) = '10' and (A.MASTER_WAREHOUSE) = '01' and (A.CODE_WAREHOUSE) = '0101' and (a.hmerom_parast) >= to_date('01/01/2006','dd/mm/rrrr') and (a.hmerom_parast) <= to_date('25/05/2006','dd/mm/rrrr')
    GROUP BY B.KATHG_EIDOYS, D.DESCRIPTION, B.CODE, B.DESCRIPTION, S.NAME,C.RAFI_CODE
    ORDER BY 8 DESC
    ) H
    where 1=1 and ROWNUM <= 4
    this select does not bring me the desired results, because if for example
    category 01 has 10 items
    and category 02 has 2 items,
    this select will bring me only the first four rows
    and not the items from the 02 category.
    If you understand what is the case I will wait for your replies.
    Thanks in advance

    Hi,
    Here is an example. It gives you customers ids with highest salary per department.
    SELECT CUSTOMER_ID, SALARY, RANK, DEPARTMENT
    FROM (SELECT CUSTOMER_ID, SALARY, DEPARTMENT,
    RANK() OVER (PARTITION BY DEPARTMENT ORDER BY SALARY DESC) AS RANK
    FROM TABLEA)
    WHERE RANK < 2;
    Peter D.

  • Sales Analysis with Customer Group Name

    Hi,
    Just want to know whether anyone knows how to add the Customer Group Name in SAP Standard Sales Analysis Report?
    I have tried to add in Sales Analysis layout designer, but the value reflected is not correct. E.g. when my customer group criteria is Retail group, but the report layout printed out is Corporate group.
    In layout designer, my source type = database, table = card groups, column = group name. Thanks.
    Regards,
    MH

    I have checked that Sales Analysis Report by Customer - Monthly and by Invoices - by Individual Display should be ok to bring the right group name based on your selection if you put the new field in the right place. (source type = database, table = card groups, column = group name)
    Where do you create this field? What is your B1 version and PL?
    Thanks,
    Gordon

  • Application Express 4.1 Grouping prohibitations use

    Hello everyone,
    I am a student from Holland and I have to work with Apex for my school. I've been working with apex for about a month now. I think it's a great program development environment.
    Here's the thing I've been going a little crazy about, I could not find it anywhere, and some tutorials that I did find useful seem to be outdated(not sure about this, it just looks that way).
    So now I have no choice but then to ask the community for help.
    My problem:
    I can make groups and users in Apex. I've put some users in a group called: 'Leveranciers'. I want users that are in 'Leveranciers' to be blocked
    from certain pages in the application (they may not access all the pages, only certain pages).
    But I can't find out how to do this, I can't find a way in Apex to make this happen. I don't know where I should look. I tried a lot with security but I just can't figure it out.
    I'm sure this should be possible in Apex.
    Thank you for reading! I really hope you can help me.
    Yours truly,
    Milad

    938118 wrote:
    I am a student from Holland and I have to work with Apex for my school. I've been working with apex for about a month now. I think it's a great program development environment.
    Here's the thing I've been going a little crazy about, I could not find it anywhere, and some tutorials that I did find useful seem to be outdated(not sure about this, it just looks that way).
    So now I have no choice but then to ask the community for help.
    My problem:
    I can make groups and users in Apex.Using built-in APEX users/groups/authentication?
    I've put some users in a group called: 'Leveranciers'. I want users that are in 'Leveranciers' to be blocked
    from certain pages in the application (they may not access all the pages, only certain pages).
    But I can't find out how to do this, I can't find a way in Apex to make this happen. I don't know where I should look. I tried a lot with security but I just can't figure it out.
    I'm sure this should be possible in Apex.Create an Authorization Scheme based on the <tt>APEX_UTIL.CURRENT_USER_IN_GROUP</tt> API function and apply it to the restricted pages.

  • Server application hangs while editing Group/Service Access

    From a clean installation of Mac OS X 10.8 Server, I enable Messages and Open Directory Services, go to create a new group, add some users to it, then click "Edit Access to Services...". The Server application then hangs indefinitely. Any ideas why this might be?

    https://discussions.apple.com/thread/4221347
    This worked for me

  • Redistributing Application to Distribution Point Group

    Hey Guys - 
    Just a quick question for you about something I've never been 100% sure about and wanted to clear up...
    Let's say I have an "Application" in which I've added files to the source folder which is required by the script the application runs.  After adding the file, I need to update it's distribution on all 3 of my distribution points (which all
    happen to be in a DP Group.)  Which of the following methods will accomplish this or is the preferred method?  
    1. Select Application in console, choose "Deployment Types" tab, right click on type I want to update and choose "Update Content"
    2. Open Application's Properties, choose "Content Locations" tab, select the Distribution Group (which contains all 3 DPs) and click "Redistribute"
    3. Open Application's Properties, choose "Content Locations" tab, select each of the 3 distribution points and choose to "Redistribute" to each one of them
    Below is what my Content Locations looks like when distributed to all 3 DPs.  As is was distributed to the group containing all 3, it lists the group and the 3 DPs for a total of 4 objects.  Which of the above methods (or a different one) is the
    best way to go?
    Thanks!
    Ben K.

    Option #1
    http://eskonr.com/2013/09/sccm-configmgr-2012-how-do-i-refresh-the-application-after-change-in-source-files-or-source-location/
    Benoit Lecours | Blog: System Center Dudes

  • Application adding '\' to the group filter

    Hi,
    We have two groups created in Oracle Internet Directory server.here are the details
    cn=user_group_1,cn=organisation,cn=groups,dc=oracle,dc=com
    cn=user_group_2,cn=organisation,cn=groups,dc=oracle,dc=com
    we are using the below configurations from our portal to pull the users from the above two groups,but we couldn't do that.
    Group Path = cn=organisation,cn=groups,dc=oracle,dc=com
    Group scope = SUB_TREE
    Group Filter = (cn=user_*)
    I am getting an error with above configurations and error message saying that "Please make sure Group path is correct".But the Group path is correct.Our LDAP admin said that my portal itself adding '\' to the group filter.
    Below is the request comes to LDAP server.
    ldapsearch -h ldap_server_name -p 636 -U 1 -b "cn=organisation,cn=groups,dc=oracle,dc=com" "(&(objectclass=groupofuniquenames)(cn=user\_*))"
    Please let us know how can i remove this '\' at portal level (or) how can i handle at LDAP server level.
    Thanks in Advance.
    Regards,
    Laxman

    It seems that it is not allowing _ .
    Whenever some special characters comes then it add \ in front of it.
    It happens in OIM but that is Java so we can handle.
    Escape character before dot in dn entry after OID provisioning
    I don't know how request are coming to portal. You can see the link below. It may help you.
    http://docs.redhat.com/docs/en-US/Red_Hat_Directory_Server/8.2/html/Administration_Guide/Finding_Directory_Entries-Using_ldapsearch.html

  • Client/Server Application Analysis & Design

    Dear All
    It is the first time to use java forums & post a topic in it .I'll not talk too much
    the problem is that i am new to java and but i have previos knowledge with c++
    and i want to develop a good project injave to be good start & practice
    i chosed to have an chat server but i have bad knowledge in Analysis & design so i would to ask U to help me in that Step by Step or guide me
    thank U very much
    [email protected]

    reply #1 maybe,
    http://forum.java.sun.com/thread.jsp?forum=31&thread=287509&start=0&range=100#1126819

  • Analysis report on the basis of Planner group

    In the existing analysis of Planner group using MCI4, is it possible to add Notification type in the drill down.
    I required to do the analysis on the basis of Notification type also. And if it is possible to add Notification type to the Planner grp, my analysis report is get fitted in the Standard report, otherwise I have to prepare the Z-Report.
    Thanks in advance

    Hi,
        Please check this detailed link Modify T-Code MCI4 Report
    I think in ur case while doing statistical set up running programme RIPMS001 is enough ..
    regrds
    pushpa

  • Uninstall deployment for an AppV5 application with Connection group fails if using a User Collection but works on Machine Collections.

    Hi,
    I'm having troubles to understand why my application in AppV5 that was sequenced with "MS. AppV Sequencer SP1" is somehow failing to be uninstalled properly only if this on is deployed with a
    User collection but on the other hand the same application installs & uninstalls perfectly if its deployed using a
    Machine collection? 
    Here is an extract of the Appenforce.log:
    Remove-AppvClientPackage : Operation failed because package belongs to a
    connection group on the machine. Please ensure that package does not belong to
    any connection groups.
    Operation attempted: Remove AppV Package.
    AppV Error Code: 020000050C.
    Please consult AppV Client Event Log for more details.
    Au caractŠre Ligne:1 : 106
    + import-module 'C:\Program Files\Microsoft Application
    Virtualization\Client\Appv ...
    + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
    ~~~
        + CategoryInfo          : InvalidResult : (:) [Remove-AppvClientPackage], 
       ClientException
        + FullyQualifiedErrorId : RemovePackageError,Microsoft.AppV.AppvClientPowe
       rShell.RemoveAppvPackage
    I know that SCCM 2012 does not uninstalls application prerequisites unless they are targeted by their individual uninstall collection or script an uninstall procedure on the main application. But if I try using the Machine collection the error is not appearing
    and the main application is removed and the Prereq will be left behind without causing any trouble at all !! 
    So my question is: Why an APPV5 application with a connection group should be pushed in a Machine context ?
    Notice that I already tried to do the troubleshooting to remove the application manually with PowerShell.
    - set-executionpolicy unrestricted
    - Import-Module AppvClient
    - Get-AppvClientPackage -Name PackageName*
    - Unpublish-AppvClientPackage $PackageName
    - Remove-AppvClientPackage $PackageName
    And actually it was removed but the problem started again if I tried to re-install /remove the application.
    Will really appreciate your comments.
    Kind Regards.
    Joel E.G.

    Hi Paul,
    To be honest we already experienced many troubles after the SCCM console was migrated from R1 to R2, SCCM client was updated too in consequence, but our AppV5 client still remains on SP1.
    I'm afraid that any application that uses Connections Groups will have to be pushed on a Machine context and I just wanted to really understand more about this subject of why it was working that way and not by User is there something I missed with (Run Virtual)
    that for any reason is not perfectly implemented to run on a user context?
    Any way, we will be testing AppV5 Client SP2 really soon because we have no choice.
    Regards,
    Joel EG

  • Assign Logon Groups by Application Workgroup

    Hello.
    The following link on help.sap.com suggests that application workgroups can be assigned to logon groups.
    http://help.sap.com/saphelp_nw2004s/helpdata/EN/c4/3a64c1505211d189550000e829fbbd/frameset.htm
    But, it does not go into how this is done and does not provide any links to related materials.
    How is the assignment of application workgroups to logon groups set? 
    Or does this simply assume that different groups get different saplogon.ini entries?
    In the mean time, I will keep looking.  Thank you.

    Hi
    Please see if the following link is of some good to you.
    http://help.sap.com/erp2005_ehp_04/helpdata/EN/5a/3bee11b93b440bb1d8bc4473e82528/frameset.htm
    or
    http://help.sap.com/erp2005_ehp_04/helpdata/EN/f3/795a421b5ec153e10000000a1550b0/frameset.htm
    Regards
    Chen

  • Webdynpro application group not visible in Portal

    Dear All,
    I have a webdynpro for java application in my portal and being used by nearly 70000 employees.
    Strange issue: 1 of the employee in the application cannot see the group UI element in the Bottom of the page, though I had not made it  invisible or anything. All others could perfectly see all parts of the UI.
    After much investigation and failure, I deleted the Userid and made his ID again, to my astonishment, the problem was solved.
    Did anyone experience this issue and can explain how and why did this happend???
    Ankur

    Hi Ankur,
    The user might have selected the "Remove from Page" option from the menu of the iview on the right hand side. We had the same problem and realised about this after a while. It mus have been the same issue.
    I hope this helps.
    Regards,
    Gopal.

Maybe you are looking for