2 select in Package???

I need to get 2 tables from on package? I need to add this sql to the package..
SELECT distinct FeatureType FROM Common.V_Keyword where upper(Keyword) like '%' || isearchVal || '%' order by FeatureType
Here is the package:
AS
TYPE t_cursor IS REF CURSOR ;
Procedure open_PKG_QUICKSEARCH (
isearchVal IN VARCHAR2,
io_cursor IN OUT t_cursor);
END PKG_QUICKSEARCH;
AS
Procedure open_PKG_QUICKSEARCH (
isearchVal IN VARCHAR2,
io_cursor IN OUT t_cursor)
IS
v_cursor t_cursor;
BEGIN
OPEN v_cursor FOR
SELECT FeatureType,MapType,Keyword,KeyValue1,KeyValue2
          FROM Common.V_Keyword where upper(Keyword) LIKE '%' || isearchVal || '%'
          ORDER BY FeatureType,Keyword;
io_cursor := v_cursor;
END open_PKG_QUICKSEARCH;
END PKG_QUICKSEARCH;

AS
TYPE t_cursor IS REF CURSOR ;
Procedure open_PKG_QUICKSEARCH (
isearchVal IN VARCHAR2,
io_cursor IN OUT t_cursor,
io_cursor1 IN OUT t_cursor);
END PKG_QUICKSEARCH;
AS
Procedure open_PKG_QUICKSEARCH (
isearchVal IN VARCHAR2,
io_cursor IN OUT t_cursor)
IS
v_cursor t_cursor;
v_cursor1 t_cursor;
BEGIN
OPEN v_cursor FOR
SELECT FeatureType,MapType,Keyword,KeyValue1,KeyValue2
FROM Common.V_Keyword where upper(Keyword) LIKE '%' || isearchVal || '%'
ORDER BY FeatureType,Keyword;
io_cursor := v_cursor;
open v_cursor1 for <your select stmt>;
io_cursor1 := v_cursor1;
END open_PKG_QUICKSEARCH;
END PKG_QUICKSEARCH;

Similar Messages

  • [Solved] Error upon selecting "base" package during install process

    Hey guys,
    I got stuck in the install process. the following issue never occured to be before.
    Upon selecting the base package during install and pressing "OK", i recieve the following error:
    ERROR: check_is_in needs a non-empty needle as $1 and a haystack as $2!(gote: check_is_in '' 'base')
    and that throws me out of the installation process.
    A google search on the error message only returned sites where the responsible script is postet.
    I am installing arch linux on a lenovo x220, on a seperate ext4 partition.
    Any help is appreciated, thanks!
    Last edited by replax (2012-11-06 20:30:55)

    ArielVoynes wrote:The problem is with mirrors.kernel.org (now that I remember, I've read about kernel.org having trouble with their servers, is this still true?). Just choosing another mirror solves the problem.
    I just read through this post and it did fix my issue.  However, I do not remember what mirror I selected. 
    It was a few selections below kernel.org......
    Last edited by BradJ (2011-09-20 04:27:17)

  • File Object Unable to select Mac OS package file

    Hi,
    I'm trying to select a Mac OS package file using either the
    File object 'browseForDirectory' or 'browseForOpen' methods,
    whichever method I choose doesn't work and the packages appear
    greyed out in the finder and are not selectable.
    On Mac OS, directories can be designated as packages and show
    up in the Mac OS Finder as a single file rather than as a
    directory.
    Does anyone know whether this is a known bug, and if so are
    there any workarounds.
    I can hardcode the path to a package and then process all the
    files within, however I need for the end user to be able to select
    the package.
    Thanks,
    Mike

    UPDATE I have finally got it to install

  • Package size in select query

    Hi all,
    Can any body help for how to use package size in select statemtent.
    I want to seletc record in lot of 300 form 10k records.
    And i am using 4.6c version and wnat to know this statement (package size) is there in 4.6c.
    I know it is in 6.0.

    Hi
    Package size in SELECT statements
    Package size can be used to retreive a spcific number of records at a time. This can be used if you
    for example only want tofinish  processing a limited amount of data at a time due to lack of memory.
    The exampel below  read 50 records at a time from VBAK into an internal table, and selects the
    corresponding entries from vbap into an internal table. Then the two internal tables can be
    processed, and the next 50 records from VBAk can be read. remeber to reinitialize tha tables before
    the next read.
    Note the usage of SELECT - ENDSELECT !
    REPORT  z_test                        .
    TYPES:
    BEGIN OF t_vbak,
    vbeln LIKE vbak-vbeln,
    erdat LIKE vbak-erdat,
    END OF t_vbak,
    BEGIN OF t_vbap,
    posnr  LIKE vbap-posnr,
    matnr  LIKE vbap-matnr,
    meins  LIKE vbap-meins,
    END OF t_vbap,
    BEGIN OF t_report,
    vbeln LIKE vbak-vbeln,
    erdat LIKE vbak-erdat,
    posnr  LIKE vbap-posnr,
    matnr  LIKE vbap-matnr,
    meins  LIKE vbap-meins,
    END OF t_report.
    DATA:
    li_vbak   TYPE t_vbak OCCURS 0,
    l_vbak    TYPE  t_vbak,
    li_vbap   TYPE t_vbap OCCURS 0,
    l_vbap    TYPE t_vbap,
    li_report TYPE t_report OCCURS 0,
    l_report  TYPE t_report.
    START-OF-SELECTION.
    SELECT vbeln erdat
    FROM vbak
    INTO TABLE li_vbak PACKAGE SIZE 50.
    SELECT posnr matnr meins
    FROM vbap
    INTO TABLE li_vbap
    FOR ALL ENTRIES IN li_vbak
    WHERE vbeln = li_vbak-vbeln.
    IF sy-subrc = 0.
      Now you have the two internal tables li_vbak and liÆ_vbap filled with data.
      Do something with the data - remember to reinitialize internal tables
    ENDIF.
    ENDSELECT.
    All of the  product names here are trademarks of their respective companies.  The site
    www.allsaplinks.com no way affiliated with SAP AG. We have made every effort for the content
    integrity.  Information used on this site is at your own risk.
              +
    REWARD IF USEFULL+ 

  • BPS User Exit Variable based on Planning Package Selection

    Hi,
    I'm implementing a SAP BW-BPS planning layout to be integrated into the CRM we user interface.
    Most of the characteristic selections come from the CRM fields that need to be filled by the user when creates a trade promotion.
    The charcteristic selections work (as standard) just if in the planning level I flag "Selection in Package", then in package these selections are dinamically defined from what the user select in the CRM fields at runtime.
    My problem is that I have to build a BPS User Exit variable to filter, in the planning level, the proper Planning Area based on the CRM Sales Organization value.
    The characteristic CRM Sales Organization belongs to whose chararcteristic the value is determined dinamically in the planning package.
    Is it possible for a BPS user exit variable, set in the planning level, to catch the value of a characteristic selection made at planning package?
    Many thanks for your help.
    Alessandro

    Hi Indu,
    Many thanks for your answer.
    I have already took a look at the document posted by you but I didn't find the solution to my problem.
    This because i have to create a user exit variable that need to get the value of the characteristic selection in package.
    I mean in the planning level I will have the user exit variable that restrict the planning area and, his function module, need to read, at runtime, what is the value of the characteristic CRM Sales Organization restricted in package by CRM.
    So I don't have any idea to which BPS internal table I have referred to in my funcion module to catch the value of the CRM Sales Organization dinamically filtered by CRM.
    Many thanks,
    Alessandro

  • Support packages selection for erp 6.0 ehp4

    Hi
    We have solution manger ehp1 and upgraded erp 6.0 ready1 to ehp4 . I  included the erp system in SMSY soltion manager
    I am not able select the erp 6.0 support packages in solution manager still it is connecting to ecc 6.0 support packages
    can any body give the solution for selecting the support packages/stacks from solution manager for erp 6.0 ehp4 system.
    thanks alot

    hi,
    I upgraded the solution manger from 7.0 to ehp1 and my ST-400 patch is 21.
    I am not getting any error messages .
    I upgraded my r/3 system also to ERP 6.0 ehp4.
    I am trying to select the support packages through solution manager optimizer i get the screen like
    . maintenance
    . Enhancement  package Installation
    if i select maintenace
    i can see all the ecc 6.0 support pakages only with sap_basis 700 but i already upgraed to sap_basis 701
    i am not able to see ERP 6.0 EHP4 support packages
    or if i select Enhanve package installtion also i am getting only asjava support packages but we have only ASABAP only.
    please clarify this
    thanks alot

  • How to select .app application package itself on Mac?

    Since IOpenFileDialog in CS6 does not support SetNavDlgOpFlags() anymore, I was forced to use AddCustomMenu().
    But I could not find a solution or sample to select a Mac OS X application package (.app folder). This Open dialog just shows all the contents of .app package.
      openFileDialog->AddCustomMenu(filetypeString, 'APPL');
    Tried AddExtension("app") before calling AddCustomMenu() but it doesn't seem to work.
    Any suggestion to select .app package itself without showing all its contents ?
    Thanks

    Hi Martin...
    Launch iTunes with your iPad connected to your computer. Select iTunes Store on the left then click Apps from the menu.
    There are a variety of magazine apps available there. I like Zinio.
    Click here.
    http://itunes.apple.com/us/app/zinio-magazine-newsstand-reader/id364297166?mt=8
    All the apps for your iPad are managed in iTunes. If you need more help, here's a link to the iPad forum where you can post for help there.
    http://discussions.apple.com/category.jspa?categoryID=267
    Carolyn

  • Performance : how to detrmine the package size during a select

    Hi,
    When you do a select using package size, how to determine the value of the package size.
    Thanks for your help
    Marie

    Hi marie,
    1. When you do a select using package size
    Its done when number of records is very high.
    and we don't want to fetch all records,
    IN ONE SHOT.
    2. At that time, we fetch records in BUNCHES / PACKAGES.
    3. Just copy paste to get a taste of it.
    REPORT abc.
    DATA : t001 LIKE TABLE OF t001 WITH HEADER LINE.
    DATA : ctr TYPE i.
    selection screen.
    PARAMETERS : a TYPE c.
    START-OF-SELECTION.
      SELECT * FROM t001
      INTO TABLE t001
      PACKAGE SIZE 5 .
        ctr = ctr + 1.
        WRITE :/ '----
    Loop Pass # ' , ctr.
        LOOP AT t001.
          WRITE :/ t001-bukrs , t001-butxt.
        ENDLOOP.
      ENDSELECT.
    regards,
    amit m.

  • How to select packages in the installer? no keys seem to 'select'

    so i'm installing arch as we speak; i have configured the keyboard right but when i get to select package groups and selecting packages i cant work out how to 'select' a package!
    firstly can someone tell me straightforwardly what key to press to select: so i can check its the system and not me?
    thanks for ready the super-noobs question
    zom
    EDIT:
    my bad: i had managed to break the spacebar and didnt realise this was what i needed to press
    Last edited by zomzilla (2011-06-14 08:02:06)

    I haven't used the official installer in a long time, but "space" should work (that's the key on the unofficial archboot installer).

  • Selecting package for interactive form component

    Hi,
    I placed interactive form component in a view.
    I put FORM1 text in templateSource property.
    It asked me an interface, i give name for interface.
    Then it asked me package. I tryed many package, but it doesn't accept them.
    How can i supply necessary package?
    Thanks.

    Hi,
    After interface selection, it gives message below:
    Object can only be created in SAP package
    and it gets package selection screen.
    For example i selected ZBW package and press save icon, that time it gives message below:
    SAP object SFPF FRM4 cannot be assigned to package ZBW.
    How can it be solved?
    Thanks.

  • FTP x64 Install - Error at Selecting Packages

    After I begin the 2nd step from the main menu, to select the packages, I get to choose a server, but after doing so it just shows me a message saying something about "refreshing" before it quickly closes and returns me back to the main menu again. I then press select packages again and get to select the server again, after which the checklist appears (that would normally display the packages to select), but instead of the names of the packages, it just says "Error:     ^" on the first line and "Expected     ^" on the second. If I try again it just adds another pair of "Error:     ^" and "Expected     ^" on the third and fourth line and so on as I keep trying (If I select cancel the lines are cleared).
    Edit: btw, this is what the "Select Package Categories" checklist looked like after the first try
    [*] Error: ^
    [*] Expected ^
    [*] at ^
    [*] least ^
    [*] 7 ^
    [*] tokens ^
    [*] for ^
    Any ideas?
    Last edited by MicrosoftSam (2008-07-31 18:21:22)

    I had considered that my last post wasn't my usual  'as thorough as possible'  was busy and also not quite sure what I could add that would be helpful.
    Basically whether I was installing in vbox or not is probably a non-issue..
    i've had the error before with FTP installs...
    as I recall I could ALWAYS get around the problem by making SURE I had a net connection via wire that worked and then the actual problem my end I could always overcome by re-formatting the drive FROM within the arch install routine....
    so basically if I went back and repartitioned the drive all would be well....
    my guess is that there may be something that's fixed or soon to be fixed in the install.....dunno though...
    Also, I LOVE and ONLY do FTP installs now.... I get a better sense of 'clean' when doing one...
    Well, I hope you can see from the above that I didn't really know how to elaborate earlier.... this all may not be that helpful.
    best wishes
    Last edited by yvonney (2008-08-24 01:44:28)

  • Info Package ABAP Routine

    Hi
    For FIGL_4 there is both open items and closed items. i want to filter only Open Items Accounting doc no's records for Customers,Vendors,GL account at info package level.
    There are 3 ODS's in BW side for Open items Customers,Vendors,GL accounts. i want to filter open items based on these 3 ODS's Active data table.But i am getting error when i execute the request in Info Package.
    *Error Message "For sel. field 'BELNR ', no selection with SIGN = ' '; OPTION ' ' allowed     RSM1     607     *
    Below is the Info package Routine code
    program conversion_routine.
    Type pools used by conversion program
    type-pools: rsarc, rsarr, rssm.
    tables: rssdlrange.
    Global code used by conversion rules
    $$ begin of global - insert your declaration only below this line  -
    TABLES: ...
    TABLES: /BIC/AZOCFFIGL00,/BIC/AZOCFBSID00,/BIC/AZOCFBSIS00
            ,/BIC/AZOCFBSIK00.
    DATA:   ...
    TYPES : BEGIN OF TY_ZOCFBSID,
            /BIC/ZMCFADCNO LIKE /BIC/AZOCFBSID00-/BIC/ZMCFADCNO,
            END OF TY_ZOCFBSID.
    TYPES : BEGIN OF TY_ZOCFBSIS,
            /BIC/ZMCFADCNO LIKE /BIC/AZOCFBSIS00-/BIC/ZMCFADCNO,
            END OF TY_ZOCFBSIS.
    TYPES : BEGIN OF TY_ZOCFBSIK,
            /BIC/ZMCFADCNO LIKE /BIC/AZOCFBSIK00-/BIC/ZMCFADCNO,
            END OF TY_ZOCFBSIK.
    DATA : TB_ZOCFBSIS TYPE TABLE OF TY_ZOCFBSIS WITH HEADER LINE,
           WA_ZOCFBSIS TYPE TY_ZOCFBSIS.
    DATA : TB_ZOCFBSID TYPE TABLE OF TY_ZOCFBSID WITH HEADER LINE,
           WA_ZOCFBSID TYPE TY_ZOCFBSID.
    DATA : TB_ZOCFBSIK TYPE TABLE OF TY_ZOCFBSIK WITH HEADER LINE,
           WA_ZOCFBSIK TYPE TY_ZOCFBSIK,
           FLAG TYPE I.
    $$ end of global - insert your declaration only before this line   -
        InfoObject      = ZMCFADCNO
        Fieldname       = BELNR
        data type       = CHAR
        length          = 000010
        convexit        = ALPHA
    form compute_BELNR
      tables   l_t_range      structure rssdlrange
      using    p_infopackage  type rslogdpid
               p_fieldname    type rsfnm
      changing p_subrc        like sy-subrc.
          Insert source code to current selection field
    $$ begin of routine - insert your code only below this line        -
    data: l_idx like sy-tabix.
              read table l_t_range with key
                   fieldname = 'BELNR'.
              l_idx = sy-tabix.
           SELECT
           /BIC/ZMCFADCNO
           FROM /BIC/AZOCFBSID00
           INTO TABLE TB_ZOCFBSID.
            SELECT
            /BIC/ZMCFADCNO
            FROM /BIC/AZOCFBSIK00
            INTO TABLE TB_ZOCFBSIK.
            SELECT
            /BIC/ZMCFADCNO
            FROM /BIC/AZOCFBSIS00
            INTO TABLE TB_ZOCFBSIS.
           LOOP AT TB_ZOCFBSID INTO WA_ZOCFBSID.
           l_t_range-sign = 'I'.
           l_t_range-option = 'EQ'.
           l_t_range-low = WA_ZOCFBSID-/BIC/ZMCFADCNO.
           Append l_t_range.
           CLEAR l_t_range.
           ENDLOOP.
           LOOP AT TB_ZOCFBSIK INTO WA_ZOCFBSIK.
           l_t_range-sign = 'I'.
           l_t_range-option = 'EQ'.
           l_t_range-low = WA_ZOCFBSIK-/BIC/ZMCFADCNO.
           Append l_t_range.
           CLEAR l_t_range.
           ENDLOOP.
           LOOP AT TB_ZOCFBSIS INTO WA_ZOCFBSIK.
           l_t_range-sign = 'I'.
           l_t_range-option = 'EQ'.
           l_t_range-low = WA_ZOCFBSIS-/BIC/ZMCFADCNO.
           Append l_t_range.
           CLEAR l_t_range.
           ENDLOOP.
              modify l_t_range index l_idx.
              p_subrc = 0.
    $$ end of routine - insert your code only before this line         -
    Edited by: AtulMohan Mishra on Dec 27, 2010 1:11 PM

    Hi
    Now i am facing an error during data extraction from Source system
    error message in BW system "Error occurred in the data selection " Data Package 1 : arrived in BW ; Processing : 2nd processing step not yet finished
    when i checked in  SM37 (R3 system) i found the job has been cancelled and Log of this job says
    "Asynchronous sending of InfoIDOCs 2 in task 0001 (0 parallel tasks) DATASOURCE = 0FI_GL_4 
    ABAP/4 processor: SAPSQL_WHERE_CANT_SCAN                                   
    Job cancelled      "   
    it seems to me the Problem in Routine at Info Package level.
    My Requirement is to fetch only those Accounting Doc. No. RECORDS from 0FI_GL_4 data source which are present in Active data table of BSID,BSIK,BSIS ODS's.
    So i want to put logic at Info Package routine .
    1) fetch all Accounting Doc. No.  from Active data table of BSID,BSIK,BSIS Ods's and Match those Accounting Doc. No.'s with the 0FI_GL_4 data source Accounting Doc. No's.if a Accounting Doc. No. match with 0FI_GL_4 data source Accounting Doc no then that corresponding record from 0FI_GL_4 will go to the ODS
    Regards
    Atul

  • SSIS 2012 package runs under SSDT but fails with permission error from SSMS

    I have a simple package that pulls data from a text file located on a Windows file server that runs successfully from SSDT on my client.
    However, when deployed and running the package via SSMS from the client, the package fails with a permission error, with the error stating that the data file could not be opened.
    I have done some investigation and have seen some info that states that a package run from SSMS runs under the account on which you are logged on to the machine, which I would have thought is correct. This is therefore the same account when running from
    SSDT (which works) and I can see from the SSIS Report that the 'Caller' is stated as my account, so if this is the case why isin't the package working.
    I've also seen an MSDN forum answer which stated the opposite that the package when run from the IS Catalog in SSMS doesn't run under the account on which the client is logged on with, which is the opposite of the above, but doesn't indicate which account
    it is using.
    So what account is being used to run SSIS 2012 packages from the IS catalog from within SSMS ?
    If it is the account on which you are logged onto the client running SSMS, why is it not working when the account has the necessary permissions (as provent when running from SSDT) ?

    I am aware it's using my account and not one of the service. There's nothing in the posts above which suggests I'm using the service account. I don't know why people keep assuming that I'm running the package from a job. I've never stated that in any of
    the posts I'm running the package from a job. It's been made quite clear I'm running the package from the IS Catalog on SSMS:
    "This is simply selecting a package from the IS Catalog, right-clicking and selecting Execute package.", as per the Nov 18 post, and in the original post "....So what account is being used to run SSIS 2012 packages from the IS catalog from
    within SSMS".
    Just to be clear, the package is NOT being run from a job. It's using the Execute package option when selecting the package within SSMS from the IS Catalog and it's running under the account on which I am logged on to my client.
    Please read carefully. I was just answering your question "So what account is being used to run SSIS 2012 packages from the IS catalog from within SSMS ?" and stating that you where right and that it uses your account to run the package
    when you execute a package manually from the Catalog and that you can prove that by logging the system variable.
    A good suggestion about using a share in the task to map the drive and I will try this. I would find it strange that SSMS requires this mapping whereas SSDT does not though.
    Ok let us know your findings. If it doesn't work you can also test it with a password and username:
    net use f: \\financial\public  yourpassword /user:username
    Please mark the post as answered if it answers your question | My SSIS Blog:
    http://microsoft-ssis.blogspot.com |
    Twitter

  • Window blank when I click "Show Package Contents" in Pictures folder

    Long story short, I have two iPhoto libraries - one on an old laptop and one on a new MacBook Air (10.6.4). I have been trying to copy the old iPhoto library from the old laptop to the new laptop (so that I would be able to access both libraries on the new laptop by holding down option when starting iPhoto and selecting one or the other).
    I copied the old iPhoto library into the "Pictures" folder on the new laptop. Then I did some ill-advised tidying up (I know, I know, I'm an idiot) in that "Pictures" folder. As I understand it, inside "Pictures", there should be an "iPhoto Library" folder but that has now gone. In fact, there is nothing in "Pictures" at all. When I right click on "Pictures" and select ""Show Package Contents" I get a blank window.
    I have the two iPhoto libraries (old and new) elsewhere on my hard drive - in a folder I created in the home directory ("Pictures 2" > "iPhoto Library"). iPhoto can read the two libraries from there no problem. But I cannot drag and drop the libraries into the "Pictures" folder, where they should be, because I get an error message: "You can’t open the application “Pictures” because it may be damaged or incomplete". When I click on "Pictures", it doesn't open in Finder but iPhoto opens up showing whatever library I used last.
    Someone on the iPhoto forum suggested that I post this problem here: "That sounds very like the Pictures Folder has had it's Execute bit set and the Mac now thinks it's an application. The solution to this is a trip to the Terminal. Post this here: http://discussions.apple.com/forum.jspa?forumID=1339 and someone will give you the Terminal commands to fix that." So I'm hoping that someone here can help me out!
    Let me know if you need any further info. The other thread is here:
    http://discussions.apple.com/thread.jspa?messageID=11958853#11958853
    Many thanks.

    I'm having the same exact problem. I have an older macbook pro and I was trying to copy the iphoto library to my new imac. I was stupidly messing around with the pictures folder on the comp when things weren't migrating correctly, then it suddenly changed from a folder to a package and I got the same error when I tried to delete. Any suggestions?

  • Images corrupted in application package.

    Hi All,
    I am using .png images in my application. After building the application. It creates myfirst.app ... if I right click it in finder and select "Show package Content" .. it shows list of resources. If I try to open the images (.png) ... some of those images are corrupted. But it the app works fine on the device .. and the images displayed are just fine.
    Why does it show's corrupted in package? I am trying to upload it to the app store. I get following message ..
    "The binary you uploaded was invalid. The signature was invalid, or it was not signed with an Apple submission certificate."
    can it be the same image issue?
    thanks.
    Kiran

    yes .. there was an option in the project settings which was compressing the images automatically .. I unchecked it .. and few changes in the project settings ... it worked ..
    thanks for the reply ..
    Kiran

Maybe you are looking for

  • How to install windows 7 using usb as the bootcamp doesnot have the option of creating a bootable usb. please help

    I have an intel based mac with 10.6.8 mac os x. How to install windows 7 using usb as the bootcamp doesnot have the option of creating a bootable usb. please help

  • MAc book crashing after Mountain Lion download

    My MacBook Pro crashes when I move icons on my desktop. after it loads  I get error message  with a bunch of nonsense and GPU Panic which applecare peeps seem to think is a problem with graphics? I downloaded Mountain Lion yesterday. Help! it keeps c

  • .ZIP files and the ZipFile object

    Dove into java.util.zip this weekend and was most unhappy with the docs. Fortunately, searching these forums I was able to make some progress, but am still confused about the ZipFile class. I was able to open a FileInputStream, hand it to a ZipInputS

  • GL Date for PO Approval

    Hi All, When a PO is created on 28th March and submitted for approval. The PO has not been approved till 3rd of April but in the mean time the GL period is closed for 31st March. If the Approver approves the PO on 3rd March will it be approved or not

  • Change GL acocunt number in PO

    Hello Friends, I have tried to change GL account number in PO throug executing a program(BAPI). I am getting error message "Releases already effected are liable to be reset". What could be the reason for this? Please help me in resolving this issue.