GR based IV to be checked for free text requirement

Hi All,
Is there any option that if we create shopping carts for free text requirement,GR based IV should be checked automatically in purchase order created for that shopping cart.Or will this get replicated depending on vendor master we select.Please suggest.
Thanks.

Hi,
As of standard, this setting in PO would come from Vendor master only. But in case you want this to happen for all free text items, then you can use the doc change badi as suggested by Masa. You should use the po change method to pass this indicator.
Regards,
Sanjeev

Similar Messages

  • Purchasing group for free text SC

    Hi everyone,
    We have a requirement to change the purchasing group for free text & catalog SC's. We are using SRM 7.0. Normal procedure is to select the material from catalog, purchasing group is selected  & once it is approved a PO is created.
    But, now the requirement is that if a user is selecting a catalog material, then the selection of purchasing group should be restricted as per the business.
    And if the SC is being created from Free text, then the purchaser's selection should be restricted to very few options in drop down.
    Is it possible? I was thinking if the selection of purchasers could be restricted  using BADI: BBP_PGRP_ASSIGN_BADI or BBP_PGRP_FIND BADI. But, there is no option for differentiation based on SC created using Catalog & SC's created from free text.
    Can anyone please help me with this.
    Thanks & Regards,
    Bhakti

    Hi Everyone,
    Thanks for reply.
    @Muthu: I explored the tables, but the only difference I could find between the catalog & free text SC materails is that the product id is missing for free text SC. Based on this I am unsure if any BADI can be used. Kindly let me know, if the BADI's can be called on this criteria.
    @ Virendra: I doubt if that, that can be solution, since the product cataegory for free text cannot be fixed. It will depend on user requirement.
    Pls help me to define the purcahsing groups for free text SC's.
    Thanks & Regards,
    Bhakti

  • MN04 not working for free text PO

    Hi All,
    I have maintained a condition record through MN04 in purchase organisation, company code and vendor combination. This condition record is working fine for regular purchase orders. But it is not working for free text PO's. Could you please guide me why is it so?
    I am maintaining same purchase organisation, company code and vendor combination for free text PO also. Question is why it is working for a purchase order with material inside it and why it is not working for purchase order with out material.
    Thank you all in advance

    Hi,
       Seems you are using a custom print program and form. I would suggest to change the program to SAPFM06P, form routine as "ENTRY_NEU" and the form as "MEDRUCK" in NACE transaction for the output type and check the scenario again. Also cross check the settings with the KBA: 1829682 - Output type is not determined in Purchase order
       If its getting triggered, then check the custom program and the form with the help of technical team.
    Regards,
    AKPT

  • Urgent clearing data in container for free text

    I HAVE A CONTAINER FOR FREE TEXT.
    I HAVE A CREATE BUTTON IN MY SCREEN EWHEN I PRESS CREATE IT ASKD FOR ID AND FREE TEXT THEN I SAVE  AND IT GETS SAVED IN A ZTALE TABLE.
    WHEN AFTER SAVING IT I GO TO INITIAL SCREEN AND PRESS CREATE AGAIN THEN IT ASKS FOR ID AND IN THE CONTAINER I SEE THE FPREVIOUS TEXT.
    CAN YOU GUYS LET ME KNOW AS TO WHAT I NEED TO DO.
    I TREID CLEARING AND REFRESHING MYTABLE WHICH I HAVE USED IN THE FOLLOWING CODE.
    pbo
    if editor is initial.
    CREATE OBJECT TEXTEDIT_CUSTOM_CONTAINER
    EXPORTING
    CONTAINER_NAME = 'TEXTEDITOR1'
    EXCEPTIONS
    CNTL_ERROR = 1
    CNTL_SYSTEM_ERROR = 2
    CREATE_ERROR = 3
    LIFETIME_ERROR = 4
    LIFETIME_DYNPRO_DYNPRO_LINK = 5.
    IF SY-SUBRC NE 0.
    add your handling
    ENDIF.
    CREATE OBJECT EDITOR
    EXPORTING
    PARENT = TEXTEDIT_CUSTOM_CONTAINER
    WORDWRAP_MODE = CL_GUI_TEXTEDIT=>WORDWRAP_AT_FIXED_POSITION
    WORDWRAP_TO_LINEBREAK_MODE = CL_GUI_TEXTEDIT=>FALSE
    EXCEPTIONS
    OTHERS = 1.
    refresh mytable.
    call METHOD editor->SET_TOOLBAR_MODE
    EXPORTING TOOLBAR_MODE = 0.
    *call METHOD editor->SET_ENABLE
    *EXPORTING ENABLE = ' '.
    CALL METHOD editor->set_readonly_mode
    EXPORTING
    readonly_mode = 1.
    ENDIF.
    CLEAR MYTABLE.
    FREE MYTABLE.
    endif.
    IF SY-SUBRC NE 0.
    CALL FUNCTION 'POPUP_TO_INFORM'
    EXPORTING
    TITEL = V_REPID "--> program name
    TXT2 = SPACE
    TXT1 = 'Error in flush'.
    ENDIF.
    tHANKS
    let me know
    swathi

    For example, this program works really well with saving long text using the SAVE_TEXT function.  Here you need to create the object/id in SE75.  For this program you enter the id on the right like 999999 and enter the text on the left, execute and the text is saved, now change the id to 999998 and hit enter, notice the text is blank, now enter 999999 again, notice the text for this id has come back,  this is because the program uses READ_TEXT to retrieve the text.
    report zrich_0001.
    data:
          dockingleft  type ref to cl_gui_docking_container,
          text_editor    type ref to cl_gui_textedit,
          repid type syrepid.
    data: begin of header.
            include structure thead.
    data: end of header.
    data: begin of lines occurs 0.
            include structure tline.
    data: end of lines.
    data: textlines type table of tline-tdline,
          wa_text type tline-tdline.
    data: xthead type thead.
    parameters: p_id(10) type c.
    at selection-screen.
      if p_id is initial.
        message e001(00) with 'Enter an ID'.
      endif.
    at selection-screen output.
      repid = sy-repid.
      if dockingleft is initial.
        create object dockingleft
                    exporting repid     = repid
                              dynnr     = sy-dynnr
                              side      = dockingleft->dock_at_left
                              extension = 300.
        create object text_editor
                    exporting
                         parent     = dockingleft.
      endif.
      if p_id <> space.
        xthead-tdobject = 'ZPT_DET'.
        xthead-tdid     = 'Z001'.
        xthead-tdname = p_id.
        clear lines. refresh lines.
        call function 'READ_TEXT'
          exporting
            id                            = xthead-tdid
            language                      = sy-langu
            name                          = xthead-tdname
            object                        = xthead-tdobject
          tables
            lines                         = lines
         exceptions
           id                            = 1
           language                      = 2
           name                          = 3
           not_found                     = 4
           object                        = 5
           reference_check               = 6
           wrong_access_to_archive       = 7
           others                        = 8.
        clear textlines.
        loop at lines.
          wa_text = lines-tdline.
          append wa_text to textlines.
        endloop.
      endif.
      call method text_editor->set_text_as_r3table
         exporting
               table              = textlines
         exceptions
               others             = 1.
    start-of-selection.
      call method text_editor->get_text_as_r3table
         importing
               table              = textlines
         exceptions
               others             = 1.
    * Set SAPscript Header
      clear header.
      header-tdname =  p_id .         "Name
      header-tdobject = 'ZPT_DET'.       "Object
      header-tdid = 'Z001'.              "Id
      header-tdspras = sy-langu.
    * Move text from container to function module table
      clear  lines.  refresh lines.
      loop at textlines into wa_text .
        lines-tdline = wa_text.
        append lines .
      endloop.
      call function 'SAVE_TEXT'
           exporting
                client   = sy-mandt
                header   = header
           tables
                lines    = lines
           exceptions
                id       = 1
                language = 2
                name     = 3
                object   = 4
                others   = 5.
    Yes, this is implemented using a selection screen, but the same principals apply and this can  be easily converted to a dynpro application.
    Regards,
    Rich Heilman

  • Preflight check for invisible text?

    Hello!
    While there is an indicator for overset text in Indesign preflight, is it also possible to check for "invisible" text?
    This will give a warning if objects, e.g. a picture or colored box, are placed over text (witout text wrap).
    Have a nice day
    Maggern

    I suppose I shouldn't say that, since so many things actually are possible via scripting. I'd ask over in the ID scripting forum (InDesign Scripting). Seems like one approach might be to look for objects that fall within the geometric bounds of a text frame.

  • How can I enable spell checking for a text box that is just one line, e.g. subject in e-mail?

    In a prior version of Firefox I found a website somewhere that told me what to do to enable spell checking for text boxes that are just one line. I got used to being able to send an e-mail with a Subject Line that didn't have a misspelling. Now it doesn't work. Please tell me how I can enable that again. I am on a Mac using Firefox 6.0.2. Thanks!

    See:
    *http://kb.mozillazine.org/Spell_checking
    *http://kb.mozillazine.org/layout.spellcheckDefault
    You can set the pref <b>layout.spellcheckDefault</b> to <i>2</i> on the <b>about:config</b> page.
    To open the <i>about:config</i> page, type <b>about:config</b> in the location (address) bar and press the "<i>Enter</i>" key, just like you type the url of a website to open a website.<br />
    If you see a warning then you can confirm that you want to access that page.<br />
    *Use the Filter bar at to top of the about:config page to locate a preference more easily.
    *Preferences that have been modified show as bold (user set).
    *Preferences can be reset to the default or changed via the right-click context menu.

  • Price differece between purchase req and PO for free text purchase

    Hi there
    Has anyone found a good solution for the following problem. 
    A free text purchase requisition item is created with a value = x.  The buyer goes out to quote (not using SAP RFQ - manual) and comes back with a price change.  The buyer creates the purchase order referencing the purchase requisition, but they need to change the value to x+10. 
    The client wants to stop the purchase order been created if the value is above a certain percentage.  The standard settings in the system are for material values.  Does anyone know how to extend this to a short text item on a purchase requistion?
    Thanks
    Roz

    Hi,
    This is not possible to achieve in SAP standard functionality.
    You can do one thing, keep Price field for the PO Document type of Text Purchases as display, which will not allow user to change the price for Text POs.
    Use Release Strategy for Purchase Requisitions and keep changeability for the Release indicator as "4" and % Changeability as 10%. And ask user ro change the price in ME52N only instead of changing it in PO. If it will increase more than 10% the PR Value then system will reset the release and this PR needs to be released again.
    If it is not acceptable then you can try it with user exit "MM06E007" - Change document for requisitions upon conversion into PO

  • HT2534 Why is my debit card been checked for free download apps?

    I have tried to download &amp; update some free apps but for some reason it won't allow me without me popping in my debit/credit card details its free so why do I need to do this?

    Did you have any pending charges? If not you can change your payment method to None. Have you done this?

  • Is there any value for free storage requirements to SQL Server 2K8 R2 to run?

    Grettings
    we have a SQL Server 2K8 running on a Server that has less than 10GB of free space.
    Do we have a problem with that? what is the storage requirements to SQL keep running normal?
    Thank you in advance

    Hi LmmLopes,
    If you are talking about 10GB free space on the primary drive I think you should be able to run your SQL server without any issues.
    Please find the chart below for the Hard disk requirements.
    Hard Disk Space Requirements (32-Bit and 64-Bit)
    During installation of SQL Server 2008, Windows Installer creates temporary files on the system drive. Before you run Setup to install or upgrade SQL Server, verify that you have at least 2.0 GB of available disk space on the system drive for these files.
    This requirement applies even if you install SQL Server components to a non-default drive.
    Actual hard disk space requirements depend on your system configuration and the features that you decide to install. The following table provides disk space requirements for SQL Server 2008 components:
    Feature
    Disk space requirement
    Database Engine and data files, Replication, and Full-Text Search
    280 MB
    Analysis Services and data files
    90 MB
    Reporting Services and Report Manager
    120 MB
    Integration Services
    120 MB
    Client Components
    850 MB
    SQL Server Books Online and SQL Server Compact Books Online
    240 MB
    But if you are talking about the 10 GB on the entire server. Then you need to consider the database size and its expected growth.
    You can consider adding additional disk drive and use it to store the data files.
    Hope this answers your question.
    Regards
    Sathish  S N

  • Example for UITestControl.WaitForControlCondition Method checking for WpfText.Text value

    Hi
    I want to wait until the text value of a WpfText is a certain string. How would that be done using UITestControl.WaitForControlCondition Method when a predicate of the test function must be used and I need to reference the WpfText item I want to check
    text value of?
    Thanks
    RB_IA

    Hi RB_IA,
    AdrianHHH’s idea for that code is right, he meant that he compiled the code but he did not execute it to verify whether the code can run fine. I think that code should run.
    For the code you pasted, yes, the UITestControl parameter is not sent to IsStatusDone method through
     parameters within it directly, but the text is defined outside of IsStutusDone method and it is used in the IsStatusDone method.
    For your second doubt, Adrian used this API:
    WaitForControlCondition(Predicate<UITestControl>) which accepts a bool parameter as the specific condition instead of this API:
    WaitForCondition<T>(T, Predicate<T>).
    You can reference this code snippet which is used to
    wait till the status text of a control is “Succeeded” or “Failed”.in this blog:How
    To: Make playback wait for certain event?
    // Define the method to evaluate the condition
    private
    static
    bool IsStatusDoneOrError(UITestControl[] controls)
        WinText statusText = controls[0]
    as
    WinText;
        WinWindow errorDialog = controls[1]
    as
    WinWindow;
        return statusText.DisplayText ==
    "Succeeded" || errorDialog.Exists;
    // In test method, wait till the method evaluates to true
    UITestControl.WaitForCondition<UITestControl[]>(new
    UITestControl[] { statusText, errorDialog }, IsStatusDoneOrError);
    I am not a developer, maybe you can try to write your code like below to compare the text value of the wpf control through WpfText.DisplayText property with the expected text value:
    class ParameterisedIsStatusDone
        public
    ParameterisedIsStatusDone(string t)
    expectedtext = t;
        private
    string expectedtext;
        public
    bool IsStatusDone(UITestControl control)
    WpfText ControlTextVale = control
    as WpfText;
    return
    ControlTextVale.DisplayText ==
    expectedtext;
    ParameterisedIsStatusDone pisd =
    new ParameterisedIsStatusDone("Succeeded");
    yourControl.WaitForControlCondition(pisd.IsStatusDone);
    You also can reference Victor Zn's solution in that thread.
    Best regards,
    We are trying to better understand customer views on social support experience, so your participation in this interview project would be greatly appreciated if you have time. Thanks for helping make community forums a great place.
    Click
    HERE to participate the survey.

  • ME21N check for header text in user exit

    Hello,
    Does anyone know if/how I can see header text contents for a PO prior to its saving in ME21N? I have made my other checks prior to saving in EXIT_SAPMM06E_012, but I also want to validate the contents of the header text. This is a 46C system.
    Thanks!
    Jeff

    Hi,
    Each text in the tab is stored in the form of longtext you will have to read the texts with function module READ_TEXT. Currently not in front of the system to give you exact paramters for function module. Would suggest putting a break-point at READ_TEXT function module and then start the transaction. You will see that it will stop for reading the texts. The initial select that the text exists or not is on STXH table.
    thanks

  • Encore CS3: Freezes completly when checking for "Subtitle Text Overflow"

    Hi,
    I have a project with about 2 hours of film in several timelines. Everything has been subtitled for hearing impaired.
    My problem is that I can't "Check Project" with the "Subtitle Text Overflow" option checked. If I do so, the project freezes - and dies.
    Now, I could care less about this bug if it wasn't for the fact that Encore automatically FORCES a "Check Project" when ever you try to build a DVD.
    I have gone through every subtitle and can't find text overflow anywhere.
    Can anyone help me out? :-/
    Best regards,
    David
    System setup:
    ============
    Win XP SP2
    Intel Core 2, 2.4 GHz
    3.25 MB RAM
    GFX: Nvidia Quadro FX 1500

    Each subtitle in a script has a start and end timecode. Are you positive that none of the end timecodes collide with any of the start timecodes?
    Also, which TV format is your project? And what is the delimiter between hours minutes seconds frames of your subtitle clip (i.e., is it a colon : or semicolon ; )?

  • PO Release Procedure for free item

    Hi Guru's
      I need to setup the releae procedure for free materials in PO.
       How to achieve this - kindly guide me with the setps
    Scenario: If the Material is free of cost ( Item is checked for Free) then that PO should be released by Cost Manager.
      Gudie to achieve this scenario.
    Thanks in advance
    regards
    Anand

    Hello
    As free indicator is in item level and the PO release is at header level , there is no std way to have release statragy.
    SAP has provided a user-exit (exit_saplebnd_002, include zxm06u22)
    intended to allow customer to reset the Release Strategy on the PO
    you will have to code in the above user exit and pass say X value in 'e_cekko-usrc1' .
    and u will have to create the charecters for USRC1 and also have to set the release staratey with the value
    hope this helps

  • Dynamic Availability Check for Goods Issue,Transfer Posting

    Dear All,
    Can anyone explain the Dynamic Availability Check??
    I mean the relevance on setting this indicator for a mov.type?
    In OMCM & OMCP I have defined a Checking Rule & also assigned the same to a Mov.type as well the transaction code?
    whether the Dynamic Availability Check concept is same in case of sales ie Say I have a Stock of 100 qtys for a material in a plant & in the availability Scope of Check I have ticked the include safety stock.
    In my material master I have a safety stock of 500 qtys.
    So when I do a transfer posting for this material with Qty as 200, System should allow me do proceed as in my availability check I have enabled the safety stock option.
    But this is not happening & I am getting an error message as deficit of stock 100 nos. Also what is use of setting the dynamic availability check indicator for my mov.type as A - Warning message , B - Error Message etc..
    Kindly suggest valuable inputs.
    Thanks & Regards,

    For e.g. there is Available Stock = 1000 qty and safety stock in material master = 500 qty then system will allow you to use 1000 qty only not 1500 qty
    This is only used for availability check purpose whether system it should be considered or not?
    And following indicators means;
    A  W mess. only issued in the case of non-availability
    B  E mess. only issued in the case of non-availability
    E  Message in any case: W mess. for non-avail., otherw. S mess.
    F  Message in any case: E mess. for non-avail., otherw. S mess.
    S  Availability check only with simulation
    The above indicators indicate whether the system is to check for existing material requirements.
    Award appropriately once the thread is answered.

  • Table For Header Text Old Value

    Hi,
    Could Anyone helpme in finding the table for Header text of the PO , as We know  to find the current PO Header Text,by usinf th FM READ_text but i want to to find the header text for the po before Updated , Thanks in advance
    Regards
    Priyanka M Jain

    Hi,
    I believe that you need the text just after entering in PO during the runtime.
    just enter the text and go in the debugg mode, check for table text / textline in the global parameters and you will find the text.
    Hope this helps,
    Raj

Maybe you are looking for

  • Can I copy an image from Safari into a Keynote presentation?

    I want to copy images and charts from Safari into my presentation but my iPad won't allow me to select anything on the screen.

  • SDO_AGGR_MBR

    Folks, I am getting the following errors when I use the SDO_AGGR_MBR function on some of my tables. SELECT SDO_AGGR_MBR(c.GeoLoc) FROM fhm_towns c; ORA-06533: Subscript beyond count ORA-06512: at "MDSYS.SDO_3GL", line 760 ORA-06512: at "MDSYS.SDOAGGR

  • Differences between on chain-input & on chain-request

    Hi All, Cany any one explain the difference between on chain-input & on chain-request ( or on input & on request). Cheers... @Syam Moderator Message: Read the F1 documentation. Thread locked. Edited by: Suhas Saha on Nov 16, 2011 1:24 PM

  • SCCM 2012R2 Bits 2.0

    All, Short question. We need to deploy the SCCM (2012R2) agent to 1000+ Windows 2003 servers with BITS 2.0 installed. What is the standard way to deploy BITS 2.5 on those systems. I figured out that 2.5 cannot be pushed with WSUS and since there is n

  • [SOLVED] gcc: error: unrecognized command line option '-V'

    Hi.. this is my first post but I always read the forum to solve my problem! ;) thank you to all!!!!   sorry for my bad english in advanced... This is my problem: I have Archlinux x86_64 with Gnome (last version). I try to install the driver for my pr