PSB- Worksheet cannot send for Approval

Dear All,
We are implementing Public Sector Budgeting module. When we create an worksheet and try to submit for the approval the submit worksheet is disabled.
and if any one can differentiate wat is the difference between global worksheet and local worksheet.
Some more doubts are
- Is The approvals will go to notifiers available in budget group or review group notifiers
- In worksheet line items cannot be visible. Even in parameter set i ve entered the line items..?
Since this is an rare module which was implemented in metalink we can find less number of documents.
Can any one can provide process document, BR 100, TE40 likewise..
Regards
Naveen.s

Duplicate post -- Please post only once.
PSB- Worksheet cannot send for Approval
PSB- Worksheet cannot send for Approval

Similar Messages

  • STS: Why manager can still send for approval?

    Hi Folks,
    Could you kindly help me on this matter ?
    Why on the STS, I'm working on it now, the manager (the position is highest) stll can send for approval ? In my opinion, he should only be able to approve / reject.
    If I check under that user ID, it has authorization for: R_STS_PT, R_STS_SUP, R_STS_CUST. Is it caused by this ?
    Thanks a lot all

    Hi Niel,
    Refer to the consulting note 530285 and read all the conditions and points.
    It will clarify your issue.
    Regards,
    Amit

  • In Ap invoice grid is showing no value when send for approval

    Dear Experts,
    There are 3-4 purchase invoice send for approval when it is open by approving authority the detail grid i.e. where the item details are shown is blank only gross total and net total in footer is showing value and header values.
    This all four invoices are of same vendor, invoices punch after those invoice are showing proper values.
    what could be the reason ?
    Thanks & regards
    Kamlesh

    Dear Kamlesh,
    If the problem only occur for one BP, check this BP's profile.
    What is the condition for approval?
    Thanks,
    Gordon

  • Validation at "Save and Send for approval" in Create Expense Report

    Hello gurus,
    I have an issue where in at Create Expense report we have two options:
    1. Save
    2. Save and Send for Approval.
    When this trip is SAVED and SEND FOR APPROVAL the validation should trigger and error message should appear if expense type XXXX is used in any of the line item of the trip.
    I have been told that this can be done by  user exit at the backend level. But, at the frontend we will have to make some changes as well.
    I know WD JAVA, but a little short on knowledge in WD ABAP.
    Could you please help me by telling me as to how to do a validation in this scenario or even if its necessary to do it ?? I mean, is it possible that the backend validation will hold true if someone will create a expense report from the frontend as well ??
    Please explain me ...

    Hello friend,
    Its easy to handle this problem,
    To know how you can use the message effectively see this details about the interface,
    http://help.sap.com/saphelp_nw70ehp1/helpdata/en/6c/7aae42cd7fb611e10000000a155106/content.htm
    For clear understanding about the steps for creating messages see the code below,
    http://e-university.wisdomjobs.com/sap-abap-web-dynpro/chapter-105-274/messages-exceptions-and-web-dynpro-abap.html
    I think you will be clear after reading this code. Any queries please revert back to me.
    Thanks,
    Sri Hari

  • Duplicate Document number in Document Draft while sending for Approval

    Hello Experts,
    In Purchase order when we create document and send for approval ... if in a single day we create 25-30 Purchase orders, system assign same number lets say: 120011 to all the 30 documents created in a single day.
    is there a way we can give unique number to all the PO drafts being created and sending for approval ... ?
    Help Required
    Regards,

    Hi Shazad,
    The document number that you refer to works as follows. If you go into Purchase Orders, it will say that the next purchase order number (OPCH.DocNum) will be for example 345. When you're done capturing the information and go to File > Save as draft, the same screen appears again and you can add another draft.
    Seeing that the first draft didn't actually create a purchase order, but only a draft, the next available number is allocated. The next available purchase order number is still 345.Only you add a actual purchase order will the number be changed again.
    Internally in the SAP database, the DocEntry field of the draft contains the actual draft internal number. You can view this number if you open the drafts. Draft No is unique, but document number isn't and doesn't matter until the actual document is added.
    Hope it helps,
    Adele

  • Cannot Submit for approval

    Hi,
    I have written an WDP Application which creates a resource in KM and subsequently <b>"Submits it for approval".</b>
    Now the problem is, all the users can create the content, but only user having a <b>Content Management</b> role can perform the submit for approval action. I have given the content admin the application role. We can see the resource getting created in the KM folder for all the users. But only Content admin can submit.
    I have given all the reqd. users the full control over the folders.
    Now what could be the problem???!!!!!
    Helpful answers will be rewarded
    Thanks in advance
    BP

    Hi,
       We had to write this code. It's a button that allow you to submit a document and change acl permission.
    Patricio.
    public IRenderingEvent execute(IResource res, Event event) throws WcmException {
              if (event instanceof ConfirmEvent) {
                   String pepe = "";
                   ConfirmEvent cce = (ConfirmEvent) event;
                   pepe += " a1 ";
                   if (ConfirmEvent.CHOICE_YES.equals(cce.getChoice())) {
                        IRepositoryServiceFactory repositoryServiceFactory = ResourceFactory.getInstance().getServiceFactory();
                        IStatemanagementManager statemanagementManager =
                             (IStatemanagementManager) repositoryServiceFactory.getRepositoryService(res, IWcmConst.STATEMANAGEMENT_SERVICE);
                        IStatemanagementResource sResource = statemanagementManager.getStatemangementResource(res);
                        IResourceTransition resourceTransition = sResource.getTransition("lbl.submit");
                        if (resourceTransition != null) {
                             resourceTransition.execute();
                        try {
                             ISecurityManager sm = res.getRepositoryManager().getSecurityManager(res);
                             pepe += " a7 ";
                             if (sm != null && sm instanceof IAclSecurityManager) {
                                  IAclSecurityManager asm = (IAclSecurityManager) sm;
                                  IResourceAclManager ram = asm.getAclManager();
                                  IResourceAcl ra = ram.getAcl(res);
                                  if (ra == null) {
                                       IUMPrincipal administradores = WPUMFactory.getGroupFactory().getGroup("Loyal ISO Administrador");
                                       IUMPrincipal publicadores = WPUMFactory.getGroupFactory().getGroup("Loyal ISO Publicador");
                                       ra = ram.createAcl(res);
                                       ra.addOwner(administradores);
                                       ra.addOwner(publicadores);
                                  IUMPrincipal everyone = WPUMFactory.getGroupFactory().getGroup("Everyone");
                                  IResourceAclEntryList rel = ra.getEntries();
                                  IResourceAclEntryListIterator it = rel.iterator();
                                  while (it.hasNext()) {
                                       IResourceAclEntry entry = it.next();
                                       if (entry.getPrincipal().equals(everyone)) {
                                            ra.removeEntry(entry);
                        } catch (AclPersistenceException e) {
                             return new InfoEvent(Status.ERROR, "Error en el cambio de permisos");
                        } catch (ResourceException e) {
                             System.out.println("I raised a ResourceException " + e.getMessage());
                             return new InfoEvent(Status.ERROR, "Error en el recurso");
                        } catch (UserManagementException e) {
                             System.out.println("I raised a UserManagementException" + e.getMessage());
                             return new InfoEvent(Status.ERROR, "Error en el manejo de usuarios");
                        return new InfoEvent(Status.OK, "Done !");
                   } else if (ConfirmEvent.CHOICE_NO.equals(cce.getChoice())) {
                        return ConfirmComponent.onNo(event, res.getContext().getLocale());
                   } else if (ConfirmEvent.CHOICE_CANCEL.equals(cce.getChoice())) {
                        return ConfirmComponent.onCancel(event, res.getContext().getLocale());
              return new InfoEvent(Status.ABORT, "Aborted.");

  • Cannot send the approval form by PDF in the procurement scenario

    Dear Experts,
    There is a problem with the PDF in the procurement scenario in Discovery System V3. I am using Japanese version of the DS.
    I can send the sales order which is the adobe form in the portal (log in by proc_sales).
    But when it comes to approving the procurement request (log in by proc_admin), when I click on the send button, an window pops up which says 2Cannot handle content type: text/html "
    I googled and it says if my version of Adobe reader is correct.
    I have installed Adobe Reader 7.0.9. (so is written in the business scenario script).
    Any advice will be very much helpful.
    many thanks
    Sudeep

    Hello Sudeep,
    Please follow this URL to open a CSN ticket : [https://service.sap.com/message|https://service.sap.com/message]
    When you open the message,you will be required to choose the category(component) under which to open the ticket . Please place your support message under the component CA_SOA_DS- this is the component used for Discovery System related messages.
    Thanks,
    Deepa

  • Cannot send email from my iPhone or iPad. The server rejects a recepient for no apparent reason.  The recipient is not new.  This issue happens on reply or reply to all or froward; not a new email. What is happening?

    Cannot send email from my iPhone or iPad. The server rejects a recepient for no apparent reason.  The recipient is not new.  This issue happens on reply or reply to all or froward; not a new email to the same recepient. What is happening?

    I talked with a tech today and he said I cloud is having problems which should be resolved shortly.
    In the mean time I used the .me smtp server settings which allowed me to send mail.

  • We purchased a new iPad2 and registered it using a 'new' iCloud email/ID. We are unable to send email from the iPad and iPhone. The error is: Cannot send mail. The user name or password for iCloud is incorrect.

    We purchased a new iPad2 and registered it using a 'new' iCloud email/ID. We are unable to send email from the iPad and iPhone. The error is:>> Cannot send mail. The user name or password for iCloud is incorrect.

    About ~20 hours later, this ended up solving itself. We can send email using the '.icloud' email from both the iPad and iPhone.  Advise would be 'wait' before you start seeking alteranatives like yahoo, hotmail, etc.  This definitely is a convenient way to keep all your 'cloud' information in a centralized place, including the common email...

  • I had a power failure 2 days ago, have power now, but cannot send email from my iPad. Everything was fine before that. The box says cannot send mail, the user name or password for Gmail is incorrect. I haven't changed anything. I need help. Thanks

    Hi
    I had a power failure 2 days ago, my computer is running again, but now I cannot send email from my iPad using Cox or my gmail account. I am receiving mail in my Cox account but not my gmail account.It was working fine until the power failure. It keeps telling me, the user name or password for Gmail is incorrect. I have not changed anything. I don't know what is wrong. Can anyone help me? Thanks

    I agree, unplug and replug your router, then reset your iPad by holding down the sleep and home buttons, ignore the red power down slider, and wait til you see the silver apple. let it reboot and then try your connection.
    Chances are rebooting the router will help. You may also need to talk to cox. They may need to reset something on their end.

  • Hi, i am having trouble with my mac mail account, i cannot send or receive any emails because of the server connection problems. Message says it could not be connected to SMTP server. Thanks in advance for your help.

    Hi, i am having trouble with my mac mail account, i cannot send or receive any emails because of the server connection problems. Message says it could not be connected to SMTP server. Thanks in advance for your help.

    Hello Sue,
    I have an iPad 3, iPad Mini and iPhone 5S and they are all sluggish on capitalisation using shift keys. I hope that Apple will solve the problem because it is driving me crazy.
    I find using a Microsoft Surface and Windows 8 phone, which I also have, work as well as all the ios devices before the ios 7 upgrade.
    It has something to do with the length of time that you need to hold the shift key down. The shift key needs to be held longer than the letter key for the capitalisation to work. For some reason, this is a major change in the way we have learnt to touch type on computers. I am having to relearn how to type!
    Michael

  • I cannot send an email from my iPad 2? No problem receiving, why does this happen? Have tried the suggestions for setting up email and after doing the sync mail through iTunes receiving worked great but still cannot send? Any help would be great

    I cannot send an email from my iPad 2? No problem receiving, why does this happen? Have tried the suggestions for setting up email and after doing the sync mail through iTunes receiving worked great but still cannot send? Any help would be great!

    The fact that you can receive means you have a valid e mail address, and have established the connection to the incoming server, so all of that works.  Since the send does not work, that means your outgoing server is rejecting whatever settings you used formthe outgoing set up.  Try them again. 
    Google your particular isp, and ipad and many times you will find the exact settings needed for your isp.  Or tell us here, and soneone else may be on the same isp.  Some mail services need you to change a port, or have a unique name for the outgoing server.  
    Kep trying.

  • "This message cannot be sent at this time."  I have been getting this pop-up for 3 days when trying to send out mail.  I don't know what to do!  I cannot send mail from this account on any ISP. Please help!

    "This message cannot be sent at this time."  I have been getting this pop-up for 3 days when trying to send out mail.  I don't know what to do!  I cannot send mail from this account on any ISP. Please help!

    lots of people seem to be havgin a problem sending email from iCloud webmail.
    does your email address have uppercase characters in it?
    if so, try creating an alias in lowercase (go to preferences in iCloud webmail and select 'accounts') and see if email sends okay from that

  • TS3899 comcast told me I needed to change my password for my comcast account.   I changed my password on my DESKTOP computer.   Now on my iPad, when I click on email, everything is received and read perfectly but I cannot send an email.  The user name or

    On my desktop computer, comcast requested that due to a problem, I needed to change my comcast PASSWORD.   I did so and everything was fine.   That evening I was working on my iPad and was reading all my emails that I had received during the day and tried to respond.   It came back and told me the username or password was not correct.   I immediately went to SETTINGS on my iPad and changed the mail password.   I have been working on this for two days and cannot SEND emails.  Otherwise, everything works perfect.   Everything I try to send gets put in my DRAFT file with a red triangle in the corner.   HELP???????

    Check the outgoing mail server setting. Make sure that your username and password are in there.
    Settings>Mail, Contacts, Calendars>Your email account>Account>Outgoing mail server - tap the server name next to SMTP and check in the primary server and make sure your username and password are entered and correct - even if it says that the password is optional.

  • I cannot send emails after latest update/release for "an unknown reason"

    Sorry to duplicate, but the reply I got to my first question didn't help, and there didn't seem to be any follow up. So I am trying to be more specific. I can receive but not send emails. I have read the page of suggested Mozilla solutions (Cannot send messages), tried them all, to no avail. I have contacted Network Solutions. Everything checks out their end. Disabling my anti-virus software does not help. I can send messages from a cell phone. As an experiment, I downloaded Opera, and tried it. I can send messages from Opera. But I don't want to use Opera. I want to use Thunderbird. The exact error message I get when trying to send is... "The message could not be sent using SMTP server XXXXX for an unknown reason. Please verify that your SMTP server settings are correct and try again, or contact your network administrator." I'd be very grateful for help with this.

    closing in favor of https://support.mozilla.org/en-US/questions/1037758
    Also closed https://support.mozilla.org/en-US/questions/1037765

Maybe you are looking for