Report quantity as blank or zero in the TO and keep it open for future pick

Hi Gurus,
We have a scenario here an dneed your help:
We haev a transfer order created fro a delivery for 4 items. The system is showing that we have stock. While went for picking the one material is not there physically. While trying to confirm the TO in vl06o we can report blank for the material not picked and system converts it zero automatically. It ask for the confirmation of differences. If we say yes the system saves the TO and close it as confirmed. Now what will happen to the item which is not picked yet? How we can pick the remaining items? Is there any way?
Thanks for any help...
Shamsul

I might be understanding correctly, but I use cursor variables within a package all of the time. I have never tried calling the procedures from C++ but it is fairly simple in Java and wouldn't think C++ would be much different, just more involved.
In the package spec you have to define the ref cursor variable. If your cursor always returns the same rowtype then it is better to define the cursor, then define the ref cursor as c%rowtype. If the results of the cursor are going to change then you just define the variable as a ref cursor. These examples may help.
CURSOR eu_status_cur IS
SELECT eu_status
FROM item_eu_status;
TYPE eu_status_ref IS REF CURSOR RETURN eu_status_cur%ROWTYPE;
TYPE component_ref IS REF CURSOR;
The eu_status_ref will always return a single value row from the item_eu_status table while the second can return anything.
The package procedure then defines the parameters as one of these types.
PROCEDURE get_intermediate (
i_containing_id IN item.item_id%TYPE,
i_item_id IN item.item_id%TYPE,
o_formula OUT formula_ref,
o_eu_status OUT eu_status_ref,
o_special_library OUT special_library_ref,
o_sensory_attribute OUT sensory_attribute_ref,
o_application OUT application_ref,
o_raw_materials OUT raw_material_ref,
o_intermediates OUT intermediate_ref,
o_components OUT component_ref
Within the procedure you just open the ref cursor.
OPEN o_eu_status FOR
SELECT eu_status
FROM item_eu_status
WHERE item_id = i_item_id;
The client side will be different for Java vs C++ obviously. The OracleCallableStatement object takes care of most of the details when using Java, but since the (OCI) driver uses the OCI library I'm guessing that is where the real functionality is.

Similar Messages

  • When i try to enable a download, it opens over 100 tabs in the toolbar and keeps on opening them???

    i can't download anything!!! when i try, it keeps opening endless 'new tabs' and doesn't stop....i even uninstalled and reinstalled firefox but its still doing it.....i get on internet explorer and try to download and it opens firefox and continues to open endless tabs..what is going on?????

    You should never select the Firefox program as the application to open a download if you get an "Open with" download dialog to prevent that from happening.

  • How can I get a pdf. to open in Safari, all i'm getting is a new window with a black, blank page, instead of the pdf., and I don't want to save the file to the desktop, Safari didn't use to do that, and I don't have Adobe in the internet plug in folder.

    How can I get a pdf. to open in Safari, all i'm getting is a new window with a black, blank page, instead of the pdf., and I don't want to save the file to the desktop, Safari didn't use to do that, and I don't have Adobe in the internet plug in folder.

    Hi
    Please take a look to this thread Re: Can I refresh the browser rather than open a new tab?

  • How can I change the Y axis to show my values in a descending order in Numbers. eg zero at the top and the maximum value at bottom?

    Hi,
    I'm just about getting to grips with Numbers, but I'm stumped at the moment with this problem.
    I want to show zero at the top on the (y) axis, as zero is the goal and 100 is the starting point?
    can it be done? i would really appreicate some help on this.
    Kind regards
    Rob

    Is it so difficult to read given answers ?
    Barry described the correct scheme.
    In the table "to_chart", the cell A1 contains :
    =ROUNDUP(ABS(MIN(Tableau 1 :: B:E))/10,0)*10
    The cell B2 embed the formula :
    =$A$1+Tableau 1 :: B2
    Apply fill down and fill to the right.
    On the left edge, the colored rectangle is a text block in which I inserted the label values.
    Of course if you dislike this scheme, you are perfectly free to use an other application.
    Yvan KOENIG (VALLAURIS, France) lundi 4 juillet 2011 14:37:56 iMac 21”5, i7, 2.8 GHz, 4 Gbytes, 1 Tbytes, mac OS X 10.6.8
    Please : Search for questions similar to your own before submitting them to the community
    To be the AW6 successor, iWork MUST integrate a TRUE DB, not a list organizer !

  • I have an iPhone 5 and if I make a call it goes blank hangs up on the people and then proceeds to facetime them automatically.  Does anyone know how to fix this?  It only started with ios7

    I have an iPhone 5 and if I make a call it goes blank hangs up on the people and then proceeds to facetime them automatically.  Does anyone know how to fix this?  It only started with ios7

    Judging by all the posts on the forum, there seems to be an issue at Apple's end, although they have made no announcement on their status page. Unfortunately, we may have to wait until Apple is more forthcoming with information.
    http://www.apple.com/support/systemstatus/

  • Duplicate content of region fields in the region and keep some fields

    duplicate content of region fields in the region and keep some fields displayed in this region and some not.
    Our customer wants to duplicate the content of the region fields and 3 fields of this region (one of them is the key from the table ) have to be shown empty and have to be recreated when he does the next commit. The other 25 fields have to be filled with the content before. (I have to do a commit before I show the region again without these three fields)
    What I did:
    When I have a botton with request CHANGE then APEX does the change without emptying the fields. I tried to make processes on this request which should empty my three fields, but the processes never fire (I see it in the debug and I don't know why, I putted them on every process point for testing)
    The second try:
    On my button with request CHANGE , I filled the 'set these items ' with my three fields and the 'with these items' with 2 commas ,, to set these items null.
    I do no claer cache, but APEX empties the hole region.
    Can you help me??
    Thanks Uta

    Hi Uta,
    OK - This is what I did:
    1 - Page 15
    On the EMPNO column, I have a link to page 18. I set P18_EMPNO to #EMPNO#. I assume that you already have this functionality to link from the report page to the form page. There are no changes required to this page.
    2 - Page 18
    I have created a hidden field called "P18_EMPNO_COPY". There are no special settings for this item - I've just put it at the bottom of the region containing all of the other items
    I have created a button called "P18_COPY". This has a Conditional Display set with a Condition Type of Value of Item in Expression 1 IS NOT NULL and Expression 1 of P18_EMPNO. This has an Option URL Redirect set for it with the following settings:
    Target is a - Page
    Page - 18
    Set These Items - P18_EMPNO,P18_EMPNO_COPY
    With These Values - ,&P18_EMPNO.
    I have created a Process to run "On Load - After Header". The PL/SQL code for this is:
    DECLARE
    emp_rec EMP%ROWTYPE;
    BEGIN
    SELECT * INTO emp_rec FROM EMP WHERE EMPNO = :P18_EMPNO_COPY;
    :P18_EMPNO := NULL;
    :P18_JOB := emp_rec.JOB;
    :P18_MGR := emp_rec.MGR;
    :P18_SAL := emp_rec.SAL;
    :P18_DEPTNO := emp_rec.DEPTNO;
    END;
    This has a Conditional Processing Condition Type of "Value of Item in Expression 1 is NOT NULL" and Expression 1 shows P18_EMPNO_COPY
    Finally, for each field, I have added in a Default Value that points to itself (For example, the P18_JOB field has a Default Value of :P18_JOB) with a Default Value Type of PL/SQL Expression.
    Obviously you will need to replace the field and item names with those for your table and form.
    This process does the following:
    1 - The user clicks the link in the report on page 15. P18_EMPNO gets populated with the EMPNO value of the item select.
    2 - Page 18 is loaded with the data relating to the record with the ID found in P18_EMPNO
    3 - The Copy button is displayed only if P18_EMPNO contains a value
    4 - The user clicks the Copy button
    5 - The P18_EMPNO value is copied into P18_EMPNO_COPY and P18_EMPNO is blanked out
    6 - The page is submitted with these changes. When it reloads, the new process kicks in
    7 - This process will:
    (A) Create a variable based on the record structure for the EMP table
    (B) Fill this variable with the data in the table for the ID that's now in P18_EMPNO_COPY
    (C) Set the session state values for the fields that need to be repopulated with the data now retrieved into the variable
    (D) Clear the P18_EMPNO session state value
    8 - When the page starts to load the form, it will see that there is no P18_EMPNO value and, therefore, will not bring in any information from the table. However, as we have now set the Default Value settings for each field, this will force it to retrieve the values we've stored using the new process and display these values in the form.
    I think I've detailed everything - if this doesn't work, please let me know!
    Regards
    Andy

  • How can I hide the borders and keep it as an option?

    How can I hide the borders and keep it as an option?  I had someone go into the css I believe, and make it so there were no borders visible on the page (I could see the dotted outline while working on it, but when pushed, it wasn't visible (which is what I wanted).  They called it "noborders."  Since I had to reinstall, it went away.  Help?
    I have Dreamweaver CS5.5

    Try this site:  CSS Border
    Add code then type in a zero. Later add border size you want.
    examples:  border: 0px solid black;
    or
    border: 1px 000000;
    or
         border-top-style: solid; 0px 000000;
         border-right-style: dotted; 0px 000000;
         border-bottom-style: solid; 2px 000000;
         border-left-style: dashed; 1px 000000;

  • I want to download the "FREE" iPhoto duplicate remover software, but the download process keeps asking me for my payment information.

    I want to download the "FREE" iPhoto duplicate remover software, but the download process keeps asking me for my payment information. I have tried it several times.. But it says I cannot download this app unless I give my payment information.. So I went back and looked again and again.. and it still says it's "Free"...

    You need to contact the authors re download or payment issues - we are only users like yourself and help with iPhoto for the Mac issues
    here is Old TOad's list of potential packages including his comments
    These applications will identify and help remove duplicate photos from an iPhoto Library:
    iPhoto Library Manager - $29.95
    Duplicate Annihilator - $7.95 - only app able to detect duplicate thumbnail files or faces files when an iPhoto 8 or earlier library has been imported into another.
    PhotoSweeper - $9.95 - This app can search by comparing the image's bitmaps or histograms thus finding duplicates with different file names and dates.
    DeCloner - $19.95 - can find duplicates in iPhoto Libraries or in folders on the HD.
    DupliFinder - $7 - shows which events the photos are in.
    iPhoto AppleScript to Remove Duplicates - Free
    PhotoDedupo - $4.99 (App Store) -  this app has a "similar" search feature which is like PhotoSweeper's bitmap comparison.  It found all duplicates
    Duplicate Cleaner for iPhoto - free - was able to recognize the duplicated HDR and normal files from an iPhone shooting in HDR
    Some users have reported that PhotoSweeper did the best in finding all of the dups in their library: iphoto has duplicated many photos, how...: Apple Support Communities.
    If you have an iPhone and have it set to keep the normal photo when shooting HDR photos the two image files that are created will be duplicates in a manner of speaking (same image) but there are only twp apps that detected the iPhone HDR and normal photos as being duplicates: PhotoSweeper and Duplicate Cleaner for iPhoto.  None of the other apps detected those two files as being duplicates as they look for file name as well as other attributes and the two files from the iPhone have different file names.
    iPLM, however, is the best all around iPhoto utility as it can do so much more than just find duplicates.  IMO it's a must have tool if using iPhoto.
    LN

  • What is the best and easiest print app for the iPad and iPhone?

    What is the best and easiest print app for the iPad?

    Richard-
    The best and easiest is to use the iPad's built-in AirPrint system with an AirPrint-capable printer.  <iOS: AirPrint 101>
    If you do not have an AirPrint-capable printer, all printing Apps are a compromise.  I have an HP non-AirPrint printer connected to my WiFi router.  The free HP App, ePrint Home & Biz works OK with photos.
    Print n Share and PrintCentral each have their own browser, mail, text and photo programs that work well with the printer, but they can only be accessed from within other programs that have the "Open In" option.  (So far, I think GoodReader is the only App I have with that option.)
    You can run a program like Printopia or FingerPrint on your computer that will share its printer as AirPrint over WiFi.  They both are reported to work well.  However your computer must be on and awake any time you want to print.  <Printopia for Macintosh>  <FingerPrint for PC and Mac>
    Fred

  • Issue in FF v 3.6.10: I have a page which have more than 20 link, clicking on these link opens up a popup using window.showModalDialog, for the first 20 popup opens up without any prob but for the 21st n more click it block the popup and do not open.

    Issue in FF v 3.6.10: I have a web page which have more than 20 link, clicking on each of these link opens up a pop-up using window.showModalDialog, for the first consecutive 20 popup opens up without any prob but for the 21st n more click it block the popup and do not open. This is m problem, the real user on the web page can click on more than 20 link in such a scenario it may create problem, please help

    Your above posted system details show outdated plugin(s) with known security and stability risks.
    *Shockwave Flash 9.0 r999
    Update the [[Managing the Flash plugin|Flash]] plugin to the latest version.
    *http://www.adobe.com/software/flash/about/
    In Firefox 3.6 and later versions you need the Next-Generation Java™ Plug-In present in Java 6 U10 and later (Linux: libnpjp2.so; Windows: npjp2.dll).
    http://java.com/en/download/faq/firefox_newplugin.xml
    See also http://java.sun.com/javase/6/webnotes/install/jre/manual-plugin-install-linux.html

  • I have installed Illustrator CCloud and uninstalled, and reinstalled, it just bounces on the dock and does not open (do I need to Uninstall CS5) Thanx

    I have installed Illustrator CCloud and uninstalled, and reinstalled, it just bounces on the dock and does not open (do I need to Uninstall CS5) Thanx

  • I tried to upgrade the ios on the phone and I was asked for my icloud user and password. I don't remember these exactly and I tried several times with different options but unsuccessfully. I also forget my email used to configurate the phone.

    How i said on the question. I tried to upgrade the ios on the phone and I was asked for my icloud user and password. I don’t remember these exactly and I tried several times with different options but unsuccessfully. I also forget my email used to configurate the phone. I have the phone box and the bill. I sent you an email with my problem and attachments with the box informations, the bill and the reset request. What to do? You said to me:
    Your request comes from an unrecognized email domain. Apple accepts email requests only from email domains for Apple-authorized carriers.
    Please re-submit your request using your official carrier domain.
    but this email is authorized, what to do??
                                                                                                              respectfully, Beba

    If you have forgotten then these links are the only way to resolve
    http://www.apple.com/support/appleid/
    As long as you have owned the iPhone from new and your Apple id is the one used to activate when new
    OR have you recently purchased the iPhone secondhand ?

  • Recently I logout from App Store and immediately I logged .after that I clicked the FaceTime and it is asking for signin.so I entered the credentials and clicked on signin .at that I got one pop up like rupees 5 deducted from your carrier account

    Recently I logout from App Store and immediately I logged into the App Store .After that I clicked the FaceTime and it is asking for signin.so I entered the credentials and clicked on signin .at that moment I got one pop up like rupees 5/- deducted from your carrier account
    from that moment onwards its keep on deducting the amount from mobile money account.its nothing but when I am enable the feature like FaceTime and imessage you are keep on deducting the amount from the carrier account
    actually I can use the FaceTime and iMessage through internet right
    then how can you deduct the amount from carrier even if the Internet is on in my mobile
    can you please resolve this issue asap
    iam facing this issue from so many days
    but today very frequently the amount got deducted
    if you need any information regarding this please let me know
    i facing so many problem in my iPhone after installing iOS 7.0
    from that time onwards repeadtly facing the performance issues
    can you please check it with high priority
    actualy now I'm not even switch on the Internet because of money deduction every time of rupees 5/-
    one more issue was if iam trying to on the cellular data ,when i on the cellular data I.e., 2Giam not getting the internet
    if enable the 3G and off it immediatly then I am getting Internet for that day
    one that day if I off and on the cellular data,then it works correctly

    Recently I logout from App Store and immediately I logged into the App Store .After that I clicked the FaceTime and it is asking for signin.so I entered the credentials and clicked on signin .at that moment I got one pop up like rupees 5/- deducted from your carrier account
    from that moment onwards its keep on deducting the amount from mobile money account.its nothing but when I am enable the feature like FaceTime and imessage you are keep on deducting the amount from the carrier account
    actually I can use the FaceTime and iMessage through internet right
    then how can you deduct the amount from carrier even if the Internet is on in my mobile
    can you please resolve this issue asap
    iam facing this issue from so many days
    but today very frequently the amount got deducted
    if you need any information regarding this please let me know
    i facing so many problem in my iPhone after installing iOS 7.0
    from that time onwards repeadtly facing the performance issues
    can you please check it with high priority
    actualy now I'm not even switch on the Internet because of money deduction every time of rupees 5/-
    one more issue was if iam trying to on the cellular data ,when i on the cellular data I.e., 2Giam not getting the internet
    if enable the 3G and off it immediatly then I am getting Internet for that day
    one that day if I off and on the cellular data,then it works correctly

  • How can I delete the video and keep the Audio  in a few frames using Imovie 11

    How can I delete the video and keep the Audio  in a few frames using Imovie 11?

    I've met the problem too before. but i solved it with  Audio Converter Mac instead of iMovie. If you have similar situation that just want to keep audio but not video, and if your file format is not workable in iMovie, you can use the Audio Converter for help too. it can easily help to extract audio soundtrack from any video format. Or if you need to convert one audio format to another, it is a good choice too, because it supports many common audio output formats.
    <Link Edited By Host>

  • My ipod app no longer works. Everytime I go to open the ipod app it stays open for a second and then shuts down. I am not able to get anything to play either through the standard ipod controls or the multitasking control panel. I'm sure there will be an u

    my ipod app no longer works. Everytime I go to open the ipod app it stays open for a second and then shuts down. I am not able to get anything to play either through the standard ipod controls or the multitasking control panel. I'm sure there will be an update soon to correct this, i just wanted to see if anyone else was having the same problem.
    wen i open ipod in my iphone ,, it gets stuck ,, and get backs to the menu ,,, and doesnot play anything ,, not video nor song

    If your phone is not officially unlocked by the carrier in the UK, you can not use the phone using another SIM, unless you modify the software or the SIM, which can lead to unexpected results, such as non functioning apps.
    Unauthorized modification of iPhone OS has been a major source of instability, disruption of services, and other issues
    Problems resulting from those modifications can't be discussed in these forums, due to the Terms of Use

Maybe you are looking for

  • Mail and lost passwords

    Forgive me for starting a new topic but the long-running saga of missing passwords has been closed. Fed up withconsistently having to replace password or correct Advanced preferences i decided to remove all trace of my faulty accounts and reinstall t

  • Getting error "Data size bigger than max size for this type"

    Hi, I'm getting the error "Data size bigger than max size for this type: 122446" when am uploading the RTF template. RTF template size is 831 KB. Can anyone let me know what is the maximum size that an RTF template should be. Thanks

  • Windows 2008 R2 RDS Licensing Issue

    I have Citrix Presentation Server 4.5 farm (with all of the application servers running Windows 2003) and I have just migrated from using a Windows 2003 server for the terminal services licensing to a Windows 2008 R2 RDS server for the licensing. We

  • Using a driver with labview

    I want to create a GUI using labview to control a data acquisition card using a driver that was not created in labview. Could someone point me in the direction of some documentation that would give me some info on doing this. Thanks

  • IT0009 (bank) change error

    When trying to add a new main bank for an employee (infotype 9) using PA30 we receive the following error messages: Data record 0022222200090      9999123120091116000 is not between 09/17/2009 and 11/29/2009 Data record 0022222200090      99991231200