Excluding some Vendors in the range in F110

In Transaction F110 ,The User Enters a ranges of Vendors in the Parameter.In some cases they want to exclude some Vendors in the Range but that Provision is not provided in the EXTENSION of that Parameter.
Please Suggest me,is there currently a way with in F11O.
Regards
Balaji.

Hi
I can only split the range into several range in order to exclude some value, so If you need to insert the range beetween 1 and 10 and exclude the number 6, it needs to insert two range:
- 1 to 5
- 7 to 10
Max

Similar Messages

  • SCF /SCANNOW - is there any option to exclude some files for the scan?

    Hi,
    please let me know is there any option to exclude some files in SCF /SCANNOW command?
    Appreciate your help!
    Regards,
    Prabu

    Prabu,
    Did your question answered? How is the current situation? Have you tried to replace that file manually successfully?
    Please give us a reply in order to know if you need further help. 
    Karen Hu
    TechNet Community Support

  • Export_to_Excel_pkg - How to exclude some fields in the export?

    While it does generate an excel spreadsheet, it includes all the columns of my report even though I have conditions on most of them. I allow the user to select the columns he/she wants in the report. So I want the Excel spreadsheet to have the same fields as the report. How can this be accomplished?
    <br><br>
    I use APEX 3.0.1 not APEX 3.1 and I don't use a report server.
    <br>
    <br>
    Please help!
    <br>
    Regards,
    Robert

    I was able to create an Excel spreadsheet excluding some fields based on the column's condition. I accomplished this by modifying the Export_to_Excel_pkg package. I added a new procedure and modified an existing one (print_report_header). I bolded the area where I changed or added code.<br><br>
    FOR c IN (SELECT   column_alias, NVL (heading, column_alias) heading,
                       format_mask
    ,condition_type,condition_expression1,condition_expression2
                  FROM apex_application_page_rpt_cols
                 WHERE page_id = p_page_id
                   AND application_id = p_app_id
                   AND region_id = TO_NUMBER (LTRIM (p_region, 'R'))
      -- AND include_in_export = 'Yes'
    AND (column_link_text is null or
    (column_link_text is not null and
    UPPER(column_link_text)=UPPER(column_alias))
    )            -- and column_is_hidden = 'No'
              ORDER BY display_sequence)
         LOOP
    if upper(c.condition_type) = 'PLSQL_EXPRESSION' then
    export_excel_pkg.get_include_in_report(p_page_id
    ,p_app_id
    ,p_region
    ,c.column_alias
    ,c.condition_expression1
    ,v_include_in_report);
    if v_include_in_report <> 'YES' then
    goto next_field;
    else
    null;
    end if;
    else
    null;
            end if;
            v_number_of_cols := v_number_of_cols + 1;
            v_column_header_list :=
                    v_column_header_list || ';' || REPLACE (c.heading, ';', ' ');
            v_column_alias_list := v_column_alias_list || ';' || c.column_alias;
            -- apply column formatting
            IF c.format_mask IS NOT NULL
            THEN
               v_column_select_list :=
                     v_column_select_list
                  || ',to_char('
                  || c.column_alias
                  || ','''
                  || c.format_mask
                  || ''') '
                  || c.column_alias;
            ELSE
               v_column_select_list :=
                                   v_column_select_list || ',' || c.column_alias;
            END IF;
    <<next_field>>
    null;     END LOOP;
    The new procedure:<br>
    PROCEDURE get_include_in_report (
    p_page_id IN number,
    p_app_id IN number,
    p_region IN VARCHAR2,
    p_column_alias IN VARCHAR2,
    p_condition_expression1 IN VARCHAR2,
    p_include_in_report OUT VARCHAR2)
    AS
    v_condition varchar2(20) := 'PLSQL_EXPRESSION';
    v_query varchar2(32767);
    v_include varchar2(3) := 'NO';
    v_cur_hdl INT;
    v_rows_processed INT;
    begin
    v_query :=
    'SELECT ''YES'' '
    || 'FROM apex_application_page_rpt_cols '
    || 'WHERE page_id = :g_page_id '
    || 'AND application_id = :g_app_id '
    || 'AND region_id = TO_NUMBER (LTRIM (:g_region, ''R'')) '
    || 'AND condition_type = :g_condition '
    || 'AND column_alias = :g_alias '
    || 'AND ' || p_condition_expression1 ;
    -- open cursor
    v_cur_hdl := DBMS_SQL.OPEN_CURSOR;
    -- parse the query
    DBMS_SQL.PARSE(v_cur_hdl,v_query,DBMS_SQL.NATIVE);
    -- Supply binds (bind by name)
    DBMS_SQL.BIND_VARIABLE(v_cur_hdl, 'g_page_id',p_page_id);
    DBMS_SQL.BIND_VARIABLE(v_cur_hdl, 'g_app_id', p_app_id);
    DBMS_SQL.BIND_VARIABLE(v_cur_hdl, 'g_region', p_region);
    DBMS_SQL.BIND_VARIABLE(v_cur_hdl, 'g_condition',v_condition);
    DBMS_SQL.BIND_VARIABLE(v_cur_hdl, 'g_alias',p_column_alias);
    -- Describe defines
    DBMS_SQL.DEFINE_COLUMN(v_cur_hdl, 1, v_include, 3);
    -- Execute
    v_rows_processed := DBMS_SQL.EXECUTE(v_cur_hdl);
    -- Fetch a row
    IF DBMS_SQL.FETCH_ROWS(v_cur_hdl) > 0 THEN
    -- Fetch columns from the row
    DBMS_SQL.COLUMN_VALUE(v_cur_hdl, 1, v_include);
    -- Process
    ELSE
    null;
    END IF;
    DBMS_SQL.CLOSE_CURSOR(v_cur_hdl); -- close cursor
    p_include_in_report := v_include;
    end;
    <br>
    <br>
    I hope this helps others as well.
    <br>
    <br>
    Regards,<br>
    Robert

  • EXPORT at schema level, but exclude some tables within the export

    I have been searching, but had no luck in finding the correct syntax for my situation.
    I'm simply trying to export at the schema level, but I want to omit certain tables from the export.
    exp cltest/cltest01@clprod file=exp_CLPROD092508.dmp log=exp_CLPROD092508.log statistics=none compress=N
    Thanks!

    Hi,
    Think in simple first.. you use the TABLES Clause..
    Example.
    exp scott/tiger file=empdept.expdat tables=(EMP,DEPT) log=empdept.log
    In case if you scehma contains less number of tables.. !!
    Logically if you have large number of tables, I say this solutuion might work ...all around... alternative solutions to solve the problems.. If you have hundered of tables... in your schema....
    Try to Create a New Schema and using CTAS create a tables which are skippable in the Current Scehma.
    Do an Export and once the Job Done.. you recreate the backup fom New schema
    and Import to DB (Destinaiton)
    - Pavan Kumar N

  • Automatic e-mail of remittance advice to vendors following the Payment Run

    Hi,
        We are implementing the Automatic e-mail of remittance advice to vendors following the Payment Run(F110) for one of our company code located at UK.
    But we have already implemented this process for one of the company code located in US using the Business transaction event 00002040 and it is working fine.
    Now i want to find out if we could utilitize emailing the employee reimbursement remittances for UK as we do here in the US using the same BTE.
    I just want to know if our current BTE (business transaction event) can be set up for their group also along with generating the SAP script to format the remittance.
    Earliest reply will be appreciated.
    With regards,
    Shree.J

    Hi,
    do you mind share with me how did you implement the Automatic email of remittnance advice to vendor after payment run?
    I am in process research this solution. appreaciate if you can share with me if you have any info.
    +91 9791122480
    Thanks in advance.
    regards
    v.krishnamoorthy

  • Setup of Inspection Lots for some vendors and not for all

    Hello,
    We do have a situation where in the business wants Inspection Lots to be set up for some vendors and not for some vendors - for the same material.
    What it means is, for Material XXXXX001, Vendor 00003 needs inspection during GR for Purchase Order and Vendor 00005 and 00006 should be set up for Non Inspection upon GR and stocks should be posted to Unrestricted.
    Any suggestions / options are welcome.
    Thanks
    Kris

    Hello,
    You can use vendor q-info records to handle this... deactivate the goods receipt inspection on the vendor(s) that do not require incoming inspection.
    http://help.sap.com/saphelp_erp60_sp/helpdata/en/c6/b9b3341a933f50e10000009b38f83b/frameset.htm
    Regards,
    John

  • Exclude some pages from page numbering

    Hey,
    I create an RTF template to produce PDF output.
    I want to exclude some pages from the page numbering.
    Does someone know how this may be possible?
    Thanks for your assistance
    brgds,
    David DC

    I think I was "nearly" able to achieve what you want to achieve.
    I used Word 2003 - just in case and 5.6.x (hope it doesn't matter).
    You need to create two section breaks:
    Page 1
    --- Section Break ---
    Page2 - No page numbering
    --- Section Break
    Page 3- (which will show page number 2).
    For the first page you can pretty much hard code the page number.
    For the second page you go to the header and
    1) Select "unlink to previous" from the header/footer toolbar
    2) Remove the page numbering from the second page.
    For the third page (section 3) you go to the header and:
    1) Select "unlink to previous" from the header/footer toolbar
    2) Remove the previous header
    3) Insert the page number, select it with the cursor
    then select "Format Page Number" from the header/footer toolbar.
    4) In this dialog box you select under page numbering "start at": 2
    5) Insert the total number of pages, select the field with the cursor
    then select "Format Page Number" from the header/footer toolbar.
    6) In this dialog box you select under page numbering "start at": 2
    FUNNY - in Word it still stays Page 2 of 3 in the header of the third page, but
    when I run it with XML Publisher I get Page 2 of 2.
    So I get after the run for the page header of a 3 page document:
    Page 1 Header:
    Page 1 - NO PAGE TOTAL - I get to this later
    Page 2 Header:
    NO PAGE HEADER
    Page 3 Header:
    Page 2 of 2
    Now how do I get the correct page number onto the first page - I tried a trick and it worked...
    1) Insert a bookmark (ie. name test) behind the last word of your document - on the last page. Menu: Insert bookmark
    2) Go to the header of the header of the first page behind:
    Page 1 of
    3) Now select from the menu Insert: Referernce -> Cross reference.
    4) Select refernce type "Bookmark" ,
    Insert refence to "Page Number"
    Select reference to test.
    Worked for me... Let me know if that is what you wanted to achieve and if it works for you.
    Klaus

  • Under F110 t-code, I need to exclude certain vendor #'s in this range. How

    Hi,
        Under F110 t-code I generally pull in a range of vendor #'s (ex: 850000-999999) and have come across a situation where I need to exclude certain vendor #'s in this range.  Need to know if we can get get an exclusion parameter.
    Pls let me know what could be the procedure to come out from this type of situation.
    Please let me know what can be done or if there is currently a way within F110 to do this without skipping vendor on proposals.

    hi,
    After entering the company code and Vendor number Execute it and u can see all the vendor balance Invoices and select the Invoices which u want to clear the amount.After this u run the APP, the only opn invoices can be cleared......
    OR
    In F110 while running the Payment Proposal click on that and u can see the list of the invoices Or to which Vendor u want to clear the amount and Double click on it. Again get back to the previious page and press enter .
    Hope this solution is enough.....
    Ranjit

  • I want to exclude certain vendors up front of proposal creation from F110

    Hi,
         I want to exclude certain vendors up front of proposal creation from T.code F110.
    Meaning - I would use the range 850000 - 999999, but I would also like to exclude for example vendor #'s  912271, 912771, 959281 from this proposal.
    Currently the only way to exclude a vendor is to skip it from the proposal after it creates.
    But is there anyother to overcome with this issue because it requires lot of time to find vendor and then delete it.

    Hi,
    Its possible to exclude with the help of field LFA1-NAME1 in the free selection screen.  Select the field, give the names and mark exclude values indicator.
    Hope this helps.
    Thanks
    Krishna.

  • When we run F110 on multiple vendors, some vendors check not printed

    When we run f110 on Multiple vendors (payment method is C). Some vendors do not get a check. how ever a payment document is created. I can see the posting in FBL1n.
    the text of the error message is thus:
    "The following payment documents/payment orders were not updated 
    (Result of the payment document update)                         
        CoCd Payment document/Payment order                         
        (payment document numbers are listed here)                                            
    The accompanying payment media have not been generated"
    Has anyone had this problem before?
    All help is appreciated.          
    -Pratibha

    Hi Pratibha
    The reason may be
    the vendor having a separate house bank in vendor master wrt to the varient u have given when running app.
    If the variant not belongs  the vendor house bank with payment method combination, then only the accounting entry will be updated.
    Pls check.
    Srinivas

  • Can you expand the range of the WRT150N by changing some settings?

    I notice when I am on the set-up mode by using the Linksys IP address, there is an option for wireless type - N is not currently tabbed, although I can actually use the router from my office to house which is about 300 feet. (I get 2 bars out of 5 on the graphic display) Can you focus the signal by making some changes in the set-up menu, thus giving you more range?

    Hi,
    Please let me know the current wireless settings on the router .

  • Pool vendor items from several vendors in automatic payment program / F110

    Hello everyone,
    I am wondering if you could help me with an issue about invoices and credit notes for several vendors in the APP/F110. We use ECC 6.0.
    This is the situation: there is a group of vendors. Some vendors within this group have only credit notes posted to.
    When running the APP/F110 for the group of vendors, there is a debit balance for the "credit note" vendors.
    So far normal behaviour in SAP. But what I would like to do, is offsetting these credit notes with invoices posted on the other vendors (via the APP/F110).
    In other words, pool together the open items of several vendors so they would be regarded as belonging to one vendor. This way, the credit notes will be cleared via APP/F110.
    Does anyone know if this can be achieved in SAP? I have already searched on the forum and in SAP Notes, but no luck there.
    Many thanks!
    Kind regards
    Becky

    Hi
    Assign the Vendor for which Credit memos are passed as (Partners/ Branch office functionality) for Vendors for which Invoices are booked. Than try running F110
    Regards
    Sanil

  • When I switch my time capsule to 5.0ghz mode the range of my wireless network drops significantly.  Near the Time Capsule my Macbook Pro works fine, in my bedroom I have almost no signal.  In mixed mode it works fine.  Any ideas on how to get 5.0 working?

    When I switch my time capsule to 5.0ghz mode the range of my wireless network drops significantly.  Near the Time Capsule my Macbook Pro works fine, in my bedroom I have almost no signal.  In mixed mode it works fine both placed.  Any ideas on how to get 5.0 working?  I thought 5.0Ghz was supposed to have a wider range.  Do I need to change a setting on the Macbook Pro?
    Thanks, W

    I'm not sure if you understand that 5 GHz has some upsides, but also some very significant downsides.
    The upside is that the 5 GHz signal will allow faster speeds.
    The downside is that you must always give up something in order to gain something else.Unfortunately, the marketing hype about 5 GHz does not go into very many details about this.
    In the case of 5 GHz, the 5 GHz signals are much weaker than 2.4 GHz signals, so they do not travel as far or penetrate any obstructions like walls or ceilings nearly as well as 2.4 GHz signals. In many cases, in order to get good 5 Ghz performance, you literally have to have almost a line-of-sight relationship between your computer and the wireless router.
    If you have a new dual band router, which broadcasts both a 2.4 GHz and 5 GHz signal simutaneously, your Mac will connect to the best signal quality automatically depending on its location in relation to the router. In the same room, without any obstructions, it will connec to 5 GHz. But, take the laptop down the hall a few rooms and around the corner and the Mac will connect to the 2.4 GHz signal because at that location, the 2.4 GHz signal is not only stronger, it is also faster.

  • Comparing fbl1n open items  my program some vendors total amont is not tali

    Hi
    this is vendor aging report.  i have used BSEG, FAGLFLEXA, LFA1, BKPF.
    problem is  Comparing fbl1n open items  my program some vendors total amont is not tali.
    sapose : 1033  fbl1n date is : 30.01.2009.
               my report used same date .
    here proble is : fbl1n show clear item also  in  partuculr date range but
                             my report show only open items ony not peaking  close item's in ie date range.
    SELECT BUKRS BELNR BUZEI GJAHR LIFNR KTOSL XAUTO REBZG UMSKS KOART AUGBL BSCHL UMSKZ SHKZG WRBTR ZFBDT DMBTR ZBD1T ZBD2T
    FROM BSEG INTO CORRESPONDING FIELDS OF TABLE I_BSEG WHERE BUKRS EQ P_BUKRS AND
    LIFNR IN S_LIFNR AND
    AUGDT GE P_BUDAT and AUGBL = SPACE
       AND KOART = 'K'
    AND ( BSCHL = '21' OR BSCHL = '22' OR BSCHL = '23' OR BSCHL = '24' OR BSCHL = '25' OR BSCHL = '26' OR BSCHL = '27' OR
    BSCHL = '28' OR BSCHL = '29' OR BSCHL = '30' OR BSCHL = '31' OR BSCHL = '32' OR BSCHL = '33' OR BSCHL = '34' OR
    BSCHL = '35' OR BSCHL = '36' OR BSCHL = '37' OR BSCHL = '38' OR BSCHL = '39' OR BSCHL = '50' ).
    please give me solustion.

    hi,
    See perhaps this pable
    VBSEGA                         Document Segment for Document Parking - As
    VBSEGD                         Document Segment for Customer Document Par
    VBSEGK                         Document Segment for Vendor Document Parki
    VBSEGS                         Document Segment for Document Parking - G/
    Rgds

  • Including down payment made to vendor in the internal order

    Hi all
    My requirement is like this.
    We use IM and IO(Capex orders) for procuring and capitalising assets. We are able to assign all the costs of procuring assets (both APC and incidental expenses to the internal order). We use purchase orders and assign the internal order while raising purchase order.
    Sometimes we do make Down payments(advances) without raising purchase orders. My question is how to include this down payment made in the internal order. We cannot assign any internal order while making the down payment. But, can we include this down payment made to vendor in the internal order(commitment) while making down payment or after that.
    FYI:I came to know that there is some functionality in Controlling (Project systems) where we can assign the down payment made to the internal order after making payment.But, i do not know how to do that.
    Pls somebody reply me.
    Thank you very much in advance.
    Regards,
    Vishnu
    VST-IT.
    Pls somebody answer my query.

    The functionality is available in Controlling. I dont know about PS.
    I need to know how to do it.
    Regards
    vishnu
    Pls anybody suggest me on this issue.

Maybe you are looking for

  • How do I port my Verizon Prepaid number to a new Verizon contract?

    Right now I have the $35 prepaid plan and I'd like to update to a Maxx HD, which is up on Amazon for $20 with a new contract. However, the Amazon page is telling me that my number is not transferable. I don't know what to do here, can someone help?

  • Inserting Form Fields in Pages Document

    Does anyone know if it is poossible to insert a form field into a pages document just like what can be done is a Word document?  I would like the ability to develop a template that has some drop-down menus throughout the document (for different varia

  • Survey URL Missing MIG

    Dear Experts, We have a mail form with Survey URL, we tested it via TEST SEND functionality. However when we send the mail form in french we get MIG generated in the mail, but when we select dutch language while TEST SEND , there is no MIG and hence

  • Do I need to pay to use Edge Animate

    I hace a paid account I'm still in the 30 days I close my paid account  do I need to pay to use Edge Animate ?

  • A very specific and weird effect

    Hi, i'm semi-new to AE and i'm trying to do this effect in minute 1:58 from this music video: https://www.youtube.com/watch?v=ktoaj1IpTbw&feature=youtu.be Is for an assignment and i would really like to know how to do it. Any kinda of help will be ap