How the Forwording agents Quotation reflect in SAP with best Quotation?

How the Forwording agents Quotation reflect in SAP ,The best quotation should be select among Forwording agents & the same should documented, how it is possible?
Please explain it ?

Hello Julian,
in the procurement visibillity process such annulations are not handled. If you want to have them you could create new Event Types and send unexpected events to EM. Similar to what i described in your other post.
On EM site you need a new multi task activity that reacts on these annulation event codes. To reset the reported event you can use activity:
EE_RESET     Reset the Actual Dates and Status for an Expected Event     ACT_RESET_EE
After the execution of this activity the event is reset from reported to expected.
Best regards,
Steffen

Similar Messages

  • How to extent table space in ecc6 sap with aix

    Dear ALL,
    how to extent table space in ecc6 sap with aix
    REGARDS,
    ashutosh

    Hi Ashutosh,
    You can use brtools/sapdba in oracle and increase tablespace. You have not mentioned which database and version using.
    Regards,
    Anil

  • How the solution manager is realated to SAP BW

    Hi experts!
    Well!! I have been given a task to work on solution manager 4.0 and make it useful for SAP BI.
    so I have a few questions.
    1) Does basis person look after the config and authorizations?
    2) I have been told to include the system change request ( SCR), Help desk issues into the  solution manager... so how can I get that.
    3) where my role starts exactly, I mean after connecting SAP BI to Solution manager,I guess this is done by BASIS person.
    Points will be rewarded to the helpful replies... thanks in advance.

    Hi Abass,
    To answer few of ur questions,
    2) you need to configure the Solution manager tool with the BI system when a ticket is raised or a change is triggered. These things will be monitored by a help desk or service desk person or a BI expersie person.
    I guess your role is to implement this in ur org that means you need to create from basics such as creating business partners etc
    Regards
    Srini

  • How the performance appraisal system works in SAP...

    HI all,
    Plz guide me for a demo presentation for a client ...where they are required a performance appraisal for a service industry...plz consider 360 degree appraisal process....rating system...rating weitage as per reporting structure..(his immegiate boss will have 50% weitage and rest subordinate and peers will have remaining 50%) this is an example....
    Thanks,
    Amol

    Hello,
    This is finance forum.
    You better post this question in HR forum.
    Regards,
    Ravi

  • How to transfer one file to multi sap with same IDOC Type?

    Hi all!
    I need your help..
    My senario is tansfer one xml-file to multi-sap server
    with same IDOC type.
    IS it possible to transfer without BPM?
    I think that the way not using bpm is impossble,
    because the file is deleted by sender adapter.
    If I'm using BPM, how to design?
    I consider 'fork' or 'switch',
    but, I guess,
    Idoc is will be initialized by other branch at last step.
    I hope good information.
    Regards.

    Hi,
    you can create using BPM .
    IR
    you need to create source for one interface and trager for two differnent interfaces.
    suppose if you are doing message mapping in message tab source is one interface targer is multiple interface..so that source can map multiple interfaces...
    create the Interface mapping one source two are target interfaces.
    Create the Integration proces...
    First step is receive step next use the Transformation Step that means source message it will conver two targets...then use the Fork step Recever Determination step goes to the first Send step..
    again drag the another receiver determination and use tge send step..close the FORK step.
    regards,
    venu.

  • The given link is not working sap help(best Practice documets)

    Hi Experts,
    http://help.sap.com/bpcrmv250/CRM_DE/BBLibrary/html/BBlibrary.htm_
    Please see the above link,
    Earliet  the link consists of documents for CRM 7.0 confrigration.
    But now the link is not working at all.
    PLease provide a link if it is there (which consists for the same documents such as CRM 7.0)
    Thanks in advance
    Prajith P

    HI,
    You can refer the correct link given below:
    http://help.sap.com/bp_crmv12007/CRM_DE/BBLibrary/html/BBlibrary.htm
    Regards,
    PP

  • HT201365 I just downloaded IOS 7. In my old software if I wanted to get to spotlight to find something I just scrolled from left to right from my home screen. That doesn't work now...so how the heck to I get to spotlight with this new system???

    I just upgraded to IOS 7. Prior to that upgrade if I wanted to get to spotlight search I just scrolled left to right from my home page and got it. Now...that doesn't work. How do I get to spotlight/search with IOS 7? Sheesh...why change such an easy basic thing anyway??? Can someone let me know please.

    Now, you get to Spotlight by swiping down from the home screen, but do not start the swipe at the top of the screen.  Start it in the middle somewhere.

  • Getting the current installed version information from SAP with VBScript

    This is probably a question that is buried somewhere in here but so far no luck finding it so i'm throwing it out to everyone.
    I am in charge of developing all of the distribution packages for SAP and any and all add-ons our corporate site requires. I'm using radia as a push tool and vbscript and wmi to manage the uninstall, install, patching, updating, and miscellaneous functions needed on each users system.
    prior to my taking this position over an older version of SAP was distributed to several users with less than stellar results. due to the massive size of the Frontend GUI i've separated it out as a base stand alone install and packaged each Add-On with only the files it needs to complete the FE install. in order to guarantee my users have the newest version of the FE GUI on their systems i am doing some rudimentary checks based on the existence or no existence of the push directory of the older sap package on the users system. which works for now but is not the most graceful thing.
    What i need is to be able to check right from a running vbscript what the current version and patch level the FE GUI is running at and any other components if possible, for now the FE GUI is the most important
    Thanks for the help
    Cheers,
    <b>Ryan Strope
    Distributed Services
    (Software package development/testing)
    Lockheed Martin Systems Integration Owego
    (Cyber City Computers)
    [email protected]
    (607)751-1164
    Quid quid latine dictum sit, altum videtur
    </b>

    Ryan,
    I hope you find this of use.  The only issue you will have is if the user has the SAP GUI running.  If so, the getversion call will fail as it requires an exclusive lock on the file.  I do not know why.
    Anyway, here is the code:
    Dim oShell, SAPdestdir, fso, i
    Set oShell = WScript.CreateObject("WScript.Shell")
    SAPdestdir = oShell.RegRead("HKLMSOFTWARESAPSAP SharedSAPdestdir")
    Wscript.Echo SAPdestdir
    Set fso = CreateObject("Scripting.FileSystemObject")
    SAPGuiVer = fso.GetFileVersion(SAPdestdir & "SAPGuiSAPGui.exe")
    WScript.Echo SAPGuiVer
    verInfo = Split(SAPGuiVer, ".")
    For i = 0 To UBound(verInfo)
         WScript.Echo verInfo(i)
    Next

  • How the heck do I sync outlook tasks with reminders on iPhone 5c using USB?  Not at all interested in any over the air methods

    Trying to sync my new iPhone 5c with outlook tasks using the USB connection and can't find any method to do this.  Due to data security I am not interested in sync'ing using any over the air method such as exchange server or iCloud.  Updated from a Blackberry to iPhone due to many recommendations but this apparent non-functionality by Apple is a major disappointment and a significant lack of capability.  Any help appriciated.

    Windows still allows syncing over USB:
    http://support.apple.com/kb/HT1296

  • How is the Mailing Agent permit generated on a mail.dat

    The business I work for has multiple permits, and they all appear to be associated with our CRID. I can change the Permit Holder's permit as needed, but I can't seem to change the Mailing Agent permit, and I'm not sure where the information is pulled from. The default permit that always appears on our submitted postage statements is our mailing permit that cannot mail First-Class or Non-profit, and I need to change it to our permit that can. At first I was expecting that I could switch this in Postlsoft, but the further I dig, the more it looks like PostalOne! automatically associates a permit number when it sees our CRID or Mailer ID.
    Could anyone confirm this or give some assitance? Thanks

    According to PostalOne! Mail.dat tech guide available on RIBBS [https://ribbs.usps.gov/intelligentmail_guides/documents/tech_guides/datspec/PostalOneMailDatTechSpec.pdf]
    Mailing Agent (Preparer). This identifies the organization that prepared the mailing and/or delivered it to the postal service for mailing. This information is linked to the useru2019s login account, and is not represented in the Mail.dat file.
    To attach a Mail.dat file to a preparer permit, the PostalOne! System looks at the User ID that submitted the file. The system looks at permits linked to the locations that User ID is also linked to. The system looks at the post office of mailing. The system considers finance number association of permits linked to locations to finance number of post office of Mailing. If the system finds more than one permit possibility, system takes first active (type PI) permit (could be any of the linked locations, not necessarily the one that submitted the file). For this reason the attached preparer permit may not be accurate and the user may not be able to fix it.
    In the Mailing Agent block on the Postage Statement, the company name and address information found from the associated CRID in the Mail.dat MPA Preparer CRID shall be displayed. If the Mail.dat file MPA Preparer CRID is used, then the preparer permit number, telephone number, email address, or customer number will not be displayed. The submitter of the Mail.dat file may update this CRID. The owner of the CRID may update the name and address information associated with the CRID. If the Mail.dat file MPA Preparer CRID is blank, then the Mailing Agent block will be filled with the name and address information found from the preparer permit attached to the Mail.dat file (see above). The preparer permit number and the associated company name, address, telephone number, and email address will be displayed. The name and address information on this permit may be updated by the postal clerk and will apply to subsequent Mail.dat updates.

  • How can customer enhance standard services delivered from SAP with add..

    Dear colleagues,
    could somebody tell me, how can a customer enhance the standard enterprise services delivered from SAP with their additional customer fields? I heard there is a XI-enhancement concept which should be use and it is without modification.But I could not find any concrete  document describing this enhancement processing.
    Please advise.
    Thanks in advance,
    Hongbo  Li

    Hi,
    I have similar requirement, did you find some thing on this?
    Regards

  • Issue with indirect Quotation Exchange rates...

    Hi All,
    I am using FM 'POSTING_INTERFACE_CLEARING'  to clear the customer open items.
    While  posting with indirect quotation exchange rates i.e BKPF-KURSF is in negative.It is throwing below error
    "The Exchange rate may not be transferred if negative".
    When i check it in BKPF table the value is saved like exp: '/1.9010'.  for select query it is picking like '1.9010-'
    How to resolve this issue.? it is very urgent.
    Thanks in Adv.
    Regards,
    Raj.

    Hi,
    I gave the OB08 entries, not sure if you wanted me to explain the logic. Here it is..
    Maintain 'Indirect quotation' from Local currency(USD) to Transaction currency(CAD) and 'Direct quotation' from Transaction currency(CAD) to Local currency(USD).
    Direct quotation is where the cost of one unit of foreign currency is given in units of local currency, whereas indirect quotation is where the cost of one unit of local currency is given in units of foreign currency.
    Your local currency is USD:
    - Direct exchange rate: 1CAD = 0.92819 USD
    - Indirect exchange rate: 1USD = 1.08238 CAD
    The following settings have been made in the standard system:
      - Direct quotation: ' '
    -   Indirect quotation: ' / '
    Direct exchange rates do not have a prefix.
    Your local currency is USD. You enter a business transaction in the transaction currency CAD. Until now, you had to use direct quotation to enter the exchange rate (1CAD =0.92819 USD). If you have defined '/' as the prefix for indirect quotation, you can also enter the exchange rate with indirect quotation (1 USD = 1.08238 CAD) by entering '/1.08238' in the exchange rate field.
    Direct or indirect quotation can be maintained as the standard form of quotation for a certain currency pair. You use:
             - '1' for direct quotation
             - '2' for indirect quotation
    If a standard form of quotation has not been specified for a currency pair, the system automatically uses direct quotation.
    You make the settings in the IMG: General Settings -- Currencies -- Set Standard for Direct/Indirect Quotation per Currency Pair.
    Thanks
    Ganesh

  • The  best  quotation of forwording sgent will pick in Sales order.

    How is it possible in SAP,the best quotation of forwording agent will pick automatically in sales Order.
    Suppose there is 10  Forwording  agent,the best quotation should reflect in          SAP,   the best quotation will select through SAP system.

    I think that you can do nothing in sales order, maybe the Tendering Process in transportation module could help you.
    bye Roberto

  • How to print the text in points wise in sap script

    hi friends,
    how to print the text in points wise in sap script.
    ex: if suppose paragraph consists of 15 lines. then according to one sentence or one fullstop (.) it should give point 1. like that...
    1. hai how ru.
    2. what r  u doing.
    3.where r u.
    like this i want numbering.. waiting for ur replys.
    thanks,
    kiran

    declare a counter
    data : cnt type char 4.
    print :
    cnt = cnt + 1.
    &cnt& &text&
    cnt = cnt + 1. and so on.
    or.
    if the data is in an internal table
    loop at internal_table.
    cnt = cnt + 1.
    write form.
    in script -&cnt& &text&
    endloop.
    Edited by: NIKHILKUMAR POOJARI on Nov 17, 2008 11:18 AM

  • How to change the lenth of existing field in sap standard table

    Hi all,
    can anybody help,my requirement is, how to change the length of existing field in sap standard table....
    thanks in advance..

    Which field are you thinking of in particular?  Are you wanting to increase or decrease the length?
    Some fields are used so extensively that a change to their length will mean adjusting many tables, some of them potentially very large, and hence taking a long time to adjust.
    Some standard SAP programs expect certain fields to be of specific lengths and won't work if the length is changed.
    Some screens could cease to work.
    If you decrease length, then you could lose data.
    matt

Maybe you are looking for