ERROR:Atleast one entry could not be found in object buffer

Hi All,
need help urgernlty.
When i try to change the binding for any task for an BO.
get the below error
"Atleast one entry could not be found in object buffer"
please help me the issue as it is holding my development which is very critical.
Thanks
Tarmeem

HI,
I have checked all the methods and attributes
they are implemented and relased.
But still get that error
Please guide me how to get rid of this issue
Regards.
Tarmeem

Similar Messages

  • Getting an error " Atleast one entry could not be found in object buffer"

    Hi All,
    I m facing an peculiar problem while executing a custom Function Module.I have written a custom FM to create a service request and fetch the obj ID and return it back.When i tested the same in debugging mode everything is working fine. But when i execute it directly, It is giving me an error saying " Atleast one entry could not be found in object buffer" at the bottom of the screen and return parameters are not displayed.
    Any pointers on this would be of great help.
    Thanks,
    Eureka

    Hi Phani,
    PFB the source code. Please look in to this at your convenient time..
    FUNCTION ZSERVICE_TICKET_INC_EDIORDERS.
    *"*"Local Interface:
    *"  IMPORTING
    *"     REFERENCE(ZPROCESS_TYPE) TYPE  CRMT_PROCESS_TYPE
    *"  EXPORTING
    *"     REFERENCE(ZOBJECT_ID) TYPE  CRMT_OBJECT_ID_DB
    * PARAMETER QUANTITY TYPE CRMT_SCHEDLIN_QUAN.
    * DATA DECLARATION FOR LOCAL VARIABLES
      DATA : lv_header_guid        TYPE                   GUID_32,
             lv_header_guid16      type                   guid_16,
             lv_item_guid          TYPE                   guid_32,
             lv_sched_guid         TYPE                   guid_32,
             lt_header_guid16      type                   CRMT_OBJECT_GUID_TAB,
             wa_header_guid16      like line of           lt_header_guid16.
      DATA:  itab_header           TYPE STANDARD TABLE OF bapibus20001_header_ins,
             itab_created_process  TYPE STANDARD TABLE OF bapibus20001_header_ins,
             itab_objects_to_save  TYPE STANDARD TABLE OF bapibus20001_guid_dis,
             itab_partner          TYPE STANDARD TABLE OF bapibus20001_partner_ins,
             itab_input_fields     TYPE STANDARD TABLE OF bapibus20001_input_fields,
             itab_return           TYPE STANDARD TABLE OF bapiret2,
             lt_orderadm_h         type                   CRMT_ORDERADM_H_WRKT.
    * DATA DECLARATION WORKAREAS
    DATA:   wa_header             TYPE                   bapibus20001_header_ins,
             wa_partner            TYPE                   bapibus20001_partner_ins,
    *         wa_item               TYPE                   bapibus20001_item,
    *         WA_SCHEDLIN_I         TYPE                   BAPIBUS20001_SCHEDLIN,
             ls_inputfields        TYPE                   bapibus20001_input_fields,
             wa_objects_to_save    LIKE                   LINE OF itab_objects_to_save.
    *         wa_pricing            TYPE                   bapibus20001_pricing,
    *         wa_sales              TYPE                   bapibus20001_sales,
    *         wa_shipping           TYPE                   bapibus20001_shipping,
    *         wa_product_i          TYPE                   bapibus20001_product.
    *         wa_schedlin_i    LIKE LINE OF lt_schedlin_i,
    *         wa_schedlines   LIKE LINE OF lt_schedlines,
    DATA:   wa_created_process    LIKE LINE OF itab_created_process,
             itab_saved_objects    TYPE STANDARD TABLE OF bapibus20001_object_id,
             wa_saved_objects      LIKE LINE OF itab_saved_objects,
             gc_x TYPE c.
             gc_x = 'x'.
    * CREATION OF HEADER GUID
      CALL FUNCTION 'GUID_CREATE'
        IMPORTING
          ev_guid_16 = lv_header_guid16
          ev_guid_32 = lv_header_guid.
      CLEAR : wa_header.
    data: temp type  CRMT_OBJECT_GUID_TAB.
    *temp = (CRMT_OBJECT_GUID_TAB)lv_header_guid16.
    * Passing the respective values from the Header table to internal table.
      wa_header-guid          =  lv_header_guid.
    *  zprocess_type           = 'ZSC'.
      wa_header-process_type  =  zprocess_type.
    *  wa_header-description = 'MY S2D ORDER'.
      APPEND wa_header TO itab_header.
    *Appending the values to the ITAB_HEADER.
    *      ls_inputfields-ref_guid =  LV_HEADER_GUID.
    *      ls_inputfields-REF_KIND = 'A'.
    *      ls_inputfields-objectname = 'ORDERADM_H'.
    **     ls_inputfields-logical_key = ' '.
    *      ls_inputfields-fieldname = 'PROCESS_TYPE'.
    *      APPEND ls_inputfields TO ITAB_INPUT_FIELDS.
    *      CLEAR ls_inputfields.
    * HEADER PARTNER DETAILS
      wa_partner-ref_guid = lv_header_guid.
      wa_partner-ref_kind = 'A'.
      wa_partner-ref_partner_handle = '0001'.
      wa_partner-partner_fct = '00000001'.
      wa_partner-partner_no =  '1000007'.
      wa_partner-no_type = 'BP'.
      wa_partner-display_type  =  'BP'.
      APPEND wa_partner TO itab_partner.
    * APPENDING THE ITAB_PARTNER TO INPUT_FIELDS
      ls_inputfields-ref_guid =  lv_header_guid.
      ls_inputfields-ref_kind = 'A'.
      ls_inputfields-objectname = 'PARTNER'.
      ls_inputfields-logical_key = '0001'.
      ls_inputfields-fieldname = 'REF_PARTNER_HANDLE'.
      APPEND ls_inputfields TO itab_input_fields.
      CLEAR ls_inputfields.
    ****PARTNER_FCT*********************************
      ls_inputfields-ref_guid =  lv_header_guid.
      ls_inputfields-ref_kind = 'A'.
      ls_inputfields-objectname = 'PARTNER'.
      ls_inputfields-logical_key = '0001'.
      ls_inputfields-fieldname = 'PARTNER_FCT'.
      APPEND ls_inputfields TO itab_input_fields.
      CLEAR ls_inputfields.
    ****PARTNER_NO**********************************
      ls_inputfields-ref_guid =  lv_header_guid.
      ls_inputfields-ref_kind = 'A'.
      ls_inputfields-objectname = 'PARTNER'.
      ls_inputfields-logical_key = '0001'.
      ls_inputfields-fieldname = 'PARTNER_NO'.
      APPEND ls_inputfields TO itab_input_fields.
      CLEAR ls_inputfields.
    ****NO_TYPE*************************************
      ls_inputfields-ref_guid =  lv_header_guid.
      ls_inputfields-ref_kind = 'A'.
      ls_inputfields-objectname = 'PARTNER'.
      ls_inputfields-logical_key = '0001'.
      ls_inputfields-fieldname = 'NO_TYPE'.
      APPEND ls_inputfields TO itab_input_fields.
      CLEAR ls_inputfields.
    ****DISPLAY_TYPE********************************
      ls_inputfields-ref_guid =  lv_header_guid.
      ls_inputfields-ref_kind = 'A'.
      ls_inputfields-objectname = 'PARTNER'.
      ls_inputfields-logical_key = '0001'.
      ls_inputfields-fieldname = 'DISPLAY_TYPE'.
      APPEND ls_inputfields TO itab_input_fields.
      CLEAR ls_inputfields.
    *****KIND_OF_ENTRY*******************************
    *      ls_inputfields-ref_guid =  LV_HEADER_GUID.
    *      ls_inputfields-REF_KIND = 'A'.
    *      ls_inputfields-objectname = 'PARTNER'.
    *      ls_inputfields-logical_key = '0001'.
    *      ls_inputfields-fieldname = 'KIND_OF_ENTRY'.
    *      APPEND ls_inputfields TO ITAB_INPUT_FIELDS.
    *      CLEAR ls_inputfields.
    *Calling a standard BAPI to create SALES OREDER using the filled internal tables.
      CALL FUNCTION 'BAPI_BUSPROCESSND_CREATEMULTI'
        TABLES
              header          = itab_header
    *          item            = itab_item
              return          = itab_return
              partner         = itab_partner
              input_fields    = itab_input_fields
              created_process = itab_created_process.
    *         APPOINTMENT     = ITAB_APPOINTMENT
    *         TEXT            = ITAB_TEXT
    *          scheduleline    = lt_schedlin_i
    *         pricing         = itab_pricing
    *          sales           = itab_sales
    *          shipping        = itab_shipping
    *          product         = itab_product_i.
      READ TABLE itab_created_process INTO wa_created_process WITH KEY guid = lv_header_guid BINARY SEARCH.
      wa_objects_to_save-guid = wa_created_process-guid.
    * Appending the Guid of the SALES ORDER to be saved to the internal table
      APPEND wa_objects_to_save TO itab_objects_to_save.
    *   Calling standard BAPI to save the process.
      CALL FUNCTION 'BAPI_BUSPROCESSND_SAVE'
        EXPORTING
          update_task_local = space
          save_frame_log    = gc_x
        TABLES
          objects_to_save   = itab_objects_to_save
          saved_objects     = itab_saved_objects
          return            = itab_return.
    * Calling the Standard BAPI to Commit the transcation.
      CALL FUNCTION 'BAPI_TRANSACTION_COMMIT'.
    wa_header_guid16 = lv_header_guid16.
    append wa_header_guid16 to lt_header_guid16.
    * Calling CRM_ORDER_READ to get the object id and add line item to the order
    CALL FUNCTION 'CRM_ORDER_READ'
        EXPORTING
         IT_HEADER_GUID                    =  lt_header_guid16
        IMPORTING
          ET_ORDERADM_H                     = lt_orderadm_h
      IF sy-subrc <> 0.
    MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
             WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
      ENDIF.
    data: object_id type CRMT_OBJECT_ID_DB,
          wa_orderadm_h like line of lt_orderadm_h.
    read table lt_orderadm_h into wa_orderadm_h WITH KEY guid = lv_header_guid.
    object_id = wa_orderadm_h-object_id.
    Zobject_id = wa_orderadm_h-object_id.
    WRITE: / 'Object ID: ',object_id.
    ENDFUNCTION.

  • Error in Workflow: At least one entry could not be found in object buffer

    Hi All,
    I am getting an error " At least one entry could not be found in object buffer" every time i try to open the BO in the binding section. I have cleared the buffer, have deleted the binding and BO and added again multiple times. But still the error is coming. Can anyone suggest a solution for this.

    What system are you on?  ECC? CRM?
    Are you sure that the object instance exists?

  • Error log 'At least one entry could not be found in object buffer' in SLG1

    Hi Experts,
    We are getting error log 'At least one entry could not be found in object buffer' in SLG1 transaction.
    Unable to trace the source of error. Could you please help us identifying the same.
    Regards,
    Santosh Kacham

    Hello,
    the reason could be the use of order_save badi, mostly there is a wrong + faulty implementation which causes this error. Please check first if any own coding part is involved, when creating documents / tickets.
    Thanks + regarsd
    Rene

  • At least one entry could not be found in object buffer

    Hi All,
    I am frequently getting the message <b>'At least one entry could not be found in object buffer'</b> when I am saving a service process through CRMD_ORDER.
    Does anybody have faced the similar situation, if so pls help me on this.
    (Note: For your information while saving the Service requwst, it automatically triggers some actions)
    The above said error message is getting populated through the function module CRM_ORDER_H_READ_OB.
    Any inputs on this will be highly appreciated.

    Hi Madireddy,
    I assume you get error CRM_ORDER_MISC106. A possible reason might be
    that the transaction type requests a main partner of partner function
    type 0001.   Maybe the Partner Determination procedure specified
    for the transaction type in your system does not contain any
    partner function belonging to the type 0001.The problem can be solved by adding a partner function of type 0001 (Sold-to) in the partner determination procedure.
    Hopefully this helps. Please reward points!
    Regards, Gerhard

  • " At least one entry could not be found in object buffer" Error

    Hi there,
    When I launch my PCUI application, I'm getting the above error. Is there a way that I can clear the buffer? This is strange, I keep refreshing but it doesn't seem to enter my application?!
    Thanks in advance for any help.
    Cheers

    I just found a way to manage the sessions: -
    <b>6.2.1.2 State Manager and List Manager</b>
    The PCUI Framework features a component called the State Manager which lets applications store the state of their user interface between sessions. The State Manager provides an enhanced sense of continuity as the user switches from one application to another and then comes back to the previous application. It stores such attributes as the visual state of user interface elements, the list of objects displayed in the search result list, and so on. All list-related operations are accomplished by a component called the List Manager, which is also part of the PCUI Framework. Both the State
    Manager and the List Manager are completely transparent to applications and require no additional coding in the model access classes. They are called directly by the BSP controllers. The State Manager and the List Manager operate based on specific customizing settings that can be accessed through the CRMV_BSP_SESMGTC maintenance view. This maintenance view is based on the CRMC_BSP_SESMGTC customizing table CRMC_BSP_SESMGTC

  • Deskjet 2542 all in one error: 'the specified module could not be found' when installing to USB

    Installation proceeds OK until the USB cable is connected, when the error message is displayed and installation ceases.
    I have successfully istalled and run the printer on another XP PC of a similar age - ie old.
    I have upgraded the XP OS to SP3 with numerous updates;
    Checked that the USB ports read Data sticks OK;
    run a/v and malware programs, including Microsoft Safety Scanner;
    checked that USB drivers are up to date;
    uninstalled driver software and re-installed with software downloaded from HP;
    carried out the procedures detailed in HP Support Forum 4022116
    Error message the same.  
    This is for my elderly neighbour - help please!
    This question was solved.
    View Solution.

    Hi @bodger50,
    Welcome to the HP Forums! 
    I understand that your HP Deskjet 2542 gives you the error: 'the specified module could not be found' when installing to USB, on Windows XP.
    I would recommend going through the steps in this post, Re: Install Error "The system cannot find the file specified" (hpzprl40.exe). When you get to the printer install wizard section, just use the full feature software and drivers found at this website, HP Deskjet 2540 All-in-One Printer series Full Feature Software and Drivers. As the printer install wizard is only for Windows 7 and up.
    Hope this is helpful, and thank you for posting!
    RnRMusicMan
    I work on behalf of HP
    Please click “Accept as Solution ” if you feel my post solved your issue, it will help others find the solution.
    Click the “Kudos Thumbs Up" to say “Thanks” for helping!

  • Error :the specified module could not be found --oci.dll  : Oracle9i

    hi ,
    i m trying to connect thru my java code to the oracle on my system ,while creating the DSN it gives the error
    "the specified module could not be found" for the file oci.dll.
    earlier it was not able to look for the sqresus.dll which i copied to the winnt/system directory , and after this oci error is coming , anyone knowing it please guide
    with regards,

    Make sure it is the same version of 9i (i.e. 9.0.x or 9.2.x) for both OO4O and ODBC. Also make sure that the ORACE_BASE\ORACLE_HOME\BIN directory is in your search path AND last, check your windows directories and subdirectories for duplicate copies of OCI.DLL (or anywhere else on the PC for that matter). Sometimes MicroSoft will include one and it is usually an OLD one.

  • Error message - Original file could not be found

    When I open itunes, and try to click on a song, there is an "!" and I get the error message "original file could not be found. Would you like to locate it?"
    It does this for every song. I have to trace it down to "My Music\itunes\itunes\itunes music" and under that I have hundreds of files by artist.
    How can I listen to the songs so I don't have to click on each one to make them play?
    I hope you can help me.

    First, a correction from my previous post: At the beginning I meant to write The iPod wasn't designed to sync playlist-related information back to iTunes.
    And as for the polydorus link, let's try this .
    Sorry about that.
    Does that make sense? Do I need both folders?
    No, in the end you'll only need one but I'm still not sure which one.
    *I think the difference is there are no folders like in wndows, but the itunes library leads me directly to my library on the itunes website
    I don't understand what you mean by the itunes library leads me directly to my library on the itunes website.
    It sounds like there is only one iTunes database - iTunes Library.itl - file and that it's in your iTunes1 folder. Whether or not that is the case, what I'd like you to do is follow the instructions in this article in the Apple Knowledge Base for opening an alternate iTune Library file. Select the Choose Library option and use the navigtion window that appears to make your way to an .itl file.
    Select the .itl and iTunes will open with a Library that may - or may not - be different than what you last saw: somewhat different contents or exclamation marks may be present again.
    If it's not a library you're happy with, close iTunes, wait ten seconds or so and then repeat the procedure looking for another .itl file - each one contains references for a different iTunes library.
    When you find a library you're happy with, i.e. all the contents are listed and no exclamation marks, make a note of the location of that .itl. It's the one you're going to want to work with.
    Using that database file, you can go back to iTunes, right-click various songs > Get Info > Summary tab and look to the bottom of that window to find out where that Library is being directed for those files. Make a note of that location.
    When we know those two things, we should be able to proceed from there with deleting things.
    In the future, when I buy new songs from apple, where will they automatically get stored?
    In the location that's been selected in iTunes Edit menu > Preferences > Advanced tab for the iTunes Music folder.
    What will happen when I sync my ipod on the computer?
    That brings us back to the beginning of this post, by default the synch goes from iTunes to your iPod. So you shouldn't synch your iPod unless there's a satisfactory Library being displayed in iTunes.

  • DBD: Error while trying to load the transport provider for odbc. Failed to load the library. System error: The specified module could not be found.

    Hello Everyone,
    We are getting an error while trying to create an Universe via Microsoft -> MS Analysis Services 2014 -> OLEDB for OLAP Provider under Connection in UDT -"DBD: Error while trying to load the transport provider for odbc. Failed to load the library. System error: The specified module could not be found."  We have installed BI 4.1 SP05 in our system. As per earlier posts in scn in BO XI 3.x this issue used to be for improper installation of Integration KIT but in our scenarion Integration KIT is within the BO 4.1 package so no seperate installation is required. Moreover I have checked whether all the driver is present under file: "C:\Program Files (x86)\SAP BusinessObjects\SAP BusinessObjects Enterprise XI 4.0\dataAccess\connectionServer\drivers" and seems everything is fine. But still I am getting this error. One important point is we could use IDT because in IDT still we don't have option to connect with 'Microsoft Analysis Services - 2014 (XMLA)' as we are using Microsoft Analysis Services 2014 version.
    Kindly help if anyone has faced the same problem with SAP BO 4.1.
    Thanks and Best Regards,
    Ghosal

    Hello Everybody,
    The problem is solved now after installing "OLEDB drivers from SQL Server 2012 Feature Pack". We had OLEDB drivers that comes directly from SQL Server but that did not worked out in our case.
    Thanks for your support.
    Best Regards,
    Ghosal

  • Recieving error 8001: Database connection could not be found

    In hyperion reports 11.1.1.3 I am trying to create a new report. I created a new connection and after i created a new grid I wanted to see what is looks like. when I launched it. I recieved the error 8001: The database could not be found 8c5a0a4_13c44c8A227_-7d10 I tried other connections I recieved the same error. Just to make sure I tested an extising report and it worked fine. Can some one please tell me what I am missing and what do i need to do to get this wo work. Any help is appreciated

    I logged out of Hyperion reports and logged back into the application and I had a connection with no issues

  • Error code; original file could not be found, would you like to locate it?

    when i try to transfer songs from my library to my ipod shuffle, i get this error message (error code; original file could not be found, would you like to locate it?). Then an exclamation point(!) in the first column it appears next to the song in the library.
    When i go to the folder mymusic/itunes/itunesmusic folder, the song is there, but why is there an exclamation point next to the song in the library? And how do I restore all these songs, and what causes this?

    Sounds like your iTunes .ITL library file got corrupted.
    What are the iTunes library files?
    There are some posts around here by Buegie on how to fix that...

  • Error - A valid installer could not be found, using AAMEE and CS6

    I receive the error - A valid installer could not be found, when using AAMEE 3.0 to create a CS6 Trial Package in Windows 7.  I'm following the procedure documented here - http://blogs.adobe.com/oobe/tag/cs6 Imaging CS6-Attack of the Clones.  I've tried both pointing at the DVD and pointing to a local folder, after copying the DVD to a local folder and copying the \payloads folder from the second DVD.  I know the DVD is valid because I did a manual installation.  I'm pointing at the folder that contains the Set-up.exe file, plus I've tried pointing at every other folder as well, with no success.  I have a 40 user license for CS6 Master Collection for a classroom on our campus.  I need to create a image for this classroom, and was thrilled that a solution was being provided to accomodate this, but AAMEE does not work!  I'm working in a Windows 7 environment.
    On top of this frustration, my Adobe ID is not working, I've used "chat" support and phone support and I can still not log in.  They claim it has been escalated.  When I explained the AAMEE error to the phone support rep, he informed me that there was no technical support and my only option was to post the question on the forum...but you have to log in with your Adobe ID to post a question!  Round and round it goes.  So I had to create another ID under a different email, just to post my question.  I'm getting the mystery "an error has occurred, please try again", when I try to log in with my work Adobe ID.
    Help! Anyone?

    RESOLVED - Thanks in part to the ALBERT-in-Vancouver and Tushar Bammi thread concerning a similar problem.  I dissected the PDApp.log.  I had copied the installation DVDs to a local folder per the Deployment Guide, when installing from the DVD initially failed.  But, PDApp.log stated - EnterpriseNativeApplet Individual media disks on fixed volumes are not supported, please use CD/DVD or mounted ISO/DMG media.  That clued me in to trying to create the MSI using the DVDs again.  My fault - that the original attempts to create the MSI from the DVDs did not work, I didn't realize I needed to run AAMEE with elevated privileges.  Note - the earlier attempts when I was running AAMEE with elevated privileges and pointing to the locally copied installation files, failed.  Interesting.  I'm confused as to why the Deployment Guide directed my to create a product-install folder...
    I haven't tested the MSI file yet, but if I have additional problems I will start a new thread.
    Thanks.

  • Error: The specified procedure could not be found

    Apparently the password expired on my Windows 7 BETA installation. Upon restart the system notifies me and asks for a new password. After confirming the password I get the error:
    "The specified procedure could not be found"
    I cannot log in at this point. The old password won't let me in and I can't change it. The administrator account I found is disabled by default.
    Is there any way to log in?

    Okay, here is your dilemma.
    You cannot login to your only account and the local administrator account is in its default disabled mode.
    There is a solution, albeit totally unsupported.  Go to http://www.sysresccd.org/Main_Page and download the latest SystemRescueCd.  Burn a CD from the ISO.  When you boot with the SystemRescue CD, you will type ntpass and hit <enter>.  From there, make sure you read the screens.  You will have make selections depending on how you loaded Windows 7 (clean vs. upgrade vs. dual boot, etc).  Using this disk, you CAN enable the local administrator’s account and login in.
    I just did the procedure using Windows 7, build 7000 with SystemRescueCd 1.1.6.
    Good luck.

  • Export in Quick Time Pro gives Error -43: a file could not be found

    Have been successfully exporting videos mades on my camera via Quick Time Pro for many months to convert for Apple TV. However in the last week the same routine process now causes an error on export. Error -43: a file could not be found.
    I have tried uninstalling and re-installing QT Pro and no difference, have also tried different export formats and they all give the same error.
    Any ideas would be appreciated, thanks
    [email protected]

    http://discussions.apple.com/thread.jspa?threadID=769732
    This is a old post from when I had recieved the Error-43 file could not be found. In my case I had a drive lettered F:\ F:\ when changing the drive to a single letter F:\ it resolved the problem, so something you might want to take a look at.

Maybe you are looking for

  • IPod touch not recognized by iTunes on Windows

    My email is [email protected]  My iPod touch is not showing up at all either in Computer or in iTunes.  I've tried everything...and yes, I mean everything that has been suggested here.  HELP. All I want to do is basic stuff: sync, download music, etc

  • Problem with Context in IDoc

    Hi Experts, I have the following source fields: 1 <Recordset>       <Record>          <LineIdentifier>ITEM</LineIdentifier>          <Data>D1<Data>       </Record>       <Record>          <LineIdentifier>ITEM</LineIdentifier>          <Data>D2</Data>

  • Problem connecting N95 VER 2 PHONE TO bluetooth to...

    anyone else got this problem my sony erricson works fine but my n95 arrived a few days ago and will not work pairs up ok etc but wont dial or if it does there is no audio well fed up tim Message Edited by timmy33_uk on 12-Mar-2008 10:46 AM

  • My MacBook is stuck on the loading screen. Please help! Not sure what to do

    Hi, so my MacBook has stopped working for some reason I've just tried switching it on but it has stopped on the loading screen. I am scared and not sure what to do. Please help!!!

  • Problems in smartforms

    Hi Experts, In my smartforms, I want to print 3 decimal places instead of 2 decimal places for the values being printed. At occurrence of every new bank key in my internal table, I want to print on a new page. Please do help me. Points will be reward