Approval Form Display as ITS Service

Hi,
I have been using SAP 4.7 which has external ITS.I am workflow consulatant.We have been implementing ESS for Customer.I have a customized workflow were an Approval form has to be sent to manager.The approval form has to be displayed as an service.Normally we use form for approval in r/3.
Please help me in this issue.Its urgent

Hi,
The issue is solved with note 1228297.
Thanks,
Manuel

Similar Messages

  • Values not capture during adobe form display on pa30.

    Hi Experts,
    I have attached Adobe Form into Transaction PA30 in which form values are not capturing during form display,
    But its displaying at the time of form generation on ZHINUREQ_CORRS_LETTER program.
    Kindly give suggestion.
    Regards,
    Abdul

    Hi Saujanya,
    This could by caused by the network, the used browser or additional browser plugins. Try to do the following:
    1. Test with an alternative browser (if you are on a SP which supports different browsers than IE, see PAM, http://service.sap.com/pam): If it works with Firefox, then you know the problem is caused by IE and not by the OS, network, ...
    2. Deactivate/uninstall all additional browser plugins/add-ons (like google toolbar, Yahoo toolbar, ...)
    3. Create a client trace as explained in SAP note 999998. Maybe there's a hint in the trace. Watch for something like "ERROR".
    4. Install a HTTP sniffer (like "fiddler") on both machines and compare the network traffic. Maybe there's a request with a 4xx HTTP status code?
    5. How is the machine connected to your network? Is it behind an additional webproxy?
    Hope one of this helps,
    Ralf

  • How to add custom variable on approval form?

    Hi,
    I am tring to do multi-level approval for the role assignment using my custom approval form.
    For that i have created a WF and this workflow calls approval subprocess which intern uses the Custom Approval form.
    In WF i am passing newly selected role as variable to my Approval Subprocess. Now Approval Subprocess assigns this to the first level manager by displaying this new role on approval form. Manager1 is able to see this new role and approves role assignment.
    Now this Role has Approver(Which was defined during the role definition). so it automatically goes to RoleApprover for approval using custom Approval form. Now the problem is i am not able to see my custom variable value in the Approval form for RoleApprover. its showing it as null. But where is in case of manager approval it is showing.
    Can anyone through somelight on this to display a WF variable(newrole) in Approval form.
    The one reason that i could think of is RoleApprover approval process is triggered by Configurator as WFOWNER hence all the session variables are killed.Is there any workaround?
    I appreciate your help.
    Thanks
    Kris

    I got the solution, using the session. Thank you.

  • Adding Attributes to Approval Form

    Hi,
    I've customised IDM 8.1 to fire off an approval to IdmManager if a user updates their own attributes. I want to customise the Approval Form displayed to the approver to show only the attributes that have been updated by the user.
    I see the Approval Form has an "approvalAttributes" variable which can be passed in to define which attributes are displayed. I also see that this list can be configured by adding attributes on the "Server Tasks -> Configure Tasks -> Update User Template -> Approvals" tab. What I can't see is where this list of attributes is stored when you add new ones. Does anybody know? If I knew this I hope I could customise the object to push out a dynamically generated list of attributes, rather than a static list.
    Thanks,
    Paul

    Solved - they're kept, somewhat unsurprisingly, in the "Update User Template" object. I was confused by the "Template Library Repository" appearing to store a very similar list which gets polled every time the form is loaded, but editing this appears to have no bearing on anything.

  • Attachment display by ITS instead http Service

    Hi,
    we use EBP 4.0 Bid Scenario.
    Our Support package level is:
    SAP_BASIS     620       0036     SAPKB62036
    SAP_ABA        620       0036     SAPKA62036
    BBPCRM          400       0004     SAPKU40004
    PI_BASIS         2003_1_620      0005     SAPKIPYH55
    ST-PI    2005_1_620      0004     SAPKITLQG4
    ST-A/PI 01H_CRM400    0000          -
    ITS, Version 6200.1020.55116.2, Build 800981
    The topic of our request is about download of file ‘Attachment’ in Bid Scenario. As you know in the bidding transactions of EBP bid invitation and vendor quotation (BBP_BID_INV and BBP_QUOT) the user can attach some files during the creation of the document (bid invitation or quotation). During the phase of attachment download the server use the ‘docserver’ configuration and we get a link similar to http://touareg.it.pirelli.com:8045/sap/ebp/docserver/008/pirelli_re.gif?attcget&ClId=4510DA3E6C093A55E10000000AEFF00F
    This is a tipical link that use the document server http service to display the attachment.
    We would like to use the old configuration of ITS attachment display instead the ‘docserver’. In particular the use of docserver force to use different TCP port and address and not the same TCP port and address that the ITS use. We need to use only channel (the same as the ITS use for the users logon) in order to satisfy the security policy.
    This is the link of the user during the ITS connection that use different server and ports (ITS instead WAS):
    http://crmserver.it.pirelli.com:85/scripts/wgate/bbpstart460952c7/~flNlc3Npb249SVRSOmNybXNlcnZlcjowMDAwLjAwMGIuMjNiNGUxNTMuNWM3MyZ+aHR0cF9jb250ZW50X2NoYXJzZXQ9dXRmLTg=
    We find some oss notes as 434218, 588597 or 605323 about this topic but what we need is the opposite behaviour : display the attachment from ITS connection instead http Service.
    Best regards.

    Davide,
    Hi. I had a similar problem.
    You can programatically display the attachments as an ITS service. This is done through a call to function module within a bespoke ITS transaciton.
    The below code was to send the shopping cart print out as a pdf, but the same principle would apply from any attachment. You would just need to read in the attachment as a binary table (Look at the code in docserver to see how to do that)
    Buffer set for
    concatenate
       'attachment; '
       'filename=Cart'
       i_cartid
       '.pdf'
       into lv_mimedisp.
    Download & display this on the ITS server
    call function 'BBP_ALEWEB_DOWNLOAD'
       exporting
         data_len          = l_size
         mime_type         = lc_type
    "    mime_disp         = lv_mimedisp
       tables
         data_tab          = tab_pdf
       exceptions
         its_not_available = 1
         others            = 2.
    if sy-subrc ne 0...
    I found this to be a bit flawed in that you loose the link to the transaction (ITS page), and therefor the user is always logged, even though they have closed the attachment display. In the end I used a call to WAS from ITS (i.e. the docserver), and turned on SSO.
    By turning on SSO you would most likely avoid security issues, but obviously it is dependant on your specific network.
    These issues are avoided with SRM 5.5 where the ITS is internal, and therefor on the WAS
    http://saptest:8080/sap/bc/gui/sap/its/bbpstart/!
    vrs
    http://saptest:8080/sap/bc/bsp/sap/itsm/default.htm
    Cheers
    Rob

  • ITS service not displaying  page in web browser from trnx SICF

    Hello gurus
    iam having a problem when trying to test ITS fro trnx SICF.The web browser window pops up but it doesnt display anything.The service is active and running.
    i checked at os level in dev_icm log file and found the following error:
    [Thr  5] Mon Oct 25 10:30:52 2010
    [Thr  5] *** ERROR => NiBufIConnect: non-buffered connect pending after 5000ms (hdl 22;10.26.24.44:1090) [nibuf.cpp    4611]
    [Thr  5] *** WARNING => Connection request from (0/1/0) to host: 10.26.24.44, service: 1090 failed (NIECONN_REFUSED)
    [icxxconn_mt.c 2340]
    that is the link that is suppossed to be opened in the web browser ::http://lmntrst01.ba.bc.test123.com:8000/sap/bc/gui/sap/its?sap-client=666
    Has anyone faced a similar problem before.It ERP 6 EHP4  on Solaris SPARC
    Any ideas are most welcome

    Hello,
    Please see note 816973 to clarify some basics first.  Especially steps 3 - 6.
    Also, the URL you posted has no service name and would lead to an error anyways, you should test with WEBGUI or IT00 or some other service.
    Edgar

  • Sales Order form error  "Not able to retrieve Display values for Service"

    Hi,
    Few of our orders flash the below error message when the order is queried
    "Not able to retrieve Display values for Service"
    Below are the points I observed
    1.The orders I am referring to are imported order via EDI interface.
    2.The service reference type code has value of ORDER, however no other service related fields (like service reference line id) have any values.
    3. The item is not a service item (service tab in Item setup is disabled)
    4. Same item when imported with value of "Customer Ordered" in "service reference type code" field, does not throw an error.
    5. If I update "service reference type code" with value null or change it to CUSTOMER_PRODUCT, the error disappears.
    Can someone explain the significance of this column value and what could have been causing this error message?
    May be there are some dependent fields/setups which must have a value when service reference type code =ORDER.
    Thanks in advance,
    JC
    Edited by: user10174990 on Oct 25, 2012 10:58 AM

    Hi,
    Maintain the dafault values using Tcode OISF with respective to Planning Plant you have to maintain the following values like Order Type, Main Work Center, Maint. Plant,Group,Group Counter,Business Area & Task List type.
    or
    Apply these OSS note 150732 / 195993.
    regards,
    Venkatesan Anandan

  • Displaying approver info in the Approval Form

    Approval workflow process: How I could print the approver accountId
    (or the "approver" process variable) in the Approval Form ?

    idm_guy, if you could elaborate more on what you mean with latest resource assigned it would help - but there are a number of options (if i interprent you correctly to solvethis). My guess is that the easiest way would be to determine if:
    waveset.accounts[<iterate through resources>].created = true or false
    and if
    waveset.accounts[<resource>].lastPasswordUpdate = <last updated date>
    The latter is of course only applicable to resource where you set a password. This value will be updated whenever you set the password and could be a possible value to check against.
    If the account is not created yet but assigned it might be another possibility to check, but again - clairfy a bit about what you mean with "Latest Resource Assigned".
    /Anders

  • Approval form in edit mode

    hi
    1 - the standard is calling task 50000075 EXTSRV PROCESS to call the approval form. its shown in display mode
    2 - im trying to call ISR_CALL_FOR_CHANGE so the form should open in edit mode
    but...... my problem is though it opens in edit more, approve and reject buttons are gone
    so cud u pl tel how to poen the approval form in edit mode, wat are the options ?
    thanks
    bhakti

    Hi,
      If it is not HCM Process and forms then Iam not very much sure, But anyways you can check out the below task Ids for
    1. Edit Form - TS17900100
    2. Approve -  TS17900101
    And Also I do not think if you are planning to use above taskids then in that case you should use them based on the context.
    for more information about the above task IDS
    [check this|http://help.sap.com/saphelp_erp60_sp/helpdata/en/43/15ce37f1fb5a38e10000000a422035/frameset.htm]
    Regards
    Pavan

  • SSO portal to ITS service

    Hello Experts,
    I am trying to use SSO portal to  ITS service . I create a service DSU01 using transaction code and active it, it works normally in browser. the ITS is integrated in WAS640. when I create a IAC iview, I dont know IAC parameter, I'm pretty new to portal, could someone help me ?
    BR.
    msong

    hi Debasish,
    Thanks very much for your response. I have read the guide, but there's some error:
    An exception occurred while processing a request for :
    iView : pcd:portal_content/every_user/general/eu_role/com.sap.km.home_ws/sm36
    Component Name : com.sap.portal.appintegrator.sap.IAC
    Exception in SAP Application Integrator occured: Application URL ':///sap(ZT00NzdYT3NXTkUwUmdSZ2FTTWpPcDZ3JTNEJTNEOEhnZGNJZ2lqN015ZFdHd05ERkZ4dyUzRCUzRA==)/bc/gui/sap/its/sm36' is not valid! Please check the protocol and host entries for system 'msongtest0424'..
    Exception id: 04:55_28/04/20_0009_14211850
    See the details for the exception ID in the log file
    I set the following parameters:
    Web As Host Name: msongtest2.secude.local:1443
    Web As path:/sap/bc/gui/sap/its/
    Web As Protocol: https
    SMICM>goto service>there is a line says "https, 1443 ...."
    when I access https://msongtest2.secude.local:1443/sap/bc/gui/sap/its/sm36, "define backgroud job" can display normally.
    BR.
    msong

  • Crystal Report 9 merge Module and its service pack 7.

    Hello, My application is using Crystal report 9 and have its merge modules which are integrated in Installer. It has packages: rdcdesigntime.msm, rdcruntime.msm, reportengine.msm and Database_Access.msm which are already integrated in my application Installer. There are few issues which are fixed in its service pack 7 for CR 9(File: cr90win_en_sp7.exe).
    Now my Q is:
    1. Are there latest merge modules for CR 9 which has changes for SP 7 also incorporated? So that I can change modules in installer itself to have changes for SP7 also.
    2. I couldn't get merge modules for CR 9 even from the site. From where I can get this?

    Hi Neha,
    Click [here|http://resources.businessobjects.com/support/additional_downloads/runtime.asp#01] to download the availabe merge modules of CR 9.
    Or
    Click [here|https://websmp130.sap-ag.de/sap(bD1lbiZjPTAwMQ==)/bc/bsp/spn/bobj_download/main.htm] to get all the CR9 documents, mergemodules, fix packs etc. just you need to provide the "CR" as S/W product and "9" as a roduct version.
    Also the Wiki [here|https://wiki.sdn.sap.com/wiki/display/BOBJ/CrystalReportsforVisualStudio.NETRuntimeDistribution-Versions9.1to12.0] is currently the best resource for CR.NET Runtime information.
    Sincerely,
    Amit

  • How to populate a field on the Self Registration Approval Form?

    Hello,
    I have a field named SSN (last 4 digits of the SSN) that a self registered user must fill in during self registration. After the user submits the request, the request is submitted to a reviewer.
    This reviewer logs in and accesses the Self Registration Approval Form for that particular request. I would like to display the possible returned values of SSN that I query from HR based on the requester's firstname, middlename, and lastname. This will allow the reviewer to verify the requester's identity. If the entered SSN does not match the displayed SSN, the reviewer can take the proper action.
    How can this be accomplished?
    I looked into the prepopulate rule generator adaptor. But I don't have a form to attach the adaptor to it since the approval form is an ootb form.
    Thanks

    Yes, I did.
    In the adapter I mapped the adapter return value to the output of the java code (Get SSN).
    In the User Registration Process Definition, I have a non conditional task named Get SSN. I mapped the requestID to the request Key and the adapter return value to the field on the self registration form (using User Definition field).
    But the value did not show up in that field...

  • Valuation Price issue in PR Approval form

    Hi,
    We have a PR with multiple line items and different valuation price.
    But in the PR approval form, the valuation price is showing  only  the line item 1's valuation price, not
    total valuation price of the all items.
    Can any one help me how to show the valuation price as sum of the all line items values.
    Thanks in advance
    Rajeev

    Dear Rajeev,
    Please check in spro whether system is configured for Item level or Header  level release.
    check the tick sign at Release group.
    For item level release system considers the value of line item and for header level release system takes the total value of line items.
    please go through this link
    https://www.sdn.sap.com/irj/scn/wiki?path=/display/erplo/releaseprocedureforPurchaseRequisitioninMM
    Release procedure for Purchase Requisition in MM
    Best regards,
    Maverick
    Edited by: Maverick 331 on Jun 16, 2009 7:34 PM

  • ESS - ITS Services integration with XSS Framework

    Hi,
    I have created an Z* scenario for the ESS. All Webdynpro standard iViews that I have customized it is working. Now, I have a ITS service PZ28 (Previous Employers) that was not converted to WebDynpro techonology. I am trying to insert the service into the framework technology but I am having some problems. When I go see the service in the Portals nothing appears, just the tray with the name: XssMenuArea.
    Here are the tables that I have customized in the backend:
    Table V_T7XSSSERSDB
    Server: EBSGERD01
    Protocol: http
    Name and Port: ebsgerd01:8090
    Directory Path: scripts/wgate
    V_T7XSSSERRES
    Resource Key: ZESSPREVIOUS_EMPLOYERS
    Server: EBSGERD01
    Object name: ITS-Application
    URL Parameter: PZ28
    URL of PCD: ROLES://portal_content/Gerdau-Ameristeel/GNAFPeople/People1/GNAWSSelf-Service/GNAESSPGMyInformation
    V_T7XSSSERSRV
    Service Key: ZESSPREVIOUS_EMPLOYERS
    Service type: ITS based service
    Link resource: ZESSPREVIOUS_EMPLOYERS
    Does someone had this kind of necessity?
    Thanks!
    Kiel

    Just from a quick look here....your server points to ITS but that is not needed since your ITS service will be referenced to the iView which will tell it that information...also....for your resource...
    (1) you do not need the URL parameter set to PZ28....this should be done in the iView...that is, you should have created a SAP IAC iview for service PZ28 and then assigned that iview to a page and that page to a role (possibly direct...not good...or through a workset...better).
    (2) the URL of the PCD page should be the path when viewing the role down to the page from step #1....so, you will have your role displayed in the content admin/PCD. Then you click the page object to bring up it's properties. Then, copy-and-paste the information for the PCD location over into your config for the resource.
    so you should have....
    IMG:
    area group -> area page -> subarea -> service -> that uses the resource -> that points to portal (ie. the PCD location of the page in the role)
    PORTAL:
    role -> contains page as referenced above -> contains ITS iview (for PZ28 with system alias to system with ITS defined)
    Soooo in all that cumbersome work, you are basically telling your Area page to display the service which is linked to the resource that actually just gives a specific location in the role. When clicked, the URL will "jump" the user over to that part of the role (which of course assumes they will have that role) which will take them right to that specified page. That page has the iView on it that will then display PZ28 (or whatever else).
    Yep...a lot of hoops to jump through for something so simple. haha
    Hope this helps.

  • Adobe Interactive Forms displaying returned tables

    can anyone help me display returned tables in adobe
    interactive forms
    i have an 2 adobe interactive forms, one for input
    the other for output on 2 different views
    the input form takes a few parameters, calls the
    back end RFC and the
    output form displays okay, but i just get the last
    row from the table
    i've tried binding 1 of the output table parameters to a drop down box and subform,the drop down box displays
    one of the return parameters but will not drop down
    whenever i include a subform i get a java error on
    the output form with no display
    i know there are several rows returned from testing the rfc inside abap workbench

    Hi Dennis,
    To display table in Adobe forms.
    Follow these steps :
    1. Insert one sub furm.
    2. make its type to flow content and flow direction to Table in object property.
    3. Insert another subform in above sub form and makes its type to flow content and flow direction  to Table row.
    4.In binding tab for this subform check the checkbox for "Repeat subform for each Data Item" and in min count you can specify at a time how much rows you want to display.
    5. Now place your UI Elements for Data view into this sub form.
    6. format these ui elements as you required.
    Run application now u can see multiple rows in adobe forms, if you have multiple elements in your table node.
    Let me know the status.
    Regards,
    Bhavik

Maybe you are looking for