Error: Batch does not contain a valuation type

Hi,
When I'm trying to do MB1B for the below parameters, I'm getting the error:
Transaction       MB1B
movement type 411
special stock     Q
plant                 XXXX
storage location YYYY
WBS element    a12334455674787698
material             1234
quantity             n
batch                12345678
'Batch 'material no' 'plant' 'batch no' does not contain a valuation type. Message no. M7 045
But the batch has a valuation type and the material is assigned a valuation type too.
Can you please giude me to find out why is this behaviour?
Regards
Jag

HI, I've encounter the same problem. But I used the movement type 323 E.
I input the data as below:
material  2000000564
plant  S010
storage location 2001
batch 0903011208,
and got the message M7045 saying that Batch  2000000564 S010 0903011208 does not contain a valuation type,  but the batch 0903011208 do have a valuation type in it!
When I use movement type 323,  there isnt' any error message returned!
so, I guess there is a bug in the program!

Similar Messages

  • Batch  30008068 6110 0000012614 does not contain a valuation type

    Hi,
    I am trying to issue a material from a very old batch but it is s giving a following error message.
    BATCH does not contain avaluation type.
    I want to remove a stock from the batch.
    How can we remove.
    Regards,
    SAGAR

    Hi,
    Please check for the Account Determination process for valuation class 6110. and GL account. Check entire process once.
    Also, as u r saying old batch, check material master record with batch managment status and batch managment active in customizing.
    While goods issue, enter batch number....
    Hope this will help.
    Regards,
    Smitha

  • [Eclipse Problem] Selection does not contain a main type?

    well i am using a GUI builder software which generates java code, i made a simple one to test and it will not compile.
    import java.awt.*;
    import javax.swing.*;
    public class name  {
         @SuppressWarnings("unused")
         private void initComponents() {
              panel1 = new JPanel();
              label1 = new JLabel();
              textField1 = new JTextField();
              panel1.setLayout(new FlowLayout());
              label1.setText("Name:");
              label1.setHorizontalAlignment(SwingConstants.LEFT);
              panel1.add(label1);
              textField1.setColumns(12);
              textField1.setText("hi");
              panel1.add(textField1);
         private JPanel panel1;
         private JLabel label1;
         private JTextField textField1;
    }it should make a basic swing GUI but it just gives me the error "Selection does not contain a main type"
    I did not select in eclipse "use public static void main" i know im not supposed to because this has no main method, but how am i to compile this? =X
    Edited by: -Johnny- on May 14, 2008 6:44 PM
    Edited by: -Johnny- on May 14, 2008 6:44 PM

    -Johnny- wrote:
    ya i used javac instead of eclipse then running it complains like you say
    but is there any way to compile this code and it will work? I was hoping to use this GUI builder for business purposes but it seems like a waste of money so far if i can't make working java application with it =\The code is fine. You need to learn the basics. Start with the intro tutorials at the Sun type and start reading and coding.
    Here is what the rest could look like:
    import java.awt.*;
    import javax.swing.*;
    public class name
        @SuppressWarnings("unused")
        private void initComponents()
            panel1 = new JPanel();
            label1 = new JLabel();
            textField1 = new JTextField();
            panel1.setLayout(new FlowLayout());
            label1.setText("Name:");
            label1.setHorizontalAlignment(SwingConstants.LEFT);
            panel1.add(label1);
            textField1.setColumns(12);
            textField1.setText("hi");
            panel1.add(textField1);
        private JPanel panel1;
        private JLabel label1;
        private JTextField textField1;
        public name()
            initComponents();
        public JPanel getPanel()
            return panel1;
        private static void createAndShowUI()
            JFrame frame = new JFrame("name");
            frame.getContentPane().add(new name().getPanel());
            frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
            frame.pack();
            frame.setLocationRelativeTo(null);
            frame.setVisible(true);
        public static void main(String[] args)
            java.awt.EventQueue.invokeLater(new Runnable()
                public void run()
                    createAndShowUI();
    }Edited by: Encephalopathic on May 14, 2008 7:10 PM

  • Help - Editor does not contain a main type error (Eclipse)

    Hello,
    I'm trying to run a Text input program out of the Eclipse program and I keep getting this Editor does not contain a main type error - can someone help me
    here's the code
    import java.io.File;
    import java.io.FileNotFoundException;
    import java.text.DecimalFormat;
    import java.util.Scanner;
    import uwcse.io.Input;
    public class FileInputExample {
         public static void main(String[] args) {
              // Create a Scanner to read the input file
              String fileName = new Input().readString("Input file name? ");
              System.out.println();
              Scanner scan;
              try {
                   scan = new Scanner(new File(fileName));
              } catch (FileNotFoundException e) {
                   System.out.println(fileName + " doesn't exist!");
                   return;
              // Read the file and count the number of occurences of A, B, ...
              int[] count = new int[26];
              while (scan.hasNextLine()) {
                   String line = scan.nextLine();
                   line = line.toLowerCase();
                   for (int i = 0; i < line.length(); i++) {
                        char c = line.charAt(i);
                        if (c >= 'a' && c <= 'z') {
                             count[c - 'a']++;
              scan.close();
              int length = 0;
              for (int i = 0; i < count.length; i++) {
                   length += count;
              // Display the statistics (as an histogram)
              DecimalFormat df = new DecimalFormat("0.00");
              for (int i = 0; i < count.length && length > 0; i++) {
                   double percent = count[i] * 100.0 / length;
                   String display = "" + (char) ('a' + i);
                   display += "(" + df.format(percent) + "%):\t";
                   for (int j = 1; j <= Math.round(percent); j++) {
                        display += "X";
                   System.out.println(display);
    }Thanks                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   

    First, note that your program uses a non-standard class, "uwcse.io.Input" which is not available to us. Normally that is a show stopper - in this case, it's not, as I was able to eliminate its use.
    Your program runs fine, so the error is an Eclipse error unrelated to Java.
    You need to ask for help at an Eclipse support site, not here, as these forums are Java language forums.

  • Error: InfoObject does not contain alpha-conforming value 20030729

    Hi everyone,
    I got this problem, that i tried to fix yesterday, but all i did was that i got realy frustrated...
    I created an infoobject which is copy of 0DOC_NUMBER and has alpha coversion routine.
    Mapping field in DataSource is also type character 10(VBELN) as my infoobject.
    But there are some values in this field that i am trying to load, less then 10 characters long (20030729,20051116...) and shouldn't be there, because the values are dates and not document numbers.
    But anyway on R/3 side this values are in field which is defined as character 10 (VBELN), and when I am trying to load Infopackage(17500 records) I get 52 errors: InfoObject does not contain alpha-conforming value 20030729.
    I don't get it, since both fields are type character 10 and the values are only digits, why do I get this error message and how can I fix it?
    PS:One solution is to remove alpha conversion routine from infoobject, but i don't want that.
    Regards,
    Uroš

    hi,
    sorry... correction, it's 'Exclusive attributes' that cannot be used for navigational attribute, you can set lower case to differentiate ... check the impact of lower case setting here ...
    http://help.sap.com/saphelp_bw33/helpdata/en/b7/f470375fbf307ee10000009b38f8cf/frameset.htm
    Lowercase letters allowed / not allowed
    If this indicator is set, the system differentiates between lowercase letters and capital letters when you use a screen template to input values. If this indicator is not set, the system converts all the letters into capital letters when you use a screen template to input values.
    If you choose to allow the use of lowercase letters, you must be aware of what happens when you input variables:
    If you want to use the characteristic in variables, the system is only able to find the values for the characteristic if the lowercase letters and the capital letters are typed in accurately on the input screen for variables. If, on the other hand, you do not allow the use of lowercase letters, any characters that you type onto the input screen, are converted automatically into capital letters.
    Exclusive attributes:
    If you select Exclusively Attributes, the created characteristic can be used only as a display attribute for another characteristic, and not as a dedicated characteristic in the InfoCube. Furthermore, you then cannot transfer the characteristic into InfoCubes. However, you can use it in ODS objects or InfoSets.

  • J1IEX post than made error like does not contain any selectable items

    Respected Sir,
    We have purchase the Goods From SEZ unit and it wil be treated as import made.
    We doing the following activities
    1. Prepared the Import P.O.
    2. released the same P.O.
    3. Doing the MIRO for Custome Vendor
    4. Capture the J1iex
    than we fins the below mention ERROR & Diagnoses and ERROR
    Document 4400000016   does not contain any selectable items
    Message no. M7064
    Diagnosis
    The document or document item entered cannot be adopted.
    Possible reasons for this are:
    u2022     The document items have already been processed
    (Suggest zero lines indicator set?).
    u2022     the document items have been deleted or are blocked.
    u2022     the document items have been created for a different plant.
    u2022     (for reservations only) movements are not yet allowed for the reservation items.
    u2022     (for reservations only) the document items are retrograde components of the order. These are posted using the order confirmations.
    u2022     A confirmation must exist for the document items.
    u2022     The document items must be released first.
    u2022     The document is an R/2 document.
    Procedure
    Make sure your entries are correct.
    u2022     If the system has already processed the total quantity, you can set the Suggest zero lines indicator. The system will suggest the quantity zero for the items that have already been processed.
    u2022     If you have entered a particular item, cancel the item. If you do not enter an item, the system searches all of the open items in the document.
    u2022     If the document is a purchase order, production order or a reservation, you can
    Kindly doneedfull above mention error
    Thanks & Regards
    Bipin Shah

    HI,
    Please check whether all the vendor and excise details have been maintained in J1id.  i.e Excise rate maintainance.
    Hope this helps.
    Regards,
    Prasanna
    Award pls if helpful

  • Batch does not exist for mvt typ 411 K

    Hi Experts,
    While i am perform migo for mvt type 411 K,it shows Batch does not exist but i check in MMBE,the batch for this vendor consignment was exist with stock.
    Any advice?
    Thank you.

    How did the batch go into your system? with an initial load program, or with a standard MIGO movement?

  • Error : Delivery does not contain items to be picked

    Hi Exps
    I have created Stock Transport Order (STO) and then Delivery Note with VL10g.
    In Delivery Output EK00 (Picking list Printing ) gets populated along with EKSU (Picking List EDI output).
    But EK00 only turns green and EKSU turns Red saying that "Delivery does not contain items to be picked"
    My Conclusions :
    1) Picking is happening with EK00 due to which EKSU doesnt get any items to be Picked and it fails in creating Idoc.
    I want to make both outputs (EK00 and EKSU) turning green(Successful).
    How can I do this. ?
    Any setting or any other approach welcome.
    <REMOVED BY MODERATOR>
    Regards
    Tulip
    Edited by: Alvaro Tejada Galindo on Feb 13, 2008 4:55 PM

    hi
    First  Check whether the Material in delivery are relevant for picking.
    If yes, then try chaning the order of the Output in the Output procedure fist EKSU then give EK00
    If EK00 is green agreeed , check if any automatic picking is done , becasue once the picking is done then the EDI output is failing.

  • 'Document does not contain any items' error while posting GR from BAPI

    Hello Friends,
    I am trying to post GR from BAPI 'BAPI_GOODSMVT_CREATE' but some time it post successful and some time it does not post..gives error 'Document does not contain any items'....i have search all option but did not get any solution why this error is coming....kindly help me if you have any information regarding that.
    The strange thing is i have alrady posted GR with some test data and later on again am trying to post GR with same test data but it is giving error as above.
    For your information...i am using enhancement spot in standard program for GR posting...could it give any problem.
    Regards,
    Rajkishor.

    Solved by my self...problem was i were using enhancement spot in standard program because of this it was creating problem have search new enhancement spot and put my code out there now it is working fine.
    Thanku very much all of you for your reply.

  • Document does not contain selectable items.

    Hello Gurus,
    My purchase team wanted to transfer plant from one plant to other.. and so they are creating STO , without any confirmation , while doing GRN 101 movement type Store person is facing error Document does not contain selectable items.
    Please help to resolve the same.

    Hi,
    1) this should be posted in MM forum, not here
    2) let the person go to MIGO , to menu Settings, click Default Values and check checkbox "Propose All Items"
    3) I guess if it is STO it would need goods issue first happening in source plant so that GR can happen in receiving plant (so first create Outbound Delivery in source plant, post goods issue against it and then do the GR with 101 against this delivery or PO itself)
    Regards,
    Tomek

  • Migo cannot be done " PO does not contain any selectable items"

    Dear SAP Gurus
    We have a very urgent issue, while trying to do MIGO for a particular standard PO.
    Some down payments have been done to this PO already and now when we try to do the MIGO, system is giving the error "PO does not contain any selectable items"
    The accounting document which is created when the down payment is done can be seen in the purchase order History.
    Please suggest soem solution
    Thanks
    kk

    Hi Kavitha,
    Please check whether all the po item quantities are received. If any open line items are there then go to item detail po tab in that Select Confirmation Tab and Check whether the confirmation is Z001. Change it to 0001 etc and save.
    Try this, if unresolved revert back.
    Reg,
    Ashok
    Assign points if useful.

  • Upload and Download Errror " File does not contain valid data"

    We are on the ECC 6.0 Unicode system.
    I dowloaded the Role from QA server and tried to upload into DEV box.
    I am getting the Error " File does not contain valid data".
    However, when I downloaded the Role, it was done successfully.
    Please let me know if anyone has that problem.
    Thanks,
    From
    PRANAV

    This is what I see here.
    DATE                                              20090716                                          131756RELEASE                                           700LOADED_AGRS                                       Z_BI_HR_REPORTING_FUNCTIONALAGR_DEFINE                                        210Z_BI_HR_REPORTING_FUNCTIONAL                                PTHAKER     20080523131557000000000000000PTHAKER     20090709142400000000000000000AGR_TCODES                                        210Z_BI_HR_REPORTING_FUNCTIONAL  TRRRMX                                             X 00000AGR_1250                                          210Z_BI_HR_REPORTING_FUNCTIONAL  000001S_RFC     T-BD90003500    U  O000004Authorization Check for RFC AccessAGR_1250                                          210Z_BI_HR_REPORTING_FUNCTIONAL  000002S_RS_AUTH T-BD90003500    U  O000013BI Analysis Authorizations in RoleAGR_1250                                          210Z_BI_HR_REPORTING_FUNCTIONAL  000003S_RS_COMP T-BD90003500    U  O000016Business Explorer - ComponentsAGR_1250                                          210Z_BI_HR_REPORTING_FUNCTIONAL  000004S_RS_COMP1T-BD90003500    U  O000023Business Explorer - Components: Enhancements to the OwnerAGR_1250                                          210Z_BI_HR_REPORTING_FUNCTIONAL  000005S_RS_FOLD T-BD90003500    U  O000029Business Explorer - Folder View On/OffAGR_1250                                          210Z_BI_HR_REPORTING_FUNCTIONAL  000006S_RS_HIER T-BD90003500    U  O000032Data Warehousing Workbench - HierarchyAGR_1250                                          210Z_BI_HR_REPORTING_FUNCTIONAL  000007S_RS_ODSO T-BD90003500    U  O000038Data Warehousing Workbench - DataStore ObjectAGR_1250                                          210Z_BI_HR_REPORTING_FUNCTIONAL  000008S_RS_PARAMT-BD90003500    U  O000045Business Explorer - Variants in Variable ScreenAGR_1250                                          210Z_BI_HR_REPORTING_FUNCTIONAL  000009S_TCODE   T-BD90003500    S  O000009Transaction Code Check at Transaction StartAGR_1251                                          210Z_BI_HR_REPORTING_FUNCTIONAL  000001S_RS_COMP T-BD90003500    RSZCOMPTP CKF                                                                             U  O000021AGR_1251                                          210Z_BI_HR_REPORTING_FUNCTIONAL  000002S_RS_COMP T-BD90003500    RSZCOMPID *                                                                               U  O000020AGR_1251                                          210Z_BI_HR_REPORTING_FUNCTIONAL  000003S_RS_COMP1T-BD90003500    RSZCOMPID ZHCM*                                                                           U  O000025AGR_1251                                          210Z_BI_HR_REPORTING_FUNCTIONAL  000004S_TCODE   T-BD90003500    TCD       RRMX                                                                            S  O000010AGR_1251                                          210Z_BI_HR_REPORTING_FUNCTIONAL  000005S_RS_HIER T-BD90003500    ACTVT     71                                                                              U  O000033AGR_1251                                          210Z_BI_HR_REPORTING_FUNCTIONAL  000006S_RS_HIER T-BD90003500    RSHIENM   *                                                                               U  O000034AGR_1251                                          210Z_BI_HR_REPORTING_FUNCTIONAL  000007S_RS_HIER T-BD90003500    RSIOBJNM  *                                                                               U  O000035AGR_1251                                          210Z_BI_HR_REPORTING_FUNCTIONAL  000008S_RS_HIER T-BD90003500    RSVERSION *                                                                               U  O000036AGR_1251                                          210Z_BI_HR_REPORTING_FUNCTIONAL  000009S_RS_PARAMT-BD90003500    PARAMNM   *                                                                               U  O000047AGR_1251                                          210Z_BI_HR_REPORTING_FUNCTIONAL  000010S_RS_COMP T-BD90003500    RSINFOAREAZPA_ECM*                                                                        U  O000018AGR_1251                                          210Z_BI_HR_REPORTING_FUNCTIONAL  000011S_RS_ODSO T-BD90003500    RSINFOAREAZPA_ECM*                                                                        U  O000040AGR_1251                                          210Z_BI_HR_REPORTING_FUNCTIONAL  000012S_RS_COMP1T-BD90003500    RSZCOMPID ZPAOS*                                                                          U  O000025AGR_1251                                          210Z_BI_HR_REPORTING_FUNCTIONAL  000013S_RS_ODSO T-BD90003500    ACTVT     03                                                                              U  O000039AGR_1251                                          210Z_BI_HR_REPORTING_FUNCTIONAL  000014S_RS_COMP1T-BD90003500    RSZCOMPID ZPAPA*                                                                          U  O000025AGR_1251                                          210Z_BI_HR_REPORTING_FUNCTIONAL  000015S_RS_ODSO T-BD90003500    RSODSOBJ  *                                                                               U  O000041AGR_1251                                          210Z_BI_HR_REPORTING_FUNCTIONAL  000016S_RS_ODSO T-BD90003500    RSODSPART DATA                                                                            U  O000042AGR_1251                                          210Z_BI_HR_REPORTING_FUNCTIONAL  000017S_RS_ODSO T-BD90003500    RSODSPART DEFINITION                                                                      U  O000042AGR_1251                                          210Z_BI_HR_REPORTING_FUNCTIONAL  000018S_RS_ODSO T-BD90003500    RSODSPART EXPORTISRC                                                                      U  O000042AGR_1251                                          210Z_BI_HR_REPORTING_FUNCTIONAL  000019S_RS_ODSO T-BD90003500    RSODSPART UPDATERULE                                                                      U  O000042AGR_1251                                          210Z_BI_HR_REPORTING_FUNCTIONAL  000020S_RS_COMP T-BD90003500    ACTVT     03                                                                              U  O000017AGR_1251

  • Error: Schema to be handled does not contain a defintion of type

    When I import a xsd file to create a data type in the integration repository, I am getting the error "schema to be handled does not contain a defintion of type <name_of_the_Data_Type>.
    Any ideas
    Thanks a lot in advance.
    --Kumar

    I am briging some vendor information from R3 system to XI thru IDOC. The IDOC Type is "CREMAS.CREMAS01".
    I am able to import this into Integration Repository in XI. XI is translating this into XML.
    Now insted of creating data types manually, I would like to export this XML into XSD and import into the data type.
    When importing this XSD into data type I am getting this error message.

  • C# compiling error: 'System.Array' does not contain a definition for 'Select' and no extension method 'Select' accepting a first argument of type 'System.Array' could be found (are you missing a using directive or an assembly reference?)

    Hello experts,
    I'm totally new to C#. I'm trying to modify existing code to automatically rename a file if exists. I found a solution online as follows:
    string[] allFiles = Directory.GetFiles(folderPath).Select(filename => Path.GetFileNameWithoutExtension(filename)).ToArray();
            string tempFileName = fileName;
            int count = 1;
            while (allFiles.Contains(tempFileName ))
                tempFileName = String.Format("{0} ({1})", fileName, count++); 
            output = Path.Combine(folderPath, tempFileName );
            string fullPath=output + ".xml";
    However, it gives the following compilation errors
    for the Select and Contain methods respectively.:
    'System.Array' does not contain a definition for 'Select' and no extension method 'Select' accepting a first argument of type 'System.Array' could be found
    (are you missing a using directive or an assembly reference?)
    'System.Array' does not contain a definition for 'Contains' and no extension method 'Contains' accepting a first argument of type 'System.Array' could be
    found (are you missing a using directive or an assembly reference?)
    I googled on these errors, and people suggested to add using System.Linq;
    I did, but the errors persist. 
    Any help and information is greatly appreciated.
    P. S. Here are the using clauses I have:
    using System;
    using System.Data;
    using System.Windows.Forms;
    using System.IO;
    using System.Collections.Generic;
    using System.Text;
    using System.Linq;

    Besides your issue with System.Core, you also have a problem with the logic of our code, particularly your variables. It is confusing what your variables represent. You have an infinite loop, so the last section of code is never reached. Take a look 
    using System;
    using System.Collections.Generic;
    using System.Linq;
    using System.Text;
    using System.Threading.Tasks;
    using System.IO;
    namespace consAppFileManipulation
    class Program
    static void Main(string[] args)
    string fullPath = @"c:\temp\trace.log";
    string folderPath = @"c:\temp\";
    string fileName = "trace.log";
    string output = "";
    string fileNameOnly = Path.GetFileNameWithoutExtension(fullPath);
    string extension = Path.GetExtension(fullPath);
    string path = Path.GetDirectoryName(fullPath);
    string newFullPath = fullPath;
    string[] allFiles = Directory.GetFiles(folderPath).Select(filename => Path.GetFileNameWithoutExtension(filename)).ToArray();
    string tempFileName = fileName;
    int count = 1;
    //THIS IS AN INFINITE LOOP
    while (allFiles.Contains(fileNameOnly))
    tempFileName = String.Format("{0} ({1})", fileName, count++);
    //THIS CODE IS NEVER REACHED
    output = Path.Combine(folderPath, tempFileName);
    fullPath = output + ".xml";
    //string fullPath = output + ".xml";
    UML, then code

  • Error 1074395241: The template descriptor does not contain data required for rotation-invariant matching.

    Hello all,
    I am using the IMAQ Match Pattern 4 to detect the rotation angle of a template image. However, it shows the error: "Error 1074395241: The template descriptor does not contain data required for rotation-invariant matching." What is the problem exactly? How to solve this? The details are explained below.
    My project is a little bit complicated. Part of the block diagram containing the IMAQ Match Pattern 4 is shown below:
    The source image is a series of frames of images read from an AVI video (I used a for loop to process the images frame by frame). The template image is a selected region of the first frame. So it means, the user selected the object of ineterst in the first frame of the video, and in each of the following frames, we need to find the matched object of interest & determine its rotation angle. When I run the block diagram shown above, it does not have any error. However, it shows the rotation angle as zero no matter what it "really" is. Therefore, I changed the block diagram by adding the parameters, shown below:
    But in this case, when I run it, it shows the error that I have indicated in the subject line.
    If you need more details about my project to identify the problem, please let me know.
    Thanks in advance.
    Solved!
    Go to Solution.

    -Please go through pattern matching example which comes along with labview fiirst
    Go to labview Help>>Find Examples and you can search for example.
    -You have create template with angle range and what type of pattern matching you want use.
    -For this you have to use IMAQ Learn Pattern before using IMAQ Match Pattern 4
    Refer :http://zone.ni.com/reference/en-XX/help/370281U-01/imaqvision/imaq_match_pattern_4/
    Thanks
    uday,
    Please Mark the solution as accepted if your problem is solved and help author by clicking on kudoes
    Certified LabVIEW Associate Developer (CLAD) Using LV13

Maybe you are looking for

  • How to get the selected values from a selectmanylistbox?

    Hi ADF Experts, <af:selectManyListbox label="Label 1" id="sml1" partialTriggers="cb2"                         value="#{viewScope.TestBean.lovValue}"                   autoSubmit="true"      valuePassThru="true">     <f:selectItems value="#{viewScope.

  • Deleted iPhoto library and folders containing photos but hard drive still show 32GB of photos?

    I have a new MacBook Pro Retina.  Was having all sorts of problems setting up with Time Machine/Time Capsule back-ups.  To cut a long story short I moved to trash a whole lot of photos I had imported, including the iphoto library. Have emptied trash

  • Relating debugging of program.

    hi experts. i want to learn how to do debug of program. how to use break point. how to use watch. how to debug selection-screen and module pool programming. please help it is very urgent. give some link also.

  • Issue with clearing the LOV field

    Hi, Could someone please help me with the code to reset/clear the value of an LOV field. I have a messageChoice and an LOV on the page. My requirement is that when a value is selected from the messageChoice, the value populated in the LOV field needs

  • User Level PO Restrictions In Orcle PO Standard Form

    Hi All, I need to restrict the PO's in Oracle Standard Form. Suppose Say we have 3 users. USER1 USER2 USER3 The PO's Created by USER1 should not able to query by USER2 and USER3. And the PO's Created by USER2 and USER3 should not able to query by USE