PO Condition Output

Hi all,
I got schedule an auto PO job to run. I wished to set the condition output so that the PO will be sent to vendor automatically once it is created.
I've done whatever necessary including setting the condition output in MN05. All the PO document type are working fine except the one I newly entered. Anyone encountered this problem before? Am I missing anything? How should I overcome this problem?
Thanks and regards,
JT

Hi Kishore,
Thanks for your reply.
The document type was already config in the system.
(SPRO-> IMG-> Materials Management-> Purchasing-> Messages-> Output Control-> Message Types-> Define Message Types for Purchase Order-> Fine-Tuned Control: Purchase Order)
Can you lead me on how to check whether the message type included in the variant? As far as I'm concern, I didn't do anything specific to include the message type into the variant. May I know how to include the message type into the variant?
Thanks and regards,
JT

Similar Messages

  • Mandatory Condition Output Tax MWSI is missing

    Hello Experts,
    We have a situation where the access sequence MWST is using the customer specific tables A509, A902, A906, A908

    Hello Experts,
    We have a situation where the leading system is ECC and the pricing
    procedures, condition types and condition tables are downloaded to the CRM
    system. The access sequence MWST used for the condition type MWSI in the
    pricing procedure is using the customer specific tables A509, A902, A906, A908.
    We got these tables developed in the CRM system as they did not existed
    earlier using the below given SAP Notes and blogs:
    514952
    - Download of customer-specific tables
    441083 - Transferring conditions for
    material group MATKL to CRM
    https://scn.sap.com/community/crm/master-data-and-middleware/blog/2014/02/11/condition-master-data--customizing-download
    1070997 - Condition
    download:Parameter BADI CND_MAP_CNV_FIELD .
    As a result the customer specific condition tables are
    created and filled in the CRM system after the downloads.
    But, when we are creating an order, we are getting an error Mandatory
    Condition Output Tax MWSI is missing and the tax is not determined
    in the transaction.
    Do we have to do some additional developments to get the
    taxes determined in the CRM system.
    Thanks,
    Rishit

  • WWI issue: function module with symbol doesn't work in conditional output

    Hi,
    I have created a function module to be used in combination with a symbol that represents the quantity of a composition item in a composition. In some cases a average quantity is not filled and the function module calculates the quantity based on the lower and upper limit of the composition item. This function works perfectly if managed in customising with a symbol or called with a symbol in WWI. When displaying the result of the symbol in a WWI word template it shows the expected value.
    However when I use the symbol with a function module (or the customised symbol with function module) in a conditional output expression, the value it represents in the expression is always equal to zero. It seems that a symbol value that is calculated using a functional module is not calculated properly when used in a conditional output expression. Setting a break in the functional module always shows the correct value, but the value as I already told, is not seen by the conditional output expression. Within the expression the value is always equal to zero.
    Does anyone know if this is a known issue in WWI? Is there any solution to handle this problem? I hope anyone can help.
    Thanks,
    Paul

    Dear Paul,
    only some add on high level ideas:
    if you look at:
    Example: Layout of an Abridged Material Safety Data Sheet - Basic Data and Tools (EHS-BD) - SAP Library
    you find the standard example of SAP for master and slave group:
    2  <11BRG003 (M,SAP_EHS_1012_004;*)> ¶
    3  <03EHS_L_TEXT(CED
      -SDB-01.002)> ¤
    <03EHS_L_TEXT(CED-
    SDB-02-07)> ¤
    <03EHS_L_TEXT(CED-
    SDB-02-05)> ¤
    4  <11BRG002 (S:POS;*)> ¿
    5 <01GESTRIDENT(I:NAM,
    6  IUPAC,;*)> <11ERG002>¤
    7
    8
    9
    <11BRG002 (S:POS; *)> ¿
    <01G1023001R2(C;*)
    ><11ERG002>¤
    <11BRG002 (S:POS;*)> ¿
    <01GESTVPRECL>
    <01GESTVCOMPL(N:" ZZ9,9")>
    <01GESTVCOMPE>
    <11ERG002> ¤
    10  <11ERG003>¶
    The "issue" is that you need to analyse by "line" of POS group; or precisely: it is easy to print lower, upper and average value if it exists.
    In conditional output this example is shown in SAP help:
    <15BIF001(AND:01G1013005VA GE 1)><01G1013005VA(;*/TL)[D:Value]>
    <15CIF001><03EHS_L_TEXT(CUST-100000000000031)[D:Density is less than 1]>
    <15EIF001>
    I believe you need a "clever" nesting together with your customer symbol
    E.g. you need first "test" the contents of the three values and decide about result
    The easiest way could be to use a "table" structure as above.
    Just use column header "lower"; "average"; "upper" value. Then you need to ask your self in which situation what need to printed.
    If you use the table structure and you print just what is there and leave simply lower / upper limit "field" empty if it does not exists (what is bad with this?) you need only this "conditional" output topic done for average value. You could check for: if value > 0.0001 then print the value (as then there is a value); if not use the report symbol in which you calculate something. In my opinion it is worth to try it.
    It is known that you can check "numeric values by using conditional output. I belive tis cintional one des work as well with the "composition" values (lwoer, upper, average),
    May be this approach might help.
    The "stack" examples which are discussed in SAP help and in the links shown are related to "characteristic" values of classes and not for composition ones.
    C.B.
    PS: If this really works you can clearly extend your solution. E.g. if lower value is empty may be print "0", If upper valus is empty may be print "100" etc. (or prepare a further costumer symbol calculating something).

  • Anyway to create a conditional output instruction in XSLT?

    The doctype-system value in an output instruction in my XSLT has to vary depending on a value of a variable. However, choose and if cannot be used outside a template instruction. Is there any other way to put a conditional on an output instruction? Below is the code I tried, but is not valid. I'm hard coding the value of the variable named "short" to "1". It could also be set to zero.
         <xsl:variable name="short" select="1"/>
         <xsl:choose>
              <xsl:when test="$short">
                   <xsl:output method="xml" version="1.0" indent="yes"
                        doctype-system="http://www.editeur.org/onix/2.0/short/onix-international.dtd"
                        encoding="ISO-8859-1"/>
              </xsl:when>
              <xsl:otherwise>
                   <xsl:output method="xml" version="1.0" indent="yes"
                        doctype-system="http://www.editeur.org/onix/2.0/reference/onix-international.dtd"
                        encoding="ISO-8859-1"/>
              </xsl:otherwise>
         </xsl:choose>

    Refer:
    http://sap.ittoolbox.com/groups/technical-functional/sap-dev/attaching-smartform-to-the-standard-transaction-2316027

  • FM for conditions output

    Hi,
    I want to create a report that output conditions based on this:
    Customer No
    Sales Org     CoCo     
    Sales.Off     
    Cond.rec
    If anyone knows a function mod. for this selection/output, I would like to hear
    Thanks.

    Further explanation:
    Tables:
    konp,        "Conditions (Item)
    kote502,     "Sales Org / Customer / Commercial Model
    kna1,        "General Data in Customer Master
    knvp,        "Customer Master Partner Functions
    t179,        "Materials: Product Hierarchies
    kona.        "Rebate Agreements
    Output something like this:
    Sorry for the bad tabs                                        
    Customer N Customer Name Sales Org CoCo S.Off Cond.rec     Rate Rate Tot. 
    xxxxx        xxxxxxxx          001          001    001   xxxx              9,99  9,99 9,99

  • Using conditional output

    Thanks to VetSrini, I know how to generate the first half of this output (comma delimited names).
    Any pointers on how I would go about generating the other half? ie: Print a string called "New" and append the names in a sorted order if the "New" column is Y as shown in the desired output below (the formatting gets messed up ... New: C2 should be displayed in the Customer column and not as it appears below).
    Country Customer
    USA C1, C6
    New: C2
    Canada C3
    New: C4, C5
    XML:
    <?xml version="1.0" encoding="UTF-8" standalone="yes"?>
    <Root xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
         <Row>
              <Country>USA</Country>
              <Customer>C1</Customer>
              <New>N</New>
         </Row>
         <Row>
              <Country>USA</Country>
              <Customer>C2</Customer>
              <New>Y</New>
         </Row>
         <Row>
              <Country>USA</Country>
              <Customer>C6</Customer>
              <New>N</New>
         </Row>
         <Row>
              <Country>Canada</Country>
              <Customer>C3</Customer>
              <New>N</New>
         </Row>
         <Row>
              <Country>Canada</Country>
              <Customer>C4</Customer>
              <New>Y</New>
         </Row>
         <Row>
              <Country>Canada</Country>
              <Customer>C5</Customer>
              <New>Y</New>
         </Row>
    </Root>

    Thanks! That works ... I am beginning to understand this a lot better now due to your efforts!
    I made a minor change (moved New to the Customer column) and it didn't break anything ... :)

  • Conditional Output in a template fragment

    Hello,
    Using jdeveloper 11.1.1.3.0
    I have created a basic application using template fragments. Within the "header" fragment, I want certain elements to appear depending on which page is called.
    I have an HTML Table containing a dropdown box that I want to hide, for example, when some pages are called. This element is held in the bottom facet of one "PanelGroupLayout", within its own PGL.
    In other words, this is how its structured:
    PGL
    verbatim
    table
    element I want to make conditional
    /table
    /verbatim
    /PGL
    I would like to have this element recognize that, for example, when we navigate to "page2.jspx", it disappears and shows something else.
    Please let me know how I might accomplish this.
    Thank you.

    This is the code:
    <af:panelGroupLayout layout="scroll"
                               xmlns:af="http://xmlns.oracle.com/adf/faces/rich"
                               id="pgl2">
           <f:verbatim>
              <table cellspacing="2" cellpadding="3" border="0" width="100%" style="margin-top:40px">
                <tr>
                  <td width="42%">
     <img src="../images/startyour.png" height="31" width="305"/>
                  </td>
                  <td width="58%">
                    <select size="1" name="jumpit" onchange="document.location.href=this.value">
      <option value="">Make a Selection</option>
      <option value="cincinnati.jspx">Cincinnati/Northern Kentucky</option>
      <option value="dallas.jspx">Dallas-Ft Worth</option>
      <option value="austin.jspx">Austin</option>
      <option value="raleigh">Raleigh/Durham</option>
      <option value="nashville.jspx">Nashville</option>
        <option value="cleveland.jspx">Cleveland NE Ohio</option>
      <option value="washington.jspx">Washington, D.C./Virginia/Maryland</option>
      <option value="dayton.jspx">Dayton</option>
      <option value="jacksonville.jspx">Jacksonville</option>
    </select>
                  </td>
                </tr>
              </table>
            </f:verbatim>
          </af:panelGroupLayout>

  • Conditional outputs needed in interactive reports

    APEX version = 4
    - DB version and edition = 10g
    - Web server architecture = OHS
    - Browser(s) used = I.E. 8
    - Theme = #5 opal
    - Templates
    - Region/Process type
    Hello
    I have a system where records have statuses and depending on who is logged in when they access the report I need to alter the query, example if it is the system administrator they see all records, but if it is a regular user they only see records with certain statuses. I tried to put a begin and end with an if statement in the region source, but it did not work.
    Any suggestions would be appreciated.
    Thank you

    Hi UserXY,
    a possible solution is to extend your SELECT to return some HTML-Tags which take care of coloring or whatever you want to do.
    e.g.
    SELECT OID
         , LAST_NAME
         , CASE WHEN IS_URGENT=1 THEN '<span style="color:red;">'||IS_URGENT||'</span>' ELSE TO_CHAR(IS_URGENT) END AS IS_URGENT
      FROM MY_TABLE
    WHERE ...Peter

  • What is the correct way of doing conditional output?

    This
    <h:outputText value="#{payee.discriminatorValue=='P' ? payee.firstName:' '}"/>works , and yet this
    <h:outputText value="#{payee.discriminatorValue=='P' ? ' ':payee.orgRegistrationNumber}"/>fails with the following parse error :
    SEVERE: Error Rendering View[claimantresult.xhtml]
    com.sun.facelets.tag.TagAttributeException: /claimantresult.xhtml @158,103 value="#{payee.discriminatorValue=='P' ? ' ' :payee.orgRegistrationNumber}" Error Parsing: #{payee.discriminatorValue=='P' ? ' ' :payee.orgRegistrationNumber}
         at com.sun.facelets.tag.TagAttribute.getValueExpression(TagAttribute.java:259)
    Caused by: javax.el.ELException: Error Parsing: #{payee.discriminatorValue=='P' ? ' ' :payee.orgRegistrationNumber}
         at com.sun.el.lang.ExpressionBuilder.createNodeInternal(ExpressionBuilder.java:160)
         at com.sun.el.lang.ExpressionBuilder.build(ExpressionBuilder.java:177)
         at com.sun.el.lang.ExpressionBuilder.createValueExpression(ExpressionBuilder.java:221)
         at com.sun.el.ExpressionFactoryImpl.createValueExpression(ExpressionFactoryImpl.java:81)
         at org.jboss.seam.ui.facelet.SeamExpressionFactory.createValueExpression(SeamExpressionFactory.java:107)
         at com.sun.facelets.tag.TagAttribute.getValueExpression(TagAttribute.java:256)
         ... 61 more
    Caused by: com.sun.el.parser.ParseException: Encountered ":payee" at line 1, column 39.
    Was expecting one of:
    ">" ..

    Which JSF version?
    Try gently using spaces after the colon:<h:outputText value="#{payee.discriminatorValue == 'P' ? ' ' : payee.orgRegistrationNumber}"/>And if this doesn't help, what about:<h:outputText value="#{payee.discriminatorValue != 'P' ? payee.orgRegistrationNumber : ' '}"/>Or just<h:outputText value="#{payee.orgRegistrationNumber}" rendered="#{payee.discriminatorValue != 'P'}" />

  • JSP 2.0 Tag files outputting elements with conditional attributes

    It appears to be impossible to conditionally output element-attributes in JSP 2.0 XML Tag files. Here's an example:
    Tagfile text.tagx:
    <jsp:root xmlns:jsp="http://java.sun.com/JSP/Page" version="1.2">
      <jsp:directive.attribute name="name" required="true" type="java.lang.String"/>
      <jsp:directive.attribute name="id" required="false" type="java.lang.String"/>
      <jsp:text>
        <input type="text" name="${name}" id="${id}" />
      </jsp:text>
    </jsp:root>Seems simple enough. This tag has a name-attribute and an optional id-attribute. But what if I want the id-attribute of the 'input' element not to be outputted when the id-parameter is empty!
    It appears there's no elegant way to do this but to revert to CDATA blocks and/or output-escaping. Is this an oversight in the API or am I missing something?
    I've also tried the following but it didn't work (in Tomcat anyway):
    <jsp:root xmlns:jsp="http://java.sun.com/JSP/Page" version="1.2" xmlns:c="http://java.sun.com/jsp/jstl/core">
      <jsp:directive.attribute name="name" required="true" type="java.lang.String"/>
      <jsp:directive.attribute name="id" required="false" type="java.lang.String"/>
      <jsp:text>
        <jsp:element name="input">
          <jsp:attribute name="type" value="text"/>
          <jsp:attribute name="name" value="${name}"/>
          <c:if test="${!empty id}">
            <jsp:body>
              <jsp:attribute name="id" value="${id}"/>
            </jsp:body>
          </c:if>
        </jsp:element>
      </jsp:text>
    </jsp:root>Any ideas on how to do this?

    I wonder why no one has responded to this post!!!! I am trying to do the same thing, to no avial. In XSLT this is how it works, I would have thought JSTL would do the same thing. D'oh!

  • Concatenation error - when i use text column value in where condition.

    Hi,
    i am creating Materialized view using few columns from two tables and as per requirement i need to prepare select statement with where condition in another column.(new column)
    i tried like below....
    create materialized view MAIN
    refresh force on demand
    as
    select
    a.table_name,
    a.column_name,
    b.trial_name,
    'select * from '||a.table_name||' where '||a.column_name|| ' = '|| b.trial_name||';' "QUERY"
    from
    exp_csv_tB a,
    exp_csv_tr b;
    a.table name value is : monitoring_table
    a.column_name value is : study
    b.trial_name = fty777
    Materialized view created with extra column but it is not added '' (codes) to text value in where condition.
    output which i got is :
    select * from monitoring_table where study = fty777;
    but
    i need output like
    select * from monitoring_table where study = 'fty777';
    fty777 value should be in codes like 'fty777'. i read some articles but didnt get this example.
    please help.

    Try this:
    CREATE MATERIALIZED VIEW main
    REFRESH FORCE ON DEMAND
    AS
    SELECT
    a.table_name,
    a.column_name,
    b.trial_name,
    'select * from '||a.table_name||' where '||a.column_name|| ' = '''|| b.trial_name||'';'' "QUERY"
    FROM
    exp_csv_tb a,
    exp_csv_tr b;
    You have to give double single codes for semi-colons ..
    Regards..

  • How can I get the Conditoned output from PXI 1520 in PXI 1011 combined Chassie?

    Respected Sir,
    I am using PXI-SCXI combined Chassie PXI 1011 for my application. I have placed three SCXI 1520 modules, a motion card PXI 7352 and PXI 6052E DAQ card in the combined chassie. You know the PXI 1520 and PXI 6052E are connected internally using the Backplane of the SCXI and is not user accessable. Now I need the conditioned output of the PXI 1520 to be used as an Analog input for the Motion Control card PXI 7352. How can I do that? Whether PXI 1180 could solve my problem? If so, how do I connect the PXI 1180 to PXI 1011?
    Kindly clarify me as soon as possible.
    Thanking you,
    Ramkumar. D

    Dear Sir,
    I have already placed my DAQ card at the correct place and configured it. I need some more clarification from you. I have attached my Query in .txt format.
    Kindly reply as soon as possible.
    Thanks,
    Ramkumar. D
    Attachments:
    Clarification.txt ‏2 KB

  • How to suppress a property being output to a label once a date has been reached

    Hi,
    I would like to suppress a property being output to a label once a date has been reached. I have tried the WWI conditional output functionality but am experiencing issues.
    The issue is the symbols I am wanting to use have different expansion times.
    For example:
    The property contains a CHAR30 phrase-related characteristic and a DATE FORMAT characteristic.
    I only want to output the phrase if the current date the label is printed is the same or later than the date assigned in the property.
    When I try to create the conditional output:
    <11BRG200(M,ZSAP_EHS_1011_014;*)>
    <15BIF100(AND:01GZE1_ZE145 GE S:02EHS_RPPRIN)><01GZE1_ZE10G(P;*)[D:Grant
    No.]> <15EIF100>
    <11ERG200>
    On checking the template, I get the message 'Repeating group IF 100: Different expansion times for condition symbols'
    SAP Help does tell me that:
    · If you enter a number of symbols in the condition, these must all have the same expansion time. If you require a conditional output that is dependent on symbols with different expansion times, you have to nest a number of conditional outputs.
    Does anyone know how I can achieve this?
    Best regards
    Karen Waterworth

    Hi Michael
    I will try that as the date is unlikely to be changed (unless incorrect), and it is exactly what we are wanting to achieve, only output the Grant number when printing the label if the expiry date has not been reached.
    Example of data held in SAP:
    Header 1
    Header 2
    Grant No.
    US 5,590,111
    Country
    US
    Expiry Date
    01.01.2035
    Usage
    LABEL: US
    Grant number only output until expiry date reached (ie earlier or same date, not later as I put in my question!)
    Thank you
    Karen

  • MIssing Conditions in BAPI_SALESORDER_SIMULATE

    Hello,
    When I execute the BAPI_SALESORDER_SIMULATE function without Schedule Line Data Input (ORDER_SCHEDULE_IN) our custom fixed material pricing are not returned in Conditions Output (ORDER_CONDITION_EX). The fixed pricing is only returned if ORDER_SCHEDULE_IN is populated.
    What could be the reason for this? Error with the function or in the configuration of our custom Fix condition type?
    Nicholas

    Hi Tamás,
    What I exactly want to see is what scheduling is possible for the material. So if my understanding is correct I won't get this information from BAPI_SALESORDER_CREATEFROMDAT2. But anyway, thank you for your answers.
    I hope I'm not alone with this problem and someone can help.

  • JSP 2.0 tag file with conditional body?

    Is it possible to write a tag file that conditionally outputs its body?
    For example:
    <my:conditionalTag booleanAttr="false">
    Since booleanAttr is false, you will never see this output.
    </my:conditionalTag>
    Thanks,
    B

    I apologize for the typo..
    You can use the Java Standard Tag Library (JSTL), which has a <c:choose> tag with <c:when> or <c:if>. So as you can see with the example above, you are to use the <c:when> tag inside <c:choose> . Here is an example of using <c:if>(notice that you don't need the <c:choose> tag this time):
    <c:if test="${true}">
         do something
    </c:if>
    [/code                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           

Maybe you are looking for

  • Satellite A200 and iTunes 2131 error

    Hello, new to the forums here. I did a search and couldn't find anything current on the 2131 error I'm getting from Itunes with regards to burning CD-Rs. I understand the Dell computers using the same optical drive have a patch, just wondering if one

  • Internal orders

    Dear Friends, Internal orders: in relation to incident INC000001710365 there is a question open concerning future cleaning of the worklist. Setting a deletion flag on a specific record which should be deleted the system response is that this cannot b

  • DEV refresh with PRD database

    Dear Guru's We want to refresh our DEV system with a copy of the PRD system: What must we take into account thinking about change history (versions etc etc) en what are other issue's to take care off ? cheers Richard

  • Mail app won't open New/compose page

    In Mail I receive incoming msgs but, when I click on "new" msg or "Reply" (to msg received}, nothing happens. ISP/server is Insight Broadband. Insight says it is Apple problem. Appreciate any INSIGHTS. DON H. imac Pwr PC G4   Mac OS X (10.4.7)  

  • Accessing Button inside Movieclip/ScrollPane

    Hello all, I'm trying to understand how to build a button inside a movieclip.  I have a template that has movieclips within movieclips, and when I create a button (all using AS2) the button will work if I test the scene, but in the whole flash movie