Text & O/P Determination

Plz tell me wht is text determination & Output determination.
Wht wud happen without text determination and where we maintain it?
Best regards,
Ankur

Hi Agarwal,
Condition Technique
In brief, the collective process of maintaining condition tables, access sequence, condition types and pricing procedure definition and determination is called condition technique. We need to maintain condition technique for the system to automatically determine the corresponding pricing elements for the materials and calculate the net value of the document when we process a sales document.
Text determination
Text determination is a functionality in SAP to enable specific / certain texts to be appeared on the transaction.
For example, in business transaction Sales you want to enter text for customer wishes, text for sales remark, while in other business transaction Service you want to be able to enter text for service remark, text for technician remark.
So, to enable SAP system to determine which text group need to be displayed on the screen transaction, you will need to configure Text Determination and assign it to respective business transaction type.
Partner determination has similarity but this works for determining Partner (not text). It doesn't have direct connection with Text determination. But both Partner and Text can be used on the same business transaction.
Output determination
Output may be print out / send by mail /Fax
Customisation steps for Output of Purchase Order
1. Condition Table
SPRO > Material Management> Purchasing -> Message -> Output Control->Condition Tables->Define Condition Table for Purchase Order
Select:
Purchasing Doc. Type,
Purch. Organization,
Vendor
2. Access Sequences
SPRO -> Material Management-> Purchasing -> Message -> Output Control->Access Sequences->Define Condition Table for Purchase Order
3. Message Type
SPRO -> Material Management-> Purchasing -> Message -> Output Control->Message Types->Define Message Type for Purchase Order
4. Message Determination Schemas
4.1. Message Determination Schemas
SPRO -> Material Management-> Purchasing -> Message -> Output Control->Message Schema->Define Message Schema for Purchase Order-> Maintain Message Determination Schema
4.2. Assign Schema to Purchase Order
SPRO -> Material Management-> Purchasing -> Message -> Output Control->Message Schema->Define Message Schema for Purchase Order-> Assign Schema to Purchase Order
5. Partner Roles per Message Type
SPRO -> Material Management-> Purchasing -> Message -> Output Control-> Partner Roles per Message Type ->Define Partner Role for Purchase Order
6. Condition Record
Navigation Path: SAP Menu-> Logistics -> Material Management -> Purchasing-> Master data->Messages-> Purchase Order-> MN04-> Create
Now you create PO (ME21N) and save it. Go to ME22N and print the PO by giving output type.
Note:
GR Output
Output of GR
After setting table, access sequence and output type for GR,run MB02 transaction, enter material document number. Double click one line item and select messages. Separate screen will be opened to configure outputs. Give the required fields and save the document. Now Run MB90, you can take printout. Output Type: WE03 or WE01 or WE02
Reward if it helpful.
Regards
Sasikanth.Ch

Similar Messages

  • What is the use of various text objects in text determination

    Dear All,
    What is the use of various text objects in text determination.e.g the sale document header object(In this what we define and where that text is copied further) and
    other text objects i.e customer/accounting,billing header etc.
    Regards,
    Ashima

    Hi,
    To exchange information between the User and the System    as well as between the objects (Ex: Customer to Sales document, Sales document to Delivery Document) SAP uses Text Determination to determine or to propose Text. Text can be determined for objects like customer master, all documents, condition records, customer material info records, etc...
    hope it helps..
    regards..
    yogi..

  • [svn] 4634: First part of glue code for allowing Halo components to use the new Text Layout Framework , in order to get functionality such as bidirectional text.

    Revision: 4634
    Author:   [email protected]
    Date:     2009-01-22 17:38:56 -0800 (Thu, 22 Jan 2009)
    Log Message:
    First part of glue code for allowing Halo components to use the new Text Layout Framework, in order to get functionality such as bidirectional text.
    Background:
    TLF is making this possible by implementing a TLFTextField class. It is a Sprite that uses TLF to implement the same properties and methods as the legacy TextField class in the Player. Thanks to the createInFontContext() bottleneck method in UIComponent, it can be used by a properly-written Halo component (such as those in Flex 3) without any modifications to the component.
    Note: Text should render similarly -- but is unlikely to render identically -- when a component uses TLFTextField vs. TextField. The width and height may be different, affecting layout; text could wrap differently; etc. This is a fact-of-life based on the fact that TLF/FTE and TextField are completely different text engines.
    Whether a Halo component uses TLF or not to render text will be determined in Flex 4 by a new style, textFieldClass. (Gumbo components always use TLF.)
    TLFTextField is currently only partially implemented. It does not yet support scrolling, selection, editing, multiple formats, or htmlText. Therefore it can only be used for simple display text, such as a Button label.
    Details:
    The TextStyles.as bucket 'o text styles now includes a non-inheriting textFieldClass style. It can be set to either mx.core.UITextField or mx.core.UITLFTextField. These are the Flex framework's wrapper classes around the lower-level classes flash.text.TextField (in the Player) and its TLF-based workalike, flashx.textLayout.controls.TLFTextField.
    The global selector in defaults.css currently sets it to mx.core.UITextField using a ClassReference directive. For the time being, all Halo components will continue to use the "real" TextField.
    The new UITLFTextField is a copy of UITextField, except that it extends TLFTextField instead of TextField. This class has been added to FrameworkClasses.as because no classes in framework.swc have a dependency on it. It will get soft-linked into applcations via the textFieldClass style.
    The TLFTextField class currently lives in a fourth TLF SWC, textLayout_textField.swc. This SWC has been added to various build scripts. The external-library-path for building framework.swc now includes all four TLF SWCs, because UITLFTextField can't be compiled and linked without them. However, since they are external they aren't linked into framework.swc.
    Properly-written Halo UIComponents access their text fields only through the IUITextField interface, and they create text fields like this:
    textField = IUITextField(createInFontContext(UITextField));
    (The reason for using createInFontContext() is to support embedded fonts that are embedded in a different SWF.)
    The createInFontContext() method of UIComponent has been modified to use the textFieldClass style to determine whether to create a UITextField or a UITLFTextField.
    With these changes, you can now write code like
    to get two Buttons, the first of which uses UITextField (because this is the value of textFieldClass in the global selector) and the second of which uses UITLFTextField. They look very similar, which is good!
    Currently, both Buttons are being measured by using an offscreen TextField. A subsequent checkin will make components rendering using UITLFTextField measure themselves using an offscreen TLFTextField so that measurement and rendering are consistent.
    QE Notes: None
    Doc Notes: None
    Bugs: None
    Reviewer: Deepa
    Modified Paths:
        flex/sdk/trunk/asdoc/build.xml
        flex/sdk/trunk/build.xml
        flex/sdk/trunk/frameworks/projects/framework/build.xml
        flex/sdk/trunk/frameworks/projects/framework/defaults.css
        flex/sdk/trunk/frameworks/projects/framework/src/FrameworkClasses.as
        flex/sdk/trunk/frameworks/projects/framework/src/mx/core/UIComponent.as
        flex/sdk/trunk/frameworks/projects/framework/src/mx/styles/metadata/TextStyles.as
    Added Paths:
        flex/sdk/trunk/frameworks/projects/framework/src/mx/core/UITLFTextField.as

    Many of your points are totally legitimate.
    This one, however, is not:
    …To put it another way, the design of the site seems to be geared much more towards its regular users than those the site is supposedly trying to "help"…
    The design and management of the forums for more than five years have driven literally dozens of the most valuable contributors and "regulars" away from the forums—permanently.
    The only conclusion a prudent, reasonable person can draw from this state of affairs is that Adobe consciously and deliberately want to kill these forums by attrition—without a the PR hit they would otherwise take if they suddenly just shut them down.

  • IPhoto sends emails in Rich format even if the default format is Plain Text

    Detailed Summary (wouldn't fit in the Topic Subject):
    iPhoto will always send emails in Rich Text format even if Mail application is set to send all emails in Plain Text format. In other words, emails initiated from iPhoto ignore the selected Message Format setting in the Mail application.
    Description:
    It is a better practice to email photos in the Plain Text format instead of Rich Text format so recipients using different email clients can easily download attached pictures as regular attached files.
    The workaround is to change the email format to Plain Text before sending it. This wouldn't be such a problem if you could make this a permanent setting however this is not possible. The Mail application has a specific setting for this but iPhoto simply ignores it. This is the issue I am raising here.
    How to reproduce the problem:
    1. Open the Mail application (Assuming you already have an email account configured)
    2. Go to Preferences, Composing tab
    3. Change Message Format to "Plain Text"
    4. Optional step to verify that the Plain Text is now the default format: Start a new email. Click on menu Format and you'll see "Make Rich Text" available, which means the current email is in fact in Text Format. Close this email.
    5. Open iPhoto
    6. Select one or more photos and click on the "Email" icon on the lower right hand side
    7. A details popup will open, click on "Compose Message"
    8. The Mail application will open as well as a New Email window with the Subject field filled out and the selected photos in the email body
    9. Click on the menu Format
    Expected: Th last option should be "Make Rich Text" indicating that the current email is in Plain Text format as determined by the Mail settings (steps 1-5 above)
    Actual: Last option is "Make Plain Text" which means the current email is fact in the Rich Text format which does not match the Mail application settings.
    Can we at least get an acknowledgement from Apple that this is a known issue? Also, is there a fix for this? It is not an acceptable solution to tell users to manually select Plain Text for every email. I am tired of asking people to resend emails that way. That is a workaround, not a solution.
    Test details:
    - Mail Version 4.4 (1082)
    - iPhoto Version 8.1.2 (424)
    - OSX Version 10.6.5

    iPhoto menu -> Provide iPhoto Feedback to report a bug.
    Can we at least get an acknowledgement from Apple that this is a known issue?
    Need to ask Apple that one.
    Regards
    TD

  • Copy Text from Order to Invoice

    Hi All,
    We are trying to copy the line text from the order line item to the invoice. But we are facing a problem that the header text is getting copied to the invoice correctly but the line text is not copied in to the invoice.
    The data is not getting copied to BEA_BDI from CRM_ORDERI whereas the data gets copied from CRM_ORDERI to BEA_BLI.
    Can someone help with this
    Regards
    Rekha Dadwal

    Hi
    The item text was getting determined using the current determination procedure till May. In May we did a support pack upgrade and this functionality stopped working.
    <b>The procedure followed is as follows</b>
    Text Object      BEA_BDI
    Description      Texts for Billing Item (BE)
    Text Det.Proc.   ZBDI0002
    Dscrptn Proc.    Billing Item Text
    Text Type        0001
    Description      Sales text
    Sequence        0010
    Changes         Display
    Transfer Type   Copy
    Access Sequence ZBDI0001
    Desc. Access    Text Type 0001
    Text Object      BEA_BDI
    Description      Texts for Billing Item (BEA
    Access Sequence  ZBDI0001
    Desc. Access     Text Type 0001
    Sequence         0100
    Ref. Object     BEA_DLI
    Ref. Object     Texts for Billing Due List
    Ref. Text Type  0001
    Ref. Text Type  Sales text
    Regards
    Rekha Dadwal

  • Redetermination of Texts, Partners and Conditions

    Hi everyone.
    The purchase order is raised against a contract with delivery requirement to a specific plant.
    Immediately prior to delivery, it is possible that the plant might change. At which point, the system redetermines the texts, conditions and partners.
    Is is possible to prevent or by-pass this redetermination as a lot of PO history is maintained in the texts and the business do not want to duplicate on master data creation for both plants.
    Any help will be gratefully received.
    many thanks,
    Col

    hi,
    The texts could be determined at the time of formation of PO...
    Conditions could be determined at PO, PIR etc...
    Partner are mainly determined at IR ie. at the time of Payment to vendor....
    No it can't be done in the std SAP system....
    Pls check...
    Regards
    Priyanka.P
    AWARD IF HELPFULL

  • Create a text field in transaction code VF11

    Hi,
    How to configure a text field in transaction code VF11.Please help me on this.
    Presently we are just cancelling the invoices through VF11. but no inputing the reason for cancellation.
    We need to have a mandatory field, were in we need to input the reason for cancellation of that invoices.
    Thanks & Regards,
    vcsreddy.

    Dear
    Create One text type for Billing document header and Assign the Biling Type S1
    and when your doing Vf11Transcation select GOTO Billing Document Over view and select the line item
    go to text there your text type will determine.
    Do this I hope your requriment full fill
    Regards
    Supriya

  • Text replication

    Can anybody tell me what should happen to texts during replication?
    I have a transaction type that is determining texts from a standard text in CRM, but when it gets to R/3 the text is being redetermined.
    How should the texts be configured in R/3 for replicated transactions? Should the text have no access sequence? What if the text is being determined by a routine? Should the routine first check to see if the text is blank before redetermining?
    Thanks for your help,
    Stuart

    Stuart,
    I assume you are referring to SD orders.
    The best way is to assign an access sequence with only the text ID itself. So suppose you use a header text C001 on the CRM order, the access sequence on the SD order header text C001 should contain VBBK and C001.
    This way the text is replicated to R/3, also when you forget to enter a text during creation of the CRM order and add it at a later stage. If you do not have an access sequence the text is replicated only when there is a text filled in when you replicated the CRM order the first time.
    Hope this helps. (Points if it does.)
    regards,
    Nico

  • Error : Error when generating text environment .

    HI All,
    I've got error :
    Runtime Errors         TEXTENV_INVALID         
    Exception              CX_SY_LOCALIZATION_ERROR
    The exception, which is assigned to class 'CX_SY_LO caught and therefore caused a runtime error.                 
    The reason for the exception is:                  
    The semantic structure of a number of ABAP/4 statem functions is determined by the text environment.  
    environment depends on .The text environment depends on the following:    
    (1) the system installation                       
    (2) the current user                              
    (3) any explicit "SET LOCALE" statements which occu
    The text environment consists of                  
    - the language,                                  
    - the locale categories LC_CTYPE and LC_COLLATE  
    - the SAP character set                                                                               
    Normally, the text environment is determined by the language. 
    The "SET LOCALE" statement also allows you to specify a particular 
    text environment by using the options "LANGUAGE l", "COUNTRY c"   
    and/or "MODIFIER m".                                              
    In this case, operation "SET LOCALE" was used to select the text environment 
    for                                              
      language = 7                                    
      country = " "                                   
      modifier = " "                                  
    with                                              
      locale = "nl_NL.ISO8859-1"                      
      codep page = 1100                               
    but an error occurred.                            
    Since text environments are normally determined via environment table TCP0C, there is probably an inconsistent
    table TCP0C.                                      
    Please Help.
    Thanks.

    Hi Nils, thanks for your reply,
    yes, value nl_NL.ISO8859-1 is already in table TPC0C.
    but actually we do not need that language to install, because we are in malaysia
    we just install language EN and DE only.
    (  Run program RSCPINST via se38 ).
    rgds.

  • TEXT for Chinise Language

    Dear All
    I done Text comfiguration in VOTXN, text is getting determined in Sales order from customer master
    Text i maintained in Language EN
    Customer master - Sales area -- Extras -- create Text  -- Language EN  and
    and when i create text Chinise
    Customer master - Sales area -- Extras -- create Text  -- Language ZH(SAP chinise Language)  Text is not comming. and Chinise languge is installed at Os level and server level
    any thing is missing pls advice me
    Thanks in Advance

    Hi
    thanx for replying
    i changed the language from EN to chinise but Text is not diaplaying
    may more detail may help u
    shiping point  --  EN  --   abcd
    in this case iam not able to change the languge down
    shiping point is maintained in the both the languges
    request you please anu suggestions on this
    Thanks

  • Setting the focus to a text field on a subform in the form initialize event.

    I have a form that checks the rawValue of a text field to determine whether or not the focus should be set on a particular text field. Here is the logic:
    if(txtEmailVisible.rawValue == "visible")
    frmEmailData.presence = "visible";
    xfa.host.setFocus(xfa.form.NEDA.main.frmEmailData.txtEmailBody);
    else
    frmEmailData.presence = "hidden";
    For some reason the focus isn't going to that object, instead it is still going to the first field in the tabbing order. Am I calling this in the wrong event, which is causing the tabbing order to over ride my setFocus call?
    Thanks,
    Chad

    Try using setTimeout for this from the DocReady event.
    app.setTimeout("xfa.host.setFocus(xfa.form.NEDA.main.frmEmailData.txtEmailBody);
    ", 250);
    There are several occasions where code must be executed after init/formReady/DocReady, etc. has been completed. This is one of them.

  • Text & Keyword analysis

    Is there anyway I can take a string or selection of text and somehow determine which words within the text are contextually significant? For example, I want to write a program in java that will take in text files and pick out the important keywords and ignore unimportant words (and, but, if for example).
    Are there any means or methods developed to do this sort of thing, or any rules of thumb to conduct such analysis? I looked at pattern matching with regular expressions but its not quite what I am looking for (although it is the closest I have come yet), so can anyone advise on the best way to do this or how I may go about constructing such a program?

    Yes, I agree. Deciding how "proficient" it should be is almost as tough as programming it! I think simply itterating through the docuements removing individual words from a pre-defined list is a bit too basic, but obviously full language understanding is an as yet unachievable AI task - is there even any middle ground? I'm looking for somewhere inbetween, leaning toward the basic side though! ;)
    It doesn't need to put everything into context, merely pick out maybe just one or two important words in the docuement...

  • Regarding Text

    Hi friend,
    I created two sales orders with same SP, SH, shipping point and requested delivery date and i maintained texts in both sales orders.
    I created one delivery from two sales orders using the t.code VL10A.
    Now my client requirement is "text" must be determined  from  second sales order into delivery document.
    Is it possible in sap standard or not. If yes, how can i achieve that. Otherwise what can i do to achieve my client requirement.
    Thanks in advance.
    Regards,
    Govind.

    Hi Govind
    well as i see all the texts will  get copied and since its a combined delivery i guess there is nothing standard available in the system .....
    Lets see if this user exit helps your meet your requirement
    EXIT_SAPLV50S_002 : Control for Whether Fields in Distributed Deliveries
    Cheers

  • Display text control

    hello,
    I need display a long text in delivery header which is created in purchase order header.  The text is added in delivery correctly, but is showed in a message several times, one for each position.
    I had an access sequence with VVBK  Z011 (the text must be copied), and 1 in  Requirement number for texts. 
    The display text for transfer is marked.
    Any idea? I have searched several notes in oss but I don't find anyone,

    Hi,
    Have you checked whether the same text is being determined at item level also? 
    Thanks
    Krishna.

  • Long text in shipment creation VT01N

    Hi All,
    I have requirement that I have to place some default  text into texts tab after pressing 'Planning' Button  in shipment when creating shipment using VT01N .
    I tried to save the text using SAVE_TEXT in  exit but at the time of creation the shipment no is populated as '$0001'.
    Actually I have to place delivery header text into shipment text and can be seen in texts tab while creating shipment.
    your quick responses will be appreciated and reward points are awarded.

    Hi,
    Are you creating "shipment" with reference to "delivery"? If you are doing so, you can use "data transfer" routines.
    Check transaction <b>VOFM</b>. Here, go to <b>menu "Data transfer --> Texts".</b> There will be two routine ( 1 & 2 ) here. This are just the sample routine without any code. You can copy one of then in customer name space ( 600 -999 ) and code as per your requirement.
    Work with your functional owner to configuring this routine. This solution requires both configuration and some development so work with your functional owner.
    This is waht SAP says about "text" routines.
    Text data transfer routines are used to fine tune text transferred during the copying process from a selected reference document into the target. This is done via data transfer routines that can transfer and manipulate texts in the copy procedure. These data transfer routines are assigned, in customizing, to the access sequence field for data transfer for the text type.
    When creating a new document with reference to an existing document, the system first checks the copy requirement assigned to the access sequence of the text type to determine if the corresponding texts should be automatically transferred. If the requirement is met, then the transfer of data begins from the reference document into the target. It is in this second step that the text data transfer routines defined here are called.
    When looking at the code for the standard delivered text data transfer routines, or when writing your own, four standard work areas are used. These include:
    FTVCOM - Communications block
    FXTHEAD - Text header
    FXVBPA - Partner
    REFERENZ - Work area for text module
    Note that SAP does not deliver any standard manipulations for data transfer of text, but rather delivers two viable user exit template routines for the user. Moreover, neither of the generic routines are assigned to the delivered text types. As a result, standard delivered texts are automatically transferred from document to document, without changes, if the assigned copy requirement is met.
    Let me know if you need any other information.
    Regards,
    RS

Maybe you are looking for