How to change email/fax number retrieval logic for output...

Hi,
In my requirement, for sending the output by fax / email, for e.g. take certificate of analysis, the customer master data is checked and the data mentioned there is used to send the output. In addition, in customer master transaction XD01/XD02 I see an additional tab called contact person which has information of each contact person along with their department numbers and fax num and email ids.
In ADR3 I noticed that these are stored.
In short
In XD03,  under address tab a fax num maintained which I do not want to use. Rather,
Under contact person tab , the entry which has dept number as say A100, the associated fax num is the one to which I want the COA to be sent.
Where exactly is the code that reads these entries and determines the fax number and email ids to which the output needs to be sent ? May be there I need to change the logic to include a check such that entries that have dept as A100 will be checked and those fax and email ids will be selected and set.
Or if there is any other way this can be achieved, pl advise.
thnks

Senthil,
The COA trigerring works fine. The delivery for  which PGI will be done and then COA will be sent that has the output configured such that Fax will be sent. In SOST I can see the entry which shows the fax num as say 787878.
But this was the number found in the ADDRESS tab in XD03 for that ship to partner. I do not want that fax num to be used. I want the fax number that I enter in an additional tab and which is stored in KNVK and ADR3 tables.
So once SAP determines it has to fax the COA , SAP shoud be reading the ship to pary fax num, right ? Where is that code in standard SAP ? Bcos I need to change the logic to read somwhere else !! Hope you are able to follow me now ?
thnks

Similar Messages

  • How to change the serial number of logic pro

    hi we have couple of macs in our studio
    when we first bought logic studio, we installed it on all the computers.
    then we realised that while useing network we have protection error problems.
    now we have an upgrade serial number and one more logic serial number which i want to put on the
    two working macpro's so that it wont clash with the laptops.
    how do i reset logic and enter new serial number ?????
    thanks

    http://discussions.apple.com/thread.jspa?messageID=5636506&#5636506

  • Change the fax number in letter head in SAP

    Hi gurus,
    how to change the fax number in letter head in SAP
    regards
    subbu

    HI,
    What do you mean letter head... Are you taking about the print out from SAP system.
    Ask the abaper to rectify this is all the forms attached to the purchasing docs and inventory docs.
    May be it is hardcoded tell him to change the old fax number to the new one.
    Thanks & Regards,
    Kiran

  • How do I change the Serial Number in Logic Studio?

    Hi All,
    I used a friends copy of Logic Studio and the serial number to give Logic Studio a try, loved it, and bought it. However now I have my own serial number and would like to enter it into Logic. Logic, of course, has kept the first serial number and I can not work out how to change the serial number. Any help would be greatly appreciated.
    Cheers,
    Power2004

    Thanks John,
    I have looked for the /Library/Application Support/ProApps folder and it does not seem to be on the HD. I also searched for the file to be trashed and could not find it. Could it be called something else in Logic Studio 8?
    Cheers,

  • How to change a phone number that was set-up when ipad was being set-up. It was my wife's and not mine. want my number as the main number.

    How to change a phone number that was set-up when you first set Ipad up. Took wife's number instead of mine. Her number is on i-cloud and messaging, face time.

    Goto -settings-iCloud-delete account u will then have to set up a new iCloud account.if u do this it will delete anything u may have backed up in  iCloud on your old account.

  • How to change a page number ?

    db11gxe , apex 4.0 , firefox 24 ,
    How to change a page number ?
    i have a page with a number "2" , and i want to change it to "1" ? how ?
    thanks

    Go to APEX 4.0 documentation (Contents) and Search for Copying a Page. The document contains all basic tasks you can learn from.

  • How to change email in iCloud

    How to change email in iCloud

    I Have moved and can't change my email address. Every time I change it, when I go to update an App it will want me to log in. Only the flippin log in will have my old passwor???

  • How to change the maximum number of process per user in BW ?

    Hi,
    Do you know how to change the maximum number of process allowed per user ?
    With RSRT we can customize the number of process per query but I don't know where we can customize the maximum number of process per user.
    In fact, my production environment reach always the max number of process available in SM50...
    Thanks a lot

    Hi,
    A user is not have the No. of processor but a work process can handle N No. of users. If a user hit any transaction v acn say from  a list of N worl proceesor which has been taken the work.
    Correct if I am wrong.
    Regards
    Syed.

  • How to change the port number for deployment in JAVA Studio Enterprise 8?

    Hi!
    Yesterday i downloaded this new sun java studio enterprise and found it mind blowing.
    Now i find that all my previous applications which were running on port 8080 can't be run on sun java studio enterprise(sjse) 8.
    Can anyone tell me how to change the port number on this software so i won't have to edit all my applications?

    http://docs.sun.com/source/819-0080/install.html
    In the Admin Configuration page (or at the command line), enter the following:
    Admin User Name�Name of the user who administers the server
    Password�Admin user�s password to access the Admin Server (8-character minimum)
    Admin Port�Administration port number for initial server instance
    HTTP Port�Port number to access the default server instance
    HTTPS Port�Secure port number to access the default server instance

  • How to find out the Number range object for Incident number

    How to find out the Number range object for Incident number ?
    CCIHT_IAL-IALID
    regards,
    lavanya

    HI, an example.
    data: vl_num type i,
          vl_char(6) type c,
          vl_qty type INRI-QUANTITY,
          vl_rc type INRI-RETURNCODE.
    CALL FUNCTION 'NUMBER_GET_NEXT'
      EXPORTING
        NR_RANGE_NR                   = '01'
        OBJECT                        = 'ZRG0000001'
       QUANTITY                       = '1'
      SUBOBJECT                     = ' '
      TOYEAR                        = '0000'
      IGNORE_BUFFER                 = ' '
    IMPORTING
       NUMBER                        = vl_num
       QUANTITY                      = vl_qty
       RETURNCODE                    = vl_rc
    EXCEPTIONS
       INTERVAL_NOT_FOUND            = 1
       NUMBER_RANGE_NOT_INTERN       = 2
       OBJECT_NOT_FOUND              = 3
       QUANTITY_IS_0                 = 4
       QUANTITY_IS_NOT_1             = 5
       INTERVAL_OVERFLOW             = 6
       BUFFER_OVERFLOW               = 7
       OTHERS                        = 8
    IF SY-SUBRC <> 0.
    MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
            WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
    ENDIF.
    vl_char = vl_num.
    write vl_char.
    Regard

  • How to change the color background in Pages for iPad?

    how to change the color background in Pages for iPad?

    You can find many themes at https://github.com/hdoria/xcode-themes  There's a download zip button on the right side of the page.
    Unzip and and copy the .dvtcolortheme files into /Users/YourUsername/Library/Developer/XCode/UserData/FontAndColorThemes Create the directory if it doesn't exist.
    If you can't find the Library directory you can get to it by using Finder's "Go to Folder..." option under "Go" or press shift + cmd + G then type the path.

  • How to change to landscape orientation in Pages for iPhone4s?

    Does anyone know how to change to landscape orientation in Pages for iPhone 4s and iPad?

    The functionality on an iPhone is greatly diminished when having to work in potrait mode due to the screen size; it really becomes a bit useless.
    It seeems a no-brainer; I guess that's why I asked on the forum.
    Maybe someone else knows more.?
    I hope that you're not right but think you probably are.
    Thanks again for offering to help!

  • How to Change String back to math symbol for calculation??

    Hi,
    How to Change String back to math symbol for calculation to achieve this coding. it's for a for loop
    int a;
    String sym0 = "+";
    String sym1 = "-";
    String sym2 = "*";
    String sym3 = "/";
    for (int i=0; i<=3; i++)
    a = 45 sym0 74;
    }

    There is no method to achieve this...aa far as I am aware of.

  • Hi! Does someone know how to change a license? I bought for Photoshop but i want to change to Indesign!

    Hi! Does someone know how to change a license? I bought for Photoshop but i want to change to Indesign!

    Hi MariaNilsson,
    You will need to contact the support through call/chat for the cancellation of the Photoshop license and then you can subscribe for the Indesign license under your account.
    Contact Customer Care
    Regards,
    Sheena

  • How to get the Equipements number and desciption for the contract item ?

    Hi Gurus,
            How to get the Equipements number and desciption for the contract item items? It would gr8 helpful to me...
    VBAP,,EQUI,,,,,,?
    Thanks
    Krisna

    Check with below tables :
    EQUI    Equipment master data
    EQKT   Equipment short text
    EQUZ   Equipment time segment
    Thanks
    Seshu

Maybe you are looking for

  • PropertyDescriptor: internal error while merging...

    Hi, I recently got the following error while migrating our code to WEblogic 8.1.4 using jdk1.4.2_05. Before the migration our code works fine. However, if I use Sun's jdk (j2sdk1.4.2_06) to run the Weblogic instance, our code works fine. Does anyone

  • Interactive product photography - HELP NEEDED

    Does anyone know of a good tutorial that explains the photography process for creating 360-degree interactive Flash tutorials? I have several small sculptures I would like to photograph digitally, but could use direction on; lighting, number of shots

  • HT4859 if my ipad is stolen how do i get my info off of it

    I can't figure out how to get my info off my iPad please help me              Signed, computer illiterate, Kissteen

  • High dpi support

    I'm wondering if and when FormsCentral will support high dpi devices. I have a 3200x1800 resolution on a 15" screen so everything on FormsCentral is really small and with it being flash based I cannot zoom in.

  • Create datastore for complex comma seperated file

    I am trying to integrate a comma seperated file to an Oracle database. The files contain multiple record types each of which have different number of fields and a different order of datatypes within those fields. The order that the records types are