Where to make the change to update VBRP-TXJCD ?

Hi,  do you know how the VBRP-TXJCD  (Tax Juridiction code in Billing ) get updated?  Which program, function and method?
I need put the ADRC-TAXJURCODE to VBRP-TXJCD.
Thanks,
Helen

Hi,
The documentation is given above the subroutine...
      FORM USEREXIT_PRICING_PREPARE_TKOMK                           *
      This userexit can be used to move additional fields into the  *
      communication table which is used for pricing:                *
      TKOMK for header fields                                       *
      This form is called from form PREISFINDUNG_VORBEREITEN.       *
FORM userexit_pricing_prepare_tkomk.
      FORM USEREXIT_PRICING_PREPARE_TKOMP                           *
      This userexit can be used to move additional fields into the  *
      communication table which is used for pricing:                *
      TKOMP for item fields                                         *
      This form is called from form PREISFINDUNG_VORBEREITEN.       *
FORM userexit_pricing_prepare_tkomp.
Thanks,
Naren

Similar Messages

  • IPhone 5S IOS 8. Can't figure out how to disable the "live" location feature within the native calendar app used for mapping/travel time.  Have looked everywhere and it's driving me nuts.  Thanks for any help on where to make the change!!

    iPhone 5S IOS 8. Can't figure out how to disable the "live" location feature within the native calendar app used for mapping/travel time etc.  Have looked everywhere and it's driving me nuts.  Thanks for any help on where to make the change!!

    iPhone 5S IOS 8. Can't figure out how to disable the "live" location feature within the native calendar app used for mapping/travel time etc.  Have looked everywhere and it's driving me nuts.  Thanks for any help on where to make the change!!

  • I bought and use iPad in Hong Kong, but I cannot update apps because the apple store asked me to change to Hong Kong, how to make the change (correction)?

    I bought and use iPad in Hong Kong, but I cannot update apps because the apple store asked me to change to Hong Kong, how to make the change (correction)?

    Change App Store
    1. Tap "Settings"
    2. Tap "iTunes & App Stores"
    3. Tap on your Apple ID
    4.Tap "View Apple ID"
    5. Enter your user name and password.
    6. Tap "Country/Region."
    7. Tap "Change Country/Region"
    8. Select the country/region where you are located; re-select country/region even if it is correct
    9. Tap "Done".
    Note: If the change doesn't take effect, sign out of account and sign in again.

  • The credit card info on the account has changed but for some reason there is no option for me to make the changes.  In addition, cloud has stopped working and all other programs that need to be updated cannot be.

    the credit card info on the account has changed but for some reason there is no option for me to make the changes.  In addition, cloud has stopped working and all other programs that need to be updated cannot be??

    Make sure that EVERY DETAIL is the same in every place you enter your information
    -right down to how you spell and punctuate the parts of your name and address
    Change/Verify Account https://forums.adobe.com/thread/1465499 may help
    -Credit card https://helpx.adobe.com/utilities/credit-card.html
    -email address https://forums.adobe.com/thread/1446019
    -http://helpx.adobe.com/x-productkb/global/didn-t-receive-expected-email.html

  • To make the change from MobilMe I will have to update from System 10.4.11 to 10.7.2.  How many system and firmware updates will I have to do?

    To make the change from MobilMe I will have to update fro System 10.4.11 to 10.7.2.  How many firmware and system updates will I have to make

    First, see if your system can run Lion:
    http://www.apple.com/macosx/specs.html
    If you have any PPC apps, none of them will work under Lion.
    If you meet the requirements for Lion, you can go to Snow Leopard(US $29), then update to 10.6.8, then update to Lion(US $29).
    Apple says 2GB's of memory minimum. I wouldn't update to Lion unless you can run at least 4GB's.

  • Why can't I update any apps? When I hit update it gives me an old id. But in settings my new id is totally set and verified. How cam I make the change in App Store?

    Why can't I update any apps? When I hit update it gives me an old id. But in settings my new id is totally set and verified. How cam I make the change in App Store?

    App purchases are permanently tied to the ID with which they were purchased. They cannot be transferred to a new ID.
    You will have to enter the password for that ID or delete the apps and re-purchase them with the new one.
    ~Lyssa

  • How to make the changes to be permanent when a session is executed successfully ?

    Hi Everyone,
    I am new to ODI.
    I am learning how to create interfaces for the data flow between two Oracle databases !
    Now I started by developing a simple interface of loading data from EMPLOYEES table of HR schema to another table created by me EMPLOYEES_TGT in the same schema.
    When I dragged and dropped the source and target tables in the mapping tab it showed do you want to map automatically. I selected Yes and then When i executed the project I got errors and I have manually changed the code in the session. One session is executed correctly after changing the code in the sessions, when I start the same project once again it is throwing the same errors. How can I make the changes of the code that I changed in the previous session permanent to that interface ?
    Could anyone please guide me how to overcome this problem ? How can i make the changes permanent when one session has completed execution ?
    Thanks& Regards,
    Anvesh

    Hi Raghunar,
    The following is the code generated by default with the interface:
    insert /*+ append */ into HR.I$_EMPLOYEES_TGT
      EMPLOYEE_ID,
      FIRST_NAME,
      LAST_NAME,
      EMAIL,
      PHONE_NUMBER,
      HIRE_DATE,
      JOB_ID,
      SALARY,
      COMMISSION_PCT,
      MANAGER_ID,
      DEPARTMENT_ID,
      IND_UPDATE
    select
    EMPLOYEE_ID,
      FIRST_NAME,
      LAST_NAME,
      EMAIL,
      PHONE_NUMBER,
      HIRE_DATE,
      JOB_ID,
      SALARY,
      COMMISSION_PCT,
      MANAGER_ID,
      DEPARTMENT_ID,
      IND_UPDATE
    from (
    select 
      EMPLOYEES.EMPLOYEE_ID EMPLOYEE_ID,
      EMPLOYEES.FIRST_NAME FIRST_NAME,
      EMPLOYEES.LAST_NAME LAST_NAME,
      EMPLOYEES.EMAIL EMAIL,
      EMPLOYEES.PHONE_NUMBER PHONE_NUMBER,
      EMPLOYEES.HIRE_DATE HIRE_DATE,
      EMPLOYEES.JOB_ID JOB_ID,
      EMPLOYEES.SALARY SALARY,
      EMPLOYEES.COMMISSION_PCT COMMISSION_PCT,
      EMPLOYEES.MANAGER_ID MANAGER_ID,
      EMPLOYEES.DEPARTMENT_ID DEPARTMENT_ID,
      'I' IND_UPDATE
    from HR.EMPLOYEES   EMPLOYEES
    where (1=1)
    ) S
    where NOT EXISTS
      ( select 1 from HR.EMPLOYEES_TGT T
      where 
      and ((T.EMPLOYEE_ID = S.EMPLOYEE_ID) or (T.EMPLOYEE_ID IS NULL and S.EMPLOYEE_ID IS NULL)) and
      ((T.FIRST_NAME = S.FIRST_NAME) or (T.FIRST_NAME IS NULL and S.FIRST_NAME IS NULL)) and
      ((T.LAST_NAME = S.LAST_NAME) or (T.LAST_NAME IS NULL and S.LAST_NAME IS NULL)) and
      ((T.EMAIL = S.EMAIL) or (T.EMAIL IS NULL and S.EMAIL IS NULL)) and
      ((T.PHONE_NUMBER = S.PHONE_NUMBER) or (T.PHONE_NUMBER IS NULL and S.PHONE_NUMBER IS NULL)) and
      ((T.HIRE_DATE = S.HIRE_DATE) or (T.HIRE_DATE IS NULL and S.HIRE_DATE IS NULL)) and
      ((T.JOB_ID = S.JOB_ID) or (T.JOB_ID IS NULL and S.JOB_ID IS NULL)) and
      ((T.SALARY = S.SALARY) or (T.SALARY IS NULL and S.SALARY IS NULL)) and
      ((T.COMMISSION_PCT = S.COMMISSION_PCT) or (T.COMMISSION_PCT IS NULL and S.COMMISSION_PCT IS NULL)) and
      ((T.MANAGER_ID = S.MANAGER_ID) or (T.MANAGER_ID IS NULL and S.MANAGER_ID IS NULL)) and
      ((T.DEPARTMENT_ID = S.DEPARTMENT_ID) or (T.DEPARTMENT_ID IS NULL and S.DEPARTMENT_ID IS NULL))
    I modified the code to the following :
    insert /*+ append */ into HR.I$_EMPLOYEES_TGT
      EMPLOYEE_ID,
      FIRST_NAME,
      LAST_NAME,
      EMAIL,
      PHONE_NUMBER,
      HIRE_DATE,
      JOB_ID,
      SALARY,
      COMMISSION_PCT,
      MANAGER_ID,
      DEPARTMENT_ID,
      IND_UPDATE
    select
    EMPLOYEE_ID,
      FIRST_NAME,
      LAST_NAME,
      EMAIL,
      PHONE_NUMBER,
      HIRE_DATE,
      JOB_ID,
      SALARY,
      COMMISSION_PCT,
      MANAGER_ID,
      DEPARTMENT_ID,
      IND_UPDATE
    from (
    select 
      EMPLOYEES.EMPLOYEE_ID EMPLOYEE_ID,
      EMPLOYEES.FIRST_NAME FIRST_NAME,
      EMPLOYEES.LAST_NAME LAST_NAME,
      EMPLOYEES.EMAIL EMAIL,
      EMPLOYEES.PHONE_NUMBER PHONE_NUMBER,
      EMPLOYEES.HIRE_DATE HIRE_DATE,
      EMPLOYEES.JOB_ID JOB_ID,
      EMPLOYEES.SALARY SALARY,
      EMPLOYEES.COMMISSION_PCT COMMISSION_PCT,
      EMPLOYEES.MANAGER_ID MANAGER_ID,
      EMPLOYEES.DEPARTMENT_ID DEPARTMENT_ID,
      'I' IND_UPDATE
    from HR.EMPLOYEES   EMPLOYEES
    where (1=1)
    In the same way for other steps in the same session I got some errors and I fixed them by changing the code. But the problem is that where can I change this so that it will be a permanent solution.
    Thanks,
    Anvesh

  • I want my bookmarks to remain Alphabetized, but when I make the change in bookmark views it dose not make a permanent change once I exit the menu.

    I go into organize bookmarks hit the view menu and choose A to Z which makes the change in that window...But once I leave and go back to the regular bookmark pull down the change has not been saved. They are still a jumble...whats up? How do I make the change permanent?

    Sorting Bookmarks in Bookmarks > Organize Bookmarks (the Library window) is for temporary display only. You can sort in the Bookmarks Sidebar (Ctrl+B to open or close the Bookmarks Sidebar), by right-clicking on the "Bookmarks Menu" in the sidebar and choose "Sort by Name". You would need to do that each time you add a bookmark.
    You can keep them permanently sorted with:
    *SortPlaces extension: [https://addons.mozilla.org/en-US/firefox/addon/9275|SortPlaces]
    *More info about SortPlaces: [http://www.andyhalford.com/sortplaces/index.html]
    See:
    *[[Bookmarks]] (lots of Bookmarks links in this article)
    *[[Sorting Bookmarks]]
    *[[Bookmark Folders]]
    *http://kb.mozillazine.org/Sorting_bookmarks_alphabetically
    <br />
    '''Other issues that need your attention'''
    The information submitted with your question indicates that you have out of date plugins with known security and stability issues that should be updated. To see the plugins submitted with your question, click "More system details..." to the right of your original question post. You can also see your plugins from the Firefox menu, Tools > Add-ons > Plugins.
    *Adobe PDF Plug-In For Firefox and Netscape "9.4.1"
    **New Adobe Reader X (version 10) with Protected Mode was released 2010-11-19
    **See: http://www.securityweek.com/adobe-releases-acrobat-reader-x-protected-mode
    *Shockwave Flash 10.0 r32
    **This is a very old version with security flaws
    #'''Check your plugin versions''': http://www.mozilla.com/en-US/plugincheck/
    #*'''Note: plugin check page does not have information on all plugin versions'''
    #'''Update Adobe Reader (PDF plugin):'''
    #*From within your existing Adobe Reader ('''<u>if you have it already installed</u>'''):
    #**Open the Adobe Reader program from your Programs list
    #**Click Help > Check for Updates
    #**Follow the prompts for updating
    #**If this method works for you, skip the "Download complete installer" section below and proceed to "After the installation" below
    #*Download complete installer ('''if you do <u>NOT</u> have Adobe Reader installed'''):
    #**Use the links below to avoid getting the troublesome "getplus" Adobe Download Manager and other "extras" you may not want
    #**Use Firefox to download and SAVE the installer to your hard drive from the appropriate link below
    #**Click "Save to File"; save to your Desktop (so you can find it)
    #**After download completes, close Firefox
    #**Click the installer you just downloaded and allow the install to continue
    #***Note: Vista and Win7 users may need to right-click the installer and choose "Run as Administrator"
    #**'''<u>Download link</u>''': ftp://ftp.adobe.com/pub/adobe/reader/
    #***Choose your OS
    #***Choose the latest #.x version (example 9.x, for version 9)
    #***Choose the highest number version listed
    #****NOTE: 10.x is the new Adobe Reader X (Windows and Mac only as of this posting)
    #***Choose your language
    #***Download the file, SAVE it to your hard drive, when complete, close Firefox, click on the installer you just downloaded and let it install.
    #***Windows: choose the .exe file; Mac: choose the .dmg file
    #*Using either of the links below will force you to install the "getPlus" Adobe Download Manager. Also be sure to uncheck the McAfee Scanner if you do not want the link forcibly installed on your desktop
    #**''<u>Also see Download link</u>''': http://get.adobe.com/reader/otherversions/
    #**Also see: https://support.mozilla.com/en-US/kb/Using+the+Adobe+Reader+plugin+with+Firefox (do not use the link on this page for downloading; you may get the troublesome "getplus" Adobe Download Manager (Adobe DLM) and other "extras")
    #*After the installation, start Firefox and check your version again.
    #'''Update the [[Managing the Flash plugin|Flash]] plugin''' to the latest version.
    #*Download and SAVE to your Desktop so you can find the installer later
    #*If you do not have the current version, click on the "Player Download Center" link on the "'''Download and information'''" or "'''Download Manual installers'''" below
    #*After download is complete, exit Firefox
    #*Click on the installer you just downloaded and install
    #**Windows 7 and Vista: may need to right-click the installer and choose "Run as Administrator"
    #*Start Firefox and check your version again or test the installation by going back to the download link below
    #*'''Download and information''': http://www.adobe.com/software/flash/about/
    #**Use Firefox to go to the above site to update the Firefox plugin (will also install plugin for most other browsers; except IE)
    #**Use IE to go to the above site to update the IE ActiveX
    #*'''Download Manual installers'''.
    #**http://kb2.adobe.com/cps/191/tn_19166.html#main_ManualInstaller
    #**Note separate links for:
    #***Plugin for Firefox and most other browsers
    #***ActiveX for IE

  • I want to change my id email address, but I need to change it to the address that is my repair address and it will not let me do it.  How can I make the change?

    I need to change my id email address.  The address I need to use is also my repair address and it will not let me make the change.  Can someone help me. I cannot find a phone number to call that will help me with this problem.

    There isn't a phone number for iTunes Support.
    If you mean that the address is your rescue email address then follow the steps half-way down this page for changing it http://support.apple.com/kb/HT5312 :
    Navigate to appleid.apple.com using your web browser.
    Click "Manage your account"
    When prompted, sign in using your Apple ID and password.
    Click Password & Security
    You'll be asked to answer 2 of your 3 security questions before you can make any modifications. If you are unable to remember your answers, you can choose to send an email to your rescue email to reset your security questions.
    After you've validated your identity by correctly answering your security questions, click Edit to the right of your rescue email address.
    Once you've finished editing your rescue email address, click the Save button directly below the email field.
    You can then try using it as your primary email address on your account (you may need to log out and back in after removing it as your rescue email address).

  • How to make the changes in Existing DC

    hi
    I am new to the NWDI. We have created one trac and we have added one .SCA file to that. This file contains many DC's.
    I have imported this track in to NWDS. I am able to see the list of the DC in Development configuration prospective. Now i need to make some changes in the existing code or to see the details.
    But i am not able to see the those DC's in  Webdypro prospective to make the changes.
    what need to be done. Please let me know any steps need to be configured to access the DC's in webdynpro prospective.
    Regards
    Vijay

    Hi ,
    check the below link
    http://help.sap.com/saphelp_nw04s/helpdata/en/34/053fa30a68844c8495a863ae13dbe1/frameset.htm
    Koti Reddy

  • Hi, before I make the change to OS Mountain lion I would like to know if it supports Quicken Essential version 1.6.1? My current version is OS 10.7.4?

    Hi, before I make the change to OS Mountain lion I would like to know if it supports Quicken Essential version 1.6.1? My current version is OS 10.7.4?

    The Quicken Essentials For Mac website probably has the answer.  You might check there. 
    I just did check there and it says Lion.  It does not mention Mountain Lion.  You might have to contact their customer support people and find out if they have an upgrade or are in the process of releasing one.

  • I just bought a used Macbook Pro. How do I make the changes to make it personal. Example the iTunes comes up as the old user and I have to have his password to make changes on the laptop. Can you make any suggestions?

    I just bought a used Macbook Pro. How do I make the changes to make it personal. Example the iTunes comes up as the old user and I have to have his password to make changes on the laptop. Can you make any suggestions?
    Also I cant make a right click on the pad. Is that normal?

    Your first going to have to remove all your personal data off the machine to a external storage drive, do not use TimeMachine when it asks as this will copy the entire drive and is unnecessary at this time (also takes too long).
    You need to drag and drop copy your personal data folders (Music, Pictures, Movies etc) to a external storage drive, once done, unmount and disconnect this drive.
    Most commonly used backup methods
    Next your going to follow the Zero Erase and install method for your OS X version, either 10.6 or 10.7, here
    How to reinstall just OS X or erase/install OS X
    10.7 requires your AppleID and password to install, so make sure to have that ready.
    Once you reboot your into the real setup of OS X, which will require your name etc, so it's now your machine.
    Install your programs, iLife package is only free for the owner of the machine.
    If you have the 10.6 machine specific disks, then it's on there.
    If your using 10.7, then you'll have to purchase it from the App Store.
    Last, return your files from the storage drive, consider setting up a TimeMachine or clone on the external drive.

  • We intended on purchasing CS6; not CC.  How do we make the change?

    We intended on purchasing CS6; not CC. How do we make the change?

    Cancel http://helpx.adobe.com/x-productkb/policy-pricing/return-cancel-or-change-order.html
    -or by telephone http://helpx.adobe.com/x-productkb/global/phone-support-orders.html
    Buy CS6 Creative Suite 6

  • We had to change the feed adress and the epsiode adresses. Now all the episodes of my podcast are downloaded (although i have downloaded them already). How can I make the changes in my feed and avoid that all the episodes are reloaded?

    Hello,
    We had to change the feed adress (<itunes:new-feed-url>)and the epsiode adresses in the feed because the feed and the episode-files are on a new server. Now when i open my iTunes subscription of our podcast all the episodes of my podcast are downloaded again (although i have downloaded them already).
    My Question therefore is: How can I make the changes in my feed and avoid that all the episodes are reloaded?
    Maybe have an answer?
    Thank you very much.

    Thank you very much for your answer
    As I see now, our 'guid' tags contain the episode URLs
    To avoid this problem in the future i would like to change guid tags. Can you please tell me how a guid tag should look like if it is not the URL?
    Thank you for helping us!
    ps now it looks like this eg:
    <guid isPermaLink="false">http://www.castyourart.com/podcasts/213_thinkglobal_en.mp4</guid>

  • I downloaded a 30-day trial of Acrobat....and it is in the wrong language, how do i make the changes?

    I downloaded a 30-day trial of Acrobat...and it installed in the wrong language. How do I make the change?

    Hi hhh3h,
    Launch Acrobat, go to Edit > Preferences > Language > and select Application language as 'English'
    Regards,
    Rave

Maybe you are looking for

  • How do I get apple supervisors to return calls

    I had an issue with my ipad 3 around christmas that required me to wipe my ipad and start over.  I went to the trusty cloud and tried to download my backup into my ipad.  I bought extra cloud storage and didn't ever back up to itunes.  I thought it w

  • How to customize  solman_workcreate  screen in solution manager

    Hi all, i have a requirement as below. i need to change  solman_workcreate service in solution manager. 1)i need to replace new message link under incident management with notif_create (tcode screen). 2)provide search link to search solution database

  • Partial download of pdf document sent via Yahoo to imac os x via comcast email

    My wife receives a monthly newsletter in pdf from the Weaving Guild sent via Yahoo. We receive only page 1 of 6 or 7 pages; spinning ball after that. iMac OS 10.9, Comcast email system, Norton virus scan from Comcast

  • How to call a javabean with more argumets?

    I've create a javabean with more arguments,i've used fbean.add_arg: arglist := FBean.Create_Arglist; FBean.add_arg(arglist,'c:\dev10\esdir.fmb'); FBean.add_arg(arglist,wdata); FBean.add_arg(arglist,wtime); wprova:=FBean.invoke_char('BEAN_IMAGE',1,'ge

  • We need to change of dependent demand requirement in IDP

    Hi gurus, when i click selection profile, we need to change of dependent demand requirement in Interactive Demand Planning screen, what is the procedure. System showing display model.how to change dependent demand requirement. REGARDS,BABU