Problem with Approval Group

Hi!
I have created an approval group using 3 Single Tiers.
When i run the process, and it is in the first tier, the first participant 'Reject' the task (I'm using an interface with ADF). After this, the process instance should finish, but, it continues the approval flow. Is that correct? I think that if the first participant reject the task, the approval flow should finish, isn't it?
Thanks for your attention.
Silvana :)

Hi!
I have created an approval group using 3 Single Tiers.
When i run the process, and it is in the first tier, the first participant 'Reject' the task (I'm using an interface with ADF). After this, the process instance should finish, but, it continues the approval flow. Is that correct? I think that if the first participant reject the task, the approval flow should finish, isn't it?
Thanks for your attention.
Silvana :)

Similar Messages

  • Problem with checkbox group in row popin of table.

    In table row popin I have kept Check Box Group.I have mapped  the texts property of checkbox group to the attribute which is under the subnode of the table.the subnode properties singleton=false,selectioncardinality=0-n,and cardinality=0-n.
    if there are 'n' number of records in the table.each record will have its own row popin and in the row popin there is check box group.
    the check box group in the row popin  belongs to that perticular row.
    but the checkboxegroup values in row popins of all the  rows are getting changed to the row which is lead selected.
    The same scenario  (table in the row popin is showing the values corresponding to its perticular row and all the table values in popin are not getting changed to the one lead selected in the main table)is working fine with the table in place of  checkbox group in row popin with datasource property of table  binded to the subnode
    I cant trace out the problem with checkbox group in place of table.
    Please help me in this regard.I have to place check box group in place of table in row popin.
    Thanks and Regards
        Kiran Kumar K

    I have done the same thing successfully with normal check box ui element. Try using check box in your tabel cell editor instead of check box group.

  • Strange Problem with Code Groups / Codes

    Hey all, have a strange problem with Code Groups and Codes.
    Our data migration team accidentally loaded an early version of our catalog (code groups and codes) in to our 'Gold' configuration client. They then proceed to delete them all via transaction qs41. However, the code groups have been deleted, but not the codes.
    So, basically, no codes groups exist in table QPGR or QPGT but all the entries remain in QPCD with the assigment to code groups. The usage indicator is not set on the codes so why they did not get deleted with the codes groups is unknown.
    The issue that this is now causing us is that we can't recreate the codes groups with these codes assigned as the system thinks they already exist (via a check on table QPCD i would expect).
    Also, i have been unable to recreate what happened did in other clients... seems very strange.
    Any help appreciated.
    Cheers

    Ben,
    You could try SE11, and see if you can delete the records from there.. but I'm not hopeful...
    Otherwise you may need to write a quick ABAP program to delete the data base entries.
    PeteA

  • Problems with dinamic group

    I migrate the messaing (6.1) and directory(5.2), in the directory migrate the user and group, but i have problems with a group, i send a mail and the user who have menbers no send the mail, and retunt the mail .... and said
    Direcci�n del destinatario: [email protected]
    Motivo: you are not allowed to use this list: [email protected]
    it a dinamic group

    Your group must have a restriction on it, that only certain users are allowed to send to the group. If you are not on that list, then you will be prevented from sending to the group/list.
    Why don't you examine the ldap entry for the group, and see what's in there?

  • Problems with Approving Content

    I have a problem when a person posts or edits content must be approved.
    The other persons don't get a notifaction that content have to be approved.
    And if the admin looks on the page and uses the approvement portlet there is nothing to approve.
    In addition the content (i used normal textitem) can't be edited by anyone other.
    Do i have to add the persons which should do the approvement to special groups or roles? Is there anything what i have to pay attention on?
    Hope anyone can help and sry for my english.

    hi,
    As far as I know, for approval process to be run successfully, setup is required at the very start.
    1. Under page group [Configure] tab, tick the [Approval and Notifications] checkbox.
    2. Under [Approval] tab, design your approval workflow, ie. who will be the approvers and in what sequence.
    3. Create a page under the same page group.
    4. Under [Access] tab of the page, add users who can add/update contents to the page with "Manage items with Approval" privilege.
    5. Add the "Edit" link on the page for the authorized users.
    6. Add "My Notification" portlet for approvers so that they can be notifiied if any request of approval is outstanding.
    That is what I do now.
    Thanks
    George (HK)

  • Problem with multiple group functions

    Hello Everyone...
    I have a huge problem with trying to create a report.
    Here is the situation:
    1. I have a database that registers certain events for units. Each event is stored in a separate register.
    2. There is a specific code that the units have that I need to identify their origin, because they must be grouped by origin. The origin is identified by the first digit of the code. This code only appears in the events that occur after production.
    3. Before that, an order number is used to identify the events.
    4. What I need is to identify the time difference between two specific events, and get the following: average, standard deviation, count, and level of service. The level of service is the percentage of units in which the difference was no higher than the average plus the standard deviation.
    I managed to create a query that does that, but it is too slow.
    Since I can't reveal my code, I will try to explain in words what I did:
    1. I created two almost identical queries that obtain the event information I need. The first one obtains the information of the event that occurs the earliest. (let's call this queries 1 and 2)
    2. As this is supposed to be a generic query that only needs to be modified for different events, it contemplates the case that the event is before production and does not include the specific code I mentioned earlier. So I created another query that uses the order number and looks for a (later) production event to obtain that code. (let's call this query 3).
    3. Then I obtained count, standard deviation and average for the difference between events.
    4. Then, for the service level, I had to create an outside query that again uses queries 1, 2, and 3 because it needs the information of individual units to calculate it. So here is the structure of my query, using some pseudocode (I'm not revealing any actual code):
    Select (averagestd.origin, average, stddev,
    sum(case
    when abs(q2.vehicle_event_dt - q1.vehicle_event_dt -
    average) <= stddev then
    1
    else
    0
    end) / count service_level from
    (select q1.origin,
    avg(q2.vehicle_event_dt -q1.vehicle_event_dt),
    stddev(q2.vehicle_event_dt - q1.vehicle_event_dt),
    count(*) from
    (select {event data} from query1, query3 where
    query1.order_number = query3.order_number) q1,
    (select {event data} from query2, query3 where
    query1.order_number = query3.order_number) q2
    where q1.order_number=q2.order_number) avgstd,
    (select {event data} from query1, query3 where
    query1.order_number = query3.order_number) q1,
    (select {event data} from query2, query3 where
    query1.order_number = query3.order_number) q2
    where q1.order_number = q2.order_number and
    q1.origin = avgstd.origin
    The database is huge and it's taking too long to run it.
    Do you have any idea on how can I optimize this query?
    All the information in all queries comes from the same table.
    Thank you very much for your help.
    Eduardo Schnadower

    Okay, so my report is set up as above with 4 groups
    group 1 group code
    group 2 sub group code
    group 3 customer code
    group 4 product code
    what i need to be able to do is select the sub group total and run a sub report to display the products total for that sub group and then the same for group, run a report from the group total to show the products which make up that group total. Is there any other way to acheive this?
    Cheers Paul

  • Photoshop Actions: Problem with layer groups

    I have recorded several photoshop actions with multiple adjustment layers in layer groups. They work perfectly fine, as long as I do not run a second action with a layer group in it.
    As soon as I run a second action with layer groups, the layer order is completely random and messed up. How can I avoid this problem?

    Best practices: Usage
    Supply pertinent information for quicker answers
    The more information you supply about your situation, the better equipped other community members will be to answer. Consider including the following in your question:
    Adobe product and version number
    Operating system and version number
    The full text of any error message(s)
    What you were doing when the problem occurred
    Screenshots of the problem
    Computer hardware, such as CPU; GPU; amount of RAM; etc.

  • Bid  Inv created as followon doc problem with Approval

    Issue: For bid invitations created as a follow on document from sourcing cockpit, the is a problem with the approval.
    As soon as it is published, the bid invitation goes to the first approver. When the approver approves it, the bid invitation is still in his inbox.
    Cindy Sy

    Hi,
      See if the foll notes help:
    972265
    958526
    975784
    945418
    BR,
    Disha.
    Pls reward points for helpful answers.

  • Strange problems with iCal group calendar

    Hi,
    I got some strange problems with group calendar. They are evil so that we may decide to throw it away because under this cirumstances it's not usable for our company.
    1) If we add events running more than one week in webcalendar, we can see it in the actual week, but not in the following weeks.
    2) The webcalendar seems to be 2 hours in the future, we cannot find how to change time zone or whatever. We can see, that we added a new event at 4pm, in the list of recent changes we see that this event was added at 6pm.
    3) In the Wiki we can see the usernames in the list of recent changes, but in calendar there is only unknown. But there are no anonymous users, only named users within these group.
    Any idea?
    Thanks
    Rene

    If I hadn't been using iCal/Google Calendar for over 18 months, with reminders from both systems playing nicely over that period, I'd happily agree with you. The issue with Reminders only began (for me, at least) in February this year. I agree that there's potential for conflict, and maybe both sets of developers finally threw in the towel. This is a pity, because I like both systems, but I feel slightly irritated at being effectively told by Google or Apple that I have to choose sides.

  • Problem with Approve & Reject buttons text

    Hi Team,
    Once we have configured UWL in EP 7.0 & backed is SRM 7.0, facing problem in Approve & Reject Buttons text.
    Instead of showing Approve & Reject text on Buttons, it showing text like this  com.sap.pct.srm.core.action.oldwfl.approve  & com.sap.pct.srm.core.action.oldwfl.reject
    Can you please help me on this?
    Thanks in advance.
    Thanks & Regards
    Sandeep.

    Sergio, Thanks for your reply.
    It's happening for all the task items. Pls find out XML file here. here i pasted some of the code from my XML, because it is not taking full XML code here.
          <Action name="com.sap.pct.srm.core.action.oldwfl.approve" groupAction="" handler="FunctionModuleActionHandler" referenceBundle="com.sap.pct.srm.core.approve" returnToDetailViewAllowed="yes" launchInNewWindow="SHOW_HEADERLESS_PORTAL" launchNewWindowFeatures="toolbar=no,menubar=no,location=no,directories=no,resizable=yes">
          <Properties>
            <Property name="FunctionModule" value="/SAPSRM/FU_WF_RFC_DECISION"/>
            <Property name="IV_DECISION" value="APPROVED"/>
            <Property name="IV_APF_VERSION" value="0500"/>
            <Property name="IV_WIID" value="${item.externalId}"/>
            <Property name="IV_MODE" value="APPROVAL"/>
            <Property name="FunctionModule" value="/SAPSRM/FU_WF_RFC_DECISION"/>
            <Property name="display_order_priority" value="50"/>
          </Properties>
        </Action>
        <Action name="com.sap.pct.srm.core.action.launchWD.conf.detail" groupAction="" handler="ObjectNavigationLauncher" referenceBundle="com.sap.pct.srm.core.launch.WDCLFPOIF" returnToDetailViewAllowed="yes" launchInNewWindow="SHOW_HEADERLESS_PORTAL" launchNewWindowFeatures="toolbar=no,menubar=no,location=no,directories=no,resizable=yes">
          <Properties>
            <Property name="Operation" value="detail"/>
            <Property name="ObjectValue" value="a=b&amp;sapsrm_botype=${item.BOTYPE}&amp;sapsrm_boid=${item.BOID}&amp;System=${item.systemId}&amp;sapsrm_wiid=${item.externalId}&amp;sapsrm_mode=${item.BOMODE}&amp;sapsrm_portalbaseurl=&lt;Portal.BaseURL>&amp;sapsrm_pcdlocation=&lt;IView.ID>"/>
            <Property name="ObjectName" value="conf"/>
            <Property name="System" value="SAP_SRM"/>
            <Property name="display_order_priority" value="30"/>
          </Properties>
        </Action>
        <Action name="com.sap.pct.srm.core.action.launchWD.oldwfl.conf.display" groupAction="" handler="ObjectNavigationLauncher" referenceBundle="com.sap.pct.srm.core.launch.WDCLFPOIF" returnToDetailViewAllowed="yes" launchInNewWindow="SHOW_HEADERLESS_PORTAL" launchNewWindowFeatures="toolbar=no,menubar=no,location=no,directories=no,resizable=yes">
          <Properties>
            <Property name="Operation" value="detail"/>
            <Property name="ObjectValue" value="a=b&amp;sapsrm_botype=BUS2203&amp;System=${item.systemId}&amp;sapsrm_wiid=${item.externalId}&amp;sapsrm_mode=DISPLAY&amp;sapsrm_portalbaseurl=&lt;Portal.BaseURL>&amp;sapsrm_pcdlocation=&lt;IView.ID>"/>
            <Property name="ObjectName" value="conf"/>
            <Property name="System" value="SAP_SRM"/>
            <Property name="display_order_priority" value="30"/>
          </Properties>
        </Action>
        <Action name="com.sap.pct.srm.core.action.launchWD.OldWFL" groupAction="" handler="ObjectNavigationLauncher" referenceBundle="com.sap.pct.srm.core.launch.WDCLFPOIF" returnToDetailViewAllowed="yes" launchInNewWindow="SHOW_HEADERLESS_PORTAL" launchNewWindowFeatures="toolbar=no,menubar=no,location=no,directories=no,resizable=yes">
          <Properties>
            <Property name="Operation" value="oldwfl"/>
            <Property name="ObjectValue" value="a=b&amp;System=${item.systemId}&amp;sapsrm_wiid=${item.externalId}&amp;sapsrm_portalbaseurl=&lt;Portal.BaseURL>&amp;sapsrm_pcdlocation=&lt;IView.ID>"/>
            <Property name="ObjectName" value="uwl"/>
            <Property name="System" value="SAP_SRM"/>
            <Property name="display_order_priority" value="30"/>
          </Properties>
        </Action>
        <Action name="com.sap.pct.srm.core.action.launchWD.conf.display" groupAction="" handler="ObjectNavigationLauncher" referenceBundle="com.sap.pct.srm.core.launch.WDCLFPOIF" returnToDetailViewAllowed="yes" launchInNewWindow="SHOW_HEADERLESS_PORTAL" launchNewWindowFeatures="toolbar=no,menubar=no,location=no,directories=no,resizable=yes">
          <Properties>
            <Property name="Operation" value="detail"/>
            <Property name="ObjectValue" value="a=b&amp;sapsrm_botype=${item.BOTYPE}&amp;sapsrm_boid=${item.BOID}&amp;System=${item.systemId}&amp;sapsrm_wiid=${item.externalId}&amp;sapsrm_mode=DISPLAY&amp;sapsrm_portalbaseurl=&lt;Portal.BaseURL>&amp;sapsrm_pcdlocation=&lt;IView.ID>"/>
            <Property name="ObjectName" value="conf"/>
            <Property name="System" value="SAP_SRM"/>
            <Property name="display_order_priority" value="30"/>
          </Properties>
        </Action>
    Thanks & Regards
    Sandeep.

  • Problem with dynamic group

    I am running iPlanet process manager 6 SP3. There is an approval group imported from corporate LDAP in an Application, which is running in production mode.
    I have added a new member into this approval group in LDAP, but it appears that this change was not applied in the process? Does process manager perform a real time look up into the LDAP? If not, how long will it take to refresh the role/group infos? or Do I have to restart the app server to refresh the role/group infos?
    Thanks!

    How do I handle this?

  • Problems with webtop groups and/or replication

    Hi,
    i use sgd 4.2 (4.20.909) with to array members. I have the Problem, that the webtop group informations get lost every few hours. And the Users have to set it up again. We have over 1.500 Applications and over 1.500 Servers integrated in our ens. The only error message i get is:
    2006/09/29 17:06:03.675 (pid 1927) server/replication/error #1159542363675
    Sun Secure Global Desktop Software (4.2) ERROR:
    There was no response from the server itosgdapp2p.hn.tds.de after
    300000 milliseconds during synchronization of the
    namespace "diskens".
    Replication with itosgdapp2p.hn.tds.de will not operate.
    Check the server itosgdapp2p.hn.tds.de and restart it if necessary.
    2006/09/29 17:06:03.695 (pid 1927) server/replication/error #1159542363695
    Sun Secure Global Desktop Software (4.2) ERROR:
    There was no response from the server itosgdapp2p.hn.tds.de after
    300000 milliseconds during synchronization of the
    namespace "views".
    Replication with itosgdapp2p.hn.tds.de will not operate.
    Check the server itosgdapp2p.hn.tds.de and restart it if necessary.
    Could this be the problem? Can I increase the timeout value for synchronization?
    Thanks for help
    Regards
    Lukas

    I cannot give a direct answer since I haven't been across this problem, therefor I have some questions.
    <quote>
    i use sgd 4.2 (4.20.909) with to array members. I
    <quote>
    Is this a typo and should be 'with two array members' ?
    You state that you have over 1.500 Applications and over 1.500 Servers. How is the use of these applications. How many concurrent users are connected.
    Does the same error exist when seperating the two zones over two systems?
    What does '/opt/tarantella/bin/tarantella config list --array-resourcesync' state?
    From the manual:
    Resource Synchronization
    --tuning-resourcesynctime time
    At what time to start resource synchronization each day, if enabled for the array.
    Use the server's local time zone.
    Express the time in 24-hour clock format, for example "16:00 for 4pm.
    Changes to this attribute take effect immediately.

  • Problems with re-grouping - subtotals and pagebreaks do not work

    I'm trying to create a report with all of my grouping in the template as opposed to the data definition. I've copied a simplified version of my code and xml below.
    I'm having two issues:
    1. The pagebreaks are not working. For every change in pagebreak_seg, second_seg, or third_seg there should be a pagebreak.
    2. The subtotalling isn't working. At each grouping level, I'm using sum(current-group()/...) to capture a subtotal at the new level. It worked the first 3 times (for Account_seg, Cat3 and Third_Seg, but stopped working at Second_seg. The second_seg keeps appearing after each Third Seg and has the same values rather than appearing at the end of the final Third Seg that falls within the Second_seg. Is there a limit to how many times I can do this, or have I got an error in here somewhere.
    I can email the xml and the template if that would be more helpful.
    Thanks very much for your help.
    What I'm expecting to see.
    1st Page
    entity: 001 My Department
    program: 72020 Financial Services
    organization: 160013 Human Resource Functions
    account 540300 desc and subtotals
    Subtotal these amounts under category of Travel
    account 522200 desc and subtotals
    Subtotal these amounts under category of Supplies and Services
    Subtotal for Human Resource Functions
    pagebreak
    2nd Page
    entity: 001 My Department
    program: 72020 Financial Services
    organization: 160018 Org 1
    account 5254000 desc and subototals
    Subtotal these amounts under category of Supplies and Services
    Subtotal for Org 1
    Grand Total for Financial services
    Grand total for My department
    --excerpt from template
    <?start:body?>
    ##<?for-each:XXFIN_PSBE2_XML?>
    ####<?for-each:LIST_G_HEADER_PAGE?>
    ######<?H_TITLE?>
    ####<?end for-each?><?PageBreak?>
    ####<?for-each-group:G_REPORT;PAGEBREAK_SEG?>
    ######<?for-each-group:current-group();./SECOND_SEG?>
    ########<?for-each-group:current-group();THIRD_SEG?>
    ##########<?SEG_1_HEADER?>
    ##########<?PAGEBREAK_SEG?>
    ##########<?PAGEBREAK_DESC?>
    ############<?for-each-group:current-group();CAT3?>
    ##############<?for-each-group:current-group();ACCOUNT_SEG?>
    ################<?ACCOUNT_SEG?>
    ################<?ACCOUNT_DESC?>
    ################<?sum (current-group()/APRIL)?>
    ################<?sum (current-group()/VARIANCE_ACTUAL_FROM)?>
    ##############<?end for-each-group?>--account seg
    ##############<?CAT3_DESC?>
    ##############<?sum (current-group()/APRIL)?>
    ##############<?sum (current-group()/VARIANCE_ACTUAL_FROM)?>
    ############<?end for-each-group?>--cat3
    ##########<?THIRD_DESC?>
    ##########<?sum (current-group()/APRIL)?>
    ##########<?sum (current-group()/VARIANCE_ACTUAL_FROM)?>
    ##########<?split-by-page-break?>
    ########<?end for-each-group?>--third
    ########<?SECOND_DESC?>
    ########<?sum (current-group()/APRIL)?>
    ########<?sum (current-group()/VARIANCE_ACTUAL_FROM)?>
    ########<?split-by-page-break?>
    ######<?end for-each-group?>--second
    ######<?split-by-page-break?>
    ####<?end for-each-group?>--pagebreak
    ##<?end for-each?> XXFIN_PSBE2_XML
    <?end body?>
    --simplified xml
    <?xml version="1.0" encoding="UTF-8"?>
    <XXFIN_PSBE2_XML>
    <p_actuals_year>2006-07</p_actuals_year>......
    <LIST_G_HEADER_PAGE>
    <G_HEADER_PAGE>
    <H_RECIPIENT_NAME/>
    <H_TITLE>Monthly Account Detail Report</H_TITLE>
    <H_USERNAME>DOREY</H_USERNAME>
    <F_FOOTER>Test.</F_FOOTER>
    </G_HEADER_PAGE>
    </LIST_G_HEADER_PAGE>
    <LIST_G_WORKSHEET1_NAME>
    <G_WORKSHEET1_NAME>
    <WORKSHEET1_NAME>001E1-6 Department - 8272</WORKSHEET1_NAME>
    </G_WORKSHEET1_NAME>
    </LIST_G_WORKSHEET1_NAME>
    <LIST_G_WORKSHEET2_NAME>
    </LIST_G_WORKSHEET2_NAME>
    <LIST_G_REPORT>
    <G_REPORT>
    <REPORT/>
    <PERIOD_NUMBER>12</PERIOD_NUMBER>
    <SUM_SALARY_IND>N</SUM_SALARY_IND>
    <ENTITY_SEG>001</ENTITY_SEG>
    <ENTITY_DESC>Health</ENTITY_DESC>
    <SEG_1_HEADER>Entity:</SEG_1_HEADER>
    <SEG_2_HEADER>Program:</SEG_2_HEADER>
    <SEG_3_HEADER>Organization:</SEG_3_HEADER>
    <PAGEBREAK_SEG>001</PAGEBREAK_SEG>
    <PAGEBREAK_DESC>My Department</PAGEBREAK_DESC>
    <SECOND_SEG>72020</SECOND_SEG>
    <SECOND_DESC>Financial Services</SECOND_DESC>
    <THIRD_SEG>160013</THIRD_SEG>
    <THIRD_DESC>Human Resource Functions</THIRD_DESC>
    <CAT2>AC5100</CAT2>
    <CAT2_DESC>Goods and Services</CAT2_DESC>
    <CAT3>F50015</CAT3>
    <CAT3_DESC>Travel</CAT3_DESC>
    <ACCOUNT_PRECISION>54</ACCOUNT_PRECISION>
    <ACCOUNT_SEG>540300</ACCOUNT_SEG>
    <ACCOUNT_DESC>Accommodations &amp; Incidentals - In Province</ACCOUNT_DESC>
    <ACCOUNT_FUTURE_DESC>Accommodations &amp; Incidentals - In Province</ACCOUNT_FUTURE_DESC>
    <FUTURE/>
    <FUTURE_DESC/>
    <CURRENT_FORECAST_COLUMN>0</CURRENT_FORECAST_COLUMN>
    <APRIL>0</APRIL>
    <MAY>53</MAY>
    <JUNE>-53</JUNE>
    <JULY>0</JULY>
    <AUGUST>0</AUGUST>
    <SEPTEMBER>0</SEPTEMBER>
    <OCTOBER>0</OCTOBER>
    <NOVEMBER>0</NOVEMBER>
    <DECEMBER>0</DECEMBER>
    <JANUARY>0</JANUARY>
    <FEBRUARY>0</FEBRUARY>
    <MARCH>0</MARCH>
    <YTD_ACTUALS>0</YTD_ACTUALS>
    <BUDGET_YEAR_COLUMN>0</BUDGET_YEAR_COLUMN>
    <VARIANCE_ACTUAL_FROM>0</VARIANCE_ACTUAL_FROM>
    <PERCENT_SPENT_OF/>
    </G_REPORT>
    <G_REPORT>
    <REPORT/>
    <PERIOD_NUMBER>12</PERIOD_NUMBER>
    <SUM_SALARY_IND>N</SUM_SALARY_IND>
    <ENTITY_SEG>001</ENTITY_SEG>
    <ENTITY_DESC>Health</ENTITY_DESC>
    <SEG_1_HEADER>Entity:</SEG_1_HEADER>
    <SEG_2_HEADER>Program:</SEG_2_HEADER>
    <SEG_3_HEADER>Organization:</SEG_3_HEADER>
    <PAGEBREAK_SEG>001</PAGEBREAK_SEG>
    <PAGEBREAK_DESC>My Department</PAGEBREAK_DESC>
    <SECOND_SEG>72020</SECOND_SEG>
    <SECOND_DESC>Financial Services</SECOND_DESC>
    <THIRD_SEG>160013</THIRD_SEG>
    <THIRD_DESC>Human Resource Functions</THIRD_DESC>
    <CAT2>AC5100</CAT2>
    <CAT2_DESC>Goods and Services</CAT2_DESC>
    <CAT3>F50035</CAT3>
    <CAT3_DESC>Supplies and Services</CAT3_DESC>
    <ACCOUNT_PRECISION>52</ACCOUNT_PRECISION>
    <ACCOUNT_SEG>522200</ACCOUNT_SEG>
    <ACCOUNT_DESC>Rent of Photocopiers</ACCOUNT_DESC>
    <ACCOUNT_FUTURE_DESC>Rent of Photocopiers</ACCOUNT_FUTURE_DESC>
    <FUTURE/>
    <FUTURE_DESC/>
    <CURRENT_FORECAST_COLUMN>0</CURRENT_FORECAST_COLUMN>
    <APRIL>0</APRIL>
    <MAY>0</MAY>
    <JUNE>0</JUNE>
    <JULY>0</JULY>
    <AUGUST>0</AUGUST>
    <SEPTEMBER>25</SEPTEMBER>
    <OCTOBER>-25</OCTOBER>
    <NOVEMBER>0</NOVEMBER>
    <DECEMBER>0</DECEMBER>
    <JANUARY>0</JANUARY>
    <FEBRUARY>0</FEBRUARY>
    <MARCH>0</MARCH>
    <YTD_ACTUALS>0</YTD_ACTUALS>
    <BUDGET_YEAR_COLUMN>0</BUDGET_YEAR_COLUMN>
    <VARIANCE_ACTUAL_FROM>0</VARIANCE_ACTUAL_FROM>
    <PERCENT_SPENT_OF/>
    </G_REPORT>
    <G_REPORT>
    <REPORT/>
    <PERIOD_NUMBER>12</PERIOD_NUMBER>
    <SUM_SALARY_IND>N</SUM_SALARY_IND>
    <ENTITY_SEG>001</ENTITY_SEG>
    <ENTITY_DESC>Health</ENTITY_DESC>
    <SEG_1_HEADER>Entity:</SEG_1_HEADER>
    <SEG_2_HEADER>Program:</SEG_2_HEADER>
    <SEG_3_HEADER>Organization:</SEG_3_HEADER>
    <PAGEBREAK_SEG>001</PAGEBREAK_SEG>
    <PAGEBREAK_DESC>My Department</PAGEBREAK_DESC>
    <SECOND_SEG>72020</SECOND_SEG>
    <SECOND_DESC>Financial Services</SECOND_DESC>
    <THIRD_SEG>160118</THIRD_SEG>
    <THIRD_DESC>Org 1</THIRD_DESC>
    <CAT2>AC5100</CAT2>
    <CAT2_DESC>Goods and Services</CAT2_DESC>
    <CAT3>F50035</CAT3>
    <CAT3_DESC>Supplies and Services</CAT3_DESC>
    <ACCOUNT_PRECISION>52</ACCOUNT_PRECISION>
    <ACCOUNT_SEG>525400</ACCOUNT_SEG>
    <ACCOUNT_DESC>General -Telephone</ACCOUNT_DESC>
    <ACCOUNT_FUTURE_DESC>General -Telephone</ACCOUNT_FUTURE_DESC>
    <FUTURE/>
    <FUTURE_DESC/>
    <CURRENT_FORECAST_COLUMN>84</CURRENT_FORECAST_COLUMN>
    <APRIL>0</APRIL>
    <MAY>0</MAY>
    <JUNE>0</JUNE>
    <JULY>0</JULY>
    <AUGUST>0</AUGUST>
    <SEPTEMBER>0</SEPTEMBER>
    <OCTOBER>0</OCTOBER>
    <NOVEMBER>0</NOVEMBER>
    <DECEMBER>84</DECEMBER>
    <JANUARY>0</JANUARY>
    <FEBRUARY>0</FEBRUARY>
    <MARCH>0</MARCH>
    <YTD_ACTUALS>84</YTD_ACTUALS>
    <BUDGET_YEAR_COLUMN>0</BUDGET_YEAR_COLUMN>
    <VARIANCE_ACTUAL_FROM>0</VARIANCE_ACTUAL_FROM>
    <PERCENT_SPENT_OF>1</PERCENT_SPENT_OF>
    </G_REPORT>
    </LIST_G_REPORT>
    </XXFIN_PSBE2_XML>

    Additional info on the grouping problem:
    I tried removing the third_seg group and the second_seg group started working properly. I then deleted the second_seg group and the pagebreak_seg started working. So as long as I have only one level of grouping below cat3 the output is correct. Unfortunately I need those additional levels, so if anyone has any suggestions, I would really appreciate it.
    Alternately if someone knows of a sample with mutliple levels of grouping, I would appreciate a link. There was a link on the the BI Blog but it doesn't work any longer.
    Thanks for your help.

  • I-Procurement problems with approval hierarchy - Urgent!! Please help!

    Dear experts,
    I am having a number of problems in i-procurement (12.1.3). When creating a Requisitions in i-procurement on the screen when it arrives with the approval list, it has retrieved a personel who is not in the hierarchy list at all. (not using AME just employee hierarchy)
    I have checked the usual setting such as making sure the document type settings is correct and the position hierarchy for the position raising the requisition.
    In addition to this once proceeding with submitting the requisition the created time is completly wrong. It is displaying a date occuring in the past. And in the Justification field it has already been populated it appears that it has captured information from a previous requisition. Furthermore in the created by field it also displaying a name of a different user to the one I am currently using.
    I am out of ideas as to exactly what the problems is. Would appreciate if any I-procurement gurus can take a look at my issue.
    Thanks and Regards
    Ebsnoob

    That sounds like a feedback loop.
    Does the tone alter in pitch when you alter input and/or output levels or move your microphone?
    And have you checked your coreaudio device in *Logic Pro>Preferences>Audio* ? And your recording settings in *File>Project Settings* ?
    And how is your monitoring setup? Directly from the Presonus, or do you use *Software Monitoring* ?
    Does the tone stop when you hit Pause ?
    2nd possibility: a note event somewhere triggers a synth - but that would also happen in playback, so it is a long shot.... it does not happen in playback?
    regards, Querik.
    ps: the advantage of smashing up things is that then you are at least sure you can't fix it anymore. Better keep some broken stuff handy, because you'll regret smashing up working stuff.

  • Problem with Photomerge group

    Hi,
    I'm trying the photomerge group. When I have finished,I click on "Finished" and the I am back in the main menu with the original photos. Where is the merged one ???
    Thanks

    I, too, had some problems when using Photomerge Group Shot to demonstrate it when I was using version 11.  In versions 9 and 10 (using the exact same image file) I had a very neat merge.
    Last Saturday, it didn't line up nearly as well.
    Could this be a shortcomig in 11 when this "trick" was moved from the guided mode to the "Expert" mode?
    Mary Lou

Maybe you are looking for

  • OPEN PURCHASE ORDER

    DEAR ALL, WHETHER WE HAVE A STANDARD REPORT IN SAP TO GET QUANTITY AND VALUE DATA OF BACK DATED OPEN PURCHASE ORDER? PURCHASE ORDER HAS BEEN PREPARED IN JANUARY, DOWN PAYMENT IS MADE IN THE MONTH OF MARCH, MATERIAL IS RECEIVED (GRN MADE) IN AUGUST IN

  • How to open forms in separate Java Applet rather then Internet explorer

    Aslam o Alikum (Hi) I want to open my form in separate Java Applet rather then in Internet Explorer. Please help Best Regards, Nasir Zeeshan.

  • Can't unmount raid set

    After a RAID 1 setup on mac mini Lion Server, I decided I need to change partition table. Trying to delete the RAID set in recovery mode (booted from USB boot disk) the delete failed, the disks are listed as being "online". Booted into disk target mo

  • Photoshop Elements 9 Organizer doesn´t stop

    Hello, I have installed Photoshop elemenst 9. When I closed the organizer and I restart it, then the starting prozess close. In task manager I can see, that the prozess always works. When I closed the prozess manualy, PSE starts. What can I do, that

  • Re :- Forms Querying

    I have a tabular form with various fields. The data block property has an ORDER By and a WHERE clause. I now want to be able to query a field on the block preferably with a SELECT statement. How can I do this ?? I have tried the SET_BLOCK_PROPERTY bu