DELIVERY How to use copying control to control print process?

Hi All,
I recieved a request as this when material no. is 111, then do not auto print the delivery note out.
Delivery note output type is ZXXX.
So is there any idea to use copying control to control this ?
Thank you in advance.
Richard

Hi there,
No need of copy controls for this. Delivery note is printed from delivery. So why do you need copy controls?
When defining O/p determination procedure for your O/p ZXXX, in the requirement routine, check the values of LIPS-MATNR. If LIPS-MATNR = 111, donot print the delivery note for that item (LIPS-POSNR). I guess you will need to define a new Z routine for this. Dont change the standard routine.
Regards,
Sivanand

Similar Messages

  • ...how to use BATCHMAN transaction in Controlling?

    ...how to use BATCHMAN transaction in Controlling?...
    need to upload statistical keyfigure values from an Excel file, but do not know which should be the header row on Excel file.
    thank you.

    To access the Transfer of External Data function (transaction BATCHMAN), choose:
    Accounting ® Real Estate Management ® Controlling ® Actual Postings ® Transfer of External Data.
    For further information please check the following link:
    http://help.sap.com/saphelp_erp2005/helpdata/en/32/e7ee431feb6d45957a83e0179cbbff/frameset.htm
    regards,
    Lily

  • How to use the 'Decision between multiple alternatives' Process variant

    Hi ,
    Can anyone tell me how to use the 'Decision between multiple alternatives' Process variant in BI 7 Process chains ?
    The requuirement is that I have a DSO eg DSO 1 from which i have to load DSO 2 and DSO 3 . Now if the number of Records in DSO 1 are < 100 i will load DSO 2 from DSO 1 else i will load DSO 3 from DSO 1 .
    So in the PC i have used a 'ABAP Program' variant (which counts the number of rows in DSO 1) after loading DSO 1 and  after this 'ABAP Program' Variant , i have used the 'Decision between multiple alternatives' Process variant. Problem is it is giving me only some some system fields in the formula , like sy-datum or sy-timlo , which are of no use here .
    It would be great if i can receive some help here .
    --Devraj

    in RSPC you create a ABAP processing type "ending with specific values".
    We use true or false for things as you specify.
    your abap program should return a true or a false to indicate which of the situations is applicable.
    Is this helpful?
    Marco

  • How to use Multiple Check Box control  to make a list of items in check box

    I have a use case where i have to save update list of items required, and i want to implement it through viewobject and use Multiple check box control, how do i go about it? Code snippet will be helpful........
    Edited by: jDev_08 on Nov 17, 2012 8:31 PM

    Hi,
    Always mention your JDev version.
    Check out the ADF Faces Demo : http://jdevadf.oracle.com/adf-richclient-demo/faces/components/index.jspx#%2Fcomponents%2FselectManyCheckbox.jspx (Hint : Code snippet is available in there itself).
    -Arun

  • How to use a hardwaresynth to controll a softsynth?

    What I want is simple: I have a Yamaha CS1X Syntheziser with knobs that send MIDI Data. Now I want to use this Synth to controll my Minimoog Softsynth Plugin. Cutoff for example works already automatically. How do I configure logic so that the other knobs of my syntheziser controlls the rest of the Minimoog Plugin? I tried to find the answer in the manual, it must work over the setup controll assignement but it just doesnt work...
    Thanks for any help!

    You will literally write in the "Implemenation", the following:
    Case when a.b=c.d then "Source"
    Else
    "Target"
    End

  • How to use HTML in JavaFX controls?

    Does JavaFX support using HTML in JavaFX controls' text? For example, in Swing components:
    button = new JButton("<html><font face=arial size=16><center><b><u>E</u>nable</b></font><br>"
      + "<font face=cambria size=12 color=#ffffdd>middle button</font></html>");
    If no, could we find a workaround?

    Embedding a WebView in a Labeled for HTML Rendering
    A WebView is a node which displays HTML.
    Most controls implement Labeled, or have elements that are Labeled.
    A Labeled has a setGraphic(node) method which allows you to set the graphic attached to the labeled to any given node (including a WebView).
    For instance:
    WebView webview = new WebView();
    webview.getEngine().loadContent("<html><font face=arial size=16><center><b><u>E</u>nable</b></font><br><font face=cambria size=12 color=#ffffdd>middle button</font></html>");
    webview.setPrefSize(150, 50);
    Button buttonWithHTML = new Button("", webview);
    should create a button with html in it (I didn't actually try running the above example).
    Apart from the relatively slow startup time on first use and the overhead (which I can't quantify) of using WebView in this way, there are a couple of jira requests outstanding which make it a little bit of a nuisance.
    RT-25004 Allow for transparent backgrounds in WebView
    RT-25005 Automatic preferred sizing for WebView
    You can vote for the above jira requests or comment on them if such functionality is important to you.
    TextFlow/FXML/CSS Alternative
    Rather than using html in the Labeled, support for the TextFlow control was introduced in Java 8, so that could be used instead.
    TextFlow also works well with FXML and css if you prefer to have the stuff in the TextFlow managed via markup and a declarative styling language.
    Open Feature Request
    There is an open feature request RT-2160 HTML support for text which is currently scheduled for implementation in the initial Java 8 release.  I think the likelihood of it actually being included there is zero percent, though it may be considered for a future release.  You can vote for the issue or add comments to it, or provide an implementation if you are so inclined.
    Implementation Considerations
    A possible implementation would be something which parses the HTML then constructs a TextFlow the parsed HTML according to processing rules which are laid out in laborious mind-numbing detail in the HTML5 spec.
    You could use a relaxed HTML parser such as the validator.nu parser (though there may be others which would be a better fit). 
    A simple implementation would just be to use the parser in the jdk which is used for the swing controls, but that is hopelessly outdated.
    Perhaps, even simpler would to only accept strict html input and just use SAX to parse it out, though things like validator.nu are too difficult to work with.
    Then, for the limited number of parsed tags that you want to support (and you really don't want to support all of HTML5 for something like this - otherwise you would just use WebView), create your TextFlow from the DOM model that your parser has created.
    I wouldn't even both trying to handle most of the stuff in your html string in your implementation, stuff to do with styling, fonts, colors, etc. Those things were never any good in html anyway, and css is better for handling them, so just support stuff commonly used in usual modern day html (take a look at bootstrap html source as an example to see what that might be - if bootstrap doesn't use it, I don't think you should support it).  The stuff you will be supporting are things around document structure like lists, headings, etc. div blocks and span nodes - so only implement that important stuff and delegate everything else to css where it belongs.
    Also make sure your implementation fits in with FXML so that you can easily embed your html subset in an FXML doc.

  • How to use Copy-Value function?

    Dear Friends,
    I have query on how to use Standard function Copy-Value.
    Please have a look @ the help.sap.com example use of Copy-Value function.
    http://help.sap.com/saphelp_nw70/helpdata/en/26/d22366565be0449d7b3cc26b1bab10/content.htm
    I have designed the same example. Please see the mapping I've defined for this example :
    http://www.flickr.com/photo_zoom.gne?id=930440086&size=o
    Please see the resuts, its working perfectly. See the top image :
    http://www.flickr.com/photo_zoom.gne?id=930440300&size=o
    Ok, now lets come to the issue. Please consider the same example , If I have more than one partner
    and I want to use the address field to the customer street,city & zipcode using copy-value function, how will I achieve this?
    Please see the resuts.See the bottom image :
    http://www.flickr.com/photo_zoom.gne?id=930440300&size=o
    I think you all got the issue, if not please reply back.
    Looking for your answers!!!
    Best regards,
    raj.

    The CopyValue function considers only values in the first context of the queue.
    When the queue has more contexts, the other contexts are ignored.
    In online help, the element addrDat is 3 times under name, that means 3 values are in the first context.
    That means: For the first occurrence of the partner it is correct, for all other partners, the values of the first context is taken. The online help does not express this,  so it is misleading and should be changed to an example where address is not beyond a node with occurrence inbounded.
    In practical cases the copyValue can only be used for values that appear in source just one time, like the IDOC header fields, as it works like a constant.
    Regards
    Stefan

  • How to use copy default values for material from vendor master in Account Group

    Dear all:
       In define AccountGroup for vendor ,there is a field named DURAS which means default values,who can tell me how to use it?
       Any informations are appreciated!

    Hi Katherine,
    I have tried using default value as B in the customizing
    If i maintain default values in the vendor master record, it will automatically adopt in the purchase info record.
    Here i tried using sales person & telephone no field in vendor master record & it automatically adopts to purchase info record.
    Region sales person and telephone no i have maintained in vendor master record, it automatically fetches to info record for the particular account group. I am not sure if there is any relation between vendor master and material master record.
    Regards
    Subbu.

  • Deskjet 6988dt, how to use photo/envelope slot for printing 4x6 photo paper?

    Windows 7 Home Premium 64-bit OS.  Printer has the extra250 sheet paper tray.  Upper and lower tray work fine.  I can of course load photo paper in upper tray and print photos from there, but I was trying to load just one sheet of photo paper in the little slot since I don't want to have photo paper loaded all the time.  Since I have to use the generic Windows driver for this printer as HP doesn't have a driver update for this printer and Windows 7, the only selections I'm seeing in printer properties is "automatic, upper, lower".  I've tried all three of those settings and none take the paper from the little slot where I'm manually feeding the 4x6 photo paper.  What am I doing wrong?  Could it be that this feature just isn't enabled with the generic Windows driver?
    The reference/instruction documentation that came with this printer is very sparse.  I can't find any instruction on how to use the photo/evelope slot.  In fact I'd say overall the documentation is very poor.
    I just checked the HP site, still no Windows 7 64-bit driver available.
    Thanks for any help or ideas.

    Found a .pdf document on line for the Desjet 6980 series printers. Much more comprehensive than what came with the printer.
    http://h10032.www1.hp.com/ctg/Manual/c00591373.pdf
    Follow these steps to use the photo/envelope feeder to print a single photo:
    1. Insert the photo paper into the photo/envelope feeder with the side to be printed on
    facing down.
    2. Gently push the photo paper into the photo/envelope feeder as far as it will
    comfortably go.
    3. Slide the photo/envelope feeder forward as far as it will go.
    4. Print the photo.
    Problem was, although I was inserting the 4x6 photo paper into the feeder, I wasn't pushing the little plastic slide forward.

  • How to use GPU acceleration in final rendering process in AE CS6 updated?

    Hello guys!
    Maybe my question is a frequent, but in fact I didn't get answer listing FAQs here.
    So I have new NVIDIA Geforce card where CUDA supported. I enabled Ray-Traced 3d in "composition Settings" Advanced tab and also in fast preview settings. Everything OK and I can see no errors, but when I try to render one of video hive's projects, I see that CPU's  load is 95-100% but GPU's is only 0-2%. What is the secret? How to use GPU for project rendering?

    The GPU is used very little by After Effects.
    See this page for details of what the GPU is used for in After Effects:
    http://blogs.adobe.com/aftereffects/2012/05/gpu-cuda-opengl-features-in-after-effects-cs6. html

  • How to use report agent to accelerate report processing?

    hi
       i have a report that runs 11 seconds. i have create aggregation for the cube, but it seems doesn't help much. i think may be report agent would helps. can anyone tell me how to create report agent to accelerate report processing step by step ?

    Please refer -
    http://docs.oracle.com/cd/E21764_01/doc.1111/e15867/reporting.htm
    http://jvzoggel.wordpress.com/2012/01/18/osb_tracing_report_action/
    Regards,
    Anuj

  • How to used a JCR Data Control in Java class?

    Hi,
    I created a JCR Data Control to my UCM to obtain a treeTable with the datas. But it's impossible to create a treeTable like i want to.
    So I know how to create a treeModel to obtain the treeTable I want.
    Is there a way to used the getItems method of the dataControl in a Java Class?
    I tried this :
    BindingContext bc = (BindingContext)JSFUtils.resolveExpression("#{data}");
    DCDataControl dc = bc.findDataControl("UcmDC");
    But dc is null.
    There are some xml files (UcmDC.xml or getItems_return.xml). Is it a way to resolve my problem. And if so, how do I use?
    Best regards,
    Thomas

    please refer metalink id(305710.1)

  • How to use labjack U12 to control solenoid directiona​l valve with Labview in hydraulic system

    Hi,
    I need to control a solenoid operated direactional valve in hydraulic system with Labjack U12. I am using three relays but need some help on the vi. like which instrument drive I need to use etc....
    The coil voltage for the solenoid valve is :  AC120V, 60Hz; AC110V, 50Hz 
    My goal is to control this solenoid valve open/close at certin time, am using Labview 2011. Any advise would be helpful.
    Thank you!

    Have you got the relays working yet.  Do some initial testing with LJlogger to make sure hardware is controlling the relays as expected.  If you need further help with this step, provide a link to electrical details for the relays and describe how you have the relays connected to the U12.
    As for your programming in LabVIEW, I suspect you are using digital I/O, so the simplest thing to do is call EDigitalOut() to set a particular line to output-high or output-low, or if you need to set a line to input (for open-collector style control) use a call to EDigitalIn().  Perhaps look at "e function example.vi" to get started, and for general information about using the LabJack U12 with LabVIEW see topic #84 from the LabJack forums.

  • How to use the period in controls?

    Hi,
    I would like to use a control to validate my current opening balance amounts to the closing balance amounts from the final period in the prior year. However I cannot get it to work as I struggle to find what to enter in the period field for the control. I have tried DEC (PERIOD property in the time dimension) and 12 (MONTHNUM property in the time dimension) but in both cases BPC doesn't validate the control saying that neither value is valid.
    Thanks,
    Arnold

    Hi,
    You can try:
    Year Offset=-1
    Period=012
    Regards,
    Eran Goldfeld

  • How to use radiobutton in table control ?

    I have four radio buttons in a row in table control. How to group radio buttons horizontally in a table control ?
    Thanks in advance.

    Hi
    I already have radio buttons on table control. However when I run the program I am able to select all 4 radio buttons.
    My need is, to select only one at a time. So how to group them??
    thanks

Maybe you are looking for