Modify value in t-code VEFU

Hallo,
I need to modify "Tare mass" and "Comm./imp. code" with transaction VEFU.
It's possible?
Thanks.
Marianna

Hai Marianna,
Could you please explain your requirement more??
Regards,
Mani

Similar Messages

  • Display a value from PLSQL code to screen

    How to display a value from PLSQL code to screen without loading or refreshing the page?
    im using ajax to call the javascript to run the PLSQL code. i desire to view some value in the screen when i run the PLSQL code
    skud.

    anything that you print from the PLSQL code(using htp.p, htp.prn etc) with will available in Javascript as the server response. You can parse that string it in javascript and display it on screen or modify page items or create dynamic items/elements using those values.
    A minimal example
    Ondemand PLSQL process : TEST_PROCESS
    begin
      htp.prn('hello world');
    end;Javascript Code
    var ajaxRequest = new htmldb_Get(null,&APP_ID.,'APPLICATION_PROCESS=TEST_PROCESS',0);
    ajaxResult = ajaxRequest.get();
    alert(ajaxResult);Will display an alert message "hello world"
    You can construct the string in JSON/XML format in PLSQL to pass complex data structures(or multiple values) or even HTML code, then do the required processing in Javascript, for example extract out item values from it and set items, convert the JSON array to a select list item in the page or put the HTML code with a div element in the page.

  • Get the modified value from MessageTextInput

    Hi OAF Guys,
    I am displaying a value in MessageTextInput using dynamic VO. I am trying to modify this value thruough UI, but when i get the value in the code, it is giving the old value. How can i get the modified one?
    Thanks & Regards
    Thanks&Regards
    U.Palakondaiah.

    You are welcome.
    When you post the OAF page, this is what happens:
    1)Calls processFormData, this posts the form fields to the VO and in turn to the EO
    2)then Calls, processFormRequest
    So, you need to call pageContext.getParameter in your processFormRequest to get the value for messageTextInput.
    Try this and let me know if you still run into issues.
    Hope this helps
    Srini

  • Set the default field value to transaction code field, when calling from WD

    Hi all,
    Can we pass the value in a input field of a standard transaction calling from WD application. Suppose we are calling a transaction VA03 in an external window, then how will be pass the value in the VBAK_VBELN screen field.
    Is there any way to pass the value to this transaction field. I have also tried out to set the parameter ID 'AUN' for VA03 transaction VBELN field. But it did not work for me.
    Is there any way to set the default field value to transaction code field, when calling from WD?
    Please suggest, if anyone have any idea.
    Thanks
    Sanket

    Hi,
    I am using the below code to open a standard transaction. It will help you to explain my point more easily.
    DATA: url TYPE string,
              host TYPE string,
              port TYPE string.
    *Call below method to get host and port
      cl_http_server=>if_http_server~get_location(
         IMPORTING host = host
                port = port ).
    *create URL
      CONCATENATE 'http'
      '://' host ':' port
      '/sap/bc/gui/sap/its/webgui/?sap-client=&~transaction=' 'VA03'
       INTO url.
    *get the window manager as we are opening t code in external window.
      DATA lo_window_manager TYPE REF TO if_wd_window_manager.
      DATA lo_api_component TYPE REF TO if_wd_component.
      DATA lo_window TYPE REF TO if_wd_window.
      lo_api_component = wd_comp_controller->wd_get_api( ).
      lo_window_manager = lo_api_component->get_window_manager( ).
    call the url which we created above
      lo_window_manager->create_external_window(
      EXPORTING
      url = url
      RECEIVING
      window = lo_window ).
      lo_window->open( ).
    Note*
    One more query I want to add to this thread, that is there any possibility to call a custom transaction as well?

  • Set value of project code to Reciept from production matrix.

    Hello Friends,
    I want to set value of project code to Reciept from production matrix after selecting Production order number.I have taken project code field in Production order header.That project code value i have to set  in Reciept from production. I got the Project code no by query but I cant set it to Reciept from production  Matrix project column.
    RS.DoQuery("Select U_PrjCode from OWOR where DocEntry='1')
    str = RS.Fields.Item("U_PrjCode").Value
    oMatrix.Columns.Item("21").Cells.Item(1).Specific.value = str
    this code give me an error
    "Item-Cant set value on item because the item cant get focus"
    Plz give me solution for this..
    Thanks & Regards,
       Swati

    Hello Swati,
    The cell should be foucsed before setting value for it. try this:
    RS.DoQuery("Select U_PrjCode from OWOR where DocEntry='1')
    str = RS.Fields.Item("U_PrjCode").Value
    oMatrix.Columns.Item("21").Cells.Item(1).Click()
    oMatrix.Columns.Item("21").Cells.Item(1).Specific.value = str
    Kind Regards
    -Yatsea

  • How to write a Web service Handler without modifying the Web service code

    Hi,
    How can I write a SOAPHandler without modifying the Web service code. I want to add a generic handler which will take care of SOAPHeader for all the webmethods. To add a handler is it necessary to modify the web service code?

    You will find answer in [implementing_handlers_using_jaxws_2|http://blogs.sun.com/sdimilla/entry/implementing_handlers_using_jaxws_2]

  • How to read Filter selection variable values into ABAP code

    HI IP Gurus,
    Requierement: In my filter characterstics, i have assigned variables, which use will enter when running th e planning sequence.
    so  variable values entered by user , i would like to get those values into ABAP code and pass them to some function module.
    SO please give me step by step detail how to achive this.
    MY understanding use the below method . but not sure how to proceed.Please let me know abap code to get values.
    GET_TAB_PARAM_DATA_SEL and GET_PARAM_DATA_SEL.
    Please help me.
    Thanks in advance.Will Assign points
    Sania

    Hi Srinivas,
    So In RSPLF1 , in paramters tab, Do i have create structure(str1) and then create component Data selection (Dtsel1) under str1(what setting i have to do here, where should i enter variable value and do i need to give info object name and how do it in code.i tried to following example, not able to get any values in tab_sel .
    It will be great, if you could explain in detail.
    other thing i found out is in Initialization method i can read i_t_data_charsel table values , where it contains filter slected values.but could not pass  these values to execute method
    Is there is any way that i can pass values from init method to execute method.
    A tabular structured parameter with name "MY_TABSTRUC" is defined for the function type. "MY_TABSTRUC" consists of the two parameter components "MY_ELEM" and "MY_DATASEL". You access the parameter values as follows:
    DATA: TAB_PARAM_STRUC TYPE RSPLFA_T_PARAM_STRUC,
           REF_PARAM_STRUC    TYPE REF TO IF_RSPLFA_PARAM_STRUC,
          REF_PARAM_ELEM     TYPE REF TO IF_RSPLFA_PARAM_ELEM,
          REF_PARAM_DATASEL  TYPE REF TO IF_RSPLFA_PARAM_DATESEL,
           L_VAL(20)          TYPE C,
           TAB_SEL            TYPE RSPLF_T_CHARSEL.
    get table of parameter MY_TABSTRUC:
      TAB_PARAM_STRUC = I_R_PARAM_SET->GET_TAB_PARAM_STRUC( 'MY_TABSTRUC' ).
    process all lines:
      LOOP AT TAB_PARAM_STRUC into REF_PARAM_STRUC.
      get component MY_ELEM:
        REF_PARAM_ELEM = REF_PARAM_STRUC->GET_COMP_ELEM( 'MY_ELEM' ).
      get internal value of MY_ELEM:
        REF_PARAM_ELEM->GET_VALUE( IMPORTING E_VALUE = L_VAL ).
      get component MY_DATASEL:
        REF_PARAM_DATASEL = REF_PARAM_STRUC->GET_COMP_DATA_SEL( 'MY_DATASEL' ).
      get data selection table of MY_DATASEL:
        TAB_SEL = REF_PARAM_DATASEL->GET_T_SEL( ).
      ENDLOOP.
    Thanks in Advance..please help me

  • Why is OK disabled in the debugger's Modify Value dialog?

    Hi,
    For some reason OK disabled in the debugger's Modify Value dialog. Nothing that I have seen so far explains why this would happen. The variable stores an oracle.jbo.domain.Date, and the ADF source library was imported into the project.
    Ideas?
    James

    Hi Timo,
    You mentioned "tore" twice in your post, but I do know what that is. So, are you saying that if int or String was the type it would behave differently?
    James

  • Values of return code when using dba_audit_session

    Is there anywhere I can look up the possible values for return code when using dba_audit_session?
    I am generating a report over the data and have so far only been able to provide the returncode and whether the username exists (ie username or "other" error)
    Thanks
    (using 9i)

    So far I have fathomed out:
    Return code: 0 everything OK
    Return code: 1017 wrong username or password
    Return code: 28000 locked account
    Return code: 28001 expired account

  • Updation of order value in T code FD33

    Hi,
    I am facing a problem of incorrect updation of order value in T code FD33 (Customer credit management-Display). When I analyzed the individual data, I could find that the value of particular Sales document type (ZCAL) is not getting updated in FD33-->Order value(Status View), whereas it is getting updated correctly in VKM4 transaction. Could anyone help me out in resolving this.
    Please let me know if i am not clear enough.
    Thanks in advance
    Suresh

    Hello Suresh,
    there are several customizing settings. The sales order item updates the FD33 only, if the item category (used in the order) is set as the credit relevant (transaction VOV7), the item is relavantfor the billing and the system is able to determine the credit price for the item (transaction V/08). The item should have have the confirmed quantities (on the schedule line level - vbep-bmeng) - so the whole sales order should be credit approved. You can also check the  note 18613. Thank you.
    Best regards,
    Lela

  • Global Value in PLSQL Code

    How to take value of Total Compenations- >Basic -> Global Value in PLSQL Code.
    Thanks

    The Global values are stored in the table FF_GLOBALS_F, write a cursor in plsql to get the value from this table.
    Regards,
    Senthil

  • POSDM - filter value for category code determination

    Hi Guru's
    Pl advice on significance of setting the filter value for Category Code Determination in POSDM config under /posdw/img -> general settings.
    If my inbound tlog contains all the relevant POS transaction type codes , which have been defined in config then probably :
    - I do not need to give any filter value for Category Code Determination
    - I do not need to maintain any definition and assignment entries under posdw/img -> Integration with Other SAP Components -> SAP POS -> Definition of Values for Category Code Criteria AND Assignment of Category Code Criteria to PIPE Category Codes
    Please advice.....
    thanks!!

    Hi,
    Select new entries and give 2 digit numeric value in sequence in tax field. it is taking only numeric values.
    It might be helps to u.
    Regards
    Sasikanth.Ch

  • How system picks value from Tax Code

    Dear Experts,
    I have one scenario,
    In our pricing procedure there are tax condition types for which there are no condition records maintained. But the values are maintained in Tax Code.
    My doubt is, do we have to add these tax condition types in pricing procedure as they are already in Tax Code ?? Because I observed few condition types are not there in pricing procedure but the same are in Tax Code.
    Second, how the system comes to know that there is no condition record and the value is in Tax code. How does it determine and pick the value from Tax code.
    Thanks in advance
    Sagar

    Sagar,
    Let me try to clear your confusion :
    For Total determination of pricing we have two things
    Pricing Procedure and Tax Procedure.
    Pricing Procedure tell system about the what and how the price to calculated for material in Sale Order.
    In this pricing procedure the conditions JIN1 JIN2 etc ares pertaining to tax applicable on the Sale order Price.
    These conditions display the tax.
    Now the tax is calculated based on tax procedure.
    And a Tax procedure acts as a master and there is one tax procedure for one country.
    for that particular tax procedure there are tax codes defined.
    These Tax codes allows the using the same tax procedure but changing value of various conditions and removing which we dont require.
    Lets take an example : AS TAXINN is tax procedure for India. Based in this procedure many tax codes are defined for 12% vat, 6% vat , no vat etc.
    So what kind of tax will be applicable on the Sale order is governed by tax code which is mentioned in customer master.
    Based on this tax code taxes are calculated on Sales order net value and then the tax amount is displayed in pricing procedure
    You assign the tax condition types to Pricing procedure so that it will display the taxes in the sales order.
    I hope it will clear some of your doubts. Please let me know if you need further assistance.
    Thanks,
    Raja

  • How and where to define Char Value for Industry code for the customer

    Hi All,
    How to define and where to derfine Characteristic value for Industry code (KNA1-BRAN1) field
    for a Customer.
    As while PGI I am getting error message that Characteristic value for Industry code 00008
    does not exist.
    Rishi

    Solved

  • Modify Values Document Category List

    Hi All,
    Can you please explain how to modify values or add new ones to the Document Category list, that belongs to the manage contract documents Actions?
    I am working on OM > Blanket Sales Agreement >
    Thanks for your help
    Deneb

    What exactly do you need, just a list of categories applied on a document or something more? Here is a basic AttributeRequest for getting category info from document:
            AttributeRequest[] catAR = new AttributeRequest[]
              new AttributeRequest(Attributes.CATEGORIES, new AttributeRequest[]{
                new AttributeRequest(Attributes.CATEGORY_CLASS_OBJECT, new AttributeRequest[]{
                  new AttributeRequest(Attributes.DISPLAY_NAME, null)
                new AttributeRequest(Attributes.CUSTOM_ALL, null)
        Item file = fm.resolvePath(filePath, catAR);
        NamedValue[] categories = file.getRequestedAttributes();
        Item[] categoryInstances = (Item[])categories[0].getValue(); //index [0] is for Attributes.CATEGORIESthen you cycle through categoryInstances to get each category's display name.... Hope this helps, if you have any other questions - ask and I will try to give you the answer!
    Pedja

Maybe you are looking for

  • Opening pdf with android reader

    help! i have a new samsung galaxy 10.1 tab. i downloaded adobe reader app from google play store  i cannot open pdf documents created with windows 8  does anyone have a solution? when i attempt to open a pdf it says 'error cannot open document'

  • Give me some examples for functions for read POST, write POST, modify POST

    Give me some examples for functions for read POST, write POST, modify POST, create and delete theme in forum. This functions have to be make like Remote Methods

  • MacBook Pro "Not Charging"

    Please help me out with this one... I have a MacBook Pro 15" that I purchased just over a year ago. This last week I noticed that the battery icon (top/right of screen) read "Not Charging". The indicator light on the charger is a faint green. I purch

  • Multiple JMenuItems with same text

    I have a menu bar with several menus each of which has a JMenuItem with the same string. ex. Track Run get config file get config file How do I know which JMenue Item was selected in my event handler. Is this a no no. Should I have: ex. Track Run get

  • Transfer Adobe Reader settings to another PC

    I don't like the default way in which Adobe Reader gets setup (particularly which buttons get shown on the toolbar) So every time I install it on a new PC I have to spend some time setting it up as I like it. Is it possible to transfer or sync Adobe