AME Approval Group is FND USER, but it is giving error

Hi,
I have developed an AME Rule, it is a pretty simple rule , and has one of the approval Group which is static and has FND User as the approval type.
The approval group and the rules are created , but as the user submits a transaction , they receive an error "AME Approval list could not be generated, please contact your System Admin". As soon as we remove the static Approval group (FND USER based group) the transaction is submitted successfully and the AME approval list is also generated.
The FND user , we are using in this scenario is not an HR User, but is a valid User Account.
Am I missing something , please any help will be appreciated.
Instance details :
Application Version 12.1.2
DB 11.0.3

Approvals Management Business Analyst Dash Board,
Select your Transaction Type --> Click on the Approval Group --> Create New Group
Name XXX
* Description XXX
* Order Number : 1
Voting Method : Serial
Usage Type Static
Approver Type :
Add another Row
fnd_user --> Select the user , click on apply.
Attach this approval group to your rule
Hope this helps.
Thanks,
Ranga

Similar Messages

  • TS3694 hello i am trying to update my phone . i am connecting it to itunes but it is giving error 3194 . can you help me resolve this problem please.

    hello i am trying to update my phone . i am connecting it to itunes but it is giving error 3194 . can you help me resolve this problem please.

    Hi ali hakim,
    Welcome to the Support Communities!
    The article below may be able to help you with this issue.
    Click on the link to see more details and screenshots.
    iOS: Restore error 3194 or 'This device isn't eligible for the requested build'
    http://support.apple.com/kb/TS4451
    This occurs when iTunes is unable to communicate with the update-and-restore server (gs.apple.com). This is most likely because it is being blocked, redirected, or interrupted by security software, hosts-file entries, or other third-party software.
    Cheers,
    - Judy

  • Dyn admin working but site is giving error 404

    Component browser at http://localhost:8080/dyn/admin working properly but at the same time site giving error 404

    Hi Amit,
    Please check that your .ear files \META-INF\application.xml is deployed correctly.
    If its not then add it
    <module>
    <web>
    <web-uri>store.war</web-uri>
    <context-root>crs</context-root>
    </web>
    </module>
    <module>
    <web>
    <web-uri>storedocroot.war</web-uri>
    <context-root>crsdocroot</context-root>
    </web>
    </module>
    Try it..

  • SharePoint 2013: Update User Profile Properties is giving error

    Hello all SharePoint Gurus - I am trying to update the User Profile Properties. The update I am trying is to
    Property Mapping for Synchronization.  Mapping mobile property of AD to the User Profile Property Mobile Phone.
    It is giving error "An Error occurred when updating a property". Check ULS is not showing any error. 
    The FIM Service, USer Profile Services and Synchronization Services all are in Started mode. Properly synchronizing with AD. 
    Please throw some light on this. 
    Regards,
    Khushi

    Hi Khushi,
    According to your description, my understanding is that you got an error when you make "Mobile Phone" map to "mobile" from AD properties.
    I did a test as your description, in my testing, everything worked well.
    Please try to stop User Profile Synchronization service and User profile service, then restart them, compare the result.
    There are some similar posts about this issue, pease check if they are useful for you:
    https://social.technet.microsoft.com/Forums/sharepoint/en-US/32937e1d-830e-4553-bdfc-23d3ee7f6d07/why-mapping-of-user-profile-property-fails
    http://sharepoint.stackexchange.com/questions/34634/mapping-user-properties-fails
    If this issue still exists, please check Windows Event Viewer to check there is something about this issue:
    How to use Windows Event Viewer:
    http://blog.credera.com/technology-insights/microsoft-solutions/troubleshooting-sharepoint-errors/
    Best Regards,
    Wendy
    Wendy Li
    TechNet Community Support

  • Able to get mail but PDF is giving Error

    Dear All,
            Now I am able to get PDF file dowloaded into my Desktop and can see the content, but when sent it as mail, we are unable to see the content so we are getting the message that File is not properly decoded.
    Can anyone please help me.
    Regards,
    Satya.

    Hello,
    Check this sample code:
    REPORT ZV_JOB_READ NO STANDARD PAGE HEADING LINE-SIZE 255..
    * SAP-User       : VSM1KOR                                             *
    * Author (name)  : Mr.Vasanth M (CI/ISY21-IN)                          *
    * Development    : Mr.Vasanth M (CI/ISY21-IN)                          *
    * Created on/in  : 02.08.2007                                          *
    * Description    : OPL 1523: This is a Flexible to send the spool of a *
    *                  report to any email Id as PDF file.                 *
    TABLES: TSP01.
    DATA: SV_ADR TYPE SOMLRECI1-RECEIVER.
    SELECT-OPTIONS : P_EMAIL1 FOR SV_ADR NO INTERVALS.
    *DEFAULT '[email protected]',
    PARAMETERS: P_SENDER LIKE SOMLRECI1-RECEIVER,
    *DEFAULT '[email protected]',
                P_REPID LIKE SY-REPID, " Report to execute
                P_LINSZ LIKE SY-LINSZ DEFAULT 132, " Line size
                P_PAART LIKE SY-PAART DEFAULT 'X_65_132', " Paper Format
                P_SLSET LIKE SY-SLSET, "Variant name
                P_ODESCR LIKE SODOCCHGI1-OBJ_DESCR,
                P_ADESCR TYPE SO_OBJ_NAM,
                P_DELSPL AS CHECKBOX.
    *DATA DECLARATION
    DATA: GD_RECSIZE TYPE I.
    * Spool IDs
    TYPES: BEGIN OF T_TBTCP.
            INCLUDE STRUCTURE TBTCP.
    TYPES: END OF T_TBTCP.
    DATA: IT_TBTCP TYPE STANDARD TABLE OF T_TBTCP INITIAL SIZE 0,
          WA_TBTCP TYPE T_TBTCP.
    * Job Runtime Parameters
    DATA: GD_EVENTID LIKE TBTCM-EVENTID,
          GD_EVENTPARM LIKE TBTCM-EVENTPARM,
          GD_EXTERNAL_PROGRAM_ACTIVE LIKE TBTCM-XPGACTIVE,
          GD_JOBCOUNT LIKE TBTCM-JOBCOUNT,
          GD_JOBNAME LIKE TBTCM-JOBNAME,
          GD_STEPCOUNT LIKE TBTCM-STEPCOUNT,
          GD_ERROR TYPE SY-SUBRC,
          GD_RECIEVER TYPE SY-SUBRC.
    DATA: W_RECSIZE TYPE I,
          MC_VALID(1) TYPE C.
    DATA: GD_SUBJECT LIKE SODOCCHGI1-OBJ_DESCR,
          IT_MESS_BOD LIKE SOLISTI1 OCCURS 0 WITH HEADER LINE,
          IT_MESS_ATT LIKE SOLISTI1 OCCURS 0 WITH HEADER LINE,
          GD_SENDER_TYPE LIKE SOEXTRECI1-ADR_TYP,
          GD_ATTACHMENT_DESC TYPE SO_OBJ_NAM,
          GD_ATTACHMENT_NAME TYPE SO_OBJ_DES,
          MI_RQIDENT LIKE TSP01-RQIDENT.
    * Spool to PDF conversions
    DATA: GD_SPOOL_NR LIKE TSP01-RQIDENT,
          W_SPOOL_NR LIKE TSP01-RQIDENT,
          GD_DESTINATION LIKE RLGRAP-FILENAME,
          GD_BYTECOUNT LIKE TST01-DSIZE,
          GD_BUFFER TYPE STRING.
    DATA: MSTR_PRINT_PARMS LIKE PRI_PARAMS.
    * Binary store for PDF
    DATA: BEGIN OF IT_PDF_OUTPUT OCCURS 0.
            INCLUDE STRUCTURE TLINE.
    DATA: END OF IT_PDF_OUTPUT.
    CONSTANTS: C_DEV LIKE SY-SYSID VALUE 'DEV',
               C_NO(1) TYPE C VALUE ' ',
               C_DEVICE(4) TYPE C VALUE 'LOCL'.
    START-OF-SELECTION.
    * Write statement to represent report output. Spool request is created
    * if write statement is executed in background. This could also be an
    * ALV grid which would be converted to PDF without any extra effort
    *** Alternative way could be to submit another program and store spool
      CALL FUNCTION 'GET_PRINT_PARAMETERS'
      EXPORTING
            AUTHORITY = SPACE
            COPIES = '1'
            COVER_PAGE = SPACE
            DATA_SET = SPACE
            DEPARTMENT = SPACE
            DESTINATION = SPACE
            EXPIRATION = '1'
            IMMEDIATELY = SPACE
    *       in_archive_parameters = space
    *       in_parameters = space
            LAYOUT = SPACE
            MODE = SPACE
            NEW_LIST_ID = 'X'
            NO_DIALOG = 'X'
            USER = SY-UNAME
      IMPORTING
            OUT_PARAMETERS = MSTR_PRINT_PARMS
            VALID = MC_VALID
      EXCEPTIONS
            ARCHIVE_INFO_NOT_FOUND = 1
            INVALID_PRINT_PARAMS = 2
            INVALID_ARCHIVE_PARAMS = 3
            OTHERS = 4.
      IF MSTR_PRINT_PARMS-PDEST = SPACE.
        MSTR_PRINT_PARMS-PDEST = 'LOCL'.
      ENDIF.
      MSTR_PRINT_PARMS-LINSZ = P_LINSZ.
      MSTR_PRINT_PARMS-PAART = P_PAART.
      SUBMIT (P_REPID) TO SAP-SPOOL WITHOUT SPOOL DYNPRO
                          SPOOL PARAMETERS MSTR_PRINT_PARMS
                          USING SELECTION-SET P_SLSET
                          AND RETURN.
    * Get spool id from program called above
      PERFORM GET_SPOOL_NUMBER USING SY-REPID SY-UNAME CHANGING MI_RQIDENT.
    * IMPORT w_spool_nr FROM MEMORY ID SY-REPID.
      PERFORM CONVERT_SPOOL_TO_PDF.
      PERFORM PROCESS_EMAIL.
      IF P_DELSPL EQ 'X'.
        PERFORM DELETE_SPOOL.
      ENDIF.
      IF SY-SYSID = C_DEV.
        WAIT UP TO 5 SECONDS.
        SUBMIT RSCONN01 WITH MODE = 'INT'
        WITH OUTPUT = 'X'
        AND RETURN.
      ENDIF.
    * FORM obtain_spool_id *
    FORM OBTAIN_SPOOL_ID.
      CHECK NOT ( GD_JOBNAME IS INITIAL ).
      CHECK NOT ( GD_JOBCOUNT IS INITIAL ).
      SELECT * FROM TBTCP INTO TABLE IT_TBTCP
                                  WHERE JOBNAME = GD_JOBNAME
                                  AND JOBCOUNT = GD_JOBCOUNT
                                  AND STEPCOUNT = GD_STEPCOUNT
                                  AND LISTIDENT <> '0000000000'
                                  ORDER BY JOBNAME
                                  JOBCOUNT
                                  STEPCOUNT.
      READ TABLE IT_TBTCP INTO WA_TBTCP INDEX 1.
      IF SY-SUBRC = 0.
        MESSAGE S004(ZDD) WITH GD_SPOOL_NR.
        GD_SPOOL_NR = WA_TBTCP-LISTIDENT.
        MESSAGE S004(ZDD) WITH GD_SPOOL_NR.
      ELSE.
        MESSAGE S005(ZDD).
      ENDIF.
    ENDFORM. "OBTAIN_SPOOL_ID
    * FORM get_job_details *
    FORM GET_JOB_DETAILS.
    * Get current job details
      CALL FUNCTION 'GET_JOB_RUNTIME_INFO'
           IMPORTING
                EVENTID                 = GD_EVENTID
                EVENTPARM               = GD_EVENTPARM
                EXTERNAL_PROGRAM_ACTIVE = GD_EXTERNAL_PROGRAM_ACTIVE
                JOBCOUNT                = GD_JOBCOUNT
                JOBNAME                 = GD_JOBNAME
                STEPCOUNT               = GD_STEPCOUNT
           EXCEPTIONS
                NO_RUNTIME_INFO         = 1
                OTHERS                  = 2.
    ENDFORM. "GET_JOB_DETAILS
    * FORM convert_spool_to_pdf *
    FORM CONVERT_SPOOL_TO_PDF.
      CALL FUNCTION 'CONVERT_ABAPSPOOLJOB_2_PDF'
           EXPORTING
                SRC_SPOOLID              = MI_RQIDENT
                NO_DIALOG                = C_NO
                DST_DEVICE               = C_DEVICE
           IMPORTING
                PDF_BYTECOUNT            = GD_BYTECOUNT
           TABLES
                PDF                      = IT_PDF_OUTPUT
           EXCEPTIONS
                ERR_NO_ABAP_SPOOLJOB     = 1
                ERR_NO_SPOOLJOB          = 2
                ERR_NO_PERMISSION        = 3
                ERR_CONV_NOT_POSSIBLE    = 4
                ERR_BAD_DESTDEVICE       = 5
                USER_CANCELLED           = 6
                ERR_SPOOLERROR           = 7
                ERR_TEMSEERROR           = 8
                ERR_BTCJOB_OPEN_FAILED   = 9
                ERR_BTCJOB_SUBMIT_FAILED = 10
                ERR_BTCJOB_CLOSE_FAILED  = 11
                OTHERS                   = 12.
      CHECK SY-SUBRC = 0.
    * Transfer the 132-long strings to 255-long strings
      LOOP AT IT_PDF_OUTPUT.
        TRANSLATE IT_PDF_OUTPUT USING ' ~'.
        CONCATENATE GD_BUFFER IT_PDF_OUTPUT INTO GD_BUFFER.
      ENDLOOP.
      TRANSLATE GD_BUFFER USING '~ '.
      DO.
        IT_MESS_ATT = GD_BUFFER.
        APPEND IT_MESS_ATT.
        SHIFT GD_BUFFER LEFT BY 255 PLACES.
        IF GD_BUFFER IS INITIAL.
          EXIT.
        ENDIF.
      ENDDO.
    ENDFORM. "CONVERT_SPOOL_TO_PDF
    * FORM process_email *
    FORM PROCESS_EMAIL.
      DESCRIBE TABLE IT_MESS_ATT LINES GD_RECSIZE.
      CHECK GD_RECSIZE > 0.
      LOOP AT P_EMAIL1.
        PERFORM SEND_EMAIL USING P_EMAIL1-LOW.
      ENDLOOP.
    * perform send_email using p_email2.
    ENDFORM. "PROCESS_EMAIL
    * FORM send_email *
    * --> p_email *
    FORM SEND_EMAIL USING P_EMAIL.
      CHECK NOT ( P_EMAIL IS INITIAL ).
      REFRESH IT_MESS_BOD.
    * Default subject matter
      GD_SUBJECT = P_ODESCR.
      GD_ATTACHMENT_DESC = P_ADESCR.
    * CONCATENATE 'attach_name' ' ' INTO gd_attachment_name.
      IT_MESS_BOD = TEXT-001." 'This is an automated report from SAP.'.
      APPEND IT_MESS_BOD.
      IT_MESS_BOD = TEXT-002. " 'Please do not reply to this mail id.'.
      APPEND IT_MESS_BOD.
      IF P_SENDER EQ SPACE.
        GD_SENDER_TYPE = SPACE.
      ELSE.
        GD_SENDER_TYPE = 'INT'.
      ENDIF.
    * Send file by email as .xls speadsheet
      PERFORM SEND_FILE_AS_EMAIL_ATTACHMENT
                                    TABLES IT_MESS_BOD
                                    IT_MESS_ATT
                                    USING P_EMAIL
                                    P_ODESCR
                                    'PDF'
                                    GD_ATTACHMENT_NAME
                                    GD_ATTACHMENT_DESC
                                    P_SENDER
                                    GD_SENDER_TYPE
                                    CHANGING GD_ERROR
                                    GD_RECIEVER.
    ENDFORM. "SEND_EMAIL
    * FORM delete_spool *
    FORM DELETE_SPOOL.
      DATA: LD_SPOOL_NR TYPE TSP01_SP0R-RQID_CHAR.
      LD_SPOOL_NR = GD_SPOOL_NR.
      CHECK P_DELSPL <> C_NO.
      CALL FUNCTION 'RSPO_R_RDELETE_SPOOLREQ'
           EXPORTING
                SPOOLID = LD_SPOOL_NR.
    ENDFORM. "DELETE_SPOOL
    *& Form SEND_FILE_AS_EMAIL_ATTACHMENT
    * Send email
    FORM SEND_FILE_AS_EMAIL_ATTACHMENT TABLES IT_MESSAGE
                                              IT_ATTACH
                                              USING P_EMAIL
                                              P_MTITLE
                                              P_FORMAT
                                              P_FILENAME
                                              P_ATTDESCRIPTION
                                              P_SENDER_ADDRESS
                                              P_SENDER_ADDRES_TYPE
                                              CHANGING P_ERROR
                                              P_RECIEVER.
      DATA: LD_ERROR TYPE SY-SUBRC,
      LD_RECIEVER TYPE SY-SUBRC,
      LD_MTITLE LIKE SODOCCHGI1-OBJ_DESCR,
      LD_EMAIL LIKE SOMLRECI1-RECEIVER,
      LD_FORMAT TYPE SO_OBJ_TP ,
      LD_ATTDESCRIPTION TYPE SO_OBJ_NAM ,
      LD_ATTFILENAME TYPE SO_OBJ_DES ,
      LD_SENDER_ADDRESS LIKE SOEXTRECI1-RECEIVER,
      LD_SENDER_ADDRESS_TYPE LIKE SOEXTRECI1-ADR_TYP,
      LD_RECEIVER LIKE SY-SUBRC.
      DATA: T_PACKING_LIST LIKE SOPCKLSTI1 OCCURS 0 WITH HEADER LINE,
      T_CONTENTS LIKE SOLISTI1 OCCURS 0 WITH HEADER LINE,
      T_RECEIVERS LIKE SOMLRECI1 OCCURS 0 WITH HEADER LINE,
      T_ATTACHMENT LIKE SOLISTI1 OCCURS 0 WITH HEADER LINE,
      T_OBJECT_HEADER LIKE SOLISTI1 OCCURS 0 WITH HEADER LINE,
      W_CNT TYPE I,
      W_SENT_ALL(1) TYPE C,
      W_DOC_DATA LIKE SODOCCHGI1.
      LD_EMAIL = P_EMAIL.
      LD_MTITLE = P_MTITLE.
      LD_FORMAT = P_FORMAT.
      LD_ATTDESCRIPTION = P_ATTDESCRIPTION.
      LD_ATTFILENAME = P_FILENAME.
      LD_SENDER_ADDRESS = P_SENDER_ADDRESS.
      LD_SENDER_ADDRESS_TYPE = P_SENDER_ADDRES_TYPE.
    * Fill the document data.
      W_DOC_DATA-DOC_SIZE = 1.
    * Populate the subject/generic message attributes
      W_DOC_DATA-OBJ_LANGU = SY-LANGU.
      W_DOC_DATA-OBJ_NAME = 'SAPRPT'.
      W_DOC_DATA-OBJ_DESCR = LD_MTITLE .
      W_DOC_DATA-SENSITIVTY = 'F'.
    * Fill the document data and get size of attachment
      CLEAR W_DOC_DATA.
      READ TABLE IT_ATTACH INDEX W_CNT.
      W_DOC_DATA-DOC_SIZE =
      ( W_CNT - 1 ) * 255 + STRLEN( IT_ATTACH ).
      W_DOC_DATA-OBJ_LANGU = SY-LANGU.
      W_DOC_DATA-OBJ_NAME = 'SAPRPT'.
      W_DOC_DATA-OBJ_DESCR = LD_MTITLE.
      W_DOC_DATA-SENSITIVTY = 'F'.
      CLEAR T_ATTACHMENT.
      REFRESH T_ATTACHMENT.
      T_ATTACHMENT[] = IT_ATTACH[].
    * Describe the body of the message
      CLEAR T_PACKING_LIST.
      REFRESH T_PACKING_LIST.
      T_PACKING_LIST-TRANSF_BIN = SPACE.
      T_PACKING_LIST-HEAD_START = 1.
      T_PACKING_LIST-HEAD_NUM = 0.
      T_PACKING_LIST-BODY_START = 1.
      DESCRIBE TABLE IT_MESSAGE LINES T_PACKING_LIST-BODY_NUM.
      T_PACKING_LIST-DOC_TYPE = 'RAW'.
      APPEND T_PACKING_LIST.
    * Create attachment notification
      T_PACKING_LIST-TRANSF_BIN = 'X'.
      T_PACKING_LIST-HEAD_START = 1.
      T_PACKING_LIST-HEAD_NUM = 1.
      T_PACKING_LIST-BODY_START = 1.
      DESCRIBE TABLE T_ATTACHMENT LINES T_PACKING_LIST-BODY_NUM.
      T_PACKING_LIST-DOC_TYPE = LD_FORMAT.
      T_PACKING_LIST-OBJ_DESCR = LD_ATTDESCRIPTION.
      T_PACKING_LIST-OBJ_NAME = LD_ATTFILENAME.
      T_PACKING_LIST-DOC_SIZE = T_PACKING_LIST-BODY_NUM * 255.
      APPEND T_PACKING_LIST.
    * Add the recipients email address
      CLEAR T_RECEIVERS.
      REFRESH T_RECEIVERS.
      T_RECEIVERS-RECEIVER = LD_EMAIL.
      T_RECEIVERS-REC_TYPE = 'U'.
      T_RECEIVERS-COM_TYPE = 'INT'.
      T_RECEIVERS-NOTIF_DEL = 'X'.
      T_RECEIVERS-NOTIF_NDEL = 'X'.
      APPEND T_RECEIVERS.
      CALL FUNCTION 'SO_DOCUMENT_SEND_API1'
           EXPORTING
                DOCUMENT_DATA              = W_DOC_DATA
                PUT_IN_OUTBOX              = 'X'
                SENDER_ADDRESS             = LD_SENDER_ADDRESS
                SENDER_ADDRESS_TYPE        = LD_SENDER_ADDRESS_TYPE
                COMMIT_WORK                = 'X'
           IMPORTING
                SENT_TO_ALL                = W_SENT_ALL
           TABLES
                PACKING_LIST               = T_PACKING_LIST
                CONTENTS_BIN               = T_ATTACHMENT
                CONTENTS_TXT               = IT_MESSAGE
                RECEIVERS                  = T_RECEIVERS
           EXCEPTIONS
                TOO_MANY_RECEIVERS         = 1
                DOCUMENT_NOT_SENT          = 2
                DOCUMENT_TYPE_NOT_EXIST    = 3
                OPERATION_NO_AUTHORIZATION = 4
                PARAMETER_ERROR            = 5
                X_ERROR                    = 6
                ENQUEUE_ERROR              = 7
                OTHERS                     = 8.
    * Populate zerror return code
      LD_ERROR = SY-SUBRC.
    * Populate zreceiver return code
      LOOP AT T_RECEIVERS.
        LD_RECEIVER = T_RECEIVERS-RETRN_CODE.
      ENDLOOP.
    ENDFORM. "SEND_FILE_AS_EMAIL_ATTACHMENT
    *& Form GET_SPOOL_NUMBER
    * text
    * -->P_SY_REPID text
    * -->P_SY_UNAME text
    * <--P_MI_RQIDENT text
    FORM GET_SPOOL_NUMBER USING F_REPID
                                F_UNAME
                                CHANGING F_RQIDENT.
      DATA:
      LC_RQ2NAME LIKE TSP01-RQ2NAME.
      CONCATENATE F_REPID+0(9)
      F_UNAME+0(3)
      INTO LC_RQ2NAME.
      SELECT * FROM TSP01 WHERE RQ2NAME = LC_RQ2NAME
                          ORDER BY RQCRETIME DESCENDING.
        F_RQIDENT = TSP01-RQIDENT.
        EXIT.
      ENDSELECT.
      IF SY-SUBRC NE 0.
        CLEAR F_RQIDENT.
      ENDIF.
    ENDFORM. " GET_SPOOL_NUMBER
    Regards,
    Vasanth

  • My imported songs into itunes match are not being uploaded but they are giving error messages

    So when I am adding songs to my itunes library I am having issues with these songs being uploaded.  I called apple support last time and they fixed the issue with me but it's started all over again.  These songs have the little cloud with an exclamation point beside them and they say an error has occurred when uploading when i click on them.  I have turned itunes match on and off and that didn't resolve the issue.  Any ideas?

    When you have that alert icon, generally that means iTunes can't find the original file. What happens if you do a Get Info on the track?

  • GRC AE User provisioning for Portal giving error

    Hi,
    We are having GRC AC 5.3- SP9.
    While doing user provisioning for Portal, we are getting the following error:  DBCacheVerifier.java@58:isExpired(). Detailed error log is attached herewith. The back end system (EP Dev) is installed with GRC RTA. Connectors are testing OK. The CPIC user id in backend system EPDev is ED1GRC and has SUPER ADMIN Authorizations, with SPML read/write actions attached to the Role. EP Dev system is having UME as data source, not LDAP. The issue was existing even before the SP9 upgrade. We have restarted the Server several times lately. Pls help me in this.
    Thanks & Regards,
    Jagadish H S
    BASIS Team, BPCL, Mumbai.

    Jagadish,
    This type of error would normally be a data setup issue. Have you imported all of the initial data files (XML ones)?
    Otherwise, if it is just a cache issue, then restarting the server would normally solve the proplem. I would also check the Java Netweaver Admin console to ensure that the memory settings are sufficiently configured to match the hardware that is deployed.
    Simon

  • Installing MiniSAP but JVM setup giving error

    Hi all...
    I am facing a problem in installing MiniSAP. During the installation process of minisap, the error message gets generated stating "JVM not found". But when I tried to install JVM there is another error stating that "try installing in -console mode ". Please help me in this regards.
    Thanx in advance
    Edited by: vinay reddy on Dec 1, 2008 9:14 AM

    Hi,
    Probably you are not using an accepted version of the JDK.
    Please check the requirements for miniSAP. If the requirements are acceptable - then you need to check the "Environment Variables" in Windows to see if the Paths to your JDK are correctly setup.
    Hope that helps.
    Thanks.
    p256960.

  • We are moving to CF11 and setup 2 websites exactly and both website provide exactly same components - but one is giving error - 500 - 64 bit/34 bit issue

    I think the WSCONFIG folder for other site is 2 and I created VD jakarta to point to 2. for the site I am seeing issue - it is pointing to 1 and seeing some restriction file.
    I tried to create multiple times new site so it creates and point to new folder in wsconfig, but everytime it is pointing to 1.
    is there anyway I can manually update ?
    This site has .NET componenets, if I enable 32 bit - my CFM pages give above error, IF I don;t enable .NET is giving an error.
    but, this issue is not there on the other site  on same VM.

    mu problem is similar to the below issue noticed in this forum, only thing is I have 2 websites and one is working properly - only the second one has this issue...is there any way without reinstalling IIS?
    CF11 install problem on WIndows server 2012 R2
    This question has been Answered.
    rg25654200 Mar 24, 2015 6:26 PM

  • Successful MobileMe to iCloud migration, but iCal now giving error messages

    I successfully migrated to iCloud, but when iCal tries to sync I get these two error messages.
    iCal couldn't move your calendars to iCloud because an error occurred. Make sure you're connnected to the Internet and then try again.
    There are two buttons: Try Again Now or Try Again Later.
    I also simultaneously get this message, which will not let me select either choice (the buttons don't work):
    The server responded with an error. The request for account "iCloud" failed.
    The server responded with "509" to operation CalDAVMigrateToServerQueueableOperation.
    The options are "Stay Offline" or "Go Online" but I can't select either button. I click and nothing happens.
    I have to select "Try Again Now" or "Try Again Later." And when iCal tries to connect, the error messages appear again. It just keeps repeating every 30 minutes (I have iCal set to sync with iCloud every 30 minutes).
    Any ideas? Thanks in advance. This is bugging me out.

    This is indeed an unsolved problem.
    I also have a persistent "the server responded with 509 to operation CalDAVMigrateToServerQueueableOperation".
    I also have this in my system.log:
    Jan 11 10:24:43 alma [0x0-0x67a67a].com.apple.iCal[2749]: 2012-01-11 10:24:43.708 iCalExternalSync[3337:407] [ICalExternalSync ]CESSyncTool:Encountered -[__NSCFDictionary setObject:forKey:]: attempt to insert nil value (key: MigrationGroup/p88) stack:  (
    Jan 11 10:24:43 alma [0x0-0x67a67a].com.apple.iCal[2749]:           0   iCalExternalSync                    0x000000010ce5277a iCalExternalSync + 128890
    Jan 11 10:24:43 alma [0x0-0x67a67a].com.apple.iCal[2749]:           1   iCalExternalSync                    0x000000010ce34094 iCalExternalSync + 4244
    Jan 11 10:24:43 alma [0x0-0x67a67a].com.apple.iCal[2749]:           2   ???                                 0x0000000000000007 0x0 + 7
    Jan 11 10:24:43 alma [0x0-0x67a67a].com.apple.iCal[2749]: )
    Jan 11 10:24:43 alma iCalExternalSync[3337]: [ICalExternalSync ]CESSyncTool:Encountered -[__NSCFDictionary setObject:forKey:]: attempt to insert nil value (key: MigrationGroup/p88) stack:  (
                        0   iCalExternalSync                    0x000000010ce5277a iCalExternalSync + 128890
                        1   iCalExternalSync                    0x000000010ce34094 iCalExternalSync + 4244
                        2   ???                                 0x0000000000000007 0x0 + 7
    Do you guys have something like this in your system.log?  (use Utilities/Console.app to find out if you aren't command-line savvy).
    I have filed a bug at bugreport.apple.com,
    Problem ID: 10675237 
    I suggest you all do the same.
    (You might want to reference my problem ID, but I don't know whether your problem is exactly the same I have.)

  • Could not download static AME rules and approval groups using FNDLOAD

    Hi,
    we are trying to download static AME rules in 11i , but the FNDLOAD fails to download static rules? Please help how to download static AME rules in 11i and migrate them to next instance?
    Thanks
    Edited by: user12559818 on Jul 4, 2012 3:24 AM

    user12559818 wrote:
    Hi,
    It is 11.5.10 RUP7 instance...and the rule is STATIC , as I see the control file it has the condition IS_STATIC ='N', but the rule I am trying to download is a STATIC RULE. So I am not sure how to download and migrate STATIC rules and STATIC approval groups in 11i.
    Please suggest.Did you see "3.AME Rules" in [ID 1168883.1]?
    Thanks,
    Hussein

  • AME iExpenses: Cannot create new approver group

    We need to set up approver groups for iExpenses. I assigned myself Approvals Management Administrator and Aprovals Management Business Analyst roles. With these roles I can create new attributes and conditions. However, I cannot create new action types and approval groups. The create button for the approval group just does nothing.
    What am I missing? We are 11.5.10.2, AME.B

    Pl see if ML Doc 420387.1 (How to Create the Approval Transaction Type for AME.B or higher ?) can help
    HTH
    Srini

  • Allowing the creation of users but not letting them be assigned to the Administrators group?

    Hi
    I am using Project Server 2013 on-prem, with Project Server Security. We have defined a local administrator group that is intended to allow for a limited set of permissions to local administrators. The reason for this is that we need the individual offices
    in a global company to be able to add their own users, but we want the ability to change configuration of Project Server to be controlled centrally.
    However I have found that once I give Manage Users and Groups permission to a user in this Local Administrator group they can then simply add themselves to the Administrator group anyway.
    Setting policy and training is not proving effective, hence I need to limit this. The desire is for a group that can create users and add values to lookup tables, but not add themselves to the Administrator group.
    Is this possible?
    Thanks
    Ryan

    You could still take the approach of having your helpdesk assign the permissions and remove the manage users and groups permissions from the local administrators in an office (as opposed to switching to the different permission model).
    I'm curious how training and policy isn't working -- you've asked (told) the users not to add themselves to the administration group and yet they do it anyway? Are they doing this so they have permissions to perform some other tasks?
    Jason Warren
    @jaspnwarren
    jasonwarren.ca
    habaneroconsulting.com/Insights

  • AME - Nested Approver Groups

    Hi
    I am trying to setup a nested approver group. The setups I have done are as follows:
    Create a dynamic approver group - A - There is a SQL attached to retrieve the members of this group
    Create a second dynamic approval group B - There is a SQL attached to retrieve the members of this group as well.
    Create a static approver group C and enter the Group members as Approver Type - Nested Group and Approver is Group A and Group B.
    The transaction goes for approval to the the member of approver group A and dayanoes not go any further. It should also have gone to the members of
    Approver Group B since they are nested and part of the group.
    The transaction exists in hr_api_transactions and the notifications appear in wf_notifcations as well.
    Any help would be greatly appreciated.
    Regards
    Narayan Pillai

    Hi
    I am trying to setup a nested approver group. The setups I have done are as follows:
    Create a dynamic approver group - A - There is a SQL attached to retrieve the members of this group
    Create a second dynamic approval group B - There is a SQL attached to retrieve the members of this group as well.
    Create a static approver group C and enter the Group members as Approver Type - Nested Group and Approver is Group A and Group B.
    The transaction goes for approval to the the member of approver group A and dayanoes not go any further. It should also have gone to the members of
    Approver Group B since they are nested and part of the group.
    The transaction exists in hr_api_transactions and the notifications appear in wf_notifcations as well.
    Any help would be greatly appreciated.
    Regards
    Narayan Pillai

  • Error while opening AME Approval Function

    Hi All
    I am trying to open the AME "Approvals" Function in R12 Vision Instance and I am getting the following Error.
    The requested URL /pls/VIS/OracleSSWA.Execute was not found on this server.
    Seeded approval functionality for iRec is working fine.
    I am logging in with a vision instance user only with a seeded responsibility "FED AME Application Administrator".
    I checked the function details but could not make out any thing. Here are the function details
    Function: AME_WEB_APPROVALS
    User Function Name: Approvals Management
    Properties:
    Type: SSWA plsql function that opens a new window (Kiosk Mode)
    Maintenance Support Mode: None
    Context Dependence: Responsibility
    Web HTML
    HTML Call: ame_rules_ui.listRulesForm1
    Web Host:
    Encrypt Parameters: Checked
    Have you got any of these issues.
    Thanks
    Gaurav

    In R12 old AME functionality will not work. Old AME pages as in 11.5.10, AME.A are built using mod PL/SQL. But in R12 mod PL/SQL is not supported. In R12 all the AME pages are build using OA Framework now and using RBAC mechanism for assigning responsibilities.
    For setting up AME Rules in R12 one can follow the following note
    Approvals Management Responsibilities and Setups in AME.B
    https://metalink.oracle.com/metalink/plsql/showdoc?db=NOT&id=434567.1&blackframe=1
    Following are the error you might get while opening the AME Approval function from old responsibility.
    1.
    The requested URL /pls/VIS/OracleSSWA.Execute was not found on this server.
    OR
    2.
    Can not access function AME_WEB_APPROVALS. This installation does not manage mode pl/sql. Please contact your System Administrator.
    Regards
    Gaurav

Maybe you are looking for

  • Viewing HDV on an external monitor

    Have read some previous posts on this. I have a Sony GV HD 700 deck and using a Sharp 19" HDTV as my monitor. Can log and capture fine . . no issues. But can't view while editing. Need a capture card. Previous suggestions referred to a Black Magic In

  • ABAP Runtime Error  (Code 14)

    Hi, We have SAP NetWeaver 7.0 SR2 ABAP+Java on Linux: Oracle I am with the following problem applying Suport Package SAPKB70014 returns the error: Runtime Errors         TABLE_INVALID_INDEX Date and Time          26.05.2008 16:10:14 Short text     Er

  • How to search for "Kind not equal to Folder"

    I'm trying to set up a Smart Folder with criteria: - Last Modifed within last 2 weeks AND - Kind is not Folder How do you set up Finder search criteria for Kind "doesn't equal" something? All I can find is Kind = All or one thing in particular? Thank

  • New PC For CS6

    Hello everyone I want to Build a new PC For Pr & Ae What is your suggestion? Chassis: Zalman Z9 Plus PSU: Corsair Pro Gold AX750 M.B: MSI Z68A-GD55 CPU: Intel i7 2700K Cooler: Antec 620 RAM: 4 x 4 GB 1600 GPU: Asus GTX 670 SSD: OCZ Vertex 4 128 GB HD

  • Improve Reading Order Tool

    Looking forward to seeing improvements in the accessibility tools for Acrobat.  Allow customization of this tool so that you can add custom Tag.  Alternatiely, add the List Label and LBody tags to the ROT.  I manually Tag Lists more than anything els