Rfq number is not storing in anfnr

hi experts
when i am creating the rfq the rfq number is storing in ebeln inekko table, but it is not showing in anfnr,so please tel me the reason
thanks in advance

Do you mean field ANGNR ?  It is just a  text field for referencing and for future reporting purposes. It is the reference of the vendors quotation , it is not OUR RFQ number normally .  and is normally entered in the agreements / contracts Manually .

Similar Messages

  • How do I change my incoming calls to view caller's phone number instead of name?  This is for numbers not stored in my contacts (i.e. Unknown)

    How do I change my incoming call view to see the "phone number" instead of seeing "Unknown" for contacts who are not stored in my phone?  Whenever a call comes in it says unknow instead on the phone number that is calling.

    You need to set up the accounts in System Preferences/Accounts, then activate Fast User Switching.
    That way you can quickly log in to your own account - then back to his.
    You should obviously have different passwords.

  • How to display the RFQ Number as the Document Name in the E-Mail output.

    Hi All,
    I want the Document Name of the E-Mail Notification of RFQ to be the RFQ Number itself.
    For eg. RFQ E-Mail-60000015096.pdf
    How can this be configured?
    Thanks,
    Muneer.

    Hi,
    I have done the changes for PO. Its working fine.
    But its not working for RFQ.
    For eg, for PO its displaying as "PO E-Mail 45000xxxxx".
    But for RFQ its just displaying "RFQ E-Mail" - Number is not coming.
    I have used the text as "PO E-mail &EKKO-EBELN" for PO.
    And for RFQ, I'hv used "RFQ E-Mail &EKPO-ANFNR".
    Thanks,
    -Muneer.

  • RFQ which are not converted to PO

    I want to diplay all RFQ which are not converted to PO.
    Is there any BAPI or FM ?
    or How to fetch data ?from which table ?
    thanks
    kumar

    I would disagree with the above reply.
    I would rather suggest you to use ekpo..
    for the rfq no and item query ekpo and pass rfq no and item no in the fields anfnr and anfps. This will give you the PO number/item in ebeln and ebelp.
    not the best method... but this works. Or you have to go to the PR of the RFQ and check the status whether PO has been created or not. But you don't always have the RFQ created from PO so this will not be a good option.

  • Gr/ir slip field value is not stored in table mkpf..!!

    dear sap gurus,
        i have a typical problem.. i am doing Transfer posting from one storage location to another. using MB1B with 311 mov type.. and mentioning some values in the gr/ir slip field.. but system is not storing the value in table..
    Can any one say how to solve this.. if i use MIGO_TR then its storinghte value i mentioned in MKPF table..
    Regard,
    Manu

    Hi Manu,
    This GR/GI slip number has only been designed for use in those countries (for example, Italy) whose legislation requires specification of this number for goods that leave the plant and are transported on public roads. In other countries, the material document number printed on the GR/GI slip (in the standard system) is usually sufficient. To enter external  documents, you can use the field Material slip or Delivery note.                                                                               
    If still wants to use this field you are required make relevent settings in config.                                            
    Please go to transaction OMC1.       
    There you will find 4 push buttons.                                        
       1. Activation of GR/IR slip for plant.                                     
       2. Number range grouping code.                                             
       3. Intervals for number range.                                             
       4. Object(here you are assigning the number range for the plant,  storage location and movement type.          
    This will allow you to store GR/IR slip number in MKPF with trx. MB1B
    Regards
    Mauro

  • Ical not storing all data & cant initialize lists

    okay so im trying to store all ical data in seperate lists for hours months years and the actual event ect....it worked fine for a while but now its not storing all the events....and then when it did it would carry over from one run to another. I figured out that was probably because they were properties but when i make the lists global i get a "this variable is not initialized" problem. and even if i somehow managed to fix that its still not reading in all the data. ive been at this for 2 hours and cant see the problem. please help:
    variable defs:
    (*System Variables*)
    global running_processes
    global _weekday
    global _date
    global _month
    global _year
    global _hours
    global _minutes
    global _seconds
    global time_ofday
    (*iCal Variables*)
    global iCal_Open
    global iCal_Run
    global iCal_Calendars
    global iCal_Events
    global icaleventsstore
    global icaleventslast
    global iCalEvents_StartMonth
    global iCalEvents_StartDate
    global iCalEvents_Startyear
    global iCalEvents_Starthours
    global iCalEvents_StartMinutes
    global iCalEvents_EndMonth
    global iCalEvents_EndDate
    global iCalEvents_Endyear
    global iCalEvents_Endhours
    global iCalEvents_EndMinutes
    global iCalEventsStart
    global iCalEventsEnd
    code to split up dates and date:
    on Ref_Events()
    proc()
    if running_processes contains "iCal" then
    (*if iCal is open do the code as normal*)
    set iCal_Run to 1
    set iCal_Open to 1
    tell application "iCal"
    set iCalEventsStart to the start date of every event in every calendar
    set iCalEventsEnd to the end date of every event in every calendar
    set iCal_Events to the summary of every event in every calendar
    set x to 1 --holds calendar to be used
    set y to 1 --holds event to be used
    repeat while x is less than or equal to the number of items in iCal_Events
    repeat while y is less than or equal to the number of items in item x of iCal_Events
    get item y in item x in iCalEventsStart as string
    set temp_date to the result
    --start dates
    set iCalEvents_StartMonth to iCalEvents_StartMonth & the second word of temp_date
    set iCalEvents_StartDate to iCalEvents_StartDate & the third word of temp_date
    set iCalEvents_Startyear to iCalEvents_Startyear & the fourth word of temp_date
    set iCalEvents_Starthours to iCalEvents_Starthours & the fifth word of temp_date
    set iCalEvents_StartMinutes to iCalEvents_StartMinutes & the sixth word of temp_date
    --end dates
    get item y in item x in iCalEventsEnd as string
    set temp_date to the result
    set iCalEvents_EndMonth to iCalEvents_EndMonth & the second word of temp_date
    set iCalEvents_EndDate to iCalEvents_EndDate & the third word of temp_date
    set iCalEvents_Endyear to iCalEvents_Endyear & the fourth word of temp_date
    set iCalEvents_Endhours to iCalEvents_Endhours & the fifth word of temp_date
    set iCalEvents_EndMinutes to iCalEvents_EndMinutes & the sixth word of temp_date
    --event description
    get item y in item x in iCal_Events as string
    set temp_event to the result as string
    set icaleventsstore to icaleventsstore & temp_event
    set y to y + 1
    end repeat
    set x to x + 1
    end repeat
    end tell
    else
    (*if iCal is not open do the code then close it*)
    if iCal_Run is 0 then
    set iCal_Run to 1
    tell application "iCal"
    set iCalEventsStart to the start date of every event in every calendar
    set iCalEventsEnd to the end date of every event in every calendar
    set x to 1 --holds calendar to be used
    set y to 1 --holds event to be used
    repeat while x is less than or equal to the number of items in iCalEventsStart
    repeat while y is less than or equal to the number of items in item x of iCalEventsStart
    get item y in item x in iCalEventsStart as string
    set temp_date to the result
    --start dates
    set iCalEvents_StartMonth to iCalEvents_StartMonth & the second word of temp_date
    set iCalEvents_StartDate to iCalEvents_StartDate & the third word of temp_date
    set iCalEvents_Startyear to iCalEvents_Startyear & the fourth word of temp_date
    set iCalEvents_Starthours to iCalEvents_Starthours & the fifth word of temp_date
    set iCalEvents_StartMinutes to iCalEvents_StartMinutes & the sixth word of temp_date
    --end dates
    get item y in item x in iCalEventsEnd as string
    set temp_date to the result
    set iCalEvents_EndMonth to iCalEvents_EndMonth & the second word of temp_date
    set iCalEvents_EndDate to iCalEvents_EndDate & the third word of temp_date
    set iCalEvents_Endyear to iCalEvents_Endyear & the fourth word of temp_date
    set iCalEvents_Endhours to iCalEvents_Endhours & the fifth word of temp_date
    set iCalEvents_EndMinutes to iCalEvents_EndMinutes & the sixth word of temp_date
    --event description
    get item y in item x in iCal_Events as string
    set temp_event to the result as string
    set icaleventsstore to icaleventsstore & temp_event
    set y to y + 1
    end repeat
    set x to x + 1
    end repeat
    end tell
    quit application "iCal"
    end if
    end if
    if icaleventsstore is not icaleventslast then
    say "new events stored in I Cal. Would you Like to View a List of all events?"
    display dialog "View List of Events?" buttons {"Yes", "No"} default button 2
    if the button returned of the result is "Yes" then
    choose from list icaleventsstore with prompt "All the Current Events"
    else
    -- action for 2nd button goes here
    end if
    set icaleventslast to icaleventsstore
    end if
    end Ref_Events

    You need to be careful when using conditional statements to set global variables (the global declaration does not set any values). I can't tell from the just the one handler you posted, but an example would be the iCal_Run variable - unless it is declared somewhere else, it won't have a value if there isn't an iCal process.

  • RFQ Price is not picking in the PO

    Hello Expert,
    I am creating the PO with reference to PR (ME57) for vendor X. In the PR price is maintained as 2 INR per unit. PO price is 2 INR per unit.
    I am creating the RFQ also with reference to PR.
    In RFQ, I am maintaining 10 INR per unit for vendor X.
    When I edit the PO (adding RFQ number at item level), it is not picking the RFQ price (10 INR), still it is taking the PR price (2 INR).
    There is no info record in this case.
    Why the system is not picking the RFQ price after entering RFQ number (ME22N)?
    Thanks,
    Input

    Hi,
    If you create a PO and reference an RFQ, the RFQ price will be used
    If you create a PO and reference a requisition, it will use the
    validatition price ONLY if the adopt price flag is set in the
    requisition. Please see attached note 393367.
    You cannot reference an RFQ and a requisition at the same time.
    Kind regards,
    Lorraine

  • Credit Card Processing in SAP-CC# not stored in Sales Order or Cust Master

    Scenario
    1. Customer creates internet order, enters CC # which is authorized by CC processor via interface.
    2. If successful, order passed on to SAP, delivery is made, Invoice is created.
    3. No credit card number is stored on Order or Customer Master. The authorisation details are stored on Internet Order etc.
    4. Invoice created is an open item in customer account (ONE TIME Customer Account) referencing Web Order Number.
    5. NO FCC1 is possible since no CC# stored.
    6. User logs on to Credit Card companies website and downloads credit card funding information.
    7. Creates a journal entry in system to credit one time customer account with Lumpsum amounts and debits CC Clearing Account.
    8. Clears Customer Invoices in One time Customer account against the Lumpsum amount posted above.
    7. Uploads EBS  and clears the debit in CC Clearing Account by crediting the same account and debiting bank account.
    Q1. Is there a way we can upload the transaction level details which the CC processing company can provide to clear the invoices and debit the CC Clearing Account? (Automate Step 7 and 8)
    Q2 We are exploring options to convert data into EDI820 or format the data in Lockbox BAI2 and clear invoices etc
    Has anyone implemented the scenario above wherein the Credit Card numbers are not stored in SAP?
    Any help is appreciated.

    Hi All,
    Additional information, i do not see the following in Shop Admin under Transaction tab
    1) Payments -Check Box
        By Invoice possible
        By Cash on Delivery possible
        By Credit Card possible
    2)Preassignment: Payment  - Radio Button.
       By Invoice *
       By Cash On Delivery *
       By Credit Card *
    Please also let me know whether CRM_ISA_BASKET_PAYMT needs be called
    Thanks
    Krishna

  • Line number in a stored procedure

    Hello All,
    In a stored procedure, as a part of logging the debugging information, I want to store the current line number in a variable (say line_number) and return it from the stored procedure as a output paramater. I would like to update line_number with the current line number in the stored procedure code at certain intervals. This would help me to know till where the procedure executed in case of failure.
    Now my question is as follows:
    Is there any standard variable in Oracle which gives the current line number in the stored procedure?
    Please see the example code below
    CREATE OR REPLACE PROCEDURE XXXXX
    (line_number OUT NUMBER)
    AS
    line_number = <current line number in the code>
    line_number = <current line number in the code>
    line_number = <current line number in the code>
    EXCEPTION
    WHEN OTHERS THEN
    BEGIN
    ROLLBACK;
    END;
    END XXXXX;
    Best Regards,
    Ramesh

    Hi,
    No, is not. Try to use all_source for this.

  • Why APO transaction data is not stored in tables

    Hi All,
    Why APO transaction data is not stored in tables.
    can u explain me.
    Babu

    Good question Babu,
    There indeed are tables for master data in APO database whereas the transaction data (qty, amount, dates and document numbers) are stored in a denormalized data base called livecache. But the master data too is identified with GUID's.. a cryptic and unique number given to e.g. a location, prodcuct, t/lane, customer and documents. This is because of speed of access if e.g. an external system is to fetch an information from APO using a unique session ID, instead of making a sequential read in APO tables, it read the live cache by called the GUID's that the calling characterics of the event. If one or more ECC system or an external execution system is connected to APO and one of the system collapses and rebuild again or if a system is assigned to a new business system group etc.. then its likely that systems can be out of sync and its where the live cache syncs up the data with APO tables again. If you still want to see tables in human readable format.. there are views available e..g the tables for locations LOCID and table for products MATLOC would take only GUID as inputs but the view V_MATLOC will show you the materials and locations by the numbers you know.
    Hope I was able to explain. But yes the why part is still something of a mystery to me.. becasue with transparent tables it is easier to create local reports in APO and thats what probably SAP doesnt want. SAP can answer best as to what were the initial user and commercial considerations when developing APO
    Regards,
    Loknath

  • First row from Service Order Object list not stored in OBJK table

    Hi all,
    Please be patience with my terminology .
    Could you please explain me if we have SO created based on notification, and that notification already have Equipment number, why this equipment is not created in OBJK table? So always the first row (as in attachment) is not stored in OBJK, other rows(objects) are there.
    I know the EQUNR is stored in AFIH, but it's useless for us because I'm creating HANA analytical view with following join logic (simplified):
    AFIH.OBKNR=OBJK.OBKNR
    OBJK.ILOAN=ILOA.ILOAN
    ILOA.TPLNR=IFLOT.TPLNR
    ILOA.ILOAN=EQUZ.ILOAN (where EQUZ.DATBI='99991231')
    EQUZ.EQUNR=EQUI.EQUNR
    The join logic might not be 100% correct.
    Thank you for your help.

    Using the tags to format your code may help you get a response sooner than later.
    This and other useful pieces of information are located in the  FAQ
    http://wiki.oracle.com/page/Oracle+Discussion+Forums+FAQ                                                                                                                                                                                                                                                                                                                                                                                                                                                       

  • Release rejected - Number Range not found.

    Hi,
    Iam creating a Rework Order RW01 order type.settings are almost same as PP01.
    When I try to release the order it shows Release rejected and check log .
    In the log I find below message thrown.
    " You must enter the batch for material XYZ
    *Message no. CO691"
    However when I the enter the batch manually add try to release it again it shows Release rejected and check log .
    In the log I find below message thrown.
    " Number range  not defined
    Message no. 26023
    Diagnosis
    You have enter number range  for the document type, but this number range is not defined for the number range object "document".
    Procedure
    Check in Customizing (Document management -> Control data -> Number ranges) which number ranges are defined.
    If you want to enter a number range that has not been defined for the document type, contact your system manager. It may be necessary to create a new number range."
    I have done the number range for order type RW01 in CO82 as well .
    Is there anything I miss in Order Type configuration or Batch Management.
    In PP01 order type my Batch updates when I release my order , Same setting is for RW01 as well.
    Production Scheduling profile is also same for both.
    Regards
    Bhgl

    Dear,
    Please check the number range in CO82 or OPJH for your order type RW01.
    Also check the component has determine the batch.
    In the release control is set to user to decide (TCO11-FRBATCH = '1') or release despite of missing parts (TCO11-FRBATCH = '2') in Transaction OPJK
    For all these components it is stored in the material master that a batch determination should be executed before or during the release (KZECH = '1' manually, KZECH = '3' automatically) and no batches have yet been assigned to these components before the order is saved.
    Regards,
    R.Brahmankar

  • Firefox keeps dropping my bookmarks or perhaps not storing them when I ask it to. Is there a fix?

    Firefox keeps dropping some of my bookmarks and not storing others when I ask it to. Also, in searching for answers, I found out that I have 2 profiles. I couldn't open any of the 3 items in the first but in the second one I found a number of dated bookmarkbackups files. Am I supposed to have 2 profiles? How do I fix all this.
    I have also noticed other anomalies and wonder if they are part of the new 32.0 download I just got. Today, twice, exactly 27 instances of Firefox opened when I clicked on it just once.

    These can't get your data back, but will help in the future.
    These add-ons can be a great help by backing up and restoring Firefox
    '''[https://addons.mozilla.org/en-US/firefox/addon/febe/ FEBE (Firefox Environment Backup Extension)]''' {web link}
    FEBE allows you to quickly and easily backup your
    Firefox extensions, history, passwords, and more.
    In fact, it goes beyond just backing up -- It will actually rebuild
    your saved files individually into installable .xpi files.
    It will also make backup of files that you choose.
    '''[https://addons.mozilla.org/en-US/firefox/addon/opie/ OPIE]''' {web link}
    Import/Export extension preferences

  • PO report for which RFQ reference  are not existed

    Hi Experts,
    I want to see all the PO's which are not having RFQ as reference Documents.Kindly tell me what report I  can use.
    Regards,
    Sri.........

    Hi
    Try T-Code ME4N Purchasing Document by RFQ Number. If it doesn't meet your requirement. You need to develope a report as required.
    Regards,
    Sadiq

  • My daughter cannot remember her passcode for her iPhone 5. She needs a phone number that is stored in the phone and cannot remember her passcode. we have tried many groups of numbers and now we are locked out for an hour each time we put in the wrong pass

    My daughter is out of the country until May. She did not take her iPhone 5 with her. Now she needs a phone number that is stored
    in the memory and cannot remember her passcode. I have tried all of the possibities that she e-mailed , but none of them work
    and now I am locked out for an hour each time I enter an invalid passcode. Help? How can I get around this to access the phone?

    Follow the instructions at http://support.apple.com/kb/HT1212

Maybe you are looking for

  • [SOLVED] Did update - MPD doesn't work

    I recently did a large pacman -Syu and while I don't remember all of the packages, I do remember that gnome3 was in there. I've heard that gnome3 has pulseaudio as a dependency which could be why it was pulled along somehow. I don't know if it's this

  • MySQL - Java Unable to update

    I am using mysql and when i try to update a table it says.... java.sql.SQLException: Syntax error or access violation message from server: "You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the r

  • Delete duplicate?

    Hi all, I need delete duplicate row in table A I was trying with delete a where aa in (select aa from a group by a having count(*)>1) but I need leave one row in table and other (duplicate rows) delete. Whats the best way to do this? thanks

  • Problems with itunes while making a playlist?

    I'm making a playlist in itunes. At 36 songs I got a message from my computer saying itunes stopped working. It closed itunes. I reopened it. Nothing wrong. Kept adding to my new playlist. At the 50-60 song area itunes froze. Still is at this moment.

  • Is the Fair Usage Policy still 300gb?

    Is the Fair Usage Policy still 300gb? The reason I ask is that I've just checked and I'm at 294gb up until 23:59 on the 27th yet I haven't received any speed restriction warning emails this month when you usually get a mail at 240gb. Solved! Go to So