Access to MWSKZ field in F-59 transaction

Hello, sirs and madams.
I've got a problem. There's a necessity to fill in a tax code in transaction F-59 (Payment Request), but the screen-field BSEG-MWSKZ is locked for input. I've tried via OB32 specify that field BSEG-MWSKZ should always be available for input, but it resulted in nothing. Also I've looked through the rules of changing for positions of FI documents for groups of fields (fields' statuses), but haven't found even a sign of the field 'Tax Code' there.
Can you please be of any assistance to me? Thanks in advance.
Tony.

Hi
Anton,
first of all, thanks for your answer.
Can we also ask you more details what you have realized?
We have asked Sap about this issue, and the answer was the advise not to change the
current behavior as this would be a change to the std system.
As already mentioned, our goal is to avoid manage a Vat code when doing the actual
payment (F110).
Thanks again for your help
Gigi

Similar Messages

  • How to restrict AS02 access to certain fields only

    How to restrict AS02 (Asset Master Record) access to certain fields only. Currently when you assigned AS02 to a certain user, this will enable the user to change all the fields in the asset master record. Suppose i want only the user to restrict the access to certain field eg.NDJAR (Life in Yrs).
    Thanks for your inputs.
    Regards,
    Robert

    hello,
    basis has to assign the proper activity with object A_S_ANLKL. in this case they have to allow activity 03 only with combination of Cocode,asset class. see some more details below.
    This authorization object is the first part of the object "asset master record."
    The definition at this level determines whether the user is authorized to process data in a given company code. The activity type for the transaction is also defined here. This authorization object is used for master data transactions, for the display of value fields, and for reporting.
    Defined Fields
    The following fields are assigned to the authorization object
    Asset class (specified by entering a value in the pop-up window)
    Company code (specified by entering a value in the pop-up window)
    Activity type - there are three different activity types:
    01 = Create
    02 = Change (including blocking and deleting)
    03 = Display

  • Adding field in standard SAP transaction output results.

    Hi,
    I have to add a new field in standard SAP transaction output results.
    Can any one tell me what are the ways (brief explanation) that I can do this?
    If using exists - then what kind of exists I have to use? And how to find out the possibility with user exists?
    Thanks for your time.
    Thanks.
    Chris.

    Hi,
        There are so many ways to find out the user exits.
    Hi,
    To see SAP Exits -> Use Tcode SMOD
    To See create a project for Customer Exits -> Use Tcode CMOD
    There are projects to which Exits are assigned. Selects the relevant projects.
    What is User Exit:
    http://www.sap-img.com/abap/what-is-user-exits.htm
    How to find then:
    http://www.sap-img.com/abap/a-short-tutorial-on-user-exits.htm
    All Exits List:
    http://www.easymarketplace.de/userexit.php
    Do a search on SAP Exits, Customer Exits, enhancements, etc
    Step 1 :- Execute transaction
    step 2 :- Click on Status Menu
    step 3 :- Double click on the program (screen) __?????___
    Step 4 :- Search source code for the 'Customer-Function' string using the find button. Remember to select 'In main program'.
    Step 5 :- A list of search results should be displayed indicating where all function exits can be found.
    You can now double click on each of them to go to its position in the source code. This also
    allows for the insertion of breakpoints so that you can test if the exits are called in the
    appropriate place.
    Step 6 :-Once you have found the Function Exit within the source code (Find Function Exit) you need to
    access the actual function module it executes. This is done using the following steps:
    Step 6.1 :-
    Step 1
    Locate desired 'Call Customer-function' statement within source code.
    Step 2
    If code is not within main program (module pool) e.g. SAP* then you will need to find this
    out by selecting 'Main Program' from the 'GOTO' menu. The Main program for transaction
    Step 3
    The actual function module name can now be calculated based on the information retrieved,
    it is defined by the following format:
    EXIT_<Program name>_<Exit number>
    eg :- 'EXIT_SAPLMR1M_004'.
    Step 7.1:-
    Once you have found the Exit function module
    Step 1
    Execute transaction CMOD
    Step 2
    Select 'SAP Enhancements' from the 'Utilities' menu.
    Step 3
    Select 'All selections' from the 'Edit' menu.
    Step 4
    Now populate the Component name field with the exit function module and press
    the execute button.
    Step 5
    A list of all Exits(Enhancements) containing that function module should now be displayed.
    Step 5
    You can now double click on the desired exit to display a detailed description of its uses and a list of all
    components contained in it.
    Implementing Function Exit
    This is required in-order to activate Function exit:
    Step 1
    The first step is to enter source code into function module in the usual way i.e. via SE37.
    There will already be an include declaration within the code with the following
    format: Include zx*.
    Double click on this to create it, source code can then be entered within here.
    Although it is good practice to create another include with this to store your
    code, this allows separation of difference enhancements allowing them to be easlity
    removed without de-activating the enhancement.
    Step 2
    Execute transaction CMOD and create new Enhancement. Enter name and press the create
    Button.
    Step 3
    The following screen should be displayed, enter short text then click on the 'Enhancement
    Step 4
    Now enter the Exit name (enhancement) which contains the desired Function Exit.
    Step 5
    Return to initial screen of CMOD and press the activate icon. The exit is now ready for use.
    Please Mark The Helfull Answers & close the thread.
    regards
    dj
    reward for all useful answers.

  • Access Custom Attributes in JavaScript and in Transactions

    Hello,
    I try to work with custom attributes. I've problems accessing the values in JavaScript and in transactions, but it works fine within .irpt pages.
    What's the trick?
    For a custom attribute called PLANT, can I write something like this in JavaScript?
    var p = ;
    Is there a way to access custom attributes in the Link Editor of an Action Block?
    Kind Regards,
    Matthias

    Hi Matthias,
    it is not possible to integrate that kind of MII variables in JavaScript like you discribed before.
    You are right that this kind of expression is possible in the .irpt file. The reason why it is working in the .irpt
    but not in the .js is, that the MII script parser is only replacing in HTML content. Everywhere you have
    scripting the parser will not replace the {...} markings (since the curly brackets also show start/end of functions aso.).
    Variables to JavaScript
    The easiest Way to get those variables is to create hidden fields in the .irpt file that you can access via JavaScript.
    For example:
    <input type="hidden" id="hidden_plant" value="{PLANT}" />
    This will be parsed to (e.g.)
    <input type="hidden" id="hidden_plant" value="Karlsruhe/DE" />
    Now you can access this value in JavaScript via:
    document.getElementById( "hidden_plant" ).value;
    Variables to Transactions
    To parse custom variables to a transaction you first have to specify corresponding transaction variables in the
    transaction itself. After saving the transaction you can map those variables to Parameters in the Xacute-Query-Editor.
    Including this transaction to your webpage you can simply assign the required value to the corresponding parameter.
    For example if you mapped the Plant variable of the transaction to Param.1 you can specify the information in the .irpt
    like:
    <applet id="trx_test" ....>
      <... />
      <param name="Param.1" value="{PLANT}" />
    </applet>
    Another possibility is to set the value dynamically via JavaScript if you use:
    document.getElementById( "trx_test" ).getQueryObject().setParam( 1, "Karlsruhe/DE" );
    Native access to user variables via the BLE is not possible (as far as I know).
    I hope this is what you wanted to hear?
    Best Regards
    Sebastian
    Edited by: Sebastian Holzschuh on Jun 10, 2008 12:16 PM

  • Run Time Error - You attempted to access an unassigned field s

    Dear All
    I created a report to display purchase order history. there is no syntax error.but runtime which i have pasted below.
    help me to find the error.
    Runtime Errors         GETWA_NOT_ASSIGNED
    Date and Time          26.02.2008 06:25:56
    Short text
         Field symbol has not yet been assigned.
    Error analysis
         You attempted to access an unassigned field s
         (data segment 32820).
         This error may occur if
         - You address a typed field symbol before it
           ASSIGN
         - You address a field symbol that pointed to
           internal table that was deleted
         - You address a field symbol that was previou
           UNASSIGN or that pointed to a local field t
           longer exists
         - You address a global function interface, al
           respective function module is not active -
           not in the list of active calls. The list o
           can be taken from this short dump.
    Trigger Location of Runtime Error
        Program                                 SAPLSLVC
        Include                                 LSLVCF36
        Row                                     3.176
        Module type                             (FORM)
        Module Name                             FILL_DATA_TABLE
    Source Code Extract
    Line  SourceCde
    3146                               alv_style_align_center_top.
    3147         endif.
    3148
    3149         append ls_lvc_data to ct_lvc_data.
    3150       endif.
    3151
    3152 ************************************
    3153 * Column per Fieldcat Entry
    3154 ************************************
    3155       loop at it_fcat_local assigning <ls_fcat>.
    3156         clear: ls_lvc_data-href_hndl,
    3157                ls_lvc_data-drdn_hndl,
    3157                ls_lvc_data-drdn_hndl,
    3158                ls_lvc_data-style,
    3159                ls_lvc_data-style2,
    3160                ls_lvc_data-style3,
    3161                ls_lvc_data-style4,
    3162                ls_lvc_data-maxlen.
    3163
    3164         clear: lt_color_lvc, lt_color_slis.
    3165
    3166         add 1 to ls_lvc_data-col_pos.
    3167
    3168         if not <ls_fcat>-indx_field is initial.
    3169           assign component <ls_fcat>-indx_field
    3170                            of structure <ls_data> to <l_field_value>.
    3171         else.
    3172           assign component <ls_fcat>-fieldname
    3173                            of structure <ls_data> to <l_field_value>.
    3174         endif.
    3175
    >>>>         macro_cell_data_get
    3177           <ls_fcat>
    3178           <ls_data>
    3179           <l_field_value>
    3180           ls_lvc_data-value.
    3181
    3182 *>>> new API
    3183         if ir_salv_adapter is bound.
    3184           clear ls_lvc_data-style.
    3185
    3186 * color
    3187           if g_gui_type ne 1.
    3188             if <ls_fcat>-key eq abap_true.
    3189               ls_lvc_data-style = alv_style_color_int_key.
    3190             elseif l_style_color is initial
    3191                   and ( <ls_fcat>-emphasize is initial or
    3192                         <ls_fcat>-emphasize = '$' ).
    3193               if <ls_stin>-counter is initial.
    3194                 ls_lvc_data-style = alv_style_color_normal.
    3195               else.

    Hi
    You are getting the dump because you have not populated the field catalog properly.  There will be some mistake in the structure which you are using.  Kindly check the same.
    THanks
    Vijay
    <REMOVED BY MODERATOR>
    Edited by: Alvaro Tejada Galindo on Feb 26, 2008 12:41 PM

  • Access HTML hidden field value in JSP

    Hi,
    I have a JSP and need to access the hidden fields on that HTML page,
    i.e. in HTML i have a hidden tag
    <form name="login">
    <input type="hidden" name="language" value="en">
    </form>
    in my jsp i want to read the value of hidden field language
    how can i do it???

    You read it as any other field :
    String lng=request.getParameter("language");
    The string lng will contain the value "en"
    regards

  • FM for CUSTOM FIELDS added in BP transaction

    Hi all,
      We have added few custom fields in the BP transaction.
      Now the thing is we need to update those using Function module.
      Could any one please help me like in which Function Module can i found those
      fields once i add in the BP transaction?
    Thanks and Regards,
    Gopinath A

    Hi Gopi,
    Have you used EEW to add these fields?
    There should be a function module(s) generated for this new fields which you can use to update this fields?  Probably something  like
    'BUPA_CENTRAL_CI_CHANGE'
    Hope this helps.
    Surendar

  • Text Field is Blank in Transaction F-28

    Hi Experts,
    There is a requirement to add to the current layout the text field in F-28 transaction code. However, when I add them as an administrator, The text field is blank. We already maintained the text field in both Accounting Document Line item and in the Invoice but still the text field is blank. Where can we find the value of text field in the documents shown in F-28. Are there any configuration to do this?

    Ok. Currently they had this problem on tagging which Invoices to be considered for payment clearance in tcode F-28. Their current process is every Ship-To-Party, they also equate it as one project code with the location of the project information,etc. They are using this ever since the first implementation. So in their process, they go to FBL5N to check those invoices created before going to F-28. In FBL5N, I incorporated the text field there (filled by user-exit display) which also came from the accounting document. But it's not correct since they are using the ship-to-party value in F-28.
    So we tested by manual input directly the Ship-To-Party Code to Acc Doc Line Item Text Field. It went to FBL5N, as showing the value there but in F-28 it is not showing.
    Do you have any solution for this? Since during payment in F-28, I think these entries are already Acc Doc Entries and Ship-To-Party is not reflected here but Payer only (coming from the invoice).

  • How to add a search help to a field  Bank Type in Transaction FK02

    Dear All,
         How to add a search help to a field  Bank Type in Transaction FK02.
         Is there any possibilty of using  exit or searc help or domain to solve this problem.
            Thanks in Advance..
    Thanks,
    Lakhsmi.

    Hi, Tamas,
    I found the reason. The function Z_WEBRFC_READ_DATA_SH had a string concatenation error.
    CONCATENATE '{"results":[{"key": "shlpname", "value": "' l_shlp '"},"key": "fieldname", "value": "' l_field '"}]}' INTO htmldoc-line.
    The correct code is like:
    CONCATENATE '{"results":[{"key": "shlpname", "value": "' l_shlp '"},{"key": "fieldname", "value": "' l_field '"}]}' INTO htmldoc-line.
    Another question is, I can't get any words in Chinese from WebRFC. It returns error when I try it. How can I configure it?
    Xin

  • Display Technical Field Names within a Transaction Screen

    Hi All,
    Someone once showed me how to do this and for the life of me I cannot figure out how to do it in ECC 6.0.
    I would like to display the technical field names of all fields in a transaction.  It is important to note that I am not looking for the <b>F1...Technical Details</b> solution.  I am well aware that the technical field name can be retrieved by this method.  I am really looking to see all the technical names of the fields in a particular transaction without a lot of clicking and searching.
    When I saw this before you could quickly change from technical field names to short field names and vise versa. 
    I know this could also be accomplished in SE11 or SE16 - but that is not exactly what I am looking for.
    Can anyone help??

    Hi Christopher,
    you know that Rollin Stones thing?
    You can't always get what you want.
    There is no such functionality for standard transactions.
    Regards,
    Clemens

  • How to disable a field in a standard transaction

    Good day,
    Can any one tell me , with an example of , how to disable (the field should not allow any input ) a parameter  or a select option in a standard transaction.

    Probably the only way to achieve this is by creating transaction variants:
    In the SAP Reference IMG, you can create transaction variants. Choose Basis Components ® Application Personalization ® Tailoring of Application Transactions ® Configure Transaction-Related Display Values for Fields (Transaction SHD0). Transaction variants allow you to preset values for fields in a transaction, set field attributes, or hide entire screens.
    To execute a transaction variant, you define a variant transaction using the Transaction Maintenance transaction (SE93).
    Once you have entered a transaction code and short description, choose transaction type Transaction with variant (Variant transaction).
    To define a variant, enter the name of the transaction and the name of the variant. You can then use the new transaction code to start the special variant of the transaction.
    Steps :-
    Transaction SHD0 - Create a variant for the required transaction bychanging the layout through hiding fields and screens.
    Transaction SE93 - Create a variant transaction (e.g. for VA02 you canname it as ZA02). Next allocate the transaction variant to this varianttransaction.

  • URGENT!Can I user a THIN jdbc driver to access a CLOB field from oracle 8.0.5 DB?

    URGENT!Can I user a THIN jdbc driver to access a CLOB field from oracle 8.0.5 DB?

    I think you'd need to contact Oracle support to get access to older versions of the driver.
    Since 8.0.5 isn't supported any longer, however, is it possible for you to update your Oracle client to one of the supported releases-- 8.1.7 or 9i?
    Justin

  • Where can i find Main work center field value in il03 transaction ??

    Hi experts,
    Where can i find <b>Main work center</b> field value in il03 transaction.
    Iam looking for the table from where that value will be filled.
    thanks
    Suresh

    Hi anji reddy,
    No that filed is not avaiable in that . can please tell some other soulution ...
    ASAP...
    thanks,
    Suresh

  • How to pass variable value to field of standard sap transaction.

    Hi Experts,
       i want to pass the value of variable to field of standard sap transaction. but that field is not having the parameter ID. so please tell me how i pass the value to field.
    thanks in advance.

    You might like to provide a few more details of which field and transaction you are trying to interact with... typical solutions involve user exits / BAdIs / Enhancements, or transaction variants, or building a BDC to part fill the screens of the Tcode you are calling.
    Jonathan

  • Changing the text of Text field in standard SAP transaction.

    Hi expert,
    I have a requirement in which i have to change the text of Text field in standard SAP transaction.
    Is it possible? If so, how?
    Any pointers will be highly appreciated.

    Hi,
    I think you want to change the field label of the text field.
    For ex in tcode MM01, you can change the field label of Material text field.
    The description of the field label comes from the data element it is associated with. To change the text of the field label, you have to change the field label of the data element.
    But it will effect all the fields associated with this data element.
    To change the field label of the data element go to tcode CMOD. Then click on GOTO->TEXT ELEMENTS->KEYWORDS->CHANGE.
    Then enter the data element which is to be changed. In the next screen, change the field label and save it.
    Regards,
    Vinod

Maybe you are looking for

  • To change music folder, do I have to let Itunes do the copying?

    I copied my iTunes Music folder (just using the Windows copy function) from my desktop computer to my (new) HP server in a different room. Now I want iTunes to pull music from the server. Do I have to let iTunes copy the files in order to do this? I

  • In rtorrent is there a maximum torrent size?

    So I'm trying to add a torrent to rtorrent, and it say "Reading torrent file failed:" followed by the name of the torrent I selected.  I made sure things like permissions and whatnot are set correctly. Now, the thing is this is a *very* big torrent. 

  • Firefox 14 doesn't work on Samsung Galaxy S2 with Android 4.0.3

    After Firefox update to version 14, it doesn't open any site from awesome bar and only once from thumbnail from home page. My config is Android 4.0.3 Samsung Galaxy S2 and Firefox14. Anyone faced similar issue?

  • Help on JTree

    How to drag the node from the Tree which is developed to the panel attached to it.

  • [unsolved]setting up wireless

    I don't think I installed the proper programs for wireless during the installation. Maybe, I should go back and re-install Arch and this time put in the correct packages. What boxes should I check, this next time, please? Last edited by vegan (2012-0