Confirmation - workflow approval agent change not reflected in BI Report

Hi Experts,
We have implemented SRM 5.0 and have enabled confirmations for POs and this is a classic scenario.
When a original approver for the confirmation approval workflow was subsititued by an another user, this information is not part of the BI reports. when I checked the document, there was no change document initiated due to the agent change in the workflow. Due to this the delta upload process for BI, is not uploading this information to the BI system for reporting.
If I run the full or regenerative mode, then the data is getting populated into the BI system. But I would like the delta process to pick it up.
1. please let me know how to enable the change document for a confirmation, even when the agent is changed in the workflow.
2. or if delta process to capture the agent changes within the workflow for confirmation.
Your help is much appreciated.
Vijay

Hi,
On Which Service Pack are you on?WAD has this feature of re arranging the keyfigures in BI 7.0 for SPS 14...
Regards,
Bhagyarekha.

Similar Messages

  • Custom report stored procedure changes not reflecting

    Hi,
    I have a custom report which works fine but now I want to do some changes in stored procedure. The stored procedure compiles successfully but the changes are not reflected in the report. Am I missing out something as I am assuming that once the stored procedure is saved, the changes must reflect immediately.
    Regards,
    Rahul Sharma

    I did some changes in the where clause to include few more input parameters and thats it. I have not changed anything else. Moreover, even if I try to introduce an error intentionally, OIM is not picking it up. Is there any other reference which I need to change?

  • SAP Portal changes not reflect in all the  servers without  reboot?

    Dear  SDN Members
    We have  one sap ep 7.0 eh1  main instance   and  4 other portal instances.every time  we tranport any  portal develpment work  such as epa packages, we need to restart all the instances to reflect the new changes.can you please suggest me
    a solution if  exists to avoid  bouncing of all instances when a portal development work is  transported.
    Why does the changes not reflect in all the servers without the reboot??
    Thanks
    Chandra

    Thanks for the quick response kenny, i wonder if we can configure any parameters in UME
    to avoid bouncing of all the instances. please let me know if you have any other suggestions.
    actually we have  a central portal instance and 4 other  portal servers connected  through a
    load balancer.Any tranport we move to central instance should refelect the changes in all
    other portal instances.But we need to restart all the instances to see the new changes.
    We are trying to find a solution if availbel which prevents server-restarts after each transport.
    Thanks
    Sekhar

  • Down Payment entries not reflecting in J1INMIS report

    Dear Guru's,
    TDS deducted at  the time of down payment made to vendor is not reflecting in J1inmis report.
    Is J1INMIS report does not reflect down payment entries?
    What will be the reason for this?
    Which alternative report to followed for J1INMIS !!!
    Waiting for your positive reply.
    Regards,
    Sany.

    Hi Sany,
    To update Business Place & Section Code, execute the program given below. After execution of the program run T.Code J1INPP and your issue should get resolved. Let me know if this works.
    Ask the Abaper to write the following Code & execute the program:
    REPORT  ZFI_BUP_SEC_CHANGE.
    TABLES : BSIK,BSAK,BSEG.
    parameters: PA_BELNR TYPE BSEG-BELNR OBLIGATORY,
                PA_BUKRS TYPE BSEG-BUKRS OBLIGATORY,
                PA_GAAHR TYPE BSEG-GJAHR OBLIGATORY.
    PARAMETERS : PA_BUPLA TYPE BSEG-BUPLA NO-DISPLAY,
                 PA_SECCO TYPE BSEG-SECCO NO-DISPLAY.
    PA_BUPLA = 'MUM'.                               (Note : Use the Business place & section Code Used
    PA_SECCO = 'MUM'.                                         in your company code).
    START-OF-SELECTION.
    PERFORM CHANGE_DATA.
    END-OF-SELECTION.
    *&      Form  CHANGE_DATA
          text
    -->  p1        text
    <--  p2        text
    FORM CHANGE_DATA .
    DATA : LT_BSEG TYPE TABLE OF BSEG WITH HEADER LINE,
           LT_BSIK TYPE TABLE OF BSIK WITH HEADER LINE,
           LT_BSAK TYPE TABLE OF BSAK WITH HEADER LINE.
    BSeg updation
    SELECT *
    INTO CORRESPONDING FIELDS OF TABLE LT_BSEG
    FROM BSEG
    WHERE BUKRS  = PA_BUKRS   AND
          GJAHR  = pa_gaahr   AND
          BELNR = PA_BELNR.
    LOOP AT LT_BSEG.
      IF LT_BSEG-BSCHL    = '25' OR LT_BSEG-BSCHL = '26'
         OR LT_BSEG-BSCHL = '27' OR LT_BSEG-BSCHL = '28'
         OR LT_BSEG-BSCHL = '35' OR LT_BSEG-BSCHL = '36'
         OR LT_BSEG-BSCHL = '37' OR LT_BSEG-BSCHL = '38'
         OR LT_BSEG-BSCHL = '39'.
        LT_BSEG-BUPLA = PA_BUPLA.
        LT_BSEG-SECCO = PA_SECCO.
        MODIFY BSEG FROM LT_BSEG.
        Write : / LT_BSEG-BELNR, 'Update For BSEG', LT_BSEG-BSCHL,
                  LT_BSEG-BUPLA,LT_BSEG-SECCO.
      ENDIF.
    ENDLOOP.
    Bsik updation
    SELECT *
    INTO CORRESPONDING FIELDS OF TABLE LT_BSIK
    FROM BSIK
    WHERE BUKRS  = PA_BUKRS   AND
          GJAHR  = pa_gaahr   AND
          BELNR = PA_BELNR.
    LOOP AT LT_BSIK.
      IF LT_BSIK-BSCHL    = '25' OR LT_BSIK-BSCHL = '26'
         OR LT_BSIK-BSCHL = '27' OR LT_BSIK-BSCHL = '28'
         OR LT_BSIK-BSCHL = '35' OR LT_BSIK-BSCHL = '36'
         OR LT_BSIK-BSCHL = '37' OR LT_BSIK-BSCHL = '38'
         OR LT_BSIK-BSCHL = '39'.
        LT_BSIK-BUPLA = PA_BUPLA.
        LT_BSIK-SECCO = PA_SECCO.
        MODIFY BSIK FROM LT_BSIK.
        Write : / LT_BSIK-BELNR, 'Update For BSIK', LT_BSIK-BSCHL,
                  LT_BSIK-BUPLA,LT_BSIK-SECCO.
      ENDIF.
    ENDLOOP.
    BsAk updation
    SELECT *
    INTO CORRESPONDING FIELDS OF TABLE LT_BSAK
    FROM BSAK
    WHERE BUKRS  = PA_BUKRS   AND
          GJAHR  = pa_gaahr   AND
          BELNR = PA_BELNR.
    LOOP AT LT_BSAK.
      IF LT_BSAK-BSCHL    = '25' OR LT_BSAK-BSCHL = '26'
         OR LT_BSAK-BSCHL = '27' OR LT_BSAK-BSCHL = '28'
         OR LT_BSAK-BSCHL = '35' OR LT_BSAK-BSCHL = '36'
         OR LT_BSAK-BSCHL = '37' OR LT_BSAK-BSCHL = '38'
         OR LT_BSAK-BSCHL = '39'.
        LT_BSAK-BUPLA = PA_BUPLA.
        LT_BSAK-SECCO = PA_SECCO.
        MODIFY BSAK FROM LT_BSAK.
        Write : / LT_BSAK-BELNR, 'Update For BSAK', LT_BSAK-BSCHL,
                  LT_BSAK-BUPLA,LT_BSAK-SECCO.
      ENDIF.
    ENDLOOP.
    ENDFORM.                    " CHANGE_DATA
    Thank You.

  • PO changes not reflecting in the SAP R/3 system in Extended classsic

    Hi Guys,
    I have a querry regards to deletion of a PO line item in Extended classic scenario Version 5.0. User has deleted the line item in the shopping cart and now the status of the shopping cart is with Zero value and line item deleted, but in the PO there is a line item with some Value and we are trying to delete it and save it, it gets deleted and PO status it shows as awaiting approval. but at the Item level of the PO the check box  of Item deletion is updated. which means PO line item is deleted.
    Now my querry is the status of the PO in the SRM shows a awaiting approval and this is not in approval tab but at the header level when I try to search the PO with PO display/change option. Also its not reflecting with the deleted item in R/3 system.
    Please help me.
    Regards
    Srujank

    Hi
      Check configuration of your Message server. check if your message server is configured properly. Just go to your SAP logon. Select the system say "DEV" and click on groups.Then Click on System id and enter the id as "ID1" in your case.
    and then enter the machine name in the message server box and then click on generate list. If your message server is configured correctly you would get some groups in the list below. only if that comes then go to SLD and check in the ABap technical system if you have configured technical system using the proper logon groups.
    Then you should not face this problem. Let me know if you require more information.
    regards
    ravi

  • Adobe Camera Raw changes not reflecting in Premiere Pro

    I was super excited to try out the new CNDG support in Premiere Pro CC 2014, but I have to be honest - I am a bit disappointed...
    I am using 16bit Cinema DNG files and the source settings sliders really aren't doing it for me (notice the pink highlights)
    That's alright though, I would much rather use Adobe Camera Raw!
    Right click > Edit Original
    There we go, that looks nice - no pink highlights, nicely recovered details in the shadows and highlights. 
    PERFECT, click DONE!
    Nothing...For whatever reason, changes are not reflecting.
    Adobe - please allow us to use Adobe Camera Raw, there are so many folks out there that want to incorporate it into their workflow.  I have tried SpeedGrade and various other color correcting tools and I have found Adobe Camera Raw to work the best IMHO
    Thank you for your time.
    -Loyal Paying Customer

    Hi Ekombokom,
    ekombokom wrote:
    Hello! I too am having this same problem. I used Camera Raw (both in Bridge and Photoshop to make sure) to adjust and correct the Cinema DNG files I shot with my BMPCC; however, the video sequence in Premiere does not reflect any of the changes made. Why would Adobe not support Camera Raw settings in Premiere?
    Sorry, but Premiere Pro does not have a camera raw importer. You adjust the settings in the Source Settings dialog box instead (for RED, ARRI Raw, BMCC and BM Pocket Camera DNG files). You do have access to some controls for these formats, but in some cases, Camera Raw has more controls.
    ekombokom wrote:
    Camera Raw is an amazing tool for refining an image and gives me the best results compared to SG and Davinci. I was so excited to be able to use it once Premiere supported CinemaDNGs but now I'm confused as to why it's not supported.
    Cinema DNG from the Blackmagic Cameras are supported, you just adjust settings in Source Settings, as I mentioned. Have you tried that? The reasoning behind this is that Cinema DNG video coming from camera raw is too difficult to playback and edit with.
    That said, some users bring Cinema DNG footage to After Effects, adjust the video there, then render out files that are suitable to edit with.
    ekombokom wrote:
    I thought the point of using Adobe was that all their products worked together seamlessly? I really hope they fix this.
    You can always make a request here: http://adobe.ly/feature_request, however, I don't see a camera raw importer going into Premiere Pro any time soon (if ever) because of the reasons I previously mentioned (editing with camera raw would be too cumbersome). I think the more realistic feature request would be to add more controls in Source Settings.
    Thanks,
    Kevin

  • Transported to A and Q box - Changes not reflected in only  A Box Q Box Ok?

    Hi Experts,
    I am facing an issue with Transportation in SAP BI.
    In my project we have a requirement  to create a new query After that we have developed that query with new requirement features.
    As per the user requirement, the new developed query must be moved to production and where as the old version could not be displayed any more.
    For that purpose, after developing the query in Dev Box i have collected the tp and  deleted the old version query in DEV Box.
    I have transported the new version developed query to Acceptance Box and then to Quality Box.
    And tested in Acceptace and Quality Box whether new developed query features is reflecting or not .
    Found that, in Quality Box new query featured reflected where as in Acceptance  Box the new query reflections have not reflected.
    Now my question is if i trasport the same tp to production whether changes will get reflect or not
    And also would like to know the route cause why in the acceptace changes have not get reflected.
    I am confirming that, in both acceptace and quality box the tp were trasported succefully with out any of the errors.
    Kindly reply me any of the folks faced this kind of issue or scenario in your projects or expeiriance.
    Thanks,
    SN.

    Hi,
    Just try re-importing your query in OVERWRITE mode from D to A. Also request your basis team while transporting your TR to Prod to transport it in OVERWRITE mode.
    Hope this helps.
    Regards
    Jeeth

  • Report changes not reflected in Portal

    Hi,
    I have a report designed in Business Intelligence Front end tool.  I have added that report to a role created in BI backend and assigned the report to that role.  I am executing the report in Portal through SSO and the report is executing successfully.
    I  made changes in the report and assigned it to the role again.  When i execute the report in portal, the changes are not reflected.  But when i check the same report in Portal using another team mate id, he is able to see the changed report.  We checked the iview of the report in portal and the changed report is there in portal.  But i donno why it is not showing up for me.   We cleared the Browser cache and checked again but the result is same.  We both have the same roles, so nothing to do with the Roles.  I think the problem is in portal, but dont have an idea on where to check it.
    Help me in this regard.  Thanks for your time.
    Regards,
    Murali

    Hello Murali,
    This is strange but please do this simple test & confirm:
    Run the iView using your colleague's id. Copy the complete URL from the browser.
    Open another fresh browser session, pasting the URL login using your credentials.
    What do you see now? Do you see the change?
    This a simple method to filter out the issue..whether its related to backend or not.
    Awaiting Reply.
    Regards,
    Ritu

  • Universe export - data changes not reflecting in Report

    Hi
    The changes and the latest updates in the database are not reflecting in reports,
    even if i export the universe again.
    and i have refreshed the reports, that even not reflecting.
    i did Edit query and Run query  this action also not bringing the latest data to reports
    why this happens ?
    how to solve this issue ?
    Regards
    Dineshkumar

    You can search for KB articles on SAP Service Market Place .
    Here is first :
    Symptom
    You make changes a local Universe in Designer.
    When refreshing the report, in Desktop Intelligence, the results do not reflect Universe update.
    It used to be enough to simply refresh report's data, for Dataprovider to show object changes from the Semantic layer.
    Change of behaviour in SP3 codeline: the DeskI Query Panel does not automatically pick up the latest modifications made to the local Universe.
    Reproducing the Issue
    Using BusinessObjects Desktop Intelligence XIR2 SP3:
    Using your universe (eFashion), create and refresh a simple Desktop Intelligence report (.rep).
    Make a simple change to the universe (like renaming a field/ object name) and save these changes.
    Go back to the open DeskI report and try to refresh the data provider using: 'Data/Refresh Data'.
    This will not show the latest changes.
    However, if you follow the same workflow using XIR2 SP2, the universe update will be immediately visible (in the report) simply after refresh.
    Cause
    This is not a product regression, but intentional change in application's code delivered with FixPack3.1.
    Fix Request ADAPT00818520 changed the application's behaviour: << When a restricted user is logged on to view a Desktop Intelligence document, prompt windows may be slow to open. >>
    Resolution
    In Desktop Intelligence menu, go to:  Tools > Universes
    Click 'Refresh'
    Select and 'Import' your universe
    Next, go to toolbar menu:  Data >  Edit Data Provider
    In Query Panel, click 'Run' to regenerate the Query and interrogate the updated universe.
    Only after following these actions will the .unv ammendments be visible in the report.
    Here is second :
    Symptom
    Changes to object made for the Universe is not affected when refreshed from InfoView if we check 'Allow selection of multiple Contexts' in Universe Designer
    Desktop Intelligence (Deski) Report still prompts for selection of contexts even if 'Allow selection of contexts' is unchecked for Universe
    Row level Restriction is not applied correctly in InfoView(View Mode) when 'Allow selection of multiple Contexts' checked in the Universe Designer
    Environment
    BusinessObjects Enterprise XI 3.1 Service Pack 2 Fix Pack 2.6
    Reproducing the Issue
    Changes to object made in the Universe is not affected in InfoView(View mode) when 'Allow selection of multiple Contexts' is checked in Universe
    1. Log in to Designer
    i) Import Island Resort Marketing
    ii) Go to Universe Parameter >> SQL
    ii)Uncheck Allow Selection of Multiple Context
    2. Create a new Desktop Intelligence(Deski) Report based on Island Resort Marketing
    i) Drag the object Country in the Result's Pane
    ii) Save and Export the report to the repository.
    3. In Designer Change the Object Country under Resort from Resort_Country.country to
    i) Resort_Country.country+'ddd'
    Note: Uncheck Allow Selection of Multiple Context
    ii) Save and Export the Universe
    4. Log in to InfoView
    i) View the report
    ii) Refresh the report
    iii) Changes to the object taken place i.e Country is concatenated with ddd
    5. In the Universe Designer, change the Object Country under Resort from Resort_Country.country to
    i) Resort_Country.country+'eee'
    Note: Check Allow Selection of Multiple Context
    ii) Save and Export the Universe
    6. Log out from InfoView and login again
    i) View the report
    ii) Refresh the report
    iii) Changes not taken place. Shows only Country instead of Country concatenated with eee.
    Row level Restriction is not applied correctly in InfoView(view Mode) when 'Allow selection of multiple Contexts' checked for the Universe.
    Import efashion Universe 
    Drag the Outlet_Lookup table into the objects pane on the left hand side
    Create Row Level Restriction on the state field of Outlet_Lookup table as Outlet_Lookup.State=(u2018Texasu2019) 
    Apply the restriction to Administrator
    Save and Export the Universe. Note: Uncheck Allow Selection of Multiple Context in Universe Parameter>>SQL
    Log in to Desktop Intelligence (Deski) as administrator with Enterprise Authentication
    Create a new Deski report
    Drag the object state from the Outlet_Lookup table to the Results pane 
    Observed that the administrator is able to see only Texas which is expected behavior
    Save and export the report
    Log in to Infoview as Administrator
    View the report. Refresh the report
    Observed that the administrator is able to see only Texas which is expected behavior
    Log in to Infoview as any user say Test User
    View the report. Refresh the report
    Observed that Test User is able to see all the states which is expected behavior
    In the Universe Designer, Check Allow Selection of Multiple Context in Universe Parameter>>SQL for efashion Universe
    Save and export the Universe
    Log in to Infoview as Test user
    View the report
    Refresh the Report
    TestUser is  able to see only Texas which mean that the restriction is applied to Test User also
    Cause
    This is by Design as the  'Allow selection of multiple Contexts' forces selection of the context, which is not possible in Infoview, so that in Infoview it is assumed the Context is already selected and no SQL regeneration is required.
    Resolution
    Problem Description: Changes to object made in the Universe is not affected when refreshed from InfoView if we check 'Allow selection of multiple Contexts' in Universe Designer
    Explanation:
    If we modify an object and selects also the option 'Allow selection of multiple Contexts', it means that potentially there is more than one SQL that can be generated with the use of that object. Hence if a report is created in Deski, run and exported to enterprise, that means, one particular context (SQL) has been selected.
    If you then update one or more of the objects again, the SQL will have to be regenerated in Deski for the right context to be selected for that particular report.
    Therefore, if this option is used, for the objects to be updated, the SQL of the report will have to be regenerated in Deski, run and export it back to repository, then refresh the report in InfoView.
    For Deski reports viewed in InfoView, it is not possible to evaluate the context on refresh. The report will always use the context stored with the report and same for the SQL. Therefore the Deski report will need to be imported locally, refresh it and then export it back to repository for the changes to take place.
    Problem description: Desktop Intelligence (Deski) still prompts for selection of contexts even if 'Allow selection of contexts' is unchecked for Universe
    Explanation:
    The option 'Allow selection of Multiple Contexts' in Designer is not to disable the prompt. It will prompt you to select context if the object used is associated with context. The option is just to allow Deski to select multiple contexts at a time if in case the object used is associated with multiple contexts and accordingly generates the SQL.
    However if we uncheck the option even if there are multiple contexts associated with the object used, it will allow selection of only one context at a time.
    Problem Description: Issue with Row level Restriction when refreshed from InfoView with 'Allow selection of multiple Contexts' checked for the Universe.
    Explanation:
    We first have to regenerate the SQL in Deski, then export it to repository and refresh from InfoView for the changes to take place correctly. The explanation above applies.

  • PS 2013 - Changing the formula in custom field not reflected in the report columns

    Hi, 
    The company where I work have a Sharepoint environment / EPM 2013 with about seven hundred registered projects. 
    We have a customer demand where it is necessary to change the formula of one of the custom fields of the environment. This field is used in some management reports made ​​in Reporting Services and accessed by the entire board. The report uses as a source
    'MSP_EpmProject_UserView' view. 
    The change in formula was simple, but we found that the change will not be reflected in the reports when the user saves the project in Sharepoint or publish the schedule associated with the Project. 
    I believe this is the expected behavior of the EPM, but I wonder if there is some other way than through the PSI, to publish all environmental projects.  
    Best regards,
    Armando Machado Gonçalves - Sharepoint / EPM 2013

    Hello,
    That is expected, it will not update until the project is open and republished. No automatic way to do this without automating project pro. Publishing all projects via the PSI wont cause the plan to recalculate, the plans will need to be opened.
    Paul
    Paul Mather | Twitter |
    http://pwmather.wordpress.com | CPS

  • Develop Module changes not reflected on screen

    I have used LR for about 3 years and have never had an issue with it.  I am using LR 5.7 64 bit.  I have a Win7 Pro machine with 8 Gb of RAM and 2 TB drive that is 50% free.  I do not have PS and I am not a Creative Cloud customer.  Yesterday I started having trouble in the develop module.  None of my changes are being reflected on the screen. 
    It almost seems that the window never changes from the image preview to the live image.  When I try to zoom the image gets very pixelated (goes back to my theory I am still looking at the preview).  I can zoom in library mode and the image zooms correctly.
    If I leave develop module and go back to library the changes are reflected.  I have 2 catalogs, both are effected.  I tried creating a new catalog and the problem still exists.  When I try to use the crop tool the screen goes completely white (or black depending on background color). 
    I have tried all of the steps in the basic troubleshooting.   I have tried uninstalling and re-installing.  
    Has any one seen this behavior?  Any ideas how to correct?

    I have solved this problem by uninstalling the DirectX drivers and re-installing them. 

  • Changes not reflected in iWeb 08 program

    I have been making changes to my site, publishing them to the web and all is fine. When I close out iWeb (and SAVE) not all of my changes are reflected when I reopen iWeb.
    The published site is very fine, bu a lot of the changes I have made to the site are no longer reflected in my iWeb 08 program,

    Hi,
    First try to check if all the elements are in the transport rquest and then reptransport it...
    If this still doesnt work, do the foloowing:
    Run the prg : RSTXSCRP in Dev and EXPORT the script on to a desktop/location
    Run the prg : RSTXSCRP in QA and IMPORT the script from the desktop/location specified above.
    Hope this helps you
    Regards
    Sk

  • Changes not reflected in Change to Document (tcode CRMD_ORDER)

    Hello Expert,
    I made a change in field 'Planned Completion Date', in my transaction through tcode CRMD_ORDER.
    When I view Change to Document (CRMD_ORDER > top menu > Extras > Change Documents), the change is not reflected.
    All changes are usually captured in the Change to Document.
    Perhaps it is captured somewhere else?
    Please assist.
    Thank you.
    HJMY

    Hi HJMY,
    Check if the Change document object provided for CRM_ORDER has the field in the SAP provided structure. This can be verified in transaction SCDO -> select change document object CRM_ORDER and display, you will see list of structures on the left hand side, if the field you are refering to is a part of one of these structures then the changes in this field are displayed when you go to  (CRMD_ORDER > top menu > Extras > Change Documents). If it is not present then you will have to create a new change document object  and assign a proper structure, you can generate update program to update that change documents. Hope this helps.
    Thanks,
    Priyanka

  • Changes not reflecting in Report designer after Transports

    Hi,
       I have made some changes to a Report in the report designer and transported it to Quality and Acceptance systems. But the changes are reflecting in Quality system not in Acceptance server. In Acceptance sever the changes are seen in the report physically but when i execute the report i still see the old format. I tried transporting the request again to the system but no luck.
    Cleared the Cache in Acceptance still no luck. Also regenerated the base query in RSRT and no effect on the report. Any idea?
    Thanks,
    Praveen

    Hi Praveen,
    Make sure you have collected all the objects of the report.
    You may check this in (development) RSA1->Transport Connection. Select  that report and see if any objects are still not under $TMP or under any other Package and not got collected in your previous TR.
    Regards,
    Pratap Sone

  • Conditions for contract workflow approval  agent.

    Y'all,
    I would like to know if its possible to have conditions in the WS14000088 contract workflow to assign the approval agent/user depending on contract values, for example i mean:
    "if the contract has an specific value at item level then assign the approval to the business unit manager... or if the contract has an specific value at header level then assign the approval to the category manager..." etc.. etc..
    Is it possible? if yes, how do you commit it into the system?
    Regards,
    Gerardo.

    Hi Jerry,
    Yes it is possible to have a conditions to assign and determine the approval agents depending on the value of the contract.
    Goto tcode SWDD and for the appropriate task in the workflow 'WS14000088' create the condition. The work item for this step can be executed when this condition for work item generation is met. If there is a requested start for this work item, this is checked separately when the condition is met.
    Reward points if the answer is helpful.
    Regards,
    Andy.

Maybe you are looking for

  • BW report iView bg color change problem

    Hi All, I created a BW report with alert Monitor entry and published in Portal(EP6.0 SP2) as an iview. Here my problem is changing default back ground color of iView(Default it shows blue/grey) and i tried this by changing theme but didn't get any lu

  • Create the Product Catalog from Flat file

    Hi, We have a requirement to create the Product catalog (CRM) from flat file data. We have the required data like Product catalog ID, description, sub areas and products are present in the Exel file. Now we need to create product catalog automaticall

  • Payment Requisitions and/ or Invoices?

    Hi All, I've a question regarding the Payment Requisitions. First I describe my Contrcat Manager Set up and use: I manage contracts related to projects. I have invoices of committed Contracts and from the Project Subcontrcators,, which I receive and

  • Oracle 8i Personal Edition

    I NEED to download Oracle 8i Personal Edition. Obviously, it's been yanked from the site. Are there any other places I can download this? Or any other places I can get a hard copy. This is extremely urgent! Someone help, please.

  • Building own schemas in Seeburger bic mapper

    I'm consulting for Utilities industry and looks like Seeburger does not have custom schemas for this industry type. Using standalone software bic converter and mapping designer, is it possible to 1. build custom schemas from standard EDI X12. 2. and