Multiple conditions for PO output

Hi Folks,
We'd like to have a multiple conditions set for a PO printing.
First to set up for FAX.
Next also to set up for Print
In the normal mode, only a single condition can be set up. i.e. for a given output type you can set say for FAX, then you won't  be able to set another condition.
I know that you can make a 'new' output type and then set printing condition too in addition to FAX.
Any other recommendations/ suggestions?
Thanks.

Hello folks,
Any directions/ thoughts to proceed?
Thanks.

Similar Messages

  • Multiple conditions for the same button.

    Is there any way you can have multiple condition (same type of the condition).
    I have button that I would like to hide it at different stages.
    For example I would like to have a button (Submit) which will be visible when
    Status = Draft
    Condition Type Value of Item in Expression 1 = Expression 2
    P9_X_STATUS
    Draft
    and when also when userRole = author
    Condition Type Value of Item in Expression 1 = Expression 2
    P9_X_USER_ROLE
    Author
    Robert

    Hi,
    It would depend on when the fields get their values into the session. They may be below the button on the page but if they have a value in the session then the button's condition will see this.
    If, however, you have only used a Default Value setting for the item, the value may not be in the session (even though it may be displayed on the page), so the button will not know about this value. In these cases, I set the default value using a page computation for that item that runs "On Load Before Header" and is conditional on the item being null. That puts the value into the session for other items to use if required.
    Andy

  • Multiple condition for payment terms

    Hi,
    I wanted to create new payment terms with multiple combination say for example
    95% Payment in Advance & Remining 5% in Net 360 days.  How to configure with multiple conditions.

    Hi
    You may have to use instalment payment terms.
    Regards

  • How to set a Multiple condition for a single CFL

    Hi everyone,
    Hey guys, i have a problem filtering a CFL (ChooseFromList)
    where i have to select records
    WHERE U_SalesmanCode = <ConVal>
    AND U_Status = <ConVal>
    so i've some up with an idea setting up multiple conditions on a single CFL.
    i have a function "SetCFLConditions" that will be called after the CHOOSEFROMLIST_EVENT was triggered. this will set the conditions on a loop method.
    the CODE works fine. but it only accepts the last condition.
    Public Sub SetCFLConditions(ByVal _chooseFromList As String, _
                                    ByVal _alias As String, _
                                    ByVal _operation As SAPbouiCOM.BoConditionOperation, _
                                    ByVal _condVal As String)
            Dim oCFLCollection As SAPbouiCOM.ChooseFromListCollection = _form.ChooseFromLists
            Dim oCFL As SAPbouiCOM.ChooseFromList = oCFLCollection.Item(_chooseFromList)
            Dim oCons As SAPbouiCOM.Conditions
            Dim oCon As SAPbouiCOM.Condition
            Dim asAlias() As String = _alias.ToString.Split(",")
            Dim asCondVal() As String = _condVal.ToString.Split(",")
            Dim i As Int16
            oCFL.SetConditions(Nothing)
            'oCons = oCFL.GetConditions()
            For i = 0 To asAlias.Length - 1
                oCons = oCFL.GetConditions()
                oCon = oCons.Add
                '//LOOP CONDITIONS
                With oCon
                    .Alias = asAlias(i)
                    .Operation = _operation
                    .CondVal = asCondVal(i)
                End With
            Next i
            oCFL.SetConditions(oCons)
        End Sub
    Pls. Help
    Thanks
    Edited by: Roger Arce on Apr 17, 2009 12:14 PM
    Edited by: Roger Arce on Apr 17, 2009 12:15 PM

    Hai  Roger Arce 
    Better you post your question in SDK forum
    Edited by: Prasanna s on Apr 17, 2009 12:52 PM

  • Managing multiple choise for sound output

    Hi
    I am using external speakers for playing my music - either via direct plug in or via Airport Express.
    I am using USB headset for Skype and iChat.
    Today it is not possible for me to have my headset plugged in - ready to use
    and at the same time listen to my music via my external speakers.
    It is an either or - situation which is quite irritating
    Is there any way to manage this in an easy way?

    I purchased an inexpensive Bluetooth headset to use for Skype. I leave Skpye's preferences set in such a way that it defaults to my headset for both input and output. This allows me to use the internal speakers for audio.

  • Printing multiple forms for one output types.

    Hi,
    I need to print the form 4 times for one specific output type.  My internal table contains only one record, but for that one record also i need to print 4 forms. How can i do this, i tried using control parameters but in vain.
    Any suggestions of how to achieve this,
    Thanks & Regards,
    Ramana.

    Hi,
    I am working with only one smart form. But there are different output types(ZVSL, ZVFX, ZVFE & ZVFI) configured for that form. But for one specific output type (ZVSL), i need to repeat the print for 4 times.
    Thanks & Regards,
    Ramana

  • Multiple conditions for same fault in fault-policies.xml

    Hi all
    I have below fault-policy and bound to composite level.
    When I tested this with RemoteFault, I see only HumanIntervention action is happening, I do not see retry is working.
    As per my understand and below configured policy, framework should first attempt retry then human intervention.
    When I see auditlog, I see invoke started at 10:10:10 am and immediately audit log is "[FAULT RECOVERY] Marked Invoke activity as "pending manual recovery" at 10:10:11
    So based on auditlog we can clearly understand retry has not happend
    &lt;faultName xmlns:bpelx="http://schemas.oracle.com/bpel/extension"
    name="bpelx:remoteFault"&gt;
    &lt;condition&gt;
    &lt;action ref="ora-retry"/&gt;
    &lt;/condition&gt;
    &lt;condition&gt;
    &lt;action ref="ora-human-intervention"/&gt;
    &lt;/condition&gt;
    &lt;/faultName&gt;
    &lt;/Conditions&gt;
    &lt;Actions&gt;
    &lt;!-- RetryInterval is in seconds --&gt;
    &lt;Action id="ora-retry"&gt;
    &lt;retry&gt;
    &lt;retryCount&gt;3&lt;/retryCount&gt;
    &lt;retryInterval&gt;5&lt;/retryInterval&gt;
    &lt;exponentialBackoff/&gt;
    &lt;/retry&gt;
    &lt;/Action&gt;
    &lt;!-- Human Intervention --&gt;
    &lt;Action id="ora-human-intervention"&gt;
    &lt;humanIntervention/&gt;
    &lt;/Action&gt;
    &lt;/Actions&gt;
    &lt;/faultPolicy&gt;
    &lt;/faultPolicies&gt;
    *I also tried following way, but same results*
    &lt;faultName xmlns:bpelx="http://schemas.oracle.com/bpel/extension"
    name="bpelx:remoteFault"&gt;
    &lt;condition&gt;
    &lt;action ref="ora-retry"/&gt;
    &lt;/condition&gt;
    &lt;/faultName&gt;
    &lt;/Conditions&gt;
    &lt;Actions&gt;
    &lt;!-- RetryInterval is in seconds --&gt;
    &lt;Action id="ora-retry"&gt;
    &lt;retry&gt;
    &lt;retryCount&gt;3&lt;/retryCount&gt;
    &lt;retryInterval&gt;5&lt;/retryInterval&gt;
    &lt;exponentialBackoff/&gt;
    &lt;retryFailureAction ref="ora-human-intervention"/&gt;
    &lt;/retry&gt;
    &lt;/Action&gt;
    &lt;!-- Human Intervention --&gt;
    &lt;Action id="ora-human-intervention"&gt;
    &lt;humanIntervention/&gt;
    &lt;/Action&gt;
    &lt;/Actions&gt;
    &lt;/faultPolicy&gt;
    &lt;/faultPolicies&gt;

    this is what you want...
    <?xml version="1.0" encoding="UTF-8"?>
    <faultPolicies xmlns="http://schemas.oracle.com/bpel/faultpolicy">
    <faultPolicy version="2.0.1" id="FaultHandling"
    xmlns:env="http://schemas.xmlsoap.org/soap/envelope/"
    xmlns:xs="http://www.w3.org/2001/XMLSchema"
    xmlns="http://schemas.oracle.com/bpel/faultpolicy"
    xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
    <Conditions>
    <faultName xmlns:bpelx="http://schemas.oracle.com/bpel/extension"
    name="bpelx:bindingFault">
    <condition>
    <action ref="ora-retry"/>
    </condition>
    </faultName>
    <faultName xmlns:bpelx="http://schemas.oracle.com/bpel/extension"
    name="bpelx:remoteFault">
    <condition>
    <action ref="ora-retry"/>
    </condition>
    </faultName>
    </Conditions>
    <Actions>
    <Action id = "ora-rethrow-fault">
    <rethrowFault/>
    </Action>
    <!-- Human Intervention -->
    <Action id="ora-human-intervention">
    <humanIntervention/>
    </Action>
    <Action id = "ora-retry">
    <retry>
    <retryCount>5</retryCount>
    <retryInterval>2</retryInterval>
    <exponentialBackoff/>
    <retryFailureAction ref = "ora-human-intervention"/>
    </retry>
    </Action>
    </Actions>
    </faultPolicy>
    </faultPolicies>
    ----------------

  • [FM12] Linking multiple books for HTML5 output

    Hi all,
    Here is the problem I'm facing :
    I've created several FM12 books. Each one has a life on its own, as the main purpose is to publish in PDF format.
    I would like publish in HTML5 to put all the books in an online help, that would be integrated into my company's website.
    I have a problem dealing with the structure of my online help.
    When putting out each book individually in HTML5, my TOC format is perfectly preserved as such :
    ChapterTitle
    - Level 1
    - Level 2
    - Level 3
    ChapterTitle
    - Level 1
    - Level 2
    - Level 3
    However, if i put all my books in a same master-book, and generate a master-TOC, the HTML5 Output breaks my TOC format, as I have the following result :
    Book 1 name
    - ChapterTitle
    - Level 1
    - Level 2
    - Level 3
    - ChapterTitle
    - Level 1
    - Level 2
    - Level 3
    Book 2 name
    - ChapterTitle
    - Level 1
    - Level 2
    - Level 3
    - ChapterTitle
    - Level 1
    - Level 2
    - Level 3
    Any hint or idea on how to solve this problem would be greatly appreciated. Thanks a lot !

    This question has been cross-posted to two different forum
    categories. Please direct any responses to the thread where the
    question was originally asked. You may do this by
    clicking
    here.
    Forum posting guidelines may be viewed by
    clicking
    here.

  • Multiple Values For one Condition in Choose From List

    I have used one Business Partner Choose From List in my form but i want to give condition in that choose from list on GroupCode .But the condition will have multiple values like 100,102,104 then how i will write the code to incorporate multiple values for one single condition.

    Hi,
    Check this thread
    How to set a Multiple condition in a single CFL
    Hope that helps,
    Vasu Natari.

  • Set up output condition for billing document.

    Hi, experts,
    I wanna email billing document to our customers, how can I set up this output condition for billing document?
    Thanks for your help.

    You can maintain masterdata for the email outputs for billing application in VV31.
    You can change the same or display in VV32 and VV33 respectively.
    Tcode for maintaining output masterdata
    For sales orders,  VV11, VV12, VV13
    For deliveries     VV21, VV22, VV23
    For invoices       VV31, VV32, VV33
    Reward points please!!!
    Message was edited by:
            Navaneetha Krishnan

  • Output Conditions for Header- with Item criteria

    Hi!
    We want to set up the Output conditions for delivery note per storage location.
    SAP has problems with reading it on the header level- as it is only on LIPS. Is there any easy workaround so it picks up the item field?
    Thanks!!
    Cheers
    Bea

    Hello Bea
    You may be able to acheive  this by doing the following:
    1) Add the field 'Storage Location'  (LGORT) to the filed catalog for output with the following activities:
         SPRO/IMG/Logistics Execution/Shipping/Basic Shipping Functions/Output Control/System Modifications for Output/New Fields
         For Output Control
    2) Then create a condition table for the new access:
       SPRO/IMG/Logistics Execution/Shipping/Basic Shipping Functions/Output Control/Output Determination/Maintain Output
       Determination for Outbound Deliveries/Maintain Condition Tables
    3) Then add the new condition table to the requisite access sequence:
       SPRO/IMG/Logistics Execution/Shipping/Basic Shipping Functions/Output Control/Output Determination/Maintain Output
       Determination for Outbound Deliveries/Maintain Access Sequences
    Please review OSS note 756688 which says that  you need to 'go to the item output screen before saving the document the header output is found'.
    It may be worthwhile to remain an output at item level with the same access also.
    OSS note: 756688 - Access sequence with item and header fields
    Hope this helps.

  • Multiple values for a Like condition

    How can I make a like condition for multiple value options,
    for example
    select b.segment1, b.segment2, b.description, c.cross_reference, c.cross_reference_type
    from inv.mtl_system_items_b b, inv.mtl_cross_references_b c
    where b.inventory_item_id = c.inventory_item_id and
          b.ORGANIZATION_ID = 136 and
          c.cross_reference like (
    '1267801228%',
    '1267801230%',
    '1500005030%',
    '1745%',
    '1874106005%',
    '2004%',
    '2004%',
    '232003000000%',
    '303681020128%',
    '3426441351%',
    '489122853014%',
    '4894230110%',
    '5383800117%',
    '5422810701%',
    '5422810711%',
    '5422810711%',
    '70986205105%',
    '70986205112%',
    '70986205122%',
    '70986205131%',
    '70986205131%',
    '70986205131%',
    '70986205142%')Edited by: user8986013 on 28-oct-2010 8:19

    One way could be to sort the String for length and then use SUBSTR with an IN-List:
    select b.segment1, b.segment2, b.description, c.cross_reference, c.cross_reference_type
    from inv.mtl_system_items_b b, inv.mtl_cross_references_b c
    where b.inventory_item_id = c.inventory_item_id and
          b.ORGANIZATION_ID = 136 and
          (substr(c.cross_reference,1,12) in (     
                               '232003000000',
                               '303681020128',
                               '489122853014')
           or                           
           substr(c.cross_reference,1,11) in (                                                           
                               '70986205105',
                               '70986205112',
                               '70986205122',
                               '70986205131',
                               '70986205142')
           or                   
           substr(c.cross_reference,1,10) in (                                                           
                               '4894230110',
                               '5383800117',
                               '5422810701',                          
                               '5422810711',
                               '3426441351',
                               '1267801228',
                               '1267801230',
                               '1500005030',
                               '1874106005')
           or                          
           substr(c.cross_reference,1,4) in (
                               '1745',
                               '2004')
          );By the way: I removed some duplicates.
    Edited by: hm on 28.10.2010 09:29

  • Calculation formula userexit not working for multiple condition types

    Hi,
    we have a problem in the CRM ISA-B2B scenario where the custom user exit is only working for single condition type.
    but we need it for multiple condition types .
    the value of the subtotal is not being retrieved for multiple conditions. at a time only one condition value is being retrieved and shown in the webshop - shopping basket.
    for ex:
    we have scenario 1 where Y001 -Freight condition type is applicable for one customer.and Y002 is applicable for another customer.
    when we are trying to show the subtotal condition value in the webshop by using a single custom user exit in the pricing procedure it is only working for either of the above 2 customers depending on the VMC cache status.
    is there any problem if use the single user exit for both condition types?
    and if it needs to be differentiated how exactly we can do that with the same logic in the java class.
    Thanks in advance,
    PSR.

    Hi Arshi,
    below is the code:
    public class ZValFormula_ZZWI1 extends ValueFormulaAdapter {
         private static String zzwi = "ZZWI1";
         private static char  zzwiC = '@';
         private static UserexitLogger userexitlogger = new UserexitLogger(
         ZValFormula_ZZWI1.class);
         public BigDecimal overwriteConditionValue(IPricingItemUserExit item,
                   IPricingConditionUserExit condition) {
              ICurrencyValue val = condition.getConditionValue();
              userexitlogger.writeLogDebug( "value saved for " + zzwi + " (" + zzwiC + ") = "
                        + val.getValueAsString());
              item.setSubtotal( zzwiC, val.getValue());
              return val.getValue();
    hope this would give more idea to look at the problem.
    Thanks,
    PSR

  • Condition Record for picking Output List

    Dear All
    Kindly let me know where do we maintain condition record for Picking Output list.
    Where do we define a new Output Type for Picking List
    Regards
    Srihari

    Hi Srihari,
    I think i have got the question rightly interpreted.
    All you want is to maintain condition records for picking ouptut ... correct ?
    You can do it through transaction<b> VP01SHP</b> ....(dont try to find it in easy access..atleast I could not locate it)
    Under TCD VP01SHP > V4 you will be able to maintain condition records for all condition types that have been configured for picking.
    Hope this helps you .... <b>if yes then pls reward liberally !!</b>
    KInd Regards
    Sachin Bhonsle

  • How to maintain a condition record for a output type ?

    Hi All
    How to maintain a condition record for a output type ?

    Hi,
    Goto NACE and there is a button for maintiaining the Condition Reocrds.

Maybe you are looking for

  • Problem with possition of swf when is loading dynamically to textfield

    Hi guys, I'm loading a XML to Dynamic Text field and all is OK, but the SWF is show at left out site of the flash document, I only want put a icon and a text in the same line, something like this: <body><img align="left" src="icon.swf" width="15"><me

  • Can't remove old icloud account

    cant remove old icloud account

  • Fix automatic linking of files

    I have to work with files in CS5 that I copy to my computer from a remote server over a T1 line.  They are created in Illustrator but are saved as .pdf.  Formerly these were being created in CS3 on a Mac.  I would copy the file and associated linked

  • Is it possible to use ASM with 1 physical drive?

    Hey I am trying to set up a single instance database using ASM on a test server just to get familiar with ASM. The test server is a Dell Power Edge 1850. It has a single drive (70GB). Is it possible to run ASM on 1 physical drive? Can I create multip

  • How to programmatically order docs within a Portfolio?

    I have added documents to a portfolio using c# & calling the jsobject to invoke the javascript importDataObject() method.  Now I am trying to work out how to order the documents that I have inserted.   It seems to insert each new document at the begi