Permit more than one document type per series

Hi folks,
Please let me know what is the precise use of :
"permit more than one document type per series"
Cheers...
Jitu

Hi
Certain country regulations permit document numbering series that contain more than one document type.
All of these documents are part of the same numbering series.
Select this option if these regulations are relevant for the company.
This setting determines the settings that are displayed in certain Document Numbering windows,
and cannot be changed after it has been selected.

Similar Messages

  • Another document series- do I need to tick Permit More than one doc type?

    Hello experts,
    Im thinking of creating another document series for Goods Return and Credit Notes to be used only when they are created due to user errors in GRPO o AP Invoices.
    In order to do this, Do I need to tick the option of "permit more than one doc type per series"?
    Looking forward to your comments,

    Hi,
    If you select "permit more than one doc type per series", you must know the consequence. It may cause you more troubles when you want to distinguish the document types within the series.
    Thanks,
    Gordon

  • Is it possible to have more than one Tax code per line item in Billing docu

    Is it possible to have more than one Tax code per line item in Billing document ?

    Hi,
    I have a different perspective there.
    If an item is applicable for two different taxes which are represented by two different tax condition types and these tax conditions are configured in the tax procedure, FTXP and so on....then these two condition records can have two different tax codes.
    We actually have this scenario in EU now, where EU talks about service tax in 2010 apart from the normal VAT. So now we have MWST and ZWST(Say)
    Now there are some materials which come with a service associated with it. So a service charge is also levied when the material is sold. So the material price will become applicable for VAT and the service charge becomes applicable for service tax. In this case, the tax classification of the customer will have two entries in sales orders updated in the fields VBAK-TAXK1 and VBAK-TAXK2 based on the sequence number of these condition types.
    Now based on different tax classification of the customer, we have 2 different tax codes representing different %of tax.
    Hope it helps

  • How can I send more than one document on an email

    how can I send more than one document on one email

    Thank you but I understand that form of attaching a document. However when I select a document then click 'Share' I have the option of sending the document by email as a word or pages document or pdf, what I want to know is can I use this procedure to send more than one document per email and if I can how?

  • Maping more than one document to calendar week

    how to map more than one document date into a calender week?

    Hi,
    The possbilities are
    1.Create a customer exit variable with processing type as replacement path with the help of abapers
    Assigning points is the way of saying thanks in SDN
    Regards ,
    Subash Balakrishnan

  • PRoblem when posting more than one document

    Hi all,
    I'm using BAPI    BAPI_GOODSMOVEMENT_CREATE to post the documents for PO_GR.when i post one document through text file it is done succesfuully. when i'm posting more than one document it is giving error "posting not possible".
    My code is as follows:
    loop at i_data.
    concatenate '0'   i_data-stor_loc  into i_data-stor_loc.
    concatenate '00'  i_data-plant     into i_data-plant.
        i_item-po_number  = i_data-po_no.
        i_item-po_item    = i_data-po_item.
        i_item-move_type  = i_data-mvt_type.
        i_head-doc_date   = doc_date.
        i_head-pstng_date = post_date.
        i_head-ref_doc_no = i_data-del_note.
        i_item-entry_qnt  = i_data-entry_qty.
        i_item-stge_loc   = i_data-stor_loc.
        i_item-plant      = i_data-plant.
        i_item-stck_type  = i_data-stk_type.
        i_item-batch      = i_data-batch.
    I_ITEM-move_val_type      = i_data-move_batch.
        APPEND: i_item,i_head.
        CLEAR:i_item.
      ENDLOOP.
    CALL FUNCTION 'BAPI_GOODSMVT_CREATE'
       EXPORTING
         goodsmvt_header             = i_head
         goodsmvt_code               = i_code
       TESTRUN                     = ' '
      IMPORTING
      GOODSMVT_HEADRET            =
        MATERIALDOCUMENT            = matdoc
       MATDOCUMENTYEAR             =
       tables
         goodsmvt_item               = i_item
       GOODSMVT_SERIALNUMBER       =
         return                      = return
      IF return IS INITIAL.
        CALL FUNCTION 'BAPI_TRANSACTION_COMMIT'.
      ENDIF.
      LOOP AT return.
        WRITE: return-message.
      ENDLOOP.
      WRITE: matdoc.
    PLease specify where i'm going wrong.
    Regards,
    SImha.

    Hi,
    I had used the same FM to post multiple documents, but never faced this error.
    *- Header
      MOVE: sy-datum TO bapigm_head-pstng_date,
            sy-datum TO bapigm_head-doc_date,
            sy-uname TO bapigm_head-pr_uname,
            v_mblnr  TO bapigm_head-ref_doc_no,
            con_bfwms_bestand TO bapigm_head-ext_wms.
    *- Item
    *- Populate item data
      LOOP AT i_items_trans.
        CLEAR ibapigm_item.
    *- Convert the matnr backto 18 char form (External)
        CALL FUNCTION 'CONVERSION_EXIT_MATN2_INPUT'
          EXPORTING
            input            = i_items_trans-matnr
          IMPORTING
            output           = i_items_trans-matnr
          EXCEPTIONS
            number_not_found = 1
            length_error     = 2
            OTHERS           = 3.
        IF sy-subrc <> 0.
    MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
            WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
        ENDIF.
        ibapigm_item-material   = i_items_trans-matnr.
        ibapigm_item-plant      = i_items_trans-werks.
        ibapigm_item-stge_loc   = i_items_trans-lgort.
        ibapigm_item-move_type  = '101'.   "Goods Receipt
        ibapigm_item-mvt_ind    = 'B'.     "Goods Movement for PO
        ibapigm_item-po_number  = i_items_trans-ebeln.
        ibapigm_item-po_item    = i_items_trans-ebelp.
        ibapigm_item-entry_qnt  = i_items_trans-ktmng.
        ibapigm_item-entry_uom  = i_items_trans-meins.
        APPEND ibapigm_item.
      ENDLOOP.
    *-Call FM
      CALL FUNCTION 'BAPI_GOODSMVT_CREATE'
        EXPORTING
          goodsmvt_header  = bapigm_head
          goodsmvt_code    = bapigm_code
        IMPORTING
          goodsmvt_headret = bapigm_headret
        TABLES
          goodsmvt_item    = ibapigm_item
          return           = ibapigm_ret.
    *- Commit on Success
      IF NOT bapigm_headret-mat_doc IS INITIAL.
        CALL FUNCTION 'BAPI_TRANSACTION_COMMIT'.
    Regards,
    Raj

  • How do I attachment more than one document to an email?

    I found out how to send than one photo vie the iPad Guide.....as long as the photos are in the same album, I assume.
    Now....how do I attach more than one document to an email?
    Any help would be appreciated!

    The photos don't need to be in the same album - you can select from the 'all photos' screen.
    In terms of attaching more than one document, I use the GoodReader app, which supports multiple file types e.g. PDFs, pictures, word and excel (read-only) etc and which allows you to select and attach multiple files, which can be of different types e.g. you can attach a picture and a PDF.

  • Illustrator CS6 freezing with more than one document

    I have always had multiple files open at a time when using illustrator but all day today the program has been freezing everytime i open more than one document. I am able to use the program now if i only have one file open but it freezes as soon as i open the second file. I have restarted my computer twice and i have closed every other program on my computer and none of that helped. I have a macbook pro and i save all of my illustrator files on an external hard drive. As any one else experienced this?
    Thanks for the help

    Have you added any Illustrator plug ins or software recently, or enabled new fonts? Try working with some other doumcnets if you have not, to help narrow down if this is a global problem affecting all documents.
    Create a new user account and log in as that
    Run applications /utilities/disk utility and fix permissions
    Is there a common image used in these doucments, may be corrupt and sometimes opening and resaving a .psd for example

  • TS3899 Hi. How do I attach more than one document to an email on the iPad, especially if they come from different apps? When writing an email on the iPad there's no option for attachments.

    Hi. How do I attach more than one document to an email originating from my iPad, especially if the documents come from different apps? When starting an email there's no option for attachments, unless you send the document from inside an app like iBook and then you can only send one at a time.

    How to add, send and open iPad email attachments
    http://www.iskysoft.com/apple-ipad/ipad-email-attachments.html
     Cheers, Tom

  • How to display more than one documents on windows 8 desktop?

    how to display more than one documents on windows 8 desktop?

    Adobe Reader Touch doesn't show more than one file on screen and doesn't show them on the desktop. Apparently these are very old fashioned things that Microsoft doesn't think we'll want to do any more and calls them "legacy" to make them sound antiquated.
    If you want to do these things use the legacy Adobe Reader, a much more powerful and flexible app (and not obsolete in the slightest). http://get.adobe.com/reader . There are no legacy apps in the Windows App Store.

  • Can we upload more than one document at a time ?

    It will take me forever to upload all my documents into the acrobat cloud , ONE at a time....is there a quicker way to do it? If not,  will there be soon? Because that would really help me and possibly others to get it done faster...

    Hi melanie1621
    Yes You can upload more than one document ...
    Please do the following :
    1. Click on upload files button under Acrobat.com
    2. A pop will open .
    3. Select more than one file by keeping the CTRL button pressed.
    4. Once, you select all the files , Click on Open ...
    It Will Start uploading all your files ...!

  • Taking print of more than one document at a time???

    Hi sap experts,
    Presently my client is taking print of one document at a time. Is there any process/system through which he can take print of more than one document at a time in a specified format by putting the document number range.  
    Regards,
    Sumeya offrin

    Hi melanie1621
    Yes You can upload more than one document ...
    Please do the following :
    1. Click on upload files button under Acrobat.com
    2. A pop will open .
    3. Select more than one file by keeping the CTRL button pressed.
    4. Once, you select all the files , Click on Open ...
    It Will Start uploading all your files ...!

  • Remove extended features more than one document at a time.

    Does anybody know how to remove the extended features in Adobe files in batch mode? Since the newest upgrade of Adobe reader, we are having to remove the extended features and have 702 forms to do this with! Our users are trying to add their image signature and now it prompts them to do a save as and then locate the saved copy. Seems there must be an easier way or a fix for this?  Thanks all.

    Hi melanie1621
    Yes You can upload more than one document ...
    Please do the following :
    1. Click on upload files button under Acrobat.com
    2. A pop will open .
    3. Select more than one file by keeping the CTRL button pressed.
    4. Once, you select all the files , Click on Open ...
    It Will Start uploading all your files ...!

  • C7280 - printing more than one document at a time

    Does anyone know a quicker way of scanning in (using the feeder) several different documents at a time, as opposed to different pages of the same document.  At the moment, I seem to have to exit too far out of the software at the end of each doc'.
    This is what I'm doing:
    a) select SCAN DOCUMENT
    b) select file format ie PDF
    c) If document loaded on feeder, printer takes however many pages in the tray and scans into one document.
    d) On pressing Finish, question comes up asking whether you'd like to add another page to the document.  If you press Yes - it simply adds it the exisiting document being scanned and if you press No, it saves the existing document but exits right out  taking you right back to the home page which then remains greyed out for a while until, the previous document has been saved. 
    Very appreciative of a time saving irritation lessening answer!! :-)

    Hi melanie1621
    Yes You can upload more than one document ...
    Please do the following :
    1. Click on upload files button under Acrobat.com
    2. A pop will open .
    3. Select more than one file by keeping the CTRL button pressed.
    4. Once, you select all the files , Click on Open ...
    It Will Start uploading all your files ...!

  • Hi, My printing has suddenly changed in adobe to a large scale, as in, what should be one page of print comes out as 24 pages?   I havent changed anything, its happening on more than one document also, I have to stop my printer before all the pages spew o

    Hi, My printing has suddenly changed in adobe to a large scale, as in, what should be one page of print comes out as 24 pages?   I havent changed anything, its happening on more than one document also, I have to stop my printer before all the pages spew out. I have tried printing 'one single page' and it does exactly the same? Help?

    Is the Poster Print feature turned ON?

Maybe you are looking for

  • Download doc problem when copied from APEX_APPLICATION_FILES to local table

    Good morning! As the subject indicatesm, I am experiencing problems downloading a document I have copied from APEX_APPLICATION_FILES to my local table FILE_SUBJECTS and would be very grateful if someone could help. Here is the problem: I can successf

  • Getting a list of dates between 2 dates

    Hi All, Is there a way I can generate a list of date using a simple SELECT statement to generate all dates between to date points? For example between SYSDATE AND SYSDATE-7? One way I know is have a table and run PL/SQL script to put all dates in it

  • File searching

    Dear all, Can you help me ? Let's say in a folder contains : - A.doc - B.txt - C.dat How can I get filename, based on the extension (e.g. "doc" or "dat") ? Thank you

  • TS2167 my website is missing from iWeb. what do i do?

    please can someone help me. my husband made a website for me on iweb. i need to update some information on it and i cant find it on iweb. i have all the website data/software but cant seem to put it into iweb to amend the site. please help Thanks

  • I've lost content in iTunes - only online files are available

    after last update, I've lost content in iTunes. I can see files in folder on my hard drive, but iTunes don't see them. Michal Malinka