Voucher Number to be displayed as popup

Hello,
Once AP invoice header details are entered and then distribution button is pressed, the following message is dispalyed as a popup:
The sequence 80_AP_INV_10 was used to assing a value of 1004521.
1004521 refers to voucher number. This popup is not displayed when an invoice is created from BNL - AP Manager User. I have verified the custom pll and forms personalization to know if any modifications are done to display the message, I did not observe any thing.
Can any one let me know how can I display the popup message from BNL - AP Manager User responsibility.
Thank You in Advance.
Thanks,
Srinivas

I Presume the Pop-up which you are getting is based on the configuration of Document Sequencing for AP module.
This set up is performed in System Administrator module.
The steps of setup are as mentioned below:
1) Define Document Sequences
2) Deifne Document Categories
3) Assign the Document Sequence
Once the sequence is assigned to a Set of Books, which in turn is set to a responsibility via Profile Options i.e. Gl Set of Books Name.
Secondly there is another profile option named Document Sequencing for which the values are set as Never Used, Partially or Always Used.
Based on the above setup whenever an invioce is created a voucher number will be automatically generated and you will see the popup.
Hope this helps.
Thanks and Regards
Manish Jain.

Similar Messages

  • UUT serial number is not displayed in batch results popup window?

    UUt serial number is not displayed in batch results popup window. I am using TestStand 2012 SP1 f1 (5.0.1.66). I am also using Prebatch callback and setting up 
    Parameters.ModelData.TestSockets[index].UUT.SerialNumber with the UUT serial number. I have used the exact sequence file with TestStand 4.2 (4.2.0.134) with no problems.

    Sorry for my late reply I was away for work. I actually revisited the code that I implemented with TestStand 4.2 (4.2.0.134) and it is showing the exact problem. Sorry for misleading you. however the UUT report is showing the correct serial number for each unit. This would be something that is nice to have but not critical for my project. I am basically auto discovering all my UUT so instead of scanning the serial number I read it from the UUT memory so there are a lot of steps in my PreBatch call-back but they are all related to reading the UUT serial number. Once I read all the UUTs serial numbers I set the following in a for loop:
    Parameters.ModelData.TestSockets[Locals.For_Loop_Index].UUT.SerialNumber =StationGlobals.UUT_Serial_Numbers[Locals.For_Loop_Index]  
    I tried to implement my a simple PreBatch with only a for loop and an array of serial number and I ended up with the same issue. So I am suspecting that the batch report is getting the serial numbers from a different variable and that variable is set when you run the batch option without the PreBatch call-back.
    Kind Regards,
    Oshana

  • Voucher Number for Manual Invocies Only

    Hi All,
    I want to create Voucher Number to AP Manual Invoices Only in R12.1.3
    Can anyone able to help me
    Thanks in Advance
    Regards,
    Roopa

    Hi Roopa,
    can you please elaborate more.
    you can use sequencial numbering option as i am using it in version 12.1.3 for ap voucher numbering.
    1. go to system administrator
    2. go to aplication
    3. go to seq. numbering.
    4. create sequence from define window , check the message box to display message.
    5. assign the created sequence to 'Standard Invoice' application Payable from assign window.
    then try to book AP invoice . before this set the profile option Squencial numbering on partial use.
    regards,
    parimal

  • Displaying a popup

    HI
      I have a selection screen which has the button 'No of entries' at the application toolbar. when user clicks on it on the basis of selection in screen the data is fetched. now i want to show the the number of entries as a popup which will only have close button in it. Is there any FM to acheive this.
    Thanks.

    u avn use the following fm
    REUSE_ALV_POPUP_TO_SELECT
    CALL FUNCTION 'REUSE_ALV_POPUP_TO_SELECT'
          EXPORTING
      I_TITLE                       =
           i_selection                = 'X'
      I_ALLOW_NO_SELECTION          =
      I_ZEBRA                       = ' '
      I_SCREEN_START_COLUMN         = 0
      I_SCREEN_START_LINE           = 0
      I_SCREEN_END_COLUMN           = 0
      I_SCREEN_END_LINE             = 0
      I_CHECKBOX_FIELDNAME          =
      I_LINEMARK_FIELDNAME          =
      I_SCROLL_TO_SEL_LINE          = 'X'
            i_tabname                 = 'it_data'
      I_STRUCTURE_NAME              = 'ty_data'
           it_fieldcat                = ad_fdcat
      IT_EXCLUDING                  =
           i_callback_program         = ad_repid
      I_CALLBACK_USER_COMMAND       =
      IS_PRIVATE                    =
    IMPORTING
    <u><i><b>   es_selfield                    = it_selfield</b></i></u>
      E_EXIT                        =
          TABLES
            t_outtab                  = it_data
    EXCEPTIONS
      PROGRAM_ERROR                 = 1
      OTHERS                        = 2
        IF sy-subrc <> 0.
    MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
            WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
        ENDIF.
    *IFLAG = 0 .
      ENDIF.
    <u><i><b>just pass the internal table with data to this fm and also the catalog name which u will build . catalogue contains the fields and thier order to be displayed in pop up</b></i></u>
    code for catalogue is
    declaring field catalog
      DATA: ad_fdcat TYPE slis_fieldcat_alv.
    defining its colums
      ad_fdcat-col_pos = 1.
      ad_fdcat-fieldname = 'NETPR'.
      ad_fdcat-tabname = 'it_data'.
    *AD_FDCAT-EMPHASIZE = 'C311'.
      ad_fdcat-seltext_l = 'PRICE'.
      ad_fdcat-hotspot = 'X'.
      APPEND ad_fdcat TO p_ad_fdcat.
      ad_fdcat-col_pos = 2.
      ad_fdcat-fieldname = 'WAERS'.
      ad_fdcat-tabname = 'it_data'.
      ad_fdcat-emphasize = 'C511'.
      ad_fdcat-seltext_l = 'CURRENCY'.
      ad_fdcat-hotspot = 'X'.
      APPEND ad_fdcat TO p_ad_fdcat.
      ad_fdcat-col_pos = 3.
      ad_fdcat-fieldname = 'MEINS'.
      ad_fdcat-tabname = 'it_data'.
      ad_fdcat-emphasize = 'C311'.
      ad_fdcat-seltext_l = 'UNIT'.
      ad_fdcat-hotspot = 'X'.
      APPEND ad_fdcat TO p_ad_fdcat.
    <u><i><b>important</b></i></u>
    <u><i><b>it_selfield field will contain the index of the selected entry.
    now by looping at ur internal table u can select this index and display in ur fields</b></i></u>
    loop at itab index it_selfield
    do somethn
    endloop.
    regards
    navjot
    reward accordingly

  • 0ANALYZER Web Template - increase number of Rows displayed

    Hello All,
    Is there a context menu command / popup value  that will allow an end-user to increase the *default* number of Rows displayed at a time (25)  when we are using the 0ANALYZER Web template?
    We have about 100 characteristics anyway, so setting the displayed "chunks" of Rows to say 50 at a time would be quite reasonable.
    We do not want to customise 0ANALYZER web template (and therefore any solution to add any extra buttons/JScript won't be acceptable)
    Any ideas 0ANALYZER experts?
    Thanks
    Ian

    Hi Ian,
    My suggestion is that you make a copy of 0ANALYZER_PATTERN web template say ZANALYZER_PATTERN and make this your default web template. Now in the properties of your analysis grid of ZANALYZER_PATTERN, you can change the number of displayed columns and rows. But again this will be appplied to all web queries using this template.
    If you want to change number of rows and columns dynamically, why not ask SAP netweaver team.
    Thanks.
    Sheo

  • How to set the number of rows displayed in a classical report at runtime?

    Hi,
    Our customer has several standard client hardware configuration and would like to enable end users to choose their 'display profile' at login time. This 'display profile' would contain predefined values for these hardware configurations and supposed to set various paramters that should define the number of rows displayed in a classical report region.
    I tried to provide parameters on the report region but it refused to accept anything but numerical values. Is it possible to do this?
    Regards, Tamas

    The link is to the closest linkable point in the documentation to the description of the Number of Rows (Item) attribute.
    It sounds like you have been trying to enter&mdash;unsuccessfully&mdash;an item name or substitution string into the Number of Rows attribute. The Number of Rows (Item) attribute is the one that actually allows you to do this. Click on the flashlight icon beside it to get a list of items from the application.

  • In FBL5N report user wants the sales document number to be displayed,

    HI, Guys
    Need ur help to sort out the problem
    In FBL5N report user wants the sales document number to be displayed,
    but the sales ducument number column is coming blank and this needs to pick from VBRP table
    As I discussed with Abaper, he reqiures a key field which common in BSEG abd VBRP table
    So,Please guide me in approaching the right way
    Munender

    Hi,
        Speak with your SD consultant. They can set up the copy control in SD so that the sales order is populated in the invoice in field ZUONR (Assignment).This will then copy to the assignment field in accounting.
    Alternatively you can use an exit to populate another field during the Posting.
    Kind regards

  • Number of Rows Displayed in a SQL Report Region

    Hi,
    Just wondering whether it is possible to control the 'Number of Rows' displayed under the 'Layout and Pagination' section within the Report Attributes page.
    Basically need to know if I can programmatically control this or even better, can it be customized by the user as the user may want to see say 15 rows, 200 rows or 'All' rows of a certain region on the page. FYI, I have three different report regions on one page and want to give the user the flexibility to modify the number of rows displayed per region.
    Thanks.
    Tony.

    Tony,
    you can find that in this how-to document:
    http://www.oracle.com/technology/products/database/htmldb/howtos/howto_report_rownum.html
    Denes Kubicek

  • How to control number of rows displayed in a report  by user?

    Hi All!
    I have provided a select list called 'Number of rows' in my report page.User can choose any number in the list, and accordingly he should be able to see so many number of rows in that report page.
    For example: if user selects 50 from the list, he will be able to see 50 records at a time out of say 2000 records retrieved. I want to control number of rows displayed per page dynamically. And if he selects 25 in the select list, he should be able to see 25 records at a time out of 2000.
    How to do it? Please give me ideas.
    Thanking in advance.
    Regards,
    Deepika.

    Hi Deepika,
    If you have a Select List with Submit called, say "P1_ROWS", you just enter P1_ROWS into the Report Attribute's "Number of Rows (Item)" setting.
    Regards
    Andy

  • How to restrict number of rows display using ig:gridView

    Hi
    All
    How to restrict number of rows display using <ig:gridView datasource="{mybean.mylist}">
    i am getting 10 rows using data_row . i wanna show only first 5 rows .
    pageSize ="5" will be ok . but it displays remaining rows in next page. but i want to display only first 5 rows . is there any attribute to restrict number of rows.
    thanks
    rambhapuri

    I have no idea which component you're talking about. If want to discuss here about a non-Sun JSF component, then please mention about the name, version and build in detail. You can also consider posting this question at the website/forum/mailinglist of the component manfacturer rather than here. At least I can tell you that the Sun JSF h:dataTable has the 'rows' attribute for that. I can also suggest you to just take a look in the TLD documentation of the component in question. There should be all possible attributes listed with a detailed explanation about the behaviour.

  • Change number of record displayed for a single item alone

    Hi,
    I have a single data block with few items. Is it possible to make one item in the block as non-database item and make the display of record in the item alone to show multiple lines.
    i.e. All other items in the Data block shows single record, whereas this particular item should shows 10 records.
    Is this achievable?
    Or should i have to put that item in a separate data block and choose the data block property to "Number of records displayed" as 10?
    Thanks,
    Yuvaraaj.

    983448 wrote:
    Hi,
    I have a single data block with few items. Is it possible to make one item in the block as non-database item and make the display of record in the item alone to show multiple lines.
    i.e. All other items in the Data block shows single record, whereas this particular item should shows 10 records.Yes you can. But i will say re-check your design.
    Hamid
    Mark correct/helpful to help others to get right answer(s).*

  • The number of rows displayed in a JTable

    Hi,
    Can anyone tell me how I choose the number of rows displayed in a JTable? My table displays 25 rows, and thats a bit too many.
    Thanks.

    You dont need to do much.. I think you just have to initialze the table with ..
    JTablt t = new JTable(rows,cols);
    and make sure to make the 'rows' parameter to whatever u want. :-)
    Cheers

  • How to set the number of records displayed at run time

    Is it possible to set the number of records displayed block property at run time? The built-in 'GET_BLOCK_PROPERTY' can retrieve the number of RECORDS_DISPLAYED. But I can't find SET_BLOCK_PROPERTY to set this property. Is there anyway I can set this property programmatically? Thanks for any suggestions!

    Bookmark Go to End
    goal: How to vary the number of records displayed in a block
    programmatically
    fact: Oracle Forms Developer
    fix:
    Block property 'Number of Records Displayed' can not be changed during runtime
    using SET_BLOCK_PROPERTY. However, it is still possible programmatically change
    the visual appearance of the form so that it creates effect of changing this
    property. To achieve such an effect follow these steps:
    1. in Forms Builder, in the multirecord block define the new set of items.
    The simplest way is to copy/paste the original item and rename created item.
    2. set properties of these new items so that they are the same as the properties
    of the original items. If these new items were copied from original items
    then properties are already the same. Modify following properties
    'Database item' on new items to value 'No'
    'Synchronize with item' to the value of the original item
    'Number of Items Displayed' to desired value.
    'Visible' to 'No'
    In other words, these new items are mirrors of original items.
    3. code event, which is meant to trigger the change in block appearance.
    This code should use SET_ITEM_PROPERTY built-in to set properties
    like 'VISIBLE', 'ENABLED', 'NAVIGABLE', 'UPDATE_ALLOWED' and others
    to desired value for items which are about to be displayed, then
    move cursor to one of these just displayed items with GO_ITEM built-in
    and then hide the previously displayed items.
    Example:
    Assume that the block is built on SCOTT.DEPT schema. Following will
    change the set of displayed items
    set_item_property('dept.mdeptno',visible,property_true);
    set_item_property('dept.mdname',visible,property_true);
    set_item_property('dept.mloc',visible,property_true);
    set_item_property('dept.mdeptno',enabled,property_true);
    set_item_property('dept.mdname',enabled,property_true);
    set_item_property('dept.mloc',enabled,property_true);
    set_item_property('dept.mdeptno',update_allowed,property_true);
    set_item_property('dept.mdname',update_allowed,property_true);
    set_item_property('dept.mloc',update_allowed,property_true);
    set_item_property('dept.mdeptno',navigable,property_true);
    set_item_property('dept.mdname',navigable,property_true);
    set_item_property('dept.mloc',navigable,property_true);
    go_item('dept.mdeptno');
    set_item_property('dept.deptno',visible,property_false);
    set_item_property('dept.dname',visible,property_false);
    set_item_property('dept.loc',visible,property_false);
    Regards,
    Monica

  • Changing the default number of rows displayed in a interactive report

    Hi,
    I have a sql query based interactive report but i cant change the default number of pages i.e 15.
    is there any way to change the number of rows displayed.
    Thank you,
    rakesh

    Hi,
    That was very useful document that you shared, yes that is correct we can so it this way but there is another way doing it where in if you go to the report attribute section and in that there is Layout and Pagination and under
    that you can fix the number of rows, and over there we can also accept values from page item such as if the page item value changes the number of rows displayed in the report changes dynamically.
    In my report i get only pagination but not a option for layout.
    Any help will be appreciated.
    And also where i can get the links to the similar document that you have shared ?
    TY
    rakesh
    Edited by: rakesh119 on Apr 30, 2013 12:10 PM

  • Voucher Number in new posting period

    hello,
    I have created new posting period and series for financial year 2011-12.
    In previous year I have created 600 voucher. My issue is that when I am creating new
    voucher, voucher number is showing 601. I want that for new series voucher number should be
    start from 1. but it seems like numbering series doesn't affect the voucher number.
    Because there are no series creation for journal voucher. In this case how can I solve my problem.
    Please help me on this.
    thanks
    Annu

    Hi Annu.............
    You created Posting Period but have you created Period Indicator and Assigned this Indicator to this created Posting period?
    If you have done this then when you define new no. series from one just assign the same indicatorto this New No. Series also and lock old series.....
    Hope this will work....
    Regards,
    Rahul

Maybe you are looking for

  • How to find which user has killed a particular job in CPS?

    Hi All, I am new in CPS. I want to find the user who has killed a particular job in CPS? Thanks in Advance. Avdhesh

  • After moving from weblogic 10.0.0 to Weblogic 10.3.3 - JMSException

    After moving from weblogic 10.0.0 to Weblogic 10.3.3, web-application began to raise next exception: <Dec 4, 2012 3:52:05 PM CET> <Error> <HTTP> <pl-1> <traffic-1> <[ACTIVE] ExecuteThread: '3' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS

  • Upgrade from SAP R/3 4.7 to mySAP ERP 2005 : technical changes

    Hi All, I wanted to know what objects(tables,structures,data elements ,ZPrograms,SAP Programs,Roles etc..) in d the entire SAP landscape will bear difference when compared with older version (SAP R/3 4.7). I would like to know technically which objec

  • Problem with Movie Artwork

    I am using iTunes 10.4.1. Itunes library is on external drive. Artwork is only displayed for some movies .... until I select (not play) a particular movie ... then the artwork is displayed. Artwork is shown correctly on all movies if I select "Get In

  • How to create custom color profile in OSX?

    I started thinking about this after downloading the program "f.lux", which changes the color temperature of your screen depending on the time of day. It seems the program accomplishes this by adjusting your display calibration. Some controls for this