Regarding amount discription field

Hi Experts,
I created sap script for payment print prog and for that i use standard prog RFFOUS_C. in my sap script amount fied REGUP-DMBTR.... i use for sap script total three tables REGUP, REGUD, REGUH
<b>my form design is</b>
amount discription        amount
xyz                            1000
amount is words
one thousnad only
Now what i want i have amount field REGUP-DMBTR but for amount discription which field i use??? i find but i didn`t get......
so how can i find amout discription(particulars) field

Hi Naimesh and Anij,
I dont want to amt in words function...... i want <b>amt discription</b> field like
<b>amt discription</b>    amt
so which table i use for amt discription field  in my sap script.. i create my own sap script for payment print prog and i use standard prog "RFFOUS_C" for that same.
Jigar

Similar Messages

  • Alaska SUI Report - Amount remitted field

    Hi Experts,
    Are there any tables referenced by Tax Reporter to get the Tax Remittance details for employees.  For AK there is a field in SUI form " Amount remitted" . If we Remit the SUI through 3PR functionality, would tax reporter show the amount remitted there?
    If yes what table it is reading for that?
    Points guaranteed

    Has anybody tried to bring the 3rd party remittance amount to display in the amount remitted field in Tax Form?  Please let me know. I am working on a similar  requirement

  • Personalizaed Amount Number field Not showing in proper order

    Hi,
    I have personalized the table RN where I have added a Column of Amount field.
    Now when I view the Region the amount filed appears as Right aligned
    Ex : 182699 right aligned
    but it should be : 182699 left aligned
    properties I set for that filed are
    ID : Amount
    Datatype : NUMBER
    prompt : Amount
    View Instance : OppAmountVO1
    View attribute : Amount
    And one more thing is that the personalized items are not affeted by the system profile values.
    like Standard amount filed displays 182699.00
    but personalized item display 182699 with out the decimals what might be the reason.
    How to over come this kind of issues
    Regards,
    Krishna

    If you want to make it left aligned then change the Data type of the item to VARCHAR and you will be able to see the number in right align format.
    Thanks
    --Anil                                                                                                                                                                                                                                                                                                                                       

  • Regarding Editable Quantity field in ALV Grid

    Hi Experts,
    I need your advice in this 2 scenarios.
    1.I have a scenario where quantity field in output is editable and the user wants the quantity field printed without thousand separator. If i take a char field and display the field is editable then user may mistakenly type a,bcd...z/ special characters which it should not capture. Is there any char data type data element which accepts only integers. Because after that i need to save that value in z database table quantity field.
    2. when there i raised an error message after validation of that editable field in alv output(by events), the user wants all other rows in that grid as uneditable except the row which has got error till this error is solved. Is this possible. If yes how.
    Please share your valuable suggestions.

    Hi abilash n      
    as in dictionary, all quantity fields should have a reference to the unit field which then defines the number of decimals.
    The rest is done automatically as long as you do it standard way. In field catalog you have to set the fcat-qfieldname to the name of the field that has the unit.
    If you do so, also totals will be grouped by unit.
    SAP has really done a great thing by inventing  units for quantities (and currency keys for currency amounts). Only developers do not understand and thus refuse to use it.
    Regards,
    Clemens

  • Regarding Amount in words

    Hai Experts ,
    my requirement is to convert the currency field value in words for that i am using the FM 'SPELL_AMOUNT'
    but that FM didnt display the value in words after decimal point.
    for example if the value s 100.50 i need to display it in words as hundred rupees fifty paise but the FM
    'SPELL_AMOUNT'  displayed the output as hundred rupees only
    is there any FM available for converting the value in words including decimal point?
    With Regards,
    R.dhineshraj.

    Hi, Raj
    Above FM will not Sport more than two digits after decimal point if you have the requirement like this than please use the following way,
    DATA: amount TYPE p DECIMALS 3 VALUE '100.504',
          c_amount TYPE string,
          part_1st TYPE string,
          part_2nd TYPE string,
          in_words TYPE spell,
          amt_in_words(1000).
    c_amount = amount.
    SPLIT c_amount at '.' into part_1st part_2nd.
    CALL FUNCTION 'SPELL_AMOUNT'
    EXPORTING
       amount          = part_1st
    IMPORTING
       in_words        = in_words.
    part_1st = in_words-word.
    clear: in_words.
    CALL FUNCTION 'SPELL_AMOUNT'
    EXPORTING
       amount          = part_2nd
    IMPORTING
       in_words        = in_words.
    part_2nd = in_words-word.
    CONCATENATE part_1st 'unit1' part_2nd 'unit2' into amt_in_words SEPARATED BY space.
    WRITE: / amt_in_words.
    Kind Regards,
    Faisal

  • Regarding Selection-Screen Field Display

    Hi All,
    I have issues with Selection-Screen field display.
    The Actual issue is i had declared a selection screen field as: <b>s_exgen FOR embk-exgen</b>.
    <b>EMBK-EXGEN</b> is actually <b>20</b> Char length field.
    But in output display it is being shown as <b>18</b> Char field though i can type in all <b>20</b> characters.
    But <b>display</b> restricted to <b>18</b> Characters only.
    Can anybody give me the solution for the same!
    Thanks in advance.
    Thanks & Regards,
    Prasad.

    Hi,
    You can decrease the visible length of the field but you can not increase more than database field length. check SAP help on this :
    select-options: s_exgen FOR embk-exgen VISIBLE LENGTH 5.
    ... VISIBLE LENGTH vlen
    Effect
    This addition allows you to shorten the visible length of the corresponding screen field on the selection screen to vlen.
    Variant 2
    SELECT-OPTIONS sel FOR (f).
    Additions as in variant 1.
    Effect
    In this variant, (f) must be a field containing the name of the actual reference field at runtime. The system creates the LOW and HIGH fields as character fields with length 45. However, their appearance on the selection <b>screen is inherited from the reference field whose name is contained in field f at runtime.</b>
    Regards
    Appana

  • Regarding Internal Table Field Validation [Modification]

    Hi All,
    I have a small issue with formatting of a field.
    The Field is POTX1 - it would get the value as 'New MT-EPPE0097-COMP02',
    Means i have one internal table field as i_error-POTX1 in that some times we get value as 'New MT-EPPE0097-COMP02'.
    Whenever i get 'New' literal in that internal table field i have to remove that literal from that internal table field. And Left Justify the remaining part of the field.
    Ex:  'New MT-EPPE0097-COMP02'
         should become 'MT-EPPE0097-COMP02'.
    For this first i have to find wether 'New' Literal exists in the Internal table field or not then i have to remove it.
    Can anybody tell me how can i solve this issue.
    Thanks in advance.
    Thanks & Regards,
    Rayeezuddin.

    Hi,
    Take a look :
    loop at i_error.
      if i_error-potx1(3) = 'New'
        w_potx1 = i_error-potx1.
        i_error-potx1 = w_potx1+3(37).
        MODIFY i_error.
      endif.
    ENDLOOP.
    Regards,
    Erwan.
    Message was edited by: Erwan LE BRUN

  • Regarding assembly indicatr field in CS03(Which table can i fetch it from?)

    Hi,
    I have a simple query regarding the transaction CS03. When I give the Material Number, Plant and BOM Usage as input, I would get the list of components for this material.
    Inside the transaction, is a CHECKBOX field ASM - this Indicates that the component for this material has its own BOM or has further components).
    Could anyone tell me in which SAP table this information is stored i.e. an indicator to tell us if the component/material has further BOM or not.

    Dear MR.Ashwin,
    <b>There's no table to find out the field for STLKZ  - Assymbly Indicator.
    Try with Some Functional Modules for BOM.</b>
    Reward points & close this thread.
    Regards
    Mangal
    Message was edited by:
            Mangalraj

  • Regarding deactivation of fields in the form context

    Hi friends,
    In Adobe forms going into the form context when we drag and drop Global data from the Interface into the Context the data displays all the fields regarding the specific table.
    So in that we can deactivate unwanted fields.
    But my question is how can we deactivate unwanted fields in bulk rather than deactivating each and every unwanted single field which is time consuming?
    Thanks,
    Madhav
    Edited by: Madhav.Reddy on May 26, 2011 8:19 PM

    Hi friends,
    In Adobe forms going into the form context when we drag and drop Global data from the Interface into the Context the data displays all the fields regarding the specific table.
    So in that we can deactivate unwanted fields.
    But my question is how can we deactivate unwanted fields in bulk rather than deactivating each and every unwanted single field which is time consuming?
    Thanks,
    Madhav
    Edited by: Madhav.Reddy on May 26, 2011 8:19 PM

  • Regarding inserting a field or text in template cell

    Hi Experts,
    Please let me know how to insert a field or text in the Cell in template.
    I created  template
    C1     1     14                             20.00     MM     8.00     CM     4.00   CM 4.00     CM                CM
    i have 14 lines and 3 columns in it
    i need to insert the feilds and text in it.
    Please let me know ,how to proceed.
    Thanks in advance.
    regards
    Vishnu

    Hi,
    To insert the text and field value inside the template you need to add insert the text inside the tempate node.
    assign the text or field into the text and then decide the position of the ext in the templete in output condition tab or text.
    insert the row and column number in the this to filed where you want to display the text.
    for e.g if field needs to displayed in the 2nd row and 3rd column then mention line = 2 and column = 3 in the output tab of the text.

  • Regarding input output field of the screen painter

    Hi Experts,
    I want to increase the height of the input output field in the screen painter.
    ie, multiline input output field.Is there any means?
    Or is there any alternative other than the input output field?
    Thanks & Regards,
    Soumya.

    hi,
    when u drag n drop some fields in the screen goto to one of the corners of dat fields drag to the extend u want to increase.
    or in attributes section  for u length n width of dat fields are available just increase to your wish.
    if helpful reward some points.
    with regards,
    Suresh Aluri.

  • Regarding shipping condition field vbak-vsbed in VA03 transaction

    Hi experts!
    I want to fetch the discription of field VBAK-VSBED to display in my sap script form. can anyone help me with that.
    which table should i look for.
    example :
      vbak-vsbed = 15
    so which table can have the discription for 15 which in my scenerio is 'Ground Commericial'
    but i dont know the table to look for.
    thanks in advance.

    Hi,
    You can use the table TVSBT - Shipping Conditions: Texts
    to get the shipping conditions text
    Thanks
    Naren

  • Regarding GR ref field

    Hai,
        While I am doing a report to display the folowing fields PO Number,PO date,plant,GR ref,GR date.I got all the fields except GR ref.Can anyone tell me the field for GR ref.
       Thanking You in advance.

    Hi,
         You can get reference field by using XBLNR field in MKPF Table.
    Reward points if helpful.
    Regards
    Gagan

  • URGENT:: regarding adding new field in the info type0002

    Hi,
    I have added tax number in the 0002 info type through pm01 and CI include and then i creatad a sub module to calll the TAX NUMBER.
    the added field is appearing in T588M table for that screen, but it is not appearing when i tryed to open a emploee that new field is not coming in the info type screen.
    do i need to call this sub screen some where else.. if so please help wherei  need to do what...
    Please help on this...
    Thanks suresh

    Hi suresh,
    You should also add the field into the screen through program MP .. 0002.
    I advise you to add it from the P0002 structure which is the red dotted icon on the top part of screen maintenance screen.
    Regards,
    Dilek
    P.S. Please reward if helpful

  • Regarding Tables and fields.....

    Hi everybody,
                  How to know exactly,the tables and fields when a report is to be developed.

    hai
    That Information should be available in Technical Speck
    Tech.Spec having
    Selection screen Infor,
    Tables,
    Psudo Logic
    Output Format(Determination)
    all the stuff available in Tech.Spech
    If you have any Doubt ask your TL/PL
    or Clarify with your Onsite Co-ordinator
    Thanks & regards
    Sreenivasulu P

Maybe you are looking for

  • QT Playlist, or Run movies one afther another in same window maybe?

    What am i missing here? Is it possible that QT can't open and run more movies and play it one after another in the same window? Let's say if i dont want to use VLC or any other player, or PlayList plug inn's etc... (they are ugly ) and want to go to

  • Really stupid that you can't drag and drop photos from Finder into Events

    There is no way in iPhoto to do what I want and need to to, to wit, drag and drop photos from the Finder into existing iPhoto Events. It really doesn't make sense that you can't do this. First of all, calling these groups Events to begin with is not

  • Problem In JDBC Driver Package Class12.zip

    After executing the code below: Connection con = ConnectionPool.getConnection(); while(true){ Statement sta = con.createStatement(); sta.close(); Exception is raised after the loop is executed 300times with message: ORA-01000: ³¬³ö´ò¿ªÓαêµÄ×î´óÊý th

  • Current iOS is 5.1.1.  Is it possible to upgrade?

    Current iOS is 5.1.1.  Is it possible to upgrade to 6 or better? Can't find an app to do so, except in Russian.

  • Using Photoshop to freelance

    I want to ultimately use Photoshop to freelance in photo repair. It would be very helpful to know how long it took some of you already doing this to get to the point where you were able to adequately repair the photos of others to their satisfaction.