Invoice Adobe form giving runtime error

Hi All,
I have configured standard adobe form for invoice in nace. Print prog - SD_BIL_PRINT01 and adobe form - SD_INVOICE_FORM01. When i run the billing document, i am getting error message - Type conflict when calling the function module (Call to function module /1BCDWB/SMxxxxxxxxx is incorrect). I am using the standard program n form, then why this error.
Thanks,
Raju

Hi,
In the Print prog - SD_BIL_PRINT01, there is
CALL FUNCTION lv_fm_name
    EXPORTING
      /1bcdwb/docparams = ls_docparams
      bil_prt_com       = gs_bil_print.
GS_BIL_PRINT is of type BIL_S_PRT_INTERFACE.
In the adobe form SD_INVOICE_FORM01, I think  the interface used is SLS_INTERFACE. In the interface  SLS_INTERFACE, the
import parameter SLS_PRT_COM is of type SLS_S_PRT_INTERFACE.
Since the export parameter of the print program and the import parameter of the form interface are of different data types, the error is coming.
Change the interface of the form to BIL_INTERFACE. In this interface, the inport parameter BIL_PRT_COM is of type BIL_S_PRT_INTERFACE.
Regards,
Vinod

Similar Messages

  • Report giving runtime error

    hi,
    i HAD MADE A REPORET IN which i havce to display the bolck stock ,it is giving runtime error as i had added 1 more table,plzz help me out as it is really urgent to me. here is d code:-
    *& Report  ZDEMO_SMARTFORM_COPY
    REPORT  ZDEMO_SMARTFORM_COPY.
    TABLES: MCHB,MARA,T001W.
    DATA: BEGIN OF ITAB OCCURS 0,
          ITEMID LIKE MARD-MATNR,
          SPEME LIKE MARD-SPEME,
          WERKS LIKE MARD-SPEME,
          LGORT LIKE MARD-LGORT,
          NTGEW LIKE MARA-NTGEW,
          MEINS LIKE MARA-MEINS,
          GEWEI LIKE MARA-GEWEI,
          CHARG LIKE MCHB-CHARG,
          WTKG LIKE MARA-NTGEW,
          STOCK TYPE P LENGTH 10 DECIMALS 3,
          DESC LIKE MAKT-MAKTX,
          TOTWT LIKE MARD-SPEME,
          WT TYPE P LENGTH 12 DECIMALS 3,
          END OF ITAB.
         ITEMID LIKE MCHB-MATNR,
         CSPEM LIKE MCHB-CSPEM,
         CHARG LIKE MCHB-CHARG,
         WERKS LIKE MCHB-WERKS,
    *PARAMETERS : PLANT LIKE MCHB-WERKS OBLIGATORY.
    PARAMETERS : PLANT LIKE MARD-WERKS OBLIGATORY.
    DATA : DESC LIKE MAKT-MAKTX.
      SELECT AMATNR ASPEME AWERKS ALGORT BNTGEW BMEINS BGEWEI CCHARG FROM MARD AS A
        INNER JOIN MARA AS B ON BMATNR = AMATNR
          INNER JOIN MCHB AS C ON CMATNR = AMATNR
            INTO TABLE ITAB WHERE AWERKS = PLANT AND ASPEME > 0.
    SELECT AMATNR ACSPEM ACHARG AWERKS  BNTGEW BMEINS B~GEWEI FROM MCHB AS A
       INNER JOIN MARA AS B ON BMATNR = AMATNR
         INTO TABLE ITAB WHERE AWERKS = PLANT AND ACSPEM > 0.
    WRITE: / 'ITEMID           DESCRIPTION                              STOCK.QTY  BATCH NO.           NETWT          TOTAL.WEIGHT '.
    ULINE.
    LOOP AT ITAB.
          IF ITAB-NTGEW <> 0 .
            CALL FUNCTION 'ZGET_ITEM_WEIGHT'
             EXPORTING
               P_BUID         = ITAB-WERKS
               P_ITEMID       = ITAB-ITEMID
               P_QTY          = ITAB-NTGEW
               P_UOM          = ITAB-GEWEI
               P_UOM1         = 'KG'
             IMPORTING
               P_RETVAL       = ITAB-WTKG.
          ENDIF.
       CONVERTING ITEM QTY IN KG
          ITAB-WT = ITAB-STOCK.
          IF ITAB-MEINS = 'G'.
            ITAB-WT = ITAB-STOCK / 1000000.
          ELSEIF ITAB-MEINS = 'KG'.
            ITAB-WT = ITAB-STOCK / 1000.
          ELSEIF ITAB-MEINS = 'TO'.
            ITAB-WT = ITAB-STOCK * ITAB-WTKG / 1000.
         ENDIF.
       ITAB-TOTWT = ITAB-WTKG * ITAB-CSPEM.
       ITAB-TOTWT = ITAB-WTKG * ITAB-SPEME.
       SELECT SINGLE MAKTX FROM MAKT INTO DESC WHERE MATNR = ITAB-ITEMID.
         WRITE:/ ITAB-ITEMID,15 DESC,50 ITAB-SPEME,ITAB-CHARG,ITAB-WTKG,ITAB-TOTWT.
       MODIFY ITAB.
       ENDLOOP.

    HI,
    i had tried to ftech data from mard and it isgiving runtime error. dis is the code:-
    TABLES: MCHB,MARA,MARD.
    DATA: BEGIN OF ITAB OCCURS 0,
          MATNR LIKE MARD-MATNR,
          SPEME LIKE MARD-SPEME,
          WERKS LIKE MARD-SPEME,
          LGORT LIKE MARD-LGORT,
          END OF ITAB.
          SELECT MATNR SPEME WERKS LGORT FROM MARD INTO CORRESPONDING FIELDS OF TABLE ITAB.
          LOOP AT ITAB.
          WRITE:/ ITAB-MATNR,ITAB-SPEME,ITAB-WERKS,ITAB-LGORT.
          ENDLOOP.

  • Invoice Workbench Form giving error

    Hi,
    I have done a customization on the Standard Invoice Work bench Form.
    Now When I am entering the lines detail for the non PO based header and closing the form it is giving me error like
    APP-SQLP-10186:Please Commit or clear your Changes before continuing.
    and same after doing the save also.
    Any help on this issue ....Its really Urjent.
    Thanks to all in advance...
    Thanks
    Nihar

    Bit late (2 years!) to be answering this but I just hit the same problem and found this thread. After some experimentation I have come to this conclusion:
    Probable route cause is I guess (this really is a guess, I have not looked at the standard form to confirm) a FORMS POST, probably executed by the AP Invoice WB form each time you navigate out of a header record.
    I am guessing this because it is the most obvious thing I can think of that would result in a WHEN-VALIDATE-RECORD FP firing each time you navigate from one queried record to another. As you said, turning off the FP and closing+re-opening the form gets rid of the message.
    I.e. FORMS POST causes WHEN-VALIDATE-RECORD causes FP to fire causes RECORD STATUS change causes APP-SQLAP-10186
    My way round this is to add a condition to the FP trigger event: ":SYSTEM.RECORD_STATUS <> 'QUERY'" this should stop the FP firing until the user makes a manual change to the record.
    This works for me (at least in unit testing) so I thought I'd post it here even though it's 2 years to late because someone else may hit the same issue and find this thread.

  • Preventing Form Calc Runtime Error Message Dialog

    When there is an runtime error in a script written in JavaScript, Adobe Reader "swallows" the error (if it is not caught). I mean, it may write the error to the console, but the user isn't warned of the fact, through a message box.
    So, for the user, everything is well.
    For the programmer, because he can use a top level try/catch/finally statement, if he is interested in knowing of the fact, this behaviour is a good compromise.
    If there is a syntax error in a script written in JavaScript Adobe Reader also does not alert the user of the fact.
    If you write code in FormCalc the behaviour is the exact opposite.
    Syntax errors show up to the user. This may be admissible because, with thorough testing, it will happen in development-time.
    But runtime errors always show up to the user. A big dialog, as tall as your code, shows the code to the user, and, at the bottom, possibly already off the screen, the description of runtime error. This may be an ugly description, depending on what failed.
    As far as I know, there is no construct in the Form Calc language that allows catching errors, so you're stuck.
    To make things worse not every FormCalc function is available in JavaScript. Many useful functions only exist in FormCalc.
    I tried calling FormCalc scripts from JavaScript scripts, using the field.execEvent('...') and it works, appart from a lot of dificulties in passing parameters to, and returning results from, using fields' values as intermediaries of this interaction.
    Yet, a try/catch/finally block in the calling JavaScript script does not catch FormCalc errors...so we're back again to the same problem.
    All this, imho, is an absurd, and can only be understood as some market-like feature.
    Is there ANY undocumented way or dirty trick to prevent FormCalc error messages from displaying to the user?
    Or
    Is there ANY undocumented way or dirty trick to catch FormCalc error messages, in FormCalc code?

    Duarte:
    You cannot catch exceptions in FormCalc -- it doesn't have that language feature. If this is important to you, you need to stay with JavaScript. Of course there are certain functions that are available only in FormCalc. There is a way to get at those functions from JavaScript. See my blog post at:
    http://blogs.adobe.com/formfeed/2009/02/calling_formcalc_functions_fro.html
    John

  • Adobe Form Call: System Error Exception

    Hi,
    I have created an Adobe Form for printing Invoices. When I call this form from print program using function module call "CALL FUNCTION fp_funcname" it throws Exception "System Error = 2". Can any one flash some light to resolve this issue.
    Here I have given that function module call below.
    CALL FUNCTION fp_funcname
    EXPORTING
    /1BCDWB/DOCPARAMS = fp_sfpdocparams
    WA_HEADER         = wa_header
    T_ITEM                   = t_item
    EXCEPTIONS
    USAGE_ERROR     = 1
    SYSTEM_ERROR   = 2
    INTERNAL_ERROR = 3
    OTHERS                 = 4.
    Thanks
    Hari

    Hi,
    In your initialization use this class : cl_fp=>get_ads_connection( ).
    you move this to a parameter  fp_outputparams .
    MOVE cl_fp=>get_ads_connection( ) TO p_conn.
    where fp_outputparams   TYPE sfpoutputparams called in
    CALL FUNCTION 'FP_JOB_OPEN'
        CHANGING
          ie_outputparams = fp_outputparams
        EXCEPTIONS
          cancel          = 1
          usage_error     = 2
          system_error    = 3
          internal_error  = 4
          OTHERS          = 5.
    Thanks
    Dan

  • Adobe Illustrator CS2 Runtime Error

    I have Adobe Creative Suite 2.0 and am running Windows 7 on my PC. Although all the other applications in the CS2 suite launch successfully, I receive a Runtime Error with each attempt to open Adobe Illustrator that reads:
    "Program:…rator CS2\Support Files\Contents\Windows\Illustrator.exe
      This application has requested the Runtime to terminate it in an unusual way.
      Please contact the application’s support team for more information."
    Is there a solution?

    Hello again,  the Event Log is below.  Any insight you may be able to offer is greatly appreciated.
    Log Name: Application
    Source:        Desktop Window Manager
    Date: 7/2/2014 6:55:13 PM
    Event ID:      9010
    Task Category: None
    Level: Information
    Keywords:      Classic
    User:          N/A
    Computer:      User-PC
    Description:
    A request to disable the Desktop Window Manager was made by process (Adobe Illustrator)
    Event Xml:
    <Event xmlns="http://schemas.microsoft.com/win/2004/08/events/event">
      <System>
        <Provider Name="Desktop Window Manager" />
        <EventID Qualifiers="16384">9010</EventID>
    <Level>4</Level> 
    <Task>0</Task> 
    <Keywords>0x80000000000000</Keywords> 
        02T22:55:13.000000000Z" /> 
    <EventRecordID>22241</EventRecordID> 
    <Channel>Application</Channel> 
        PC</Computer> 
        <Security /> 
      </System>

  • Adobe Reader X - Runtime error - Windows 7

    What am I doing wrong? Any ideas?
    Installed Reader X 3 times since yesterday onto differnt Windows 7 machines - including once onto a clean Windows 7 Enterprise 32bit install (i.e. no old versions of anything to remove) - and on all atempts once the software is installed and run, i just get a runtime error and it won't open up.  Screenshots below

    This was exactly what I expected after I read that Adobe announced Reader X (X fits really because it is the best to terminate this software).
    It is always the same - the quality of Adobe software is below each expectation. Now we have the already version 10 and Adobe has still not understood the difference of Windows XP and and Windows 7 regarding user profiles - I doubt that they ever heard the term "roaming profile" or "junction/symbolic link/hard link". Some people should be forbidden to program - if I would have the choice I would select another pdf viewer. And if you try to address these kind of issues Adobe acts deaf and simply says this not supported instead of fixing their stupid mistakes in their poor products - this approach is so easy - if they  continue to behave in this way and exploit their current monopole they will not survive, because all disappointed customers will switch to the next best alternative as soon as they offers a less painful product or at least better support. I start to love Steve Jobs and Apple.
    The question stays: Why Adobe reinvented a bug, which was already fixed in Adobe Reader 9 - what the hell are they doing in their programming caves in India - it looks like one programmer does not speak to the other or took a very old outdated code stream - very poor versioning and quality managment.
    I have to deal all the time in my Company with these Adobe Pre-Alpha products full of bugs and I'm fed up to always run into major unsolved issues - Adobe test your products before you do a final release!!!! You ever heard about a public beta phase??????
    This is from your own kb article: http://kb2.adobe.com/cps/404/kb404597.html
    "This error occurs when the application checks for read permissions for each directory in the path to Application Data. The application is supposed to instead only inspect for permission in the Application Data directory and below. If the requisite permissions are not found, a runtime error occurs.
    The 9.4 cumulative update changes this behavior so that the application does not check for permissions on parent folders."
    So read your own fu..... KB before you release anything and make such a spectacle about a <sarcasm on> "complete new version, which is the most safe, reliable and convenient reader version ever <sarcasm off> (lol)

  • Adobe Elements 10 Runtime error message, help!

    My Adobe Elements 10 was JUST working 15 min ago, and now when I try to launch it I get this error message: "Runtime Error!" "This application has requested the Runtime to terminate it in an unusual way. Please contact the application's support team for more information."   I have re-started my computer, and have checked for updates but don't see any recent ones. What do I need to do here? I need Elements to do my work, right now.

    The first thing to do when behavior suddenly changes like this is to reset the application preferences. Simply rename the preference file listed here and then retry: Preference file locations | Photoshop Elements and Premiere Elements

  • Adobe Pro 8 Runtime Error

    This has been hit on in other threads, but I still have not found an answer to my issue.  Whenever I run Adobe Acrobat 8 Pro from the Start menu, or double click on a .pdf file I get the Microsoft Visual C++ Runtime Library Error, runtime Error.  This is on a standalone laptop with the following software loaded:  Windows XP SP3, Office 2007, Visual Studio 2005, SQL Server Express 2005, and MySQL.  I mention these because I have seen these packages mentioned in other posts.  Since it is a standalone laptop, no roaming profiles.  The main issue is that Acrobat Pro 8 runs in the administrator account, and other user accounts.  It will not run in my account.  I have read that creating a new account and trying it shows it to be a user issue and not a system wide issue, but I could not find anything about how to repair a damaged user account.  Also, from my account if I use "run as" and any other account on the system, it works.  This is OK to run the program, but this is not available to double click on a .pdf file.  Any help on what to delete, move, rename, etc in the damaged account would be greatly appreciated.
    Thanks,

    OK, I did some more reading, and after systematically renaming the plugins, I
    found that the file ADTACROBAT.api was my problem.  I added a .old to the file and now Acrobat works!
    Not sure what it is, but I really hope it's not important.

  • ADOBE READER 10 RUNTIME ERROR

    I keep receiving a Runtime Error  C:\Program Files\ Adobe\Reader 10.0\Reader\AcroRd32.exe
    I tried to upgrade to 11 and could not see or hear video.. and when I went back to 10 it dumped some Adobe files off of my desktop and now I am receiving this error and cannot open any Adobe docs..
    Can anyone out there tell me what is going on??? 

    You can try using this tool to first remove all traces of Reader from your computer:
    http://labs.adobe.com/downloads/acrobatcleaner.html
    Then, you can download the full offline Reader installer from
    http://get.adobe.com/reader/enterprise/
    After downloading, restart your computer and run the installer before doing anything else.

  • Adobe Form (data extraction error)

    Hi Experts,
    i'm trying extract data from PDF file. (Adobe Offline scenario).
    I'm getting this XML runtime error.
    could anybody can help me to solve this problem.
    This is my code ,
    CALL TRANSFORMATION id
    SOURCE XML lv_xml_data_string
    RESULT T_sums      = wa_sums
           customer    = wa_cus
           bookings    = wa_book
           connections = wa_conn.
    Here is the error
    >>>>>>>>>>>>>>>>>>>>>
    Error analysis                                                                                An exception occurred that is explained in detail below. 
        The exception, which is assigned to class 'CX_XSLT_RUNTIME_ERROR', was not     caught and   therefore caused a runtime error.      The reason for the exception is:       Either the source document contains invalid XML or it is handled      incorrectly in the ABAP program that called the transformation.
    >>>>>>>>>>>>>>>>>>>>>>>>>>>>>>
    i will appreciate valuble answers.
    Thanks ,
    Lahiru.

    Hi Experts,
    i'm trying extract data from PDF file. (Adobe Offline scenario).
    I'm getting this XML runtime error.
    could anybody can help me to solve this problem.
    This is my code ,
    CALL TRANSFORMATION id
    SOURCE XML lv_xml_data_string
    RESULT T_sums      = wa_sums
           customer    = wa_cus
           bookings    = wa_book
           connections = wa_conn.
    Here is the error
    >>>>>>>>>>>>>>>>>>>>>
    Error analysis                                                                                An exception occurred that is explained in detail below. 
        The exception, which is assigned to class 'CX_XSLT_RUNTIME_ERROR', was not     caught and   therefore caused a runtime error.      The reason for the exception is:       Either the source document contains invalid XML or it is handled      incorrectly in the ABAP program that called the transformation.
    >>>>>>>>>>>>>>>>>>>>>>>>>>>>>>
    i will appreciate valuble answers.
    Thanks ,
    Lahiru.

  • Is it a bug in JNI...CallVoidMethod(..) giving runtime error??

    Hi
    I have invoked jvm using C++. I called the main method of my application and it is running fine.
    When I try to invoke another method of the same class that is not static by GetMethodID(..) and then CallVoidMethod(..), the ID is coming out fine but the call to the method is giving a runtime error.
    When I make this method static in java, it runs fine.
    Is it a bug in JNI that we cannot call nonstatic void methods?

    I have declared the jclass cls object in global space in C++ file. I use the FindClass(..) function to find it. Everything is turning out to be fine till I call the main() function of the java class.
    Now when I get the Id using the GetMethod(..) function of JNI, it comes out fine and gives no errors. It is only when I call the CallVoidMethod(...), it gives me a runtime error. I have tried to use this method in java without C++ and it gives no error.
    Any idea .. what may be wrong?

  • Adobe Form returns IE error in Portal

    In NW7/ECC6 we are using ESS 50.4.  When trying to open the Benefits Confirmation Form, a custom Adobe form, the portal returns an Internet Explorer error message - Error in Generating the Form.
    Has anyone had the problem and solved it?  Any assistance would be appreciated.  The form is supposed to be live next week.
    Thanks,
    D. Maupin

    Hi,
    probably ADS has some problems with generating your form. Usually there is an error log file on the server. Try to check it <DIR_GLOBAL>\AdobeDocumentServices\renderErrorLog\errorFiles. It may help you with finding the problem. Check also OSS note 944221. It's a general note about troubleshooting of Adobe forms. It contains links to additional helpful notes as well.
    Cheers

  • F-44 giving runtime error as  BCD_FIELD_OVERFLOW

    Dear All,
    I have checked end user system regarding the runtime error as  Runtime Errors         BCD_FIELD_OVERFLOW
    Exception              CX_SY_CONVERSION_OVERFLOW
    Date and Time          04.04.2011 11:44:22
    Actually user i has tried F-44 and mentioned Account and Additional selectios as None in F-44.
    finally user got ABAP runtime error as below .
    Runtime Errors         BCD_FIELD_OVERFLOW
    Exception              CX_SY_CONVERSION_OVERFLOW
    Date and Time          04.04.2011 11:44:22
    Short text
         A calculation field is defined too small.
    What happened?
         Error in the ABAP Application Program
         The current ABAP program "SAPMF05B" had to be terminated because it has
         come across a statement that unfortunately cannot be executed.
    What can you do?
         Note down which actions and inputs caused the error.
         To process the problem further, contact you SAP system
         administrator.
    Error analysis
        An exception occurred that is explained in detail below.
        The exception, which is assigned to class 'CX_SY_CONVERSION_OVERFLOW', was not
         caught in
        procedure "POSTAB_REBZG_COLLECT" "(FORM)", nor was it propagated by a RAISING
         clause.
        Since the caller of the procedure could not have anticipated that the
        exception would occur, the current program is terminated.
        The reason for the exception is:
        A value generated during processing is too large for the
        field "<POS>-PPIDX" of the program "SAPMF05B".

    How to correct the error
        It may be possible to divide the current process into
        smaller units, so that only smaller values occur.
        Otherwise, as a long-term solution, define the field "<POS>-PPIDX"
        larger.
        If the error occures in a non-modified SAP program, you may be able to
        find an interim solution in an SAP Note.
        If you have access to SAP Notes, carry out a search with the following
        keywords:
        "BCD_FIELD_OVERFLOW" "CX_SY_CONVERSION_OVERFLOW"
        "SAPMF05B" or "MF05BF01_POSTAB_REBZG_COLLECT"
        "POSTAB_REBZG_COLLECT"
    System environment
        SAP-Release 700
        Application server... "PRDCIXI"
        Network address...... "10.54.145.32"
        Operating system..... "AIX"
        Release.............. "5.3"
        Hardware type........ "000184CAD400"
        Character length.... 16 Bits
        Pointer length....... 64 Bits
        Work process number.. 4
        Shortdump setting.... "full"
        Database server... "PRODORADB"
        Database type..... "ORACLE"
        Database name..... "IRP"
        Database user ID.. "SAPSR3"
    Client.............. 320
    User................ "SA_A054"
    Language key........ "E"
    Transaction......... "FB1K "
    Transactions ID..... "4D9953D749560108E10080000A369120"
    Program............. "SAPMF05B"
    Screen.............. "SAPMF05A 0131"
    Screen line......... 72

  • BI IView giving runtime error

    HI,
    Portal Runtime Error
    An exception occurred while processing your request
    Exception id: 12:09_09/04/08_0074_336182350
    See the details for the exception ID in the log file.
    This is the error , I am getting
    When we are publishing from WAD to portal , it is giving the Portal Runtime Error.
    If we create the same one step by step manualy it is giving the result.
    Difference I found is in both the iviews is : System - BI (alias of logical system in the landscape)
    Manually created Iview , System : Sap_LocaSystem
    For BI system all the connection tests it is giving successful results .
    And in RSPOR_SETUP program , result I found
    Status 9   -   No check with Portal SID <PORTAL_SID>
    Status 10 -   No check with Portal SID <PORTAL_SID>
    Is this 9, 10 properties should be corrected ?
    Thanks and Regards,
    Srini

    Hi,
    The trace file is :
    com.sap.security.core.persistence.imp.PrincipalDatabag Thu Apr 10 13:35:00 AST 2008
    UniqueID: UACC.PRIVATE_DATASOURCE.un:index_service
    Type: UACC
    Home data source: PRIVATE_DATASOURCE
    Private id part: un:index_service
    Principal exists.
    "com.sap.security.core.usermanagement"|->"SecurityPolicy" (no time limit)=
    "com.sap.security.core.usermanagement"|->"lastsuccessfulpasswordcheck" (no time limit)=
    "com.sap.security.core.usermanagement"|->"validfrom" (no time limit)=
    "com.sap.security.core.usermanagement"|->"lastsuccessfullogon" (no time limit)=
    "com.sap.security.core.usermanagement"|->"validto" (no time limit)=
    "com.sap.security.core.usermanagement"|->"ispassworddisabled" (no time limit)=
    "com.sap.security.core.usermanagement"|->"j_user" (no time limit)="index_service"
    "com.sap.security.core.usermanagement"|->"lastpasswordchange" (no time limit)=
    "com.sap.security.core.usermanagement"|->"userid" (no time limit)="USER.PRIVATE_DATASOURCE.un:index_service"
    "com.sap.security.core.usermanagement"|->"previoussuccessfullogon" (no time limit)=
    "com.sap.security.core.usermanagement"|->"lockreason" (no time limit)=
    "com.sap.security.core.usermanagement"|->"lastfailedlogon" (no time limit)=
    "com.sap.security.core.usermanagement"|->"successfullogoncount" (no time limit)=
    "com.sap.security.core.usermanagement"|->"passwordchangerequired" (no time limit)=
    "com.sap.security.core.usermanagement"|->"failedlogonattempts" (no time limit)=
    "com.sap.security.core.usermanagement"|->"islocked" (no time limit)=
    "$serviceUser$"|->"SERVICEUSER_ATTRIBUTE" (no time limit)="IS_SERVICEUSER"
    #1.5 #00144F94DC4800A100000DF600002DBF00044A825E981C1D#1207823700073#com.sap.security.core.imp#sap.com/irj#com.sap.security.core.imp.[cf=com.sap.security.core.imp.AbstractUserAccount][md=constructor][cl=30114]#J2EE_GST_EPD#0####b4e72140030c11ddada100144f94dc48#Thread[ThreadPool.Worker5,5,SAPEngine_Application_Thread[impl:3]_Group]##0#0#Path##Plain###Exiting method#
    #1.5 #00144F94DC4800A100000DF700002DBF00044A825E983307#1207823700074#com.sap.security.core.imp#sap.com/irj#com.sap.security.core.imp.[cf=com.sap.security.core.imp.AbstractPrincipal][md=getPrincipalDatabagValues][cl=30114]#J2EE_GST_EPD#0####b4e72140030c11ddada100144f94dc48#Thread[ThreadPool.Worker5,5,SAPEngine_Application_Thread[impl:3]_Group]##0#0#Debug##Java###null
    [EXCEPTION]
    #1#java.lang.Exception: LazyFetch: "UACC.PRIVATE_DATASOURCE.un:index_service"-->"com.sap.security.core.usermanagement","displayname".
         at com.sap.security.core.imp.AbstractPrincipal.getPrincipalDatabagValues(AbstractPrincipal.java:1729)
         at com.sap.security.core.imp.AbstractPrincipal.getAttributeValueString(AbstractPrincipal.java:1782)
         at com.sap.security.core.imp.AbstractUserAccount.getDisplayName(AbstractUserAccount.java:2238)
         at com.sap.security.core.imp.UserAccountWrapper.getDisplayName(UserAccountWrapper.java:509)
         at com.sapportals.portal.security.usermanagement.User50_Impl.getDisplayId(User50_Impl.java:222)
         at sun.reflect.GeneratedMethodAccessor600.invoke(Unknown Source)
         at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
         at java.lang.reflect.Method.invoke(Method.java:324)
         at com.sapportals.portal.security.usermanagement.WrappedUserInvocationHandler.callOtherMethod(ServiceUserFactoryImpl.java:172)
         at com.sapportals.portal.security.usermanagement.WrappedUserInvocationHandler.invoke(ServiceUserFactoryImpl.java:147)
         at $Proxy10.getDisplayId(Unknown Source)
         at com.sapportals.config.fwk.IConfigClientContext.<init>(IConfigClientContext.java:84)
         at com.sapportals.config.fwk.IConfigClientContext.createContext(IConfigClientContext.java:132)
         at com.sapportals.config.fwk.IConfigClientContext.createContext(IConfigClientContext.java:118)
         at com.sap.workflow.cfg.AbstractConfiguration.<init>(AbstractConfiguration.java:279)
         at com.sap.workflow.cfg.SchedulerConfiguration.<init>(SchedulerConfiguration.java:22)
         at com.sap.workflow.es.scheduler.TaskSchedulerDeadline.run(TaskSchedulerDeadline.java:63)
         at com.sapportals.wcm.service.scheduler.SchedulerEntry.run(SchedulerEntry.java:174)
         at com.sapportals.wcm.service.scheduler.crt.PoolWorker.run(PoolWorker.java:108)
         at java.lang.Thread.run(Thread.java:534)
    #1.5 #00144F94DC4800A100000DF800002DBF00044A825E983D07#1207823700081#com.sap.security.core.imp#sap.com/irj#com.sap.security.core.imp.[cf=com.sap.security.core.locking.imp.LockManager][md=escapePrincipalID][cl=30114]#J2EE_GST_EPD#0####b4e72140030c11ddada100144f94dc48#Thread[ThreadPool.Worker5,5,SAPEngine_Application_Thread[impl:3]_Group]##0#0#Debug##Plain###Mapped principalid for locking: "UACC.PRIVATE_DATASOURCE.un:index_service"-->"000_bTtZDFaWpfKiQ131rUhvSA=="#
    #1.5 #00144F94DC4800A100000DF900002DBF00044A825E985131#1207823700087#com.sap.security.core.imp#sap.com/irj#com.sap.security.core.imp.[cf=com.sap.security.core.locking.imp.LockManager][md=escapePrincipalID][cl=30114]#J2EE_GST_EPD#0####b4e72140030c11ddada100144f94dc48#Thread[ThreadPool.Worker5,5,SAPEngine_Application_Thread[impl:3]_Group]##0#0#Debug##Plain###Mapped principalid for locking: "UACC.PRIVATE_DATASOURCE.un:index_service"-->"000_bTtZDFaWpfKiQ131rUhvSA=="#
    #1.5 #00144F94DC4800A100000DFA00002DBF00044A825E985A12#1207823700089#com.sap.security.core.imp#sap.com/irj#com.sap.security.core.imp.[cf=com.sap.security.core.locking.imp.LockManager][md=escapePrincipalID][cl=30114]#J2EE_GST_EPD#0####b4e72140030c11ddada100144f94dc48#Thread[ThreadPool.Worker5,5,SAPEngine_Application_Thread[impl:3]_Group]##0#0#Debug##Plain###Mapped principalid for locking: "USER.PRIVATE_DATASOURCE.un:index_service"-->"000_zCZ7K+TFQWRbSAklTiJDwQ=="#
    #1.5 #00144F94DC4800A100000DFB00002DBF00044A825E98710D#1207823700095#com.sap.security.core.imp#sap.com/irj#com.sap.security.core.imp.[cf=com.sap.security.core.locking.imp.LockManager][md=escapePrincipalID][cl=30114]#J2EE_GST_EPD#0####b4e72140030c11ddada100144f94dc48#Thread[ThreadPool.Worker5,5,SAPEngine_Application_Thread[impl:3]_Group]##0#0#Debug##Plain###Mapped principalid for locking: "USER.PRIVATE_DATASOURCE.un:index_service"-->"000_zCZ7K+TFQWRbSAklTiJDwQ=="#
    #1.5 #00144F94DC4800A100000DFC00002DBF00044A825E988C3D#1207823700097#com.sap.security.core.imp#sap.com/irj#com.sap.security.core.imp.[cf=com.sap.security.core.imp.AbstractPrincipal][md=getPrincipalDatabagValues][cl=30114]#J2EE_GST_EPD#0####b4e72140030c11ddada100144f94dc48#Thread[ThreadPool.Worker5,5,SAPEngine_Application_Thread[impl:3]_Group]##0#0#Debug##Java###null
    [EXCEPTION]
    #1#java.lang.Exception: LazyFetch: "USER.PRIVATE_DATASOURCE.un:index_service"-->"com.sap.security.core.usermanagement","description".
         at com.sap.security.core.imp.AbstractPrincipal.getPrincipalDatabagValues(AbstractPrincipal.java:1729)
         at com.sap.security.core.imp.AbstractPrincipal.getAttributeValueString(AbstractPrincipal.java:1782)
         at com.sap.security.core.imp.AbstractPrincipal.getDescription(AbstractPrincipal.java:667)
         at com.sap.security.core.imp.AbstractPrincipal.getAttribute(AbstractPrincipal.java:309)
         at com.sap.security.core.imp.User.getAttribute(User.java:1006)
         at com.sap.security.core.imp.UserWrapper.getAttribute(UserWrapper.java:321)
         at com.sapportals.portal.security.usermanagement.User50_Impl.getValuesForKey(User50_Impl.java:760)
         at com.sapportals.portal.security.usermanagement.User50_Impl.getDescription(User50_Impl.java:474)
         at sun.reflect.GeneratedMethodAccessor601.invoke(Unknown Source)
         at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
         at java.lang.reflect.Method.invoke(Method.java:324)
         at com.sapportals.portal.security.usermanagement.WrappedUserInvocationHandler.callOtherMethod(ServiceUserFactoryImpl.java:172)
         at com.sapportals.portal.security.usermanagement.WrappedUserInvocationHandler.invoke(ServiceUserFactoryImpl.java:147)
         at $Proxy10.getDescription(Unknown Source)
         at com.sapportals.config.fwk.IConfigClientContext.<init>(IConfigClientContext.java:87)
         at com.sapportals.config.fwk.IConfigClientContext.createContext(IConfigClientContext.java:132)
         at com.sapportals.config.fwk.IConfigClientContext.createContext(IConfigClientContext.java:118)
         at com.sap.workflow.cfg.AbstractConfiguration.<init>(AbstractConfiguration.java:279)
         at com.sap.workflow.cfg.SchedulerConfiguration.<init>(SchedulerConfiguration.java:22)
         at com.sap.workflow.es.scheduler.TaskSchedulerDeadline.run(TaskSchedulerDeadline.java:63)
         at com.sapportals.wcm.service.scheduler.SchedulerEntry.run(SchedulerEntry.java:174)
         at com.sapportals.wcm.service.scheduler.crt.PoolWorker.run(PoolWorker.java:108)
         at java.lang.Thread.run(Thread.java:534)
    any suggestions ?????

Maybe you are looking for

  • How to execute a scenario from Windows command prompt

    Hi, I have a package which is executing fine from Designer. But the same scenario if I am trying to execute from windows command prompt, then it is giving error. The package is getting a refresh variable, passing to interface which is creating a file

  • PDF opens blank

    When I try to open a pdf file in Photoshop Elements, the file opens however none of the content shows - it's just a blank file. Please help.

  • App download problem

    Yesterday I decided to buy an app from BB Appworld, specifically, Private Memo by Infinite Apps.  Everything went well up to and through the payment but when I clicked on download I got an error message to the effect that some kind of product key was

  • Discussion about the ThunderBolt or Charge

    I have had the phone for over a year now. I absolutely love it. It has lived up to my expectations so far. The only thing that I hate about it is when you have an incoming call. To hang up, you have to end the call on all callers but your phone will

  • Sleep and shut-down

    Hi I wonder if it's normal that, when shutting down my MBP, I've got to wait for it to be totally turned off before I can close the lid. If I close the lid during the shutting down process the MBP very often go to sleep. If this is the normal behavio