Report group and report library does not exist

Dear Guru's
We are not able to execute the report S_ALR_87013019 in production. After doing analyses, we came to know that library 602 & report group 6OBU does not exist in production, and hence we are not able to excute this report.
We have to tried to import from client  '000' from transaction code GR59, But in that we are not getting 6OBU report group.
Please help us to resolve the issue, as we required this report on priority basis.

Dear Prashant,
Thanks for your reply.
The solution given by you is to transport the report library from Dev Client. But our client does not transaport the reports in production system.
Is ther any other solution to retrieve the library.
Thanks
Varsha

Similar Messages

  • Object Custom Program Name of class RE and language EN does not exist

    Hi All,
             We are getting this bbelow error while running a custome program ,
    Object <Custom Program Name> of class RE and language EN does not exist
    Do any one has faced this similar issue earlier.
    Regards,
    Sen

    Hi,
    How did you resolve this problem ?
    Re: Object <Custom Program Name> of class RE and language EN does not exist.
    I am also encountering the same issue when I am executing the report.
    Regards,
    SSR.

  • Object Program Name of class RE and language EN does not exist

    Hi,
    I'm encoutering this problem.
    Object <Custom Program Name> of class RE and language EN does not exist
    This appears when i am executing the report .
    Has anyone encoutered this? How did you resolve this problem?
    Any pointers in this regard are appreciated.
    Regards,
    SSR.

    Hi,
    This must be coming from the one of the function module exceptions that you are calling in the method. Put break points at all function module calls and find out the reason.
    Thanks,
    Naveen Inuganti.

  • We57 link between logmessage and idoc type does not exist

    in we57
    i have fm idoc_input_pordcr
    basic type pordcr101
    message type pordcr
    when i try to save
    gives message link between log message pordcr and idoc type does not exist.
    will not let me save
    where do i go to link these up

    Hi,
    Transaction WE82, assign Idoc type to message type.
    Regards
    Vijaya

  • Hey i cant get into creative cloud because it keeps asking me to verify and email that does not exist nor i have acess to. i cant find out how to sign out and i tried deleting it and re downloading it!

    hey i cant get into creative cloud because it keeps asking me to verify and email that does not exist nor i have acess to. i cant find out how to sign out and i tried deleting it and re downloading it!

    Change/Verify Account https://forums.adobe.com/thread/1465499 may help
    -wrong email https://forums.adobe.com/thread/1446019

  • Number range not update CIN error message Excise group.... does not exist

    Hi Guru,
    We have created new excise group in SPRO> tax on goods movement/India>basic setting>maintain excise group successfully.
    My problem is, when we have update the number range (J1I9) for  same excise group, system give the error message Excise group .... does not exist.
    Please help on top priority.
    Regards
    BK GAIKWAD

    Sir,
    i have allready updated the same & also one thing is more, i have aal the above chnages in development server & then transport the same request to quality server.
    in development server it is work fine only in quality server it is not display. please help
    Regards
    BK GAIKWD

  • Import statement reports 'package does not exist'

    I am seeing another odd error. I'm working on learning how to read and write to text files, and I have 2 errors reported, but one is obviously caused by the other. My package is labeled as such (copy>paste of package line):
    package michaelchristopherp4db;
    and the import line is this (copy>paste again):
    import michaelchristopherp4db.ProductRecord;
    However, Netbeans looks at the import and flags it red, saying package michaelchristopherp4db does not exist. this caused my line:
    ProductRecord product = new ProductRecord();
    to also be flagged in red as it cannot find the ProductRecord class. However, it has no problems with any of the product.get* method calls. Thank you in advance for any ideas or input.
    here is the full code of the file reporting the errors.
    * To change this template, choose Tools | Templates
    * and open the template in the editor.
    package michaelchristopherp4db2;
    import java.io.File;
    import java.io.FileNotFoundException;
    import java.lang.IllegalStateException;
    import java.lang.SecurityException;
    import java.util.NoSuchElementException;
    import java.util.Formatter;
    import java.util.FormatterClosedException;
    import java.util.Scanner;
    import michaelchristopherp4db.ProductRecord;
    /*  @author info
    public class readTxt
        private Scanner txtfile;
        private Formatter wishList;
        private Formatter giftIdeas;
        private Formatter priceError;
        //let user open file
        public void openFile()
        {//open method openFile
            try
            {//open try block
                priceError = new Formatter("priceerror.txt");//open object for items with invalid prices
                giftIdeas = new Formatter("giftideas.txt");//open object for gift ideas
                wishList = new Formatter("wishlist.txt");//open object for wish list
                txtfile = new Scanner(new File("products.txt"));//tell the compiler which file to use for input
            }//close try block
            catch (FileNotFoundException fileNotFoundException)
            {//open file not found catch block
                System.err.println("Error opening or creating file.");
                System.exit(1);
            }//close file not found catch block
            catch ( SecurityException securityException )
            {//start catch for SecurityException
                System.err.println("File Write access is denied.");
                System.exit(1);//END PROGRAM
            }//end catch
        }//close openFile method
        public void readProducts()
        {//open readProducts method
            ProductRecord product = new ProductRecord();//create object to hold read data
            //print headers for for output columns
            System.out.printf("%-10s%-12s%10s\n", "Product ID", "Product Name", "Price");
            try //read records from the file
            {//open try block
                while (txtfile.hasNext())
                {//open while
                    product.setproductID(txtfile.nextInt());//get productID
                    product.setproductName(txtfile.next());//get product name
                    product.setproductPrice(txtfile.nextDouble());//get product price
                    //print collected product details
                    System.out.printf("%-10d%-12s%10.2f\n", product.getproductID(),
                            product.getproductName(), product.getproductPrice());
                    if (product.getproductPrice()>50.0)
                    {//open if to store items $50 or more to wishlist.txt
                        wishList.format("%-10d%-12s%10.2f\n", product.getproductID(),
                                product.getproductName(), product.getproductPrice());
                    }//close if $50 or greater
                    else if (product.getproductPrice()<0.0)
                    {//open if less than zero
                        priceError.format("%-10d%-12s%10.2f\n", product.getproductID(),
                                product.getproductName(), product.getproductPrice());
                    }//close if less than zero
                    else
                    {//open else for gift ideas from $0 to $50
                        giftIdeas.format("%-10d%-12s%10.2f\n", product.getproductID(),
                                product.getproductName(), product.getproductPrice());
                    }//close else for gift ideas
                }//close while
            }//close try block
            catch (NoSuchElementException elementException)
            {//open no such element exception catch
                System.err.println("File improperly formed.");
                txtfile.close();//close text file
                System.exit(1);
            }//close no such element exception catch
            catch (IllegalStateException stateException)
            {//open illegal state exception catch
                System.err.println("Error reading from file.");
                System.exit(1);
            }//close illegal state exception catch
        }//close readProducts method
        //close file and end application
        public void closeFile()
        {//open closeFile method
            if (txtfile != null)
                txtfile.close();//close file
        }//close closeFile method
    }//end application readTxtAnd the code at the top of the class I am trying to import (so you can see the package I am trying to import)
    * To change this template, choose Tools | Templates
    * and open the template in the editor.
    package michaelchristopherp4db;
    *  @author
    public class ProductRecord {

    I am embarrassed to admit this, but I am completely lost on the last question.. I have no clue wether it is a convenience for development or a dependancy, as I have not learned those terms or distinctions yet. For now I copied the ProductRecord file into my new project folder and renamed it's project line to match the new project name. However, while that eliminated the package does not exist error, and netbeans reports no errors now, when I run the program it does not write the new files. I have made some modifications to the code tryiing to get it to write properly but so far no luck in makingit work. Here is the current version of the file not running right.
    * To change this template, choose Tools | Templates
    * and open the template in the editor.
    package michaelchristopherp4db2;
    import java.io.File;
    import java.io.FileNotFoundException;
    import java.lang.IllegalStateException;
    import java.lang.SecurityException;
    import java.util.NoSuchElementException;
    import java.util.Formatter;
    import java.util.FormatterClosedException;
    import java.util.Scanner;
    /*  @author
    *   Michael Christopher
    *   IT215-1004D-03
    *   December 30, 2010
    *   Phase 4 DB 2
    public class readTxt
        private Scanner txtfile;
        private Formatter wishList;
        private Formatter giftIdeas;
        private Formatter priceError;
        //let user open file
        public void openFile()
        {//open method openFile
            try
            {//open try block
                priceError = new Formatter("priceerror.txt");//open object for items with invalid prices
                giftIdeas = new Formatter("giftideas.txt");//open object for gift ideas
                wishList = new Formatter("wishlist.txt");//open object for wish list
                txtfile = new Scanner(new File("products.txt"));//tell the compiler which file to use for input
            }//close try block
            catch (FileNotFoundException fileNotFoundException)
            {//open file not found catch block
                System.err.println("Error opening or creating file.");
                System.exit(1);
            }//close file not found catch block
            catch ( SecurityException securityException )
            {//start catch for SecurityException
                System.err.println("File Write access is denied.");
                System.exit(1);//END PROGRAM
            }//end catch
        }//close openFile method
        public void readProducts()
        {//open readProducts method
            ProductRecord product = new ProductRecord();//create object to hold read data
            //print headers for for output columns
            wishList.format("%-10s%-12s%10s\n", "Product ID", "Product Name", "Price");
            giftIdeas.format("%-10s%-12s%10s\n", "Product ID", "Product Name", "Price");
            priceError.format("%-10s%-12s%10s\n", "Product ID", "Product Name", "Price");
            try //read records from the file
            {//open try block
                while (txtfile.hasNext())
                {//open while
                    product.setproductID(txtfile.nextInt());//get productID
                    product.setproductName(txtfile.next());//get product name
                    product.setproductPrice(txtfile.nextDouble());//get product price
                    if (product.getproductPrice()>50.0)
                    {//open if to store items $50 or more to wishlist.txt
                        wishList.format("%-10d%-12s%10.2f\n", product.getproductID(),
                                product.getproductName(), product.getproductPrice());
                    }//close if $50 or greater
                    else if (product.getproductPrice()<0.0)
                    {//open if less than zero
                        priceError.format("%-10d%-12s%10.2f\n", product.getproductID(),
                                product.getproductName(), product.getproductPrice());
                    }//close if less than zero
                    else
                    {//open else for gift ideas from $0 to $50
                        giftIdeas.format("%-10d%-12s%10.2f\n", product.getproductID(),
                                product.getproductName(), product.getproductPrice());
                    }//close else for gift ideas
                }//close while
            }//close try block
            catch (NoSuchElementException elementException)
            {//open no such element exception catch
                System.err.println("File improperly formed.");
                txtfile.close();//close text file
                System.exit(1);
            }//close no such element exception catch
            catch (IllegalStateException stateException)
            {//open illegal state exception catch
                System.err.println("Error reading from file.");
                System.exit(1);
            }//close illegal state exception catch
        }//close readProducts method
        //close file and end application
        public void closeFile()
        {//open closeFile method
            if (txtfile != null)
                txtfile.close();//close file
        }//close closeFile method
    }//end application readTxtwith the System.out.printf lines in the ReadProducts method it would properly print to screen all of the elements in the products.txt file, it is not outputting to the other .txt files at all. I will be exploring the closeFile method in case the error is due to not closing all of the files in that method, but does anyone else see what might cause it not to output the data to the appropriate .txt files?

  • Link Reports -item  does not exists on this page

    I have two tables Person table with Primary Key of PersonID, and Person_Qualification Table with a FK of Person_ID.
    I have a report for each table. I have created a report on the Person Table(Page 3000) with a link column to the Person Qualification Report (Page 3119).
    In the link column I created in the person report I have my parameters set as P3000_PersonID and #Person_ID# as field to populate the URL with, and the target page as 3119.
    However anytime I click this link that takes me to the PersonQualification report I get an error stating the Item P3000_Person ID does not exists on this page (3119).
    I have linked a form and report together before, but not two reports.
    I want the person qualification report to be only for the personID that was clicked on.
    I tried adding P3000_PersonID to the query in the person_qualification page I.E. where PersonID=:P3000_PersonID but I still get the item P3000_Person ID does not exists on this page or something to this effect.
    Thanks

    Hello gtjr,
    You need to define an item (usually hidden) on page 3119 to hold the person ID and use that in your second report's query.
    Then in the column link for the first report, specify this new item to be set to the person ID linked.
    The reason for the error is you're telling ApEx to set an item p3000_person_id on page 3119, but that item doesn't exist on page 3119.
    Hope this helps,
    John
    Please remember to reward helpful or correct responses. :-)

  • BPMon Alert Reporting - Query does not exist on server

    Hello,
    I am stepping through the BPMon Alert Reporting Analysis SP05+ guide. I am creating a report and have maintained the details with the template 0SM_BPM_WT0001N. When I try to access or preview the report I am faced with the following error:
    The requested query 0SM_BPM1/0SM_BPM_Q0005N does not exist on the current server
    Error when generating dataProvider
    Any ideas?
    Thanks

    Hi Christoper
    Another thought is, re-activate BPMon BW object.
    Go to T-CD SOLMAN_SETUP ->    Choose business process monitoring in left menu -> step 1.1
    configure automatically. And execute all steps.
    If you face some error due to BW job is nto running or something.
    Then recommend re-execute BW job in SOLMAN_SETUP.
    (Left menu ->Basic Configuration ->Step 5 configure automatically -> under the task you might see "Setup BW" so choose this and activate. Result of this, CCMS_BI_SETUP will run again. So chek whether there is active job in Sm37. After finish this job, try BPMon SOLMAN_SETUP that I mentioned above).
    Best Regards
    Keiji

  • Company code and Account code does not exist in SKB1 while entering GL Tran

    I have created chart of accounts in the co code but getting error msg while posting entry in <Company Code>and<GL Account> transaction that entry does not exist in table SKB1. I have copied COA from existing SAP COA.
    I was able to find the solution for the following messages
    1.     Fiscal Variant not connected to company code
    2.     Open Posting Period u2013 period 032009 not open (June-3)
    3.     The number range 01 is missing for year 2009
    4.     Document Number not defined
    5.     No amount tolerance range entered for this company
    6.     Entry Company code no does not exist in SKB! (G/L account company master)
    7.     Company coode ZR02 is not attached to field status variant

    Hello,
    There is no such automatic copy function from Chart of Account Segment to Company Code Segment.
    You need to write LSMW by recording and upload the GL accounts into company code segment.
    Use the following guide for your guidance.
    ttp://www.scmexpertonline.com/downloads/SCM_LSMW_StepsOnWeb.doc
    Regards,
    Ravi

  • Just purchased adope premiere elements 11 and redemption code does  not exist

    just purchased premiere elements 11 and when trying to get serial number, i am told the redemption code does not exist, its brand new right out of the package. WHY.

    Did you try entering the redemption code at http://www.adobe.com/go/getserial/?  You can find additional details at Serial number retrieval process FAQ | Point-of-sale activation products - http://helpx.adobe.com/x-productkb/policy-pricing/serial-number-retrieval-process-faq.html.

  • Dynamic link between Photoshop and Flash Catalyst does not exist

    Hi,
    I'm a french developer and I have a question.
    I didnt find any Dynamci link between Photoshop and Flash Catalyst.
    Let me explain :
    I have a photoshop file (.psd) and I import it into Flash Catalyst.
    But I have some modification to do on my design file (psd) but the design does not update himself in Flash Catalyst .
    Do you plane to add the possibility ?
    Thanks a lot !
    Clement
    http://www.dator.fr

    Given that you named the class TextDynamicLayout, it implies you are trying to handle wordwrapping text.  That requires handing down the VBox's explicitWidth to the Text controls before they get measured.  Wordwrapping text can be any size so it needs to have its width fixed in order to determine its height.
    The List classes do not support percentages on the renderers.  All renderers are effectively given a size based on the List's size (or DG Column size).  You can see how explicitWidth is handled in the default renderer by looking at the source for ListItemRenderer.as.
    Note that VBox or any container makes for heavy and slow rendering.  That's why the default Flex renderers extend UIComponent and have custom measure() and updateDisplayList() methods.
    Alex Harui
    Flex SDK Developer
    Adobe Systems Inc.
    Blog: http://blogs.adobe.com/aharui

  • MSI not installing via Group Policy - Insists location does not exist

    Hi
    I am creating a group policy object whereby I am pointing my software package installation to \\192.168.1.3\GPO\MSOCached32bit.msi
    The location has permissions for the machine accounts on both the share and the ntfs permissions with read only access.
    I have created an OU and moved a Windows XP machine into it, linked the GPO and made sure that the XP machine is not using optimised log on.
    From the machine I can reach the share and see the file from the path above.
    However each time I reboot the machine I am testing on the installation fails, the exact error being:
    The install of application MSO from policy MSO Installation failed. The error was : The installation source for this product is not available. Verify that the source exists and that you can access it.
    This is rather odd, since I can see it, the machine account has permissions to see it and I cannot see what the problem is.
    I have then gone on to enable verbose logging of the MSI installer which has produced the following:
    === Verbose logging started: 18/08/2011  15:36:18  Build type: SHIP UNICODE 3.01.4001.5512  Calling process: \??\C:\WINDOWS\system32\winlogon.exe ===
    MSI (c) (AC:B0) [15:36:18:666]: Resetting cached policy values
    MSI (c) (AC:B0) [15:36:18:666]: Machine policy value 'Debug' is 7
    MSI (c) (AC:B0) [15:36:18:666]: ******* RunEngine:
               ******* Product: {96b77fe2-a045-4f3f-9a73-1bf359d0eaaf}
               ******* Action:
               ******* CommandLine:
    MSI (c) (AC:B0) [15:36:18:666]: Client-side and UI is none or basic: Running entire install on the server.
    MSI (c) (AC:B0) [15:36:18:666]: Grabbed execution mutex.
    MSI (c) (AC:B0) [15:36:18:736]: Cloaking enabled.
    MSI (c) (AC:B0) [15:36:18:736]: Attempting to enable all disabled priveleges before calling Install on Server
    MSI (c) (AC:B0) [15:36:18:736]: Incrementing counter to disable shutdown. Counter after increment: 0
    MSI (s) (B4:CC) [15:36:18:756]: Grabbed execution mutex.
    MSI (s) (B4:D0) [15:36:18:766]: Resetting cached policy values
    MSI (s) (B4:D0) [15:36:18:766]: Machine policy value 'Debug' is 7
    MSI (s) (B4:D0) [15:36:18:766]: ******* RunEngine:
               ******* Product: {96b77fe2-a045-4f3f-9a73-1bf359d0eaaf}
               ******* Action:
               ******* CommandLine:  CURRENTDIRECTORY="C:\WINDOWS\system32" CLIENTUILEVEL=3  CLIENTPROCESSID=940
    MSI (s) (B4:D0) [15:36:18:766]: Machine policy value 'DisableUserInstalls' is 0
    MSI (s) (B4:D0) [15:36:18:766]: User policy value 'SearchOrder' is 'nmu'
    MSI (s) (B4:D0) [15:36:18:766]: User policy value 'DisableMedia' is 0
    MSI (s) (B4:D0) [15:36:18:766]: Machine policy value 'AllowLockdownMedia' is 0
    MSI (s) (B4:D0) [15:36:18:766]: SOURCEMGMT: Media enabled only if package is safe.
    MSI (s) (B4:D0) [15:36:18:766]: SOURCEMGMT: Looking for sourcelist for product {96b77fe2-a045-4f3f-9a73-1bf359d0eaaf}
    MSI (s) (B4:D0) [15:36:18:766]: SOURCEMGMT: Adding {96b77fe2-a045-4f3f-9a73-1bf359d0eaaf}; to potential sourcelist list (pcode;disk;relpath).
    MSI (s) (B4:D0) [15:36:18:766]: SOURCEMGMT: Now checking product {96b77fe2-a045-4f3f-9a73-1bf359d0eaaf}
    MSI (s) (B4:D0) [15:36:18:766]: SOURCEMGMT: Media is enabled for product.
    MSI (s) (B4:D0) [15:36:18:766]: SOURCEMGMT: Attempting to use LastUsedSource from source list.
    MSI (s) (B4:D0) [15:36:18:766]: SOURCEMGMT: Processing net source list.
    MSI (s) (B4:D0) [15:36:18:766]: SOURCEMGMT: Trying source \\192.168.1.3\GPO\.
    MSI (s) (B4:D0) [15:36:19:427]: Note: 1: 1314 2: \\192.168.1.3\GPO\
    MSI (s) (B4:D0) [15:36:19:427]: ConnectToSource: CreatePath/CreateFilePath failed with: -2147483648 1314 -2147483648
    MSI (s) (B4:D0) [15:36:19:427]: ConnectToSource (con't): CreatePath/CreateFilePath failed with: -2147483648 -2147483648
    MSI (s) (B4:D0) [15:36:19:427]: SOURCEMGMT: net source '\\192.168.1.3\GPO\' is invalid.
    MSI (s) (B4:D0) [15:36:19:427]: Note: 1: 1706 2: -2147483647 3: MSOCached32bit.msi
    MSI (s) (B4:D0) [15:36:19:427]: SOURCEMGMT: Processing media source list.
    MSI (s) (B4:D0) [15:36:19:437]: Note: 1: 2203 2:  3: -2147287037
    MSI (s) (B4:D0) [15:36:19:437]: SOURCEMGMT: Source is invalid due to missing/inaccessible package.
    MSI (s) (B4:D0) [15:36:19:437]: Note: 1: 1706 2: -2147483647 3: MSOCached32bit.msi
    MSI (s) (B4:D0) [15:36:19:437]: SOURCEMGMT: Processing URL source list.
    MSI (s) (B4:D0) [15:36:19:437]: Note: 1: 1402 2: UNKNOWN\URL 3: 2
    MSI (s) (B4:D0) [15:36:19:437]: Note: 1: 1706 2: -2147483647 3: MSOCached32bit.msi
    MSI (s) (B4:D0) [15:36:19:437]: Note: 1: 1706 2:  3: MSOCached32bit.msi
    MSI (s) (B4:D0) [15:36:19:437]: SOURCEMGMT: Failed to resolve source
    MSI (s) (B4:D0) [15:36:19:437]: MainEngineThread is returning 1612
    MSI (c) (AC:B0) [15:36:19:437]: Decrementing counter to disable shutdown. If counter >= 0, shutdown will be denied.  Counter after decrement: -1
    MSI (c) (AC:B0) [15:36:19:437]: MainEngineThread is returning 1612
    === Verbose logging stopped: 18/08/2011  15:36:19 ===
    As you can see from the above highlighted line, it says its invalid, but I cannot for the life of me understand why?
    Thanks in advance for any help!

    Hi,
    This is not something related to the GPO issue. The issue is with MSI and the packaging. Condition the ResolveSource action.
    Try Copying the MSI to local machine using a script and execute it.
    ResolveSource actually requires that the original installation source is available whenever it is called. If your installer package is authored correctly, source must only be resolve in cases where the original RTM files are missing or during some patch
    uninstall scenarios.
    http://blogs.msdn.com/b/heaths/archive/2007/10/25/resolvesource-requires-source.aspx
    http://msdn.microsoft.com/en-us/library/aa371232%28VS.85%29.aspx
    http://www.appdeploy.com/messageboards/printable.asp?m=48703
    If you found this post helpful, please give it a "Helpful" vote. If it answered your question, remember to mark it as an "Answer". This posting is provided "AS IS" with no warranties and confers no rights! Always test ANY suggestion in a test environment before
    implementing!

  • Object ZPR_ASSET_VALUE of class RE and language EN does not exist

    Hello experts,
    The error always pops up when I try to run my report. Am I doing something wrong?
    Thanks a lot guys and take care!

    This report must be calling a SAPSCRIPT or SMARTFORM.If the program is not maintained in transaction NACE for a given output type and SAPSCRIPT or SMARTFORM,then this error pops up.Just maintain the entry in NACE transaction.

  • Object of Program name   class re and language en does not exist

    This is the Open Sales Order Report im working on. im trying to read data from table VBUK and the VBELN field im trying to get the data from table 'VAPMA' where the error occurred. I get the following error after the second select statement.
    *& Report  ZRSD_DISPLAY_OPEN_SALESORDERS
    REPORT  ZRSD_DISPLAY_OPEN_SALESORDERS.
    TABLES: VAPMA,LIKP.
    PARAMETERS: P_VKORG TYPE VAPMA-VKORG,
                P_VTWEG TYPE VAPMA-VTWEG,
                P_SPART TYPE VAPMA-SPART.
    SELECT-OPTIONS:
                S_KUNNR FOR VAPMA-KUNNR,
                S_VBELN FOR VAPMA-VBELN,
                S_MATNR FOR VAPMA-MATNR,
                S_AUART FOR VAPMA-AUART,
                S_AUDAT FOR VAPMA-AUDAT,
                S_LFDAT FOR LIKP-LFDAT.
    TYPES: BEGIN OF TY_VBELN,
           VBELN TYPE VBUK-VBELN,
           END OF TY_VBELN.
    DATA : IT_VBELN TYPE STANDARD TABLE OF TY_VBELN,
           IT1_VBELN TYPE STANDARD TABLE OF TY_VBELN,
           IT2_VBELN TYPE STANDARD TABLE OF TY_VBELN,
           WA_VBELN TYPE TY_VBELN.
    SELECT VBELN INTO TABLE IT_VBELN FROM VBUK WHERE GBSTK NE 'C'.
      IF SY-SUBRC NE 0.message E000(ZMSG) WITH 'SEL1'.ENDIF.
    SELECT VBELN INTO TABLE IT1_VBELN  FROM VAPMA
      FOR ALL ENTRIES IN IT_VBELN
         WHERE VBELN = IT_VBELN-VBELN AND
         VKORG = P_VKORG AND
         VTWEG = P_VTWEG AND
         SPART = P_SPART AND
         KUNNR IN S_KUNNR AND
         VBELN IN S_VBELN AND
         MATNR IN S_MATNR AND
         AUART IN S_AUART AND
         AUDAT IN S_AUDAT.                                                                               .
      IF SY-SUBRC <> 0.
    MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
             WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
    ENDIF.
    SELECT VBELN INTO TABLE IT2_VBELN FROM LIKP
      FOR ALL ENTRIES IN IT1_VBELN
      WHERE VBELN = IT1_VBELN-VBELN AND LFDAT IN S_LFDAT.
        IF SY-SUBRC NE 0.message E000(ZMSG) WITH 'SEL3'. ENDIF.
    LOOP AT IT2_VBELN INTO WA_VBELN.
      WRITE:/1 WA_VBELN-VBELN.
    ENDLOOP.
    Edited by: Rob Burbank on Mar 7, 2012 10:12 AM

    Hi,
    I think this is due to
    MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
             WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
    Try to change this part and use your own message instead...
    Kr,
    Manu.

Maybe you are looking for

  • Is it possible to convert an app from 12c to 11g?

    I am using both 11.1.2.4 and 12.1.2.0. If I have an app built with 12.1.2.0, which does not include any 12c specific features, is it possible to convert it to 11.1.2.4? I am asking because I have a Development environment that is 12c, but a Productio

  • ODBC SQLGetData not thread-safe when retrieving lob

    Hi MaxDB developpers, we are in the process of migrating our solution from SapDb 7.4.03.32 to MaxDb 7.6.03.7. We use the ODBC driver on windows, from multi-threaded applications. We encountered bugs in the ODBC driver 7.4.03.32 and made our own fixes

  • BEX Report Writer

    Hi Guru's Can anyone send me the interview questoins and answers regarding BEX Report Writer this is urgent please,  Advance thanks Thanks & regards Sunitha

  • Can't Escape From Itunes Plug In Screen

    My Iphone 4S  was just working great for a year. Now when I tried to update my iphone 4S to IOS 7.0 4 it was verifying then it turned off. When i turned on my Iphone then it was continiousley stuck on connect to itunes. This is the first time I had a

  • NO PSA for InfoSource and source system 120 : Maintaing Transfer Rules

    Hello BI Experts , I am working on Generic data source extraction. Earlier I mapped all fields infoobjects in Transfer Rules and then loaded data to ODS properly. But later on I made few changes in Generic data source view and exits in the R3 and rep