Batch return problem

Suppose for production order no. 123 of qty 1000 EA i had issued material for 800 EA but when production had started i had used only 500 EA & now i wish to transfer 300 EA again in unrestected stock .From where i will come to know about records against that production order . How to do this setting ?

thnx for your promptly reply, but my problem is not solved. I shall explain you the exact situation.
Thru MIGO i am issuing material (Raw Mat , Packing Mat, etc...) to prdn order. Now after prdn I might get remaining matrial from prdn dept.
Now I want that material should go in my unresticted stcok. So for that, which transaction should be used ???
Secong Issue - While issuing material to prdn order, in the detail screen tab, I hv to enter batch number, in help screen (F4) i get all the batches which are already consumed. Here i want only pending batched which are having stock.
I am expecting the early reply from your side.

Similar Messages

  • Ugent help with return problem

    Hello everyone,
    please can someone help me with this return problem? I'm getting a retrun error problem with this code
    public static float getVitaminPrice()
              for(int j=0;j<Vitamins.length;j++)
                        if(Vitamins[j].getCode().equals(s))
                             return Vitamins[j].getPriceByBox();               
         }

    OK thanks every one but there are things that I don't fully understand yet, just some exprience but not alot, however I'll take all the advise into consideration. I'm a person who most times only learn from examples. I have some classes called VitaminInfo, and one for Customer apart from the one that contains the main method.
    the following code is all that main contains, what I'll like to accomplish is getting back the vitamin price which was already stored in an array based on the vitamin code the user typed in.
    can you help me with that?
    public static void main(String args[])
              for(int j=0;j<Vitamins.length;j++)
                   String vitaminCode = new String(JOptionPane.showInputDialog("Please Enter the Vitamin Code"));
                   String vitaminDesc = new String(JOptionPane.showInputDialog("Please Enter the Vitamin Description"));
                   int vitaminWeight = Integer.parseInt(JOptionPane.showInputDialog("Please Enter the Vitamin Weight"+"/n" + "Vitamin Weight must be between 50 to 500 grams"));     
                   while(vitaminWeight >500 || vitaminWeight< 50){
                        vitaminWeight = Integer.parseInt(JOptionPane.showInputDialog("Please Enter the Vitamin Weight"+"/n" + "Vitamin Weight must be between 50 to 500 grams"));          
                   int vitaminPrice = Integer.parseInt(JOptionPane.showInputDialog("Please Enter the Vitamin Price"));
                   VitaminInfo vita = new VitaminInfo(vitaminCode , vitaminDesc, vitaminWeight, vitaminPrice);
                   Vitamins[j] = vita;           
              for(int j=0;j<Customers.length;j++)
                   String customerName = new String(JOptionPane.showInputDialog("Please Enter a Customer Name"));
                   String customerAddress = new String(JOptionPane.showInputDialog("Please Enter the Customer's Address"));
                   String postalCode = new String(JOptionPane.showInputDialog("Please Enter the Customer's Postal Code"));
                   Customer cust = new Customer(customerName, customerAddress, postalCode);
                   Customers[j] = cust;
              float  vprice = getVitaminPrice();
              String vcode = getVitaminOrderCode();
              int vamount = getVitaminCount(vcode);
              JOptionPane.showMessageDialog(null,"You have ordered " + vamount + " Vitamin (" + vcode + ")."+ " VitaminPrice (" + vprice + ").","Your Order",JOptionPane.INFORMATION_MESSAGE);
              showCatalog();
              showCustomers();
              System.exit(0);
         }

  • Premiere Pro CS5.5 Batch Capture Problems

    Hi,
    I'm sorry for the repost, but the older questions I can find on this topic won't allow me to reply and they were never answered (last post several months ago).
    I'm having the batch capture problem with Premiere Pro CS5.5. Capture with device control works great when single capturing. When I log clips and attempt to batch capture, though, I get the "capture failed: device not found" error in my capture log. I have checked through the FAQ and the complete premiere manual on batch capturing. I've set my device (still using a Canon XL1) and even checked the video size...it matches that of my project (someone on another forum mentioned that this could be an issue). I have had no luck.
    Could anyone tell me if this issue has been resolved, or redirect me to a resolution?
    Thanks in advance for any help!!
    Steve

    I have encountered this problem if the current tape position is beyond the last recorded point when you start the batch capture or if any "OUT" points are beyond the last recorded position or if the capture spans any unrecorded portions of the tape. I always thought it was my camera but maybe it is a PPro issue.

  • Carrier return problems within calculations

    Hi everyone
    Carrier return problems.
    I work with Numbers with Excel users, so I'm a victim of Excel.
    In my calculations I'd like to make carrier returns.
    As I understand it:
    Numbers understands: CHAR(8232)
    Exel understands: CHAR(10)
    Does anyone know of a CHAR() which both applications understand?
    Or
    Does anyone know of a calculation, so I can save it in Excel format troublelfree.
    The problem is, if I use the CHAR(8232) in an export of Excel the whole calculation is gone and only the product is left.
    Any input would be helpfull.
    Thanks.
    Jakob

    Numbers' CHAR function accepts numbers 32 and higher, except 127
    Excel's accepts the numbers 1-127
    The only solution I can think of is an error check.  In Numbers, 8232 will be used. In Excel, 13 will be used:
    IFERROR(CHAR(8232),CHAR(13))
    Note: I used 13 instead of 10 because 10 didn't seem to do anything for me in Excel.

  • Typical Batch payment problems

    Typical Batch payment problems
    Can anyone describe the various problems they have faced when running typical batch payment and how they resolved them?

    Dear expert,
    Currently we are not using tcode F110 for payment transaction. Is there any documentation on how to use transaction F110?.
    Thanks.

  • MC94 - Batch Input problem

    Hi All,
    I'm having a problem with MC94. I've used the recorder (SHDB) to create a batch input program but some of the fields I've used during the recording do not appear in the batch input program.
    Any ideas?
    Thanks.
    Manu.

    Hi
    Has anyone have code for upload program code for
    1) MC62 for infostructure. Actually i want to upload for season_category, promotion, catalog, generic article, variant article,site ..or any relevant to MC62..
    2) MC94 change plan (consistent planning).. This is a matrix upload in my case is weekly 52 column against in my case for
    a) sales at cost
    b) sales qty
    c) actual sales qty
    d) avg selling price
    e) lost sales qty
    f) return qty
    or any relevant to transaction MC94..
    Can anyone provide me the codes pls..
    THanx a ton.
    Anthony

  • Zend AMF Data Service Return Problem

    Hi Folks,
    I am working with FB4 and Zend AMF/PHP and MySQL.  I began integrating the PHP stuff using the great article by Mihai Corlan called 'Working in Flash Builder 4 with Flex and PHP.  I followed all the steps exactly, aside from creating my own app-specific PHP classes and functions, etc...  I 'hooked up' the Zend stuff just like the article, created a text datagrid, just like the article, and viola!, it worked.  I then tweaked it a bit and interwove it into my 'real' component.  So far, so good.
    Then I created a second PHP class with a different 'get data' type of function.  It queries a different table in MySQL, but is essentially the 'same' as the query/function in the initial PHP class.
    In FB, in the Data Services window, I choose the 'Connect to Data/Services' function, just like the first time.  I then find/select my PHP class file and FB 'interrogates it' enough to show me the function that exists in the class.  I 'finish' the operation and it adds a new 'service' to the list of services in that window.  Again, so far, so good.
    The problem comes when I try to 'test' the service or 'configure return types' (which basically requires a 'test' operation anyway).  I can enter the 'input' params just fine, but when I try to execute the call, I get the following error:
    InvocationTargetException:There was an error while invoking the operation. Check your operation inputs or server code and try invoking the operation again.
    Reason: An error occured while reading response sent by server. Try encoding the response suitably before sending it. e.g. If a database column contains UTF-8 characters then use utf8_encode() to encode its value before returning it from the operation.
    I don't know where to go after this.  Again - the 2nd PHP class is essentially identical to the 1st.  The function in it is essentially identical, differing only by the input params, the name of the function and the actual SQL it sends to MySQL.  There is no special text, no special characters, no image stuff, nothing.  I do not 'encode' the results of the function in the first class - in fact the code in the second class is practically identical to the first.  I do not know what the error is talking about.  My guess is that it's more of a generic message.
    I can debug the PHP code just fine from within a seperate instance of Eclipse.  The function runs/returns just fine - an array of PHP-defined objects (simple strings).
    Any insights or advice would be welcomed.   Thank you,
    -David Baron

    Thank Jorge, but that was not the issue, though, it may be related.
    I checked the mySQL my.ini file, and there was already an entry for:
    [mysql]
    default-character-set=utf8
    I added the 'default-collation=utf8_unicode_ci', like you suggested, but that didn't do anything.
    I checked the Apache httpd.conf file, and added the following line 'under' the "DefaultType text/plain" line:
    AddDefaultCharset UTF-8    but that did not do anything.
    I checked my mySQL database, all the tables involved.  They were already at UTF-8 (default).  However, some of the 'varchar' columns were defined as 'latin 1-default collation'.   I changed them all to utf-8 (default table collation), but that did not help either.
    Finally, I found the problem, though I don't really know if it is "my" problem, or ZendAMF's problem, or Adobe's problem.
    It turned out that 'some' of my data had a 'bad' character in it.  Specifically, I had 'copied and pasted' some data from MS Word into mySQL Workbench.  Some of the data included the 'elipsis' character - you know, when you type "..." (dot dot dot) in MS Word, it replaces the three periods with a single elipsis character.  Although PHP could easily query and assemble this data into a nice object array, I noticed that that character showed up (in PHP's debugger) as a 'box' character, meaning "bad character".  Thus, I guess, Zend AMF and/or FlashBuilder could not 'bring over' and/or deal with this type of character.  As soon as I replace the few instances of that character with three periods, everything began to work perfectly.
    So... what to do about this?  I thought I was through with silly encoding/decoding of data when I left JavaScript and HTML behind in moving to FlashBuilder technology.  Am I really going to have to worry about this kind of thing?  Or might this be a bug/deficiency somewhere in the stack?
    Thanks for your help,
    -David

  • Batch input problem in SM35

    Dear all,
    I am uploading the bank statements using manual bank statements through Z transaction, Once uploaded system is generating the batch input session for the same.
    When i run the batch input session system not clearing outgoing payment automatically based on the assignment field, as i have alreday mentioned the same assignment while posting the document and in the excel file.
    I am getting the following message while running the batch input session.
    No batch input data for screen SAPDF05X 3100
    Message no. 00344
    Diagnosis
    The transaction sent a screen that was not expected in the batch input session and which therefore could not be supplied with data.
    Possible reasons:
    1. The batch input session was created incorrectly. The sequence of screens was recordly incorrectly.
    2. The transaction behaves differently in background processing in a batch work process than when running in dialog (SY-BATCH is queried and changes the screen sequence).
    3. The transaction has undergone user-specific Customizing and therefore certain screens may be skipped or processed differently, according to the current user. If the person who created a batch input session is not the same as the person now processing it, this problem may occur frequently.
    System Response
    None.
    Procedure
    For 1: Either re-create the session or process it in expert mode. Correct the batch input program.
    For 2. It is very difficult to analyze this problem, particularly in the case that the screen sequence or the display-only options of fields differ according to whether the transaction is being processed in the background or as an online dialog. It could also be that this kind of transaction cannot run with batch input.
    For 3: Have the creator of the session process it. If no error occurs now, then this is a program with user-specific Customizing.
    Please let me know solution for the same.
    Regards,
    Anand

    Hi,
    This may not be a solution but may help you to isolate the problem
    a) Are you able to load the bank statement for other banks without error ?
    b) Try for the same bank in a different system .
    c) If it is working for different bank then check the file format is the same for both the banks.
    d) If it is working in different system check the ABAP code for any changes between the system,
    e) Are you getting this message for all the line items or only for some line items ?
    Regards
    K.R

  • Batch processing problems-can anyone help?

    Setup: Quadcore, 4GB RAM, 4 internal drives all with plenty of space, Leopard OS, latest version.
    Software: CS4 with Photoshop Extended; all updates installed. I also have CS3 installed; only use Bridge and PS in both apps.
    Problem: Working in CS4. All edits/crops/corrections done in the Camera Raw window; all edits saved and viewable in Bridge. However, when I use Batch from the Tools dropdown (Tools > Photoshop > Batch), and check all the usual places, select an Action, select a Destination, and hit "Go", the results are totally weird. Some images process as expected, but many are at least two stops overexposed.
    All individual files will Open, and can be Saved As manually; all works fine. That is in fact how my assistant and I got the job done tonight. The Batch Action is simplicity itself: Open, Save As (JPEG level 9), and Close file—but if I run Batch on the same files that can be opened and Saved As perfectly, it all goes crazy; three quarters of the files are totally overexposed, in blocks (10–25, roughly), and at random.
    I have used the Ctrl + Alt + Shift after opening Bridge; I have run Cocktail; and lit the right incense. But this still will not work properly! Can anyone help???

    Batching the same files in CS3 works perfectly, in terms of the processed JPEGs at least being correctly exposed, but the CS4-only edits (like the healing brush) are not recognised, nor are many, tho' not all, of the crops.
    I have decided to deactivate and uninstall, then reinstall CS4, after upgrading to Snow Leopard. Usually, I wait for a few months for others to report on OS update interactions with CS and FCP, but since CS4 as installed was useless and I had done the usual resets of Preferences without any change to Batch Processing's reliability, I felt I could not be worse off.
    So, after upgrading to Snow Leopard, I will reinstall CS4 (and all apps this time, rather than just PS and Bridge, as I usually do) in case there are soime weird unintended consequences of a Custom install.
    Very frustrating and time-consuming, and I wonder what I might have done to create this problem—seeing as no one commented, I can only assume that this is an unique experience.
    I will report back today, hopefully.

  • Oracle Batch update problem

    Hi,
    I have a queer problem with batch inserts in oracle, loaded on a sun solaris m/c.
    I'm trying to do a batch insert using the executeBatch() api of java.
    I am able to do batch insertions from my workstation i.e win2k properly . But i'm unable to do so when i run the program on the sun solaris m/c.(The data base is the same)
    Since the JVMs are different i have a feeling it could be the oracle JVM that is giving the problem.
    Please advice me as to how i can overcome this.

    I am having the same problem with a 9i installation on Win2k. My code works fine when run in the Sun JVM on a client. When I try to executeBatch in the Oracle JVM, I get "java.sql.BatchUpdateException: Internal Error: oracle.jdbc.kprb.KprbDBStatement".
    I am using what I thought was the standard preparedStatement.addBatch() and preparedStatement.executeBatch() APIs.
    I see in the SetExecuteBatch.java example the use of connection.setDefaultExecuteBatch(int) and preparedStatement.executeUpdate(). Is this usage required when running in the Oracle JVM? What if I set my batch size to 10000 but I only have 9000 rows in the last set -- how do I force the batch to execute on the smaller set?

  • Batch determination Problem in process orders

    Dear Friends,
    i am getting problem of BD for components in process order that the FIFO sequence is not
    showing.
    !. I have made settings like Strategy Plant/order type
    2. Charecteristic in the class and sort rule LOBM_VFDAT
    3.  Class assigned to materials.
    4.  raw materials batches have maintained Ex.date, date of produced(at the time of GR by 561)
    5. Order type i have assined search Proc.
    in the order strategy info showing sort rule correctly in theprocess order, But the sequence it showing
    is neither with GRn date or not with Exp date.
    kindly guess what might be the problem...
    Regards
    Robert

    Dear,
    For FIFO you can use the Characteristic  LOBM_LFDAT for FIFO if is LOBM_VFDAT then in plant storage data 1 view maintain the SELD then assign these Characteristic to class in CL02 then assign this calss to material master.
    Then craete sort rule in CU70 withCharacteristic  LOBM_LFDAT or LOBM_VFDAT
    then assign it to serch strategy in MBC1 or COB1 with selction criatoria.
    In OPL8 assign this serch procedure.
    Then create the order and check the result.
    Regards,
    R.Brahmankar

  • DTW batch import problem

    Hi all,
    I've got a problem when trying to batch import from sql statement via odbc:
    "Can not connect to ODBC data source" and then "Can not get SQL handler"
    Manual import is working well with this odbc connection !
    The statement looks like: SELECT ItemCode AS 'Record Key', ItemCode, 'Y' AS 'Properties1' FROM OITM WHERE ItemCode = '4711'
    While manually importing I saved the xml and after that call: dtw.exe -s config.xml
    I used a SQL (Server 2005) Native Client DSN and only set db auth (sa...) and left other properties as default
    Anybody knows this behavior? Is the statement wrong? Or the odbc connection?
    (DTW Version 2005.0.0.29)
    Thanks in advance
    Marco
    Edited by: Marco Willems on Jun 29, 2010 6:34 PM

    Hi Marco,
    I checked this issue using the 2007A DTW (version 2005.0.30) and the 8.8 DTW (version 88.0.11). I haven't had success.
    The 8.8 version runs without error but did'nt update my test item. If you run it manually, the DTW reports one updated value. If I run it by a command (DTW -S <File>) it runs fine and reports zero successful update.
    I don't know if the DTW is able to run sceduled ODBC updates or not and would hope for an answer to this thread!
    All the best
    Torsten

  • XSL and carriage return problem

    I'm using an HTML form to get the input text from the user.
    The text is stored in an XML file and after that I use XSL transformation
    to show the text as HTML file.
    The problem is with carriage returns that user has entered.
    In HTML file I see &#13;
    In my java code I tried to replace all &#13; with <br> but It sounds there is no &#13; when I
    look in my XML content in a java string variable.
    Any Idea?
    Thanks,
    Payam

    Store the user-entered portion in a <![CDATA[Data goes here]]> tag to preserve whitespace and carriage returns.
    - Jesse

  • Batch Change Problem

    Recently I used batch change to label a folder of photos with a date (AUG 10). This morning when I opened the library I was horrified to find that I must have inadvertently selected ALL the events rather than all the photos in the one event! Every image I have in this library is now AUG 10.
    Is there any fix for this ridiculous mistake?
    Thanks.

    Exactly what are you doing and where is that error coming from
    TO restore a Time Machine backup you launch TM and in the TM window go back to the time you want - select the iPhoto library (by default in the pictures folder) and click restore - it is recommended that you use the option to restore to a different location keeping both the restored version and the current problem version until you sort everything out - then you delete the problem version
    LN

  • UME Batch Import problem

    Hello,
    I have a little strange problem. I created a importfile for users as described in the Administration Guide. I imported it and nothing happend. I tried lots of thing and found the reason.
    In the imported passwords are special characters like * and so on. The only character which causes the bproblem is ] If I remove ] from the passwords it works.
    Do you know why I can not batch import passwords which contain ] ?
    Best regards Matthias

    Hi Matthias,
    In the current batch import implementation, '[' and ']' are not allowed in any input field (not only the password). This will be improved in the next releases.
    Best regards,
    Vladimir

Maybe you are looking for

  • Ringtone and Tv-out(Component AV Cable) problems

    1. When I receive a phone call, I cannot hear the ringtone and No Vibrate. 2.  I only can charge the power and connect itunes on pc.      I can't use the cable to send some video or music to TV. 3. where can repair this machine? my telecom service pr

  • Distiller 8.1 NOT respecting eps BoundingBox

    Distiller 8.1 (OSX 10.4.11) When creating a pdf from an eps file using Distiller with setting e.g. "High Quality Print.joboptions" the "BoundingBox" of the eps-file is not reflected in the generated pdf. Of course the last DSC item is always checked

  • UserExit for Inbound Delivery Confirmation

    Hi All, We are getting inbound IDOC GSVERF02 (Message Type: DELCON) to post DeliveryConfirmations. I need to add update 2 fields to this IDOC before posting DeliveryConfirmations. Can any one tell which user exit should I use??? Thanks

  • How to import SAS .xpt file using SSIS

    Is it possible to read the .xpt file using ssis? What source driver I need to install? SSIS_User

  • Opitsk: network error occurred while two-task server trying tosend break

    Problem Description: Environment Details Application Server : Version 10.1.2.3.0 on Windows Server 2003 R2 Database Server: I have installed Oracle DB (11.2.0.1.0) on the same sever having Oracle 11g Release 1 (11.0.7.0) and Oracle 10g Release 2 (10.