Vf01-should allow only those billing doc which are used

Hai gurus,
       In Tcode VF01 for the field "Billing document" it displays all billing doucments which are in table TVFK(Billing doc types).
My Requirement is that for the field "Billing doucment" only those billing documents should appear which we are using.
How could this rqt be fulfilled?
Thanks in advance

I think this may not be possible in Std SAP. You migh have to write a code to do this.
But what can be done is that for a set of users we can define certain screens with specific billing types and thus restrict them from using other billing types.
This may be done using SHD0 t.code.
Regards,
Mani

Similar Messages

  • VF01-Display only those billing documents which are being used

    Dear SD Gurus,
                   There are 50 billing document types(standard and self defined);
    we r using only 10 billing documents out of them.
    client requirement is that at the time of creation of billing VF01 it should display only those 10 which we are using.
    actually it display all 50 billing types at VF01.
    how should it can be mapped?
    please help me
    Thanks in advance
    sameer

    Assign the billing type to your sales order type or delivery type
    in VOV8.
    Generally billing document are created with reference with delivery,
    When you create billing with reference to delivery and save it it will pick the default invoice type.
    Regards
    Rasik

  • Bonus VA01 / VA21 routine 24     Only in billing doc.

    Hello SAP experts,
    in our sales documents ( VA01 / VA21 ) we need the bonusinformation, like in the invoice.
    For SAP Standard we have the routine 24     Only in billing doc.
    Do you know why?
    Performance?
    Thanks for your help and information.
    Best regards
    Petra Schober

    Hi,
    This 24 is requirement it will be used in rebates or bonus .
    example -when billing is happening that time only system will calculate the rebates or bonus other wise system will not bothered about the rebates or bonus  this requirement 24 will assigned in pricing procedure in rebate or bonus condition type in requirement .then system will not do unnessery search the performance  will not slow

  • Cannot embed pdfs in MS Word doc which are PDF Version 1.3 (Acrobat 4.x) [This is associated with Adobe Reader 9]. Getting 'program not installed' error.

    Cannot embed pdfs in Word doc which are PDF Version 1.3 (Acrobat 4.x) [This is associated with Adobe Reader 9]. Getting 'program not installed' error.
    Pdfs with other versions are okay:
    Tested successfully with Adobe Pro 9 (Version 1.5 (Acrobat 6.x)), Reader X (Version 1.4 (Acrobat 5.x)) and XI (Version 1.6 (Acrobat 7.x))
    Also cannot open embedded pdfs which have been embedded with this version (getting a similar error).
    Importantly I have removed/disabled all security options in Adobe Reader, following numerous internet suggestions from Adobe and elsewhere. This does not fix the problem.
    Currently the work around is to re-save the pdf with something other than Adobe Reader 9 (so the version updates), but we would prefer not to do this for all the old pdfs we have.
    Thank you,
    Louise.

    Could you please email me the document on which you are seeing this issue at [email protected] ?
    Please mention the forum thread link as well in the mail for the reference.
    Thanks,
    Atul

  • APEX don't allow modify rows in columns which are Primary Key ?

    I have tables:
    http://img508.imageshack.us/my.php?image=21269582oe8.jpg
    book(id_book - "Primary Key", title, year); book_author(id_book - "Primary Key", id_author - "Primary Key"); author(id_author - "Primary Key", name)
    I have created a new page -> Form -> Tabular Form for table 'author' because I would like to add new authors, modify and delete. During creating this page I have choosen column 'id_author' as 'primary key column 1' and everything is OK (I can't modify column 'id_author' - this column is autoincrement and I can modify column 'name').
    BUT I have also created a new page -> Form -> Tabular for table 'book_author' because I would like to write numbers as id_book and id_author, modify and delete them (so add relations between tables: book, book_author and author). During creating this page I have choosen column 'id_book' as 'primary key column 1' and 'id_author' as 'primary key column 2'. And on website I can't modify (edit) these fields. And I can't also add new row because I see in each column in new row: (null).
    http://img444.imageshack.us/my.php?image=11324615yk9.jpg
    APEX don't allow modify rows in columns which are Primary Key ? This is stupid....... What can I do ?
    Edited by: user10731158 on 2008-12-20 11:40

    Single-column and non-meaningful so you never want to update them. In the case of your example, you would need to add an ID column to the book_author intersection table. Honestly, I was so blown away (and pleasantly surprised) by the lack of rebuttal and the "thx" that I went ahead and put together an example of how I would define the book_author table:
    create table  book_author
       (id varchar2(32),
        book_id varchar2(32),
         author_id varchar2(32),
         modified_on     date,
         modified_by varchar2(255),
         constraint book_author_pk primary key (id),
         constraint book_auth_book_fk foreign key (book_id) references books(id),
         constraint book_auth_author_fk foreign key (author_id) references authors(id)
    create unique index book_author_uq on book_author (book_id,author_id)
    create or replace trigger  biu_book_author before insert or update on book_author
    for each row
    begin     
         if inserting then
              :new.id := sys_guid();
         end if;
         modified_on := sysdate;
         modified_by := nvl(v('APP_USER'),user);
    end;
    /Good luck,
    Tyler

  • How to find the list of Queries/Reports which are using Exceptional Aggregation in SAP BI?

    Hi All,
    We are interested to know how to find the list of Queries/ Reports which are using Exceptional aggregation in SAP BI.
    Please let us know is there any table's to check the list of reports using Exceptional Aggregation in SAP BI.

    Hi,
    Here you go..
    1) Go to table RSZCALC and get list of ELTUID where AGGREXC is not INITIAL and AGGRCHA is not initial; now you get only exception aggregation set based on some chars. Also you can further add STEPNR = 1 since your intention is just to get query name , not the calculation details; this will reduce number of entries to lookup and save DB time for next steps.
    Here you will get list of exception aggregation UUID numbers from which you can get properties from RSZELTDIR.
    2) Pass list of RSZCALC-ELTUID to table RSZELTXREF - TELTUID and get list of RSZELTXREF -SELTUID - this table stores query to it's elements maping kind.
    3) Now again pass RSZELTXREF - SELTUID into same table but into different field RSZELTZREF - TELTUID and get RSZELTXREF - SELTUID
    This step you get query reference sheet or column or query general UUID for next step.
    4) Pass list of RSZELTXREF - SELTUID into RSZELTDIR - ELTUID with DEFTP as 'REP'. Now you get list of query names in RSZELTDIR - MAPNAME and description in TXTLG.
    Note: you can also get the reference chars used for exception aggregation from RSZCALC - AGGRCHA field.
    Hope this helps.
    Please keep in mind, it might take more time depends on how many query elements you have in the system...
    Comments added for better DB performance by: Arun Thangaraj

  • I have around 2000 photos on my camera roll as back up and now i am not able to delete unwanted photos and they are not even getting synced wid d computer so what should i do now?? they are using 9 gb of the space!!!

    i have around 2000 photos on my camera roll as back up and now i am not able to delete unwanted photos and they are not even getting synced wid d computer so what should i do now?? they are using 9 gb of the space!!!

    Chris CA wrote:
    You cannot backup photos to iCloud.
    You can enable Photo Stream (in Settings > iCloud) but only for 30 days and only a max of 1000 photos.
    Then what does this mean? It was copied from the kb article that I posted above.
    Reducing the size of your Camera Roll backup
    If you take lots of photos and videos with your iOS device, you may notice your Camera Roll takes up most of your iCloud Storage backup. To check the size of the Camera Roll backup on your device:
    On your Home Screen, tap Settings.
    Tap iCloud.
    Tap Storage & Backup.
    Tap Manage Storage.
    In the Backups section, tap your device.
    In the Backup Options section, the backup size is displayed under Camera Roll.
    To reduce the size of your Camera Roll backup, save your photos and videos locally to your computer with iTunes, and then manually back up your iOS device. If you want to keep your photos and videos on your iOS device, you can turn off Camera Roll in Backup (see the "Deleting backups and turning off Backup for your Device" section above) orpurchase additional storage.

  • Names of function module names which are useful in credit card payment

    can anybody tell me names of function modules present in SAP which are useful in credit card payment processing.......pls its urgent

    Hi Ashutosh,
    Please check these Function Modules :
    CREDIT_CARD_CHECK_CUSTOMERCARD
    CREDIT_CARD_COMPLETE_DOCUMENT 
    CREDIT_CARD_DOCUMENT_SHLP_EXIT
    CREDIT_CARD_FIND_DATA         
    CREDIT_CARD_GET_INSTITUTE     
    CREDIT_CARD_GET_RCODE_TEXTS   
    CREDIT_CARD_POST_REFUSAL      
    CREDIT_CARD_REFUSAL  
    CREDIT_CARD_CONVERT_FOR_SETTLE
    CREDIT_CARD_SETTLEMENT       
    CREDIT_CARD_SETTLEMENT_RSP   
    FITP_CHARGE_CREDIT_CARD 
    FITP_VERIFY_CREDIT_CARD 
    FITP_READ_PERSONAL_CREDIT_CARD 
    Hope it helps.
    Reward with Points if Helpful.
    Regards
    Hemant Khemani

  • Find out the SQLs which are using a full table scan

    Hello all , how can i to find out the queries which are using a full table scan ? Any idea ?

    In general, though, why would you want to tune SQL statements that aren't causing problems? Statspack will tell you what the most resource-intensive SQL statements on your system are. A SQL*Net trace of sessions that are performing poorly will indicate which statements are the most resource-intensive for that session. If a statement is incorrectly doing a full-table scan, but it is not causing a problem, why spend time tuning it? If you're not focusing your tuning attention on identifying statements that are causing problems, you'll also miss out on 90% of tuning opportunities which involve rewriting (or eliminating) code to make it more efficient. I can simulate a join on two tables with nested cursor loops, which won't generate a single full table scan, but replacing that code with a real join, while it will cause at least one full table scan, will be orders of magnitude faster.
    As an aside, full table scans aren't necessarily a bad thing. If a statement needs to retrieve more than a couple percent of the rows of a table, full table scans are the most efficient way to go.
    Justin
    Distributed Database Consulting, Inc.
    http://www.ddbcinc.com/askDDBC

  • How to find reports which are using sales tables

    Hi Guys,
    we are using OBIEE 10g version.Here i need to identify the the reports which are using sales tables.
    Table names are given but how to find which report is using these tables.Is there any method to find
    or we have to check all reports manually?
    Could any one pls suggest me here!
    Regards,
    sk
    Edited by: 912736 on Jun 8, 2012 1:24 PM

    Hi SK,
    You can run a report from catalog manager that willl give you all answers requests and the subject area columns in use, you can map these back to the sales tables either manually or by linking (vlookup) to an RPD report that you can run from the Admin tool.
    The Usage Tracking method is pretty good but you will have to match up the reports using the Logical SQL.
    I'd do both methods and cross ref your results to ensure nothing slips the net.
    Regards
    Alastair

  • Know the created info objects which are used in which info providers.

    Hi Experts,
    How can we know the zinfo objects which are used in which info providers.

    Hi,
    Either you can check the where used list of Infoobject as suggested by Gaurav, or you can goto transaction SE16 and put the table name as RSDCUBEIOBJ and put the Infoobject name.
    You will get the list of all Infoproviders in which the infoobject is used.
    Regards,
    Durgesh.

  • Find out user exits which should trigger while saving billing doc.(VA01)

    Hi All,
    please can u help me to find out user exits which should trigger while saving billing documents for VA01 transaction...I have already z report to find the user-exit for any transaction.I have tried in that also.
    Reply
    Ulhas

    Hi
    Try these
    USEREXIT_NUMBER_RANGE (Module pool SAPLV60A, program RV60AFZZ)                    
    The internal number range used in the standard system is specified                
    in the billing type table and can be changed in this user exit. This              
    user exit is only called when the billing documents is created.                                                                               
    USEREXIT_ACCOUNT_PREP_KOMKCV (Module pool SAPLV60A, program                       
    RV60AFZZ)                                                                         
    In this user exit additional fields for account determination that                
    are not provided in the standard system are copied into                           
    communication structure KOMKCV (header fields).                                                                               
    USEREXIT_ACCOUNT_PREP_KOMPCV (Module pool SAPLV60A)                               
    In this user exit additional fields for account determination that                
    are not provided in the standard system are copied into                           
    communication structure KOMPCV (item fields).                                                                               
    USEREXIT_NUMBER_RANGE_INV_DATE (Module pool SAPLV60A, program                     
    RV60AFZC)                                                                         
    Depending on the number range, table TVFKD is used to set the                     
    billing date (country-specific requirments in Italy).                             
    USEREXIT_NUMBER_RANGE is automatically deactivated when this user                 
    exit is being applied.                                                                               
    USEREXIT_FILL_VBRK_VBRP (Module pool SAPLV60A, program RV60AFZC)                  
    This user exit is only called when the billing document is created.               
    It is used to provide the header and the item of the new billing                  
    document with deviating or additional data.                                       
      USEREXIT_PRINT_ITEM (Module pool SAPLV61A, program RV61AFZB)                    
      Printing the item line of a billing document can be supplemented or             
      changed.                                                                               
    USEREXIT_PRINT_HEAD (Modulpool SAPLV61A, Programm RV61AFZB)                     
      Printing the header line of a billing document can be supplemented              
      or changed.                                                                               
    User exits in program RV60AFZD                                                  
      Short descriptions of the user exits are contained in the program:                                                                               
    -   USEREXIT_RELI_XVBPAK_AVBPAK                                                                               
    -   USEREXIT_NEWROLE_XVBPAK_AVBPAK                                                                               
    -   USEREXIT_NEWROLE_XVBPAP_AVBPAK                                                                               
    e following user exits are available in report SAPLV60B for transfer              
    accounting (function group V60B):                                                                               
    EXIT_SAPLV60B_001: Change the header data in the structure acchd                
      You can use this exit to influence the header information of the                
      accounting document. For example, you can change the business                   
      transaction, "created on" date and time, the name of the person who             
      created it or the transaction with which the document was created.                                                                               
    EXIT_SAPLV60B_002: Change the customer line ACCIT                               
      You can use this exit to change the customer line in the accounting             
      document. This exit is processed once the ACCIT structure is filled             
      in with data from document header VBRK.                                                                               
    EXIT_SAPLV60B_003: Change the customer line in costing                          
      The customer line is filled in differently for costing. You can use             
      exit 003 to influence the ACCIT structure.                                                                               
    EXIT_SAPLV60B_004: Change a GL account item ACCIT You can add          
    information to a GL account item (such as quantity specifications)     
    with this exit.                                                                               
    EXIT_SAPLV60B_005: User exit for accruals                              
    Once all relevant data for accruals was entered in the GL account      
    item, you can add to this data with this exit.                                                                               
    EXIT_SAPLV60B_006: Change the control line ACCIT                       
    You can use exit 006 to add information to the control line.                                                                               
    EXIT_SAPLV60B_007: Change the installment plan                         
    You can use exit 007 to add information to the installment plan        
    parameters in the GL account item.                                                                               
    EXIT_SAPLV60B_008: Change the transfer structure ACCCR, ACCIT and      
    ACCHD                                                                  
    After the accounting document is filled in with data, you can use      
    exit 008 to change the document once again.                                                                               
    EXIT_SAPLV60B_010: Item table for customer lines                       
    You can use exit 10 to influence the contents of customer lines        
    before they are created.                                                                               
    EXIT_SAPLV60B_0011: Change the parameter for cash account              
    determination or reconciliation account determination                  
    You can use this exit to change inbound parameters in order to         
    influence account determination.                                       
    >                                                                      
    Thanks
    Shiva

  • System is showing Bill Doc No in VF01 but in VF02 - No billing doc generate

    While creating invoice using Billing Plan, only for certain contacts,  we face an issue. In VF01-The system is saying Billing document XXXXXX123 is created but in VF02 , we are not able to see any document and the system says No billing document is generated for the same document no.
    The error message in Inbox says : Update was Terminated.
    Kindly tell me how to go about. Is this pertains to any authorization related issue. or is there anything which is wrong?
    Regards,
    Mahe

    In Output Procedure V10000 control - Requirement 62-Billing Doc : Release Post. is assinged to the Billing output type.
    Does this influence the Invoice creation  - When we are trying to create invoice , system is giving a billing doc no and in vf02 it is saying the bill doc does not exist. The error message in Inbox says : Update was Terminated.
    Is there any link between the two.
    Thanks,
    Mahe

  • How to recover a billing doc.which is archived

    Hi all,
    Please guide me to recover a billing document which is now archived, and requirement is to recover it and reverse it.
    Thanks and Regards

    Please read the following information it may help u.
    U MAY READ THE ARCHIVE DOCUMENT BUT I DO NOT HAVE ANY IDEA ABOUT REVERSAL..
    FOR DISPLAYING ARCHIVED DOC USE EA22
    AND Choose the tab go to with option billing document from archive.
    Following is the hint provided in about archiving
    Activate Info Structure for Archiving
        In this activity, you activate the archiving info structures for the
        archives for billing document headers, billing document lines, print
        document headers, print document line items, budget billing plans, and
        meter reading documents.
        Requirements
        If you want to access or display the above-mentioned archives, you must
        activate the archive info structures
        Activities
        Choose Activate for each archive required.
    Return ->
        Application

  • Reg: Document type should allow  only one  Material Type or a number series

    Dear Experts,
    In my project , clients requirement is to restrict the Material Type or  the number range assigned to a Matreial Type for a perticular  PO Document Type. We have  one document  type for Local Work Order -YLWO in which we  want to  enter the DIEN material type  material code only. since we want to use the Po document type to procure service from local vendor and same time we dont want to use the SERVICE Entry Sheet for the external service. Please guide me...
    My opinion is  -- We can try with USEREXIT  or BADI.
    If I am right then can any body suggest me Badi or USEREXIT name....
    We are using 4.6C so I am facing some problem .
    Thanks in advance.
    Regards
    Dibya

    Check the following  BADI with your ABAP Consultant  
    ME_PROCESS_PO_CUST
    I have used this BADI for controlling the type of vendors  according to PO document type. Currently I do not have access key to check the fields in this user exit. Check with your ABAPER on this whether it can fulfill your requirement.
    The use of item category D results into the service entry sheet. If you want to use DIEN material type then you have to do GR.
    what is the difference from your requirement ???
    Service entry sheet is nothing but the GR only.
    DEIN material type is used basically from SD or Customer service module.
    please make clear to forum what is your some problem by using 4.6C. It is too generic a statement.

Maybe you are looking for

  • Ejb deploy

    i use derby and sun app server i created application with enterprise bean and web content in it (index.jsp) my index.jsp is supposed to display the data returned by the bean but when i deploy it i get [#|2008-11-11T21:50:22.387+0100|WARNING|sun-appse

  • HAL, and daemons in general

    Hi. I'm new to the forums, and this is the third thread I've started; I haven't been getting any responses, so I hope I'm not posting in the wrong place, spamming, or being otherwise annoying. When I boot up, I get a message about my hardware abstrac

  • Mac Mini keeps restarting

    OSX 10.8.5 Processor 2.4 GHz Intel Core 2 Duo My Mac Mini keeps restarting. It just started out of the blew. I have not installed any ram or updated my system.  This is the error I get after it restarts Interval Since Last Panic Report:  6918354 sec

  • Urgent info required.

    0SD_C01   - Sales  ( Data source 2LIS_01_S001) I want Datasources, Infosources, extractor for the above.

  • Using PDF creator with excel documents scanned

    Hello, I´m using for the first time PDF converter and it isn't working as I expected. I'm trying to convert to excel a scanned document (created in excel) but it doesn't recognize all the number, it lefts a lot of blanked lines, unconfigures everythi