Namespace to direct Authorizer to Service Form

Namespace to direct Authorizer to Service Form
How can I take the Authorizer directly to the service form with the link on the email notification they receive?
Step 1:
In the email template body that is assigned to the approval task use the following source code for the URL:
<a   href="#Site.URL#myservices/navigate.do?query=requisitionentrystatus&reqid=#Service.Requisition.RequisitionID#&reqentryid=#Service.RequisitionEntryID#&formAction=displayEntryStatus&serviceid=#Service.ServiceID#&requisitionId=#Service.Requisition.RequisitionID#&waiting=0&authTaskType=4&activityId=#ActivityID#&buttonsPresent=true&">Click  Here to View the Service Request</a>
Please note  that the Authorization Task Type is hard-coded in the URL above to be  utilized in a Service Group Authorization.  If the email template is  utilized in a different type of Authorization substitute the appropriate  Task Type as noted in the table below.

Using RC2008.3
This is pretty cool.  I've been wanting to do this since we first started using RC and was told it wasn't possible. 
I've tried this out and now have a concern though.  The page loads correctly and the options are there for approve/reject, but there is no navigation available to get up to the summary screen (where approval links normally go).  So there is no way for an approver to review or update the comments & history.  Also no way to review any attachments.  Any known tr

Similar Messages

  • Customer self service form gives the error of  "Page cannot be displayed"

    Hi All,
    Customer self service form from Navigation: Recievables -> Customers --> Standard gives the error of "Page cannot be displayed" but the same form gets opened when i navigate that from Order Management responsibility
    Thanks&Regards,
    APPS DBA

    Hi All,
    I have been trying to install the EBS 11i in configured system core 2 duo with 1 gb ram and 250 gb HDD,
    have been following the below steps to install the EBS 11i,
    1.installed Win20003 server edition
    2.VC++ and copyind the link file into windows\system32,
    3.GNU make done the path set everything,
    4.MKS tool kit,
    5IP config and installing MS loopback,
    started the installtion direct from the DVDs,
    Pre-Installtion everything was OK,
    but after done everything I got struck last min, where the popup window appeared as login page responding but i did wait for 30 min and nothing has happened.
    So closed and I restarted the System and I have restarted process putting 1st DVD and given the command rapidwiz -restart.from command prompt.
    and Again its started as a new installtion, and preinstatltion wizard has came.
    where I haeve commited the mistake i did not understand...?
    Please guide me
    regards
    Satya

  • User Authorization on Customize Forms(User Forms)

    Hi Experts,
                            I want to implement authorization on Customize forms by code... i am using .NET Framework with C# for development.... please guides me...
    thanks
    deepak

    Dear Deepak Gaur,
    Here the sample code from SDK help:
    Adding a PermissionTree - parent object (Visual Basic)
    [Visual Basic]
    Dim RetVal As Long
    Dim ErrCode As Long
    Dim ErrMsg As String
    Dim mUserPermission As SAPbobsCOM.UserPermissionTree
    Set mUserPermission = oCompany.GetBusinessObject(oUserPermissionTree)
    '//Mandatory field, which is the key of the object.
    '//The partner namespace must be included as a prefix followed by _
    mUserPermission.PermissionId = "SM_MathClass"
    '//The Name value that will be displayed in the General Authorization Tree
    mUserPermission.Name = "SM_MathClass"
    '//The permission that this object can get
    mUserPermission.Options = bou_FullReadNone
    '//In case the level is one, there Is no need to set the FatherID parameter.
    mUserPermission.Levels = 1
    RetVal = UserPermission.Add
    oCompany.GetLastError RetVal, ErrMsg
    '//In case this permission object has a son permission object
    Adding a PermissionTree - child object (Visual Basic)
    [Visual Basic]
    Dim RetVal As Long
    Dim ErrCode As Long
    Dim ErrMsg As String
    Dim mUserPermission As SAPbobsCOM.UserPermissionTree
    Set mUserPermission = oCompany.GetBusinessObject(oUserPermissionTree)
    mUserPermission.PermissionId = "SM_MathClassSon"
    mUserPermission.Name = "SM_MathClassExam"
    mUserPermission.Options = bou_FullNone
    '//For level 2 and up you must set the object's father unique ID
    mUserPermission.Levels = 2
    mUserPermission.FatherID = "SM_MathClass"
    '//this object manages forms
    mUserPermission.UserPermissionForm.FormType = "GL_MathClass"
    RetVal = mUserPermission.Add
    oCompany.GetLastError RetVal, ErrMsg
    [Visual Basic]
    Dim RetVal As Long
    Dim ErrCode As Long
    Dim ErrMsg As String
    Dim mUser As SAPbobsCOM.Users
    Set mUser = oCompany.GetBusinessObject(oUsers)
    '//The user unique ID is 2
    RetVal = mUser.GetByKey(2)
    '//Setting a new sub object for the User that hold the user permission for the user permission object
    mUser.UserPermission.PermissionId = "SM_MathClassSon"
    '//Seting full permission for User 2 to manage SM_MathClassSon sub object
    mUsers.UserPermission.Permission = boper_Full
    RetVal = mUsers.Update
    oCompany.GetLastError RetVal, ErrMsg
    Setting user permission (Visual Basic) Copy Code
    Dim RetVal As Long
    Dim ErrCode As Long
    Dim ErrMsg As String
    Dim mUser As SAPbobsCOM.Users
    Set mUser = oCompany.GetBusinessObject(oUsers)
    '//The user unique ID is 2
    RetVal = mUser.GetByKey(2)
    '//Setting a new sub object for the User that hold the user permission for the user permission object
    mUser.UserPermission.PermissionId = "SM_MathClassSon"
    '//Seting full permission for User 2 to manage SM_MathClassSon sub object
    mUsers.UserPermission.Permission = boper_Full
    RetVal = mUsers.Update
    oCompany.GetLastError RetVal, ErrMsg
    Best Regards
    Jane Jing
    SAP Business One Forums team

  • Using RAPI to generate Service Forms

    Interested in using RAPI to develop a service.
    My company is interested in using RAPI to develop a service that allows a user to select items from a list, then call or pull the associated atomic service to be used as part of a requisition. Does any one have experience with using RAPI to submit a requisition that manages multiple service forms ? What options do I have ?

    I think we have the same requirement, I've subscribed to this thread if anyone has any suggestions

  • How to use bapi /external service directly in application service

    Hi
    I have to use BAPI_ALM--RDER_MAINTAIN in my caf application
    i have imported it as external service.As there are problems mapping its input fields to entity service , it has to be consumed directly vai application service.
    But i ahve never done so before.Can someone give me an example as to how t do it.
    If someone can give example of how to code in the application service to call  the bapi , it would be great . as i have some time constraint.
    Thanks ,
    Points assured for help.

    Hi Vivek,
    As you asked for an example to call a bapi directly from Application Service you can follow this link.
    <a href="http://help.sap.com/saphelp_nw04s/helpdata/en/44/57fff3b10b3672e10000000a114a6b/frameset.htm">Using Generated External Proxy in Application Service</a>
    Thanks and Regards
    Avijit

  • How can I direct all my contact form replies (from my website), to my personal email address?

    How can I direct all my contact form replies (from my website), to my personal email address?
    I have embedded the code to my website but would like all of my contact form replies to be directed to my email address. How can I do this by revising the embedded code. Also will I still be able to receive replies after recieving 5000? At this point will I need a premium account?

    Email notifications are a feature of the Basic and Plus account.
    The free account only allows for 50 responses. The Plus (Premium) account allows for 5000.
    Randy

  • Request Product Service Form Broken...

    I know that this may not be the right forum, but I can't find one that fits.
    Of course, my ipod 20gig has stopped working. Right now I am trying to fill out a Request Product Service form and it's broken! Whenever I try to put in my postal code, it keeps telling me that is an incorrect postal code when it isn't! Is there someone that I can contact about this?
    If I didn't love my ipod so much, I'd chuck this thing out the window. I am really unimpressed with apple as of lately.

    You can call apple at 1-800-275-2273 if your still stuck they will help you sort it out. By the way if you are canadian make sure you are filling out the canadian code, and same for u.s. good luck

  • Access Services forms/views in SharePoint 2013

    So, in my enterprise we're about to upgrade to SP 2013 from 2010, and Office 2013 from 2007. Should be a hoot!
    I'm interested in learning more about Access Services. I undertand that Access Services forms, now called views, are based on HTML 5. Can we present an Access form/view in the browser that has conditional formatting like we're used to in InfoPath--the ability
    to show/hide form sections based on conditions?
    Thanks!
    Leon
    Leon Bryant

    Yes. It is possible but not as flexible as InfoPath. We can still use Infopath BTW.
    Please refer these link
    How to Create Conditional Formatting
    in Access 2013
    SharePoint 2013:
    Access Services
    Creating SharePoint Forms with
    Access 2013 Web Apps
    The Pros and Cons of the Access App for SharePoint 2013
    Please 'propose as answer' if it helped you, also 'vote helpful' if you like this reply.

  • Accessing EJBs through LCES2 SDK Service Forms

    Hello,
    I try to use this sample (here) to create a Forms Service access from a servlet but I  find "ALC-DSC-031-000: com.adobe.idp.dsc.net.DSCNamingException: Failed to search remote  EJBObject for the supplier dejb / call.
    I did a default installation of LiveCycle ES2 (JBoss, MySQL).
    I use Glassfish 3 to create the site using the service Forms through a servlet.
    I observed that execption is thrown when using the service renderPDFForm by formsClient.
    I wonder if the problem is with the port 1099 for DSC_DEFAULT_EJB_ENDPOINT.
    But I do not know whether this port works and if the problem actually comes from.
    Can you help me ?

    I slightly modified the code :
    String fileName = "rideau1.jpg";
    File oneImg = new File("C:\\" + fileName);
    FileInputStream fileAttachment = new FileInputStream(oneImg);Document attachment1 = new Document(fileAttachment);
    Map<String, Document> fileAttachments = new HashMap<String, Document>();
    fileAttachments.put(fileName, attachment1);
    I'm sure image exists, file exists but attachement1 is empty...
    oneImg getPath : C:\rideau1.jpg
    fileAttachments : {rideau1.jpg=}
    fileAttachment available : 15872
    But normally I'm able to null in function renderPDFForm as fileAttachements...
    The problem can be put there by URLSpec ?

  • Java class namespace conflict between two Web services

    We have been asked to develop a client that can call two different versions of a live Web service. Unfortunately the people who developed the services that we have to call used overlapping namespaces when they created the new version. We are using the Java 6 JDK Web Services stack. We have generated the classes for our 2 clients using wsimport and include them on our classpath in two separate jars. Of course this should never happen because you should never have two different objects sharing the same namespace. We don't control the service though, so can't change things there. Is there some way for us to remap to objects in a different namespace for one of the services. Any help would be much appreciated, even if it's just to say that this is not possible.
    James

    did you try specifying a different package when you run wsimport?
    also, if you can't find a jaxws solution, you can always load each webservice jar in a separate classloader in your application and run your webservice access code from these separate classloaders.

  • Service Form interface with RACF DB2 Databases

    We are looking for a way to have service form interface with RACF using DB2 connect. This function is needed to perform data validation against mainframe system. Any advice or instructions of how to implement this is greatly appreciated.

    I am using Weblogic workshop test browser to test this code. My Ws code looks like this.
    package WebServ;
    public class AsyncWebServ1 implements com.bea.jws.WebService
    * @common:control
    * @jc:timer repeats-every="30 s" timeout="60 s"
    private com.bea.control.TimerControl MyTimerControl;
    * This member variable stores the client choice to be sent a callback or not.
    public boolean m_useCallback;
    * When the callback handler is fired, this boolean is set to true.
    * Clients that don't want callbacks check this boolean to see if their result is ready.
    public boolean m_messageIsReceived;
    public Callback callback;
    * @common:control
    private Control.xmlDocWSControl xmldocwscontrol;
    static final long serialVersionUID = 1L;
    private String xmlString = "";
    private String strName = "";
    * @common:operation
    * @jws:conversation phase="start"
    public void getWSEmplyeeInfoCON(String aName)
    MyTimerControl.start();
    xmlString = xmldocwscontrol.getEmplyeeDtlsCon(aName);
    return ;
    public interface Callback extends com.bea.control.ServiceControl
    * @jws:conversation phase="finish"
    public void testCallback(String result);
    * @common:operation
    public void MyTimerControl_onTimeout(long time)
    //xmlString = xmldocwscontrol.getEmplyeeDtlsCon(aName);
    if(!m_useCallback)
    m_messageIsReceived = true;
    else
    callback.testCallback(xmlString);
    MyTimerControl.stop();
    return;
    * @common:operation
    * @jws:conversation phase="continue"
    * @jws:protocol form-post="false" form-get="true"
    public boolean checkStatus()
    return m_messageIsReceived;
    * @common:operation
    * @jws:conversation phase="finish"
    * @jws:protocol form-get="true" form-post="false"
    public String getMessageResponse()
    return xmlString;
    * @common:operation
    * @jws:conversation phase="start"
    public void requestMessage(boolean useCallback)
    m_useCallback = useCallback;
    // Start the delay timer.
    MyTimerControl.start();
    return;
    The value of xmlString can be hard coded.
    Saju

  • Who can use Web Service Forms??

    Just wondering, where do I find the specs for who can submit my Web Service forms. So far Reader 7 and Acrobat Standard 6 cannot use my Designer 7 web service forms (even after saving as Acrobat6 compatible static forms)
    My forms are not dynamic, the formaatting and layout do not change only the fields, so I am assuming my forms are static.
    TIA
    -Tim

    Hi Tim:
    "I am of the opinion that the Reader Extensions should be included with Live Cycle Designer/Acrobat "Professional". Many people will purchase with the expectation that they can create an interactive form, and have it be universally accessible because it is .pdf. "
    Yes, that's the opinion of many people. Unfortunately, many large businesses are still willing to pay for that functionality, so its unlikley that all the RE functionality will be built into future versions of Acrobat. However, Acrobat 7 does have some Reader Extensions in it - you can enable people to comment and review on documents using the free Reader tool, and Acrobat 8 expands on this by allowing Reader users to save form data locally (something that was available only in Reader Extensions).
    "There is mush attention paid to the capabilities of designer, and the full features with the purchase of Acrobat "Professional" but in reality they require anyone you send it to to have also spent a nice chunk of change for a compatible version of Acrobat (even though they may have already spent tens of thousands of dollars on Acrobat 6 site license, which is our situation). "
    Yes, but I'm not sure this is different from many other companies, who require that the client purchase expensive software in order to access their documents.
    "Is this Reader Extension capability included in Acrobat "Professional" 8? We (my department) purchased a full retail single license of "Professional" 7 this month, now I can only find information on Acrobat 8. As far as I know there was no caveat that the great feature filled forms that we were promised would only be compatible with the latest versions of the pricey Acrobat product. "
    There are many functions that Reader Extensions provides - allowing Reader users to access a web service is one of them, as is allowing Reader users to comment and review, as is allowing Reader users to save form data locally. The upcoming release of Acrobat 8 does not provide the ability to Reader enable a form to access a web service, but it does provide the ability for Reader users to comment and review and save form data locally.
    I hope this helps. I'll pass along this information to the Designer Product Manager as feedback.
    Mike

  • Direct Path Insert on Forms

    Hi,
    I am using following insert statement on my forms application to do direct path insert.
    insert into /*+append*/ abc select * from xyz;
    as redo is not generated if you do direct path insert but in above case redo is generating for the above insert statement.
    I then created a procedure test_insert as below
    create procedure test_insert is
    begin
    insert into /*+append*/ abc select * from xyz;
    end;
    i then replaced the insert statement with above procedure on form and after that redo for the insert statement stopped.
    i was wondering if we could use append hint for direct path insert on forms?

    My point, though, is that if you're doing your hourly load into a separate table and building the index(es) on that table before moving the partition into the partitioned table, there is no risk of doing anything to screw up the partitioned table. It's also a very handy way to ensure that your load process doesn't interfere with your production data.
    If i have understood your point right, what about the space required ( tablespaces and the indexes). Trust me, my table at source gets populated @ over 230 MIL records /day. If i have a temp table, i will have to maintain hourly partitions/indexes/tablespaces for the temp table to hold so much data, isn't it? And, the data i move (say today's data) will be used by the user only after 4 days (because it is available in the source). We have provisioned our user interface to connect to 2 databases, one with 5 days of data (incl. sysdate) and the other one is a archive DB that holds 45 days worth of data.
    </>
    I wouldn't expect that a direct path load into a single partition of a partitioned table would invalidate local indexes on other partitions, but since I'd never do a direct path load into a single partition of a partitioned table, I've not tested this to make sure.
    No problem, if i try this out i will share it in the forum. </>Thanks

  • Authorization Problem (I am Using Authorization For Custom Forms)

    Hi All,
    I am Using Authorizations To My Forms (I created One Addon For This Addon I am Using Authorization).I created Authorization For My Addon But While Working It Showing Some Errors
    . In My Addon Four Forms are there For  this four forms I am Using Authorization based on usres some screens only super  user can access. normal user he is not a super user he  cliekd on that authorization form it shows one message  Your not a authorized user to permitted this operation in this message box we have two butons one is ok button and one is Authorized by another user . When i clicked on Ok Button  I am getting error Internal error (-10) occured [131-183]. Please give me Your Valable Suggestion.
    I am waiting for  your Reply.
    Thanks & Regards
    Naresh

    I am using Sap Authorizations For My Custom Form  See The Code Also U Can Get Clear Idea
    Private Sub CustomAuthorization()
            Dim li_RetVal As Integer
            Dim pUserPer As SAPbobsCOM.UserPermissionTree
            Try
                pUserPer = Me.SBO_Company.GetBusinessObject(SAPbobsCOM.BoObjectTypes.oUserPermissionTree)
                'Purchase Indent
                If pUserPer.GetByKey("NHCL_PM") = False Then
                    pUserPer.PermissionID = "NHCL_PM"
                    pUserPer.Name = "Purchase Module"
                    pUserPer.Options = SAPbobsCOM.BoUPTOptions.bou_FullNone
                    li_RetVal = pUserPer.Add()
                End If
                'Purchase Indent ->New Purchase Indent
                If pUserPer.GetByKey("NHCL_PM_NPI") = False Then
                    pUserPer.PermissionID = "NHCL_PM_NPI"
                    pUserPer.Name = "New Purchase Indent"
                    pUserPer.Options = SAPbobsCOM.BoUPTOptions.bou_FullNone
                    pUserPer.ParentID = "NHCL_PM"
                    pUserPer.UserPermissionForms.FormType = "2000010002"
                    li_RetVal = pUserPer.Add()
                End If
                'Purchase Indent->View For Approval
                If pUserPer.GetByKey("NHCL_PM_VIE") = False Then
                    pUserPer.PermissionID = "NHCL_PM_VIE"
                    pUserPer.Name = "View For Approval"
                    pUserPer.Options = SAPbobsCOM.BoUPTOptions.bou_FullNone
                    pUserPer.ParentID = "NHCL_PM"
                    pUserPer.UserPermissionForms.FormType = "2000010003"
                    li_RetVal = pUserPer.Add()
                End If
                'Purchase Indent ->Selection For RFQ
                If pUserPer.GetByKey("NHCL_PM_SEC") = False Then
                    pUserPer.PermissionID = "NHCL_PM_SEC"
                    pUserPer.Name = "Selection For RFQ"
                    pUserPer.Options = SAPbobsCOM.BoUPTOptions.bou_FullNone
                    pUserPer.ParentID = "NHCL_PM"
                    pUserPer.UserPermissionForms.FormType = "2000010006"
                    li_RetVal = pUserPer.Add()
                End If
                'Purchase Indent ->Purchase Quotation
                If pUserPer.GetByKey("NHCL_PM_PUR") = False Then
                    pUserPer.PermissionID = "NHCL_PM_PUR"
                    pUserPer.Name = "Purchase Quotation"
                    pUserPer.Options = SAPbobsCOM.BoUPTOptions.bou_FullNone
                    pUserPer.ParentID = "NHCL_PM"
                    pUserPer.UserPermissionForms.FormType = "2000010007"
                    li_RetVal = pUserPer.Add()
                End If
                'Purchase Indent ->Final Quotation
                If pUserPer.GetByKey("NHCL_PM_FIN") = False Then
                    pUserPer.PermissionID = "NHCL_PM_FIN"
                    pUserPer.Name = "Final Quotation"
                    pUserPer.Options = SAPbobsCOM.BoUPTOptions.bou_FullNone
                    pUserPer.ParentID = "NHCL_PM"
                    pUserPer.UserPermissionForms.FormType = "2000010008"
                    li_RetVal = pUserPer.Add()
                End If
            Catch ex As Exception
                Dim ErrCode As Long
                Dim ErrMsg As String
                Me.SBO_Company.GetLastError(ErrCode, ErrMsg)
                Me.SBO_Application.StatusBar.SetText("Authorization Problem" & ErrCode & li_RetVal, SAPbouiCOM.BoMessageTime.bmt_Short)
            End Try
        End Sub

  • Working time taking user directly to a service

    Hi,
      When I click on Working Time - Workset - in my ESS, it takes me straight to a service attached to that Area Page. But If I click on Working Time from Overview Page, i takes me to a page which shows a list of all services attached to that Area Page. Recently one of my developer was modifying some thing on the PCD. What could have gone wrong.
    I want the user to see the list of all services if he clicks on the workset 'Working Time' instead of taking him directly to a service. I hope I made myself clear.
    Regards,
    Murali.

    Solved it myself. There were enrty points set for the Page.

Maybe you are looking for

  • How to change Content canvas size during run time?

    Hi All, I am using oracle 10g web forms and opening in Separate Frame. When I re-size the MID window, I want to change Content canvas size to window size. Is it possible to change content canvas size at run time? Even after using following statement

  • Where I'm wrong

    Hello, I use a Centura Database I want to read a file and then insert some data from each line into a database. The file I read has at least 640 lines. Everything works for 81 lines readed but then, I receive the following error message : " SQLExcept

  • When I minimize firefox it closes

    Just what the title says, I am not closing it I just want to go to somewhere else and the darn thing closes. Doesn't crash, just closes down completely and I have to restart the darn thing and go back to where I was.

  • Weblogic.application.ModuleException: Context path is already is use

    Hi, I am using ALSB 3.0 and I am trying to deploy a ALSB configuration jar. I am seeing the following exception during deployment. +weblogic.application.ModuleException: Context path '/alsb/internal/transports/ejb/UserAccounts_1_0_businessservices_C-

  • ITunes deletes my iPhone 4 apps, then crashes and doesn't work

    Yes, my music library contains 70 gb of music, which I've spent years collecting, rating and making playlists with etc. Everytime I try and synch with my iPod it tells me the L: drive is not available, but after a few attempts it synchs everything. I