Can the LicTradNum validation be modified?

Hi,
I've been working on a Company DB that requires the value of the FederalTaxID field on the Business Partners Form to have a length of 12 characters.  But suddenly we have a new case that needs a FederalTaxID with a length of 15 characters. I have tried to insert 15 or more characters to a new Business Partner with the SDK but to no avail; it shows the same error of length limit as in the BPs Form.
Is there a way to change this on the local configuration? Or a way to bypass/rewrite this check?
Thanks in advance
Alfredo

Hi Alfredo,
As Barend said you should not try and change a current SBO field. Your best option in solving your problem right now is probably to create a user-defined field of length 15 on the business partners and use that in document printing.
Adele.

Similar Messages

  • Can the loop browser be modified with ones own way of sorting loops

    It has become a burdeon and very difficult to work effectively with GB3 loops. Can i somehow name the different categories my own way! like electric guitars distorted, elec gtrs riffs,
    changing the name of these NONHELPFUL categories to suit my own HD arranged loops. In using this loop browser it takes so much time to find what im looking for and this could i think be made easier if i could make my own categories in the browser. Im asking for too much arent i?
    do all of you use the favorites?
    that would be too cumbersome also.
    no way around all this overwhelming amounts of sounds loops fonts. How do you all arrange this in an orderly fashion or do you just use ten basic instruments/loops?
    would like to hear from you all

    Do you really have only one copy of each? Do a Finder/Spotlight search. There are several places where the loops could show up:
    - the general Library/Audio folder
    - the user Library/Audio folder
    - the general Library/Application Support folder
    - the User Library/Application Support folder
    Did you install over an old version of GB? That might explain the duplicate loops. And the "single" loops that were either part of your old installation and not of GB3 or vice versa.
    In order to repair that, you should trash the duplicate loops and the content of the Loops Index folder and then drag the remaining loops into the loop browser.

  • How can I modify the application- validation- set- value validation

    Dear all :
    After I created a new value set( application->validation->set->value validation), I want to change the Type of the "value validation",how can I modify ?
    Regards
    Terry

    Dear all:
    Sorry, I found the answer in the metalink note :[ID 396369.1]     
    Regards
    Terry

  • Can you please how to retrive the new netprice from the new validity period

    Hi,
    When you display  a contract using ME33K and you click on  a item and view its conditions(shift+F6), there might be 2 validity periods for a given item.
    and each period will have different netprice in it.
    One will be old date before the PO was created and the other new one which has validity till 31.12.999..We want to fetch the netprice for the new validity date but currently the program is fetching this data from the table EKPO which is having the netprice of the old date only..
    Can you please how to retrive the new netprice from the new validity period

    Thank you so much.
    But I need more help specific to my problem.
    Let me describe the same.
    Suppose the PO creation date is 04.07.2007
    The conditions for an item in a contract for the PO are as follows;
    1. Validity from 04.07.2007 validity to 04.07.2007 Netprice = 100.00
    2. Validity from 05.07.2007 validity to 31.12.9999 Netprice = 200.00
    We need to always fetch the netprice from the validity period which always matches with the PO creatio date. here the value 100.00 should be the correct netpr as the PO creation date matches with the first validity period.
    But the program is fetching the netprice 200.000 which belongs to the second validity period. That is beacuse the select statement which fetches the data for contracts collects on the basis of EKKO-kdate and ekko-kdtab.the fields kdate and kdtab retrieves the validity period of the contract which is from 04.07.2007 to 31.072007. This data is then used to retrieve the netpr data from EKPO and it fetched 200.00 as it retrives the netprice of current data in contract validity and h not with respect to PO creation date.
    This data is then used to fetch the get the netpr data from EKPO.
    <u>what we need is the netprice for that validity period of item(Conditions) that matches with the PO creation date</u>..
    Below is the code where I'm selecting the data from ekko and ekpo for the contracts data..Can you please add the code snippet to the below attachesd subroutine to get the required data from KONV and KONP so that we can retrieve the correct Netprice.
    FORM select_contracts USING p_s_cebeln LIKE s_cebeln[]
                                p_c_k_bstyp  TYPE ebstyp
                                p_p_bukrs    TYPE bukrs
                                p_p_ekorg    TYPE ekorg
                                p_p_ekgrp    TYPE bkgrp
    *Begin of Mod-004
                                fp_p_cernam   type ty_r_ernam
                               p_p_cernam   TYPE ernam
    *End of Mod-004
                                p_s_werks    LIKE s_werks[]
                                p_s_matnr    LIKE s_matnr[]
                                p_s_lifnr    LIKE s_lifnr[]
                                p_s_val_dt   LIKE s_val_dt[].
    *mod-002
        data : l_amount   type BAPICURR_D,   " Net price
               l_waers    TYPE waers,        " Currency Key
               l_eff_amount type BAPICURR_D. " Effective value
          data: l_v_netpr type bprei.
    *mod-002
    SELECT  ebeln
              bukrs
              bstyp
              aedat
              ernam
              lifnr
              zterm
              ekorg
              ekgrp
              waers
              wkurs
              <b>kdatb
              kdate</b>
              inco1
              INTO TABLE i_ekko
              FROM ekko
              WHERE    ebeln IN p_s_cebeln
                   AND bstyp EQ p_c_k_bstyp
                   AND bukrs EQ p_p_bukrs
                   AND ekorg EQ p_p_ekorg
                   AND ekgrp EQ p_p_ekgrp
    *Begin of Mod-004
                  AND ernam EQ p_p_cernam
                   AND ernam IN fp_p_cernam
    *End of Mod-004
                   AND lifnr IN p_s_lifnr
                   AND ( kdatb IN p_s_val_dt OR kdate IN p_s_val_dt ).
      IF sy-subrc EQ 0.
    Populates internal table i_ekpo using EKPO table.
        SELECT   ebeln
                 ebelp
                 loekz
                 txz01
                 matnr
                 werks
                 ktmng
                 menge
                 meins
                 bprme
                 netpr
                 peinh
                 webaz
                 mwskz
                 uebto
                 untto
                 erekz
                 pstyp
                 knttp
                 repos
                 webre
                 konnr
                 ktpnr
                 ean11
                 effwr
                 xersy
                 aedat
                 prdat
                   INTO TABLE i_ekpo
                   FROM ekpo
                   FOR ALL ENTRIES IN i_ekko
                   WHERE ebeln = i_ekko-ebeln
                     and aedat = i_ekko-aedat
                     AND werks IN p_s_werks
                     AND matnr IN p_s_matnr.
    LOOP AT i_ekpo INTO rec_ekpo.
          MOVE rec_ekpo-ebeln  TO rec_contr-ebeln.
          MOVE rec_ekpo-ebelp  TO rec_contr-ebelp.
          MOVE rec_ekpo-loekz  TO rec_contr-loekz.
          MOVE rec_ekpo-txz01  TO rec_contr-txz01.
          MOVE rec_ekpo-matnr  TO rec_contr-matnr.
          MOVE rec_ekpo-werks  TO rec_contr-werks.
          MOVE rec_ekpo-ktmng  TO rec_contr-ktmng.
          MOVE rec_ekpo-menge  TO rec_contr-menge.
          MOVE rec_ekpo-meins  TO rec_contr-meins.
          MOVE rec_ekpo-bprme  TO rec_contr-bprme.
         MOVE rec_ekpo-netpr  TO rec_contr-netpr.
         move l_v_netpr        TO rec_contr-netpr.
    mod-002
          read table i_ekko into rec_ekko with key
                           ebeln = rec_ekpo-ebeln.
            l_waers =  rec_ekko-waers.
    CALL FUNCTION 'BAPI_CURRENCY_CONV_TO_EXTERNAL'
      EXPORTING
        currency              =  l_waers
        amount_internal       =  rec_contr-netpr
    IMPORTING
       AMOUNT_EXTERNAL       =  l_amount.
                rec_contr-netpr = l_amount.
    mod-002
          MOVE rec_ekpo-peinh  TO rec_contr-peinh.
          MOVE rec_ekpo-webaz  TO rec_contr-webaz.
          MOVE rec_ekpo-mwskz  TO rec_contr-mwskz.
          MOVE rec_ekpo-uebto  TO rec_contr-uebto.
          MOVE rec_ekpo-untto  TO rec_contr-untto.
          MOVE rec_ekpo-erekz  TO rec_contr-erekz.
          MOVE rec_ekpo-pstyp  TO rec_contr-pstyp.
          MOVE rec_ekpo-knttp  TO rec_contr-knttp.
          MOVE rec_ekpo-repos  TO rec_contr-repos.
          MOVE rec_ekpo-webre  TO rec_contr-webre.
          MOVE rec_ekpo-konnr  TO rec_contr-konnr.
          MOVE rec_ekpo-ktpnr  TO rec_contr-ktpnr.
          MOVE rec_ekpo-ean11  TO rec_contr-ean11.
          MOVE rec_ekpo-effwr  TO rec_contr-effwr.
    mod-002
          CALL FUNCTION 'BAPI_CURRENCY_CONV_TO_EXTERNAL'
       EXPORTING
          currency              =  l_waers
          amount_internal       =  rec_contr-effwr
       IMPORTING
          AMOUNT_EXTERNAL       =  l_eff_amount.
               rec_contr-effwr = l_eff_amount.
    *mod-002
          MOVE rec_ekpo-xersy  TO rec_contr-xersy.
          APPEND rec_contr TO i_contr.
          CLEAR: rec_ekpo,rec_contr.
    mod-002
          CLEAR : rec_ekko,l_amount, l_eff_amount,l_waers.
    mod-002
        ENDLOOP.
    Modifying i_contr using i_ekko.
        SORT i_ekko BY ebeln.
        LOOP AT i_contr INTO rec_contr.
          READ TABLE i_ekko INTO rec_ekko WITH KEY
                              ebeln = rec_contr-ebeln
                              BINARY SEARCH.
          MOVE rec_ekko-bukrs  TO  rec_contr-bukrs.
          MOVE rec_ekko-bstyp  TO  rec_contr-bstyp.
          MOVE rec_ekko-aedat  TO  rec_contr-aedat.
          MOVE rec_ekko-ernam  TO  rec_contr-ernam.
          MOVE rec_ekko-lifnr  TO  rec_contr-lifnr.
          MOVE rec_ekko-zterm  TO  rec_contr-zterm.
          MOVE rec_ekko-ekorg  TO  rec_contr-ekorg.
          MOVE rec_ekko-ekgrp  TO  rec_contr-ekgrp.
          MOVE rec_ekko-waers  TO  rec_contr-waers.
          MOVE rec_ekko-wkurs  TO  rec_contr-wkurs.
          MOVE rec_ekko-kdatb  TO  rec_contr-kdatb.
          MOVE rec_ekko-kdate  TO  rec_contr-kdate.
          MOVE rec_ekko-inco1  TO  rec_contr-inco1.
          MODIFY i_contr FROM rec_contr.
        ENDLOOP.
      ENDIF.
      REFRESH: i_ekko,
               i_ekpo.
      CLEAR  : rec_ekko,
               rec_ekpo,
               rec_contr.
    ENDFORM.      "select_contracts
    Thanks.

  • While creating a device category i'm getting an error "enter a valid division via eg01,how can the error be overcom?

    While creating a device category i'm getting an error "enter a valid division via eg01,how can the error be overcome?

    Neha,
    you can do in two ways.
    1. Enter a valid Division which you configured in the system.
    2. Remove the Division as required field. However I suggest it should have a valid division. Why can not you check with your Functional owner?
    Linganna Katigiri

  • Once PO is released against a PR, how can the PR be deleted or modified by

    Once PO is released against a PR, how can the PR be deleted or modified by the Requisitioner. Any / deletion of a PR,
    Note: Our Req No one Can PR delete if it have converted in po,

    hI,
    Note 521174 - ME52N: Deletion of a PReq despite PO
    Check this note is applicable or not at your end
    Summary
    Reason and Prerequisites
    You create a purchase requisition and a purchase order is generated from it. Afterwards, you change the purchase requisition by setting the deletion indicator. The system generates a warning message that a purchase order already exists for this purchase requisition. However, the deletion of such a purchase requisition should be prevented. Therefore, the system should generate the error message 06152.
    Other terms
    ME52, 06152.
    Reason and Prerequisites
    The warning message does not suffice.
    Solution
    After you implemented the correction, you can set set the message via Customizing. If you customize the message as an error message, a deletion is no longer possible. However, the message is not output as an error message in order to block a further processing of the purchase order. This only appears as an information message.
    Regards
    Kailas Ugale

  • Framemaker uses $filename for short file name, can we edit this to change appearance? We do not want the short file name of long filename to include the .fm extension can this be removed or modified to make this happen?

    Framemaker uses <$filename> for short file name, can we edit this to change appearance? We do not want the short file name of long filename to include the .fm extension can this be removed or modified to make this happen? In compiling our books it would be helpful to not have this extension appear as it then requires us to create extra files without them.

    See: System Variables

  • Where can I found the Oracle-Validated rpm packaeg in OEL6?

    Hello,
    I installed the OEL6 to avoid some issues I had; now I can't find the Oracle-Validated package rpm; I registered my system to UBL and nothing show up.
    Thanks

    user11344822 wrote:
    I installed the OEL6 to avoid some issues I had; now I can't find the Oracle-Validated package rpm; I registered my system to UBL and nothing show up. There is no oracle-validated RPM for OL6 yet, as there are no certified Oracle applications for OL6. Until our applications are certified, we cannot build that RPM (because we don't know what the right settings are yet!). Keep in mind that most Oracle applications won't install on OL6 yet and none of them are supported yet either. You're better off staying on OL5U6.

  • Baulsc  help - Can a custom validator display a error in the UI dataTable

    Hi balusc,
    Pls refer to my post in the topic
    "Can a custom validator display a error in the UI dataTable + jsf"
    Give me a solution pls.
    Thanks,
    Ambika&#9786;

    avoid another thread for same ?
    http://forum.java.sun.com/thread.jspa?threadID=5229577

  • Can the format of a SQL Statement modify the execution time of an SQL ....

    Can the format of a SQL Statement modify the execution time of an SQL statement?
    Thanks in advance

    It depends on:
    1) What oracle version are you using
    2) What do you mean for "format"
    For example: if you're on Oracle9i and changing format means changing the order of the tables in the FROM clause and you're using Rule Based Optimizer then the execution plan and the execution time can be very different...
    Max
    [My Italian Oracle blog|http://oracleitalia.wordpress.com/2009/12/29/estrarre-i-dati-in-formato-xml-da-sql/]

  • Whenever I modify a photo in Iphoto it puts it in a "modified" subfolder. Why can't I move this modified file (I changed name) back to the Iphoto main file so I can see it when I open my photos?

    Whenever I modify a photo in Iphoto it puts it in a "modified" subfolder. Why can't I move this modified file (I changed and saved file name) back to the Iphoto main file so I can see it when I open my photos?

    A good general step for strange issues is to renew the iPhoto preference file - quit iPhoto and go to "your user name" ==> library ==> preferences ==> com.apple.iPhoto.plist and trash it - launch iPhoto which creates a fresh new default preference file and reset any personal preferences you have changed and if you have moved the iPhoto library repoint to it. This may help
    This does not affect your photos or any database information (keywords, faces, places, ratings, etc) in any way - they are stored in the iPhoto library - the iPhoto preference file simply controls how iPhoto works - which is why renewing it is a good first step.
    If that does not cure it backup up your iPhoto library and rebuild it - depress the option and command keys and launch iphoto and use the options there - exact option depends on teh version you have
    And always remember - NEVER make any changes of any sort to the structure or content of the iPhoto library - nothing - no deletions - no name changes - nothing
    LN 

  • Why can't tool shortcuts contain either function keys or the Cmd or Opt modifiers? I can do this in InDesign and want to use the same shortcuts in Illustrator.

    For example, I started using F4 for the Selection tool, because typing "v" for the most basic tool is risky when working with type. I was updating my shortcuts in Illustrator to mirror my InDesign shortcuts and got shut down on the function key as shortcut. "Tool shortcuts cannot contain either function keys or the Cmd or Opt modifiers."

    What is the add-on that's keeping you from installing Firefox 14?
    A problem was noticed last week with certain ways of managing Facebook cookies. You can check these threads and see whether that issue is relevant to you:
    * [https://support.mozilla.org/en-US/questions/934784 Certain websites do not work properly in normal browsing mode but work in private browsing perfectly.]
    * [https://support.mozilla.org/en-US/questions/934791 facebook post area when clicked gives https://www.facebook.com/ajax/metacomposer/attachment/status/status.php?targetid=695296250&xhpc=composerTourStart]

  • Hello. Can I still use the forms central to modify my pdf.-files after the software is not supported by adope?

    Hello. Can I still use the forms central to modify my pdf.-files after the software is not supported by adope?

    Formscentral isn't designed to allow for the modification of PDF files, forms or otherwise. If you have saved forms created in Formscentral as PDF you will continue to be able to modify them in a program like Acrobat. Hope this helps.
    Andrew

  • Can the mailer.cbx file in 6.2 be modified to use port 1025?

    Can the mailer.cbx file code in vs. 6.2 be modified to use port 1025?
    We need no authentication, only a port change to 1025 to allow the mailer object to work for us. Had it working for several months until ISP blocked port 25. We currently have no email alarm reporting to us from over 100+ alarm events!
    Thanks for any suggestions!

    Thanks both Arnis and Mike --
    Interesting suggestions from both of you.
    Arnis, we're putting the cleanup utility on the back burner for the moment, since in our company, we can get in trouble using third-party software. However, it's good to know about this utility and we will use if it we have to. (Occcasionally we are forced to put our careers on the line for issues like this...)
    Mike, we created a folder called "PDFSettings" in the 7.2 "fminit" folder and copied over the six joboptions files from 9.0.  Rebooted, rePDFed and voila, that worked. (Mind you, we can't say for sure that's what worked, because as I said in my original post, the simple act of rebooting "sometimes works, sometimes not...")
    Eventually this problem will go away by itself because eventually we will get rid of 7.2 -- it's only deadline time-crunches that have made us reluctant to jump fully-clothed into 9.0...
    I really appreciate the two of you taking your time to offer suggestions and help. I can't imagine life in the FrameMaker world without you!
    Cheers,
    Gay

  • If i bought my ipod touch 4th generation in Phoenix,Az,USA can I make the guaranty valid in Mexico (Culiacan,Sinaloa,Mexico)?

    If i bought my ipod touch 4th generation in Phoenix,Az,USA can I make the guaranty valid in Mexico (Culiacan,Sinaloa,Mexico)?

    If you're getting the "iTunesSetup.exe is not a valid 32bit application" error, it likely means that you may have tried to download the 64bit iTunes Setup exe (application).  You mentioned you couldn't download because you have dialup, However, even with dialup you should be able to download iTunes.  You can go to the following apple site and scroll down and click on the Windows 32 bit version of iTunes.  On dialup it will take a while to download, but it can be done.  See if this helps.
    http://support.apple.com/kb/DL1103

Maybe you are looking for