Please, help me!!! Do visible field ADRC-STREETABBR in BP Address view

Hi,
I need to have a field as ADRC-STREETABBR in BP Address view. This field doesn´t appear on Address view, but however is a field of the standard table ADRC. I need to be filled for the user, so I have to find a way to do it visible on Address view. Any solution without standard modification? or must be done a standard modification?
What this field is used by the CRM system for if normally it is space?
I have tried to create a new field and I have moved it to standard address view This field belongs to an append structure in BUT020, thus when I save an address the content of this field ias also saved. The problem is that I had allocated this field at the bottom of the view, but my customer want to see this field on the top of the view (close to street field). I have moved it on the top, but then when I save, I don´t know why but I can´t get address data (BUT020) from memory (with the BAPI BUA_BUPA_BUT020_GET), thus I can´t save the content of this field in the corresponding address. Wih the field on the bottom of the view, does work fine. Why happens that? I think is something with screen secuence and the instance of the object BUA (Address) but I am not able to find a solution. Could you please help me?
Thanks in advance.
Regards,
Rosa
Message was edited by: Rosa Ferrando

Hi Rosa,
On going to technical detail of this field you mentioned above the description of this fields is  "(Not Supported) Abbreviation of Street Name". This gives me some idea that probably SAP has stopped supporting this field and thats the reason it is not visible.
May be its a good idea to use some other similar field which is available.
Otherwise try looking into customization of address management in the following Node. Try changing address layout or activating other internation address versions.
SAP IMG-->SAP Web Application Server >Appplication Server>Basis Services-->Address Management.
Hope this helps
Regards
Hemant

Similar Messages

  • Please help me to visible the create event menu in workflow administrator.

    Hi All,
    please help me to visible the create event menu in workflow administrator.
    (select workflow administrators responsibility navigate to administrator workflow -->
    Business events-->events-->here i am seeing only search options,but i required create event,subscriptions.... )
    Regards
    Gopinath

    Hi,
    please help me to visible the create event menu in workflow administrator.
    (select workflow administrators responsibility navigate to administrator workflow -->
    Business events-->events-->here i am seeing only search options,but i required create event,subscriptions.... )You should find "Create Event" and "Create Events Groups" buttons in the same page under "Results : No Search Conducted".
    Regards,
    Hussein

  • Can someone please help me figure out how to "clear" recent email addresses used in Mail?

    Can someone please help me figure out how to “clear” recent email addresses used in Mail?  For example, as I begin typing a name/email address in the “To:” field, Mail begins suggesting addresses that I’ve previously used.  I don’t want any suggestions unless they are in my contacts. 
    Another example:  When using MS Outlook, it will also remember and suggest email accounts previously used, but I can arrow down and delete an account from the list so it won’t automatically popup or suggest in the future. 
    I appreciate any guidance in this matter. 

    The iOS email app stores all email recipients in a list of previous recipients which cannot be turned off. The email address autofill feature when addressing an email pulls from contacts and from the list of previous recipients which can't be prevented. There is no option to clear the list of previous recipients - not at the present time anyway.
    If you don't want any suggestions, select from contacts instead when addressing an email.

  • The account is invalid to access, please help me to connect to a new right email address. This is urgent for the pre-order, please respond as soon as possible.

    My email account is invalid to access, please help me to connect to a new right email address. This is urgent for the pre-order process, please respond as soon as possible.
    <Email Edited by Host>

    This is a user-to-user technical support forum. No one here can help you.
    Try
    https://expresslane.apple.com

  • PLEASE HELP!  I have lost all my Emails and Addresses

    I recently upgraded to Mac OS 10.3.9 and Mail 1.3.11. I don't know what happend but when I started my computer today all my personal settings were set back to the default settings, all my emails and addresses are gone, and in Safari all my bookmarked pages are gone. I did a search here for relevant solutions but it seems most issues have to do with converting to 10.4. I'm begging...... Can anyone please help me recover this info?
    Thanks in advance.
    Steve

    Hi Steve
    This is Tiger's Mail & Address Book Discussion Forum. To get to Panther's, click on 'Discussions' at the top of this page, then choose Panther and earlier, then Mail & Address Book.
    Good luck.

  • ** Please help urgently  ** Budget upload field with leading zeros

    We need to load a characteristic that has leading zeros.  For example 0000350.  When saving down to CSV, we lose the leading zeros (0000) so that only 350 is loaded into BW.  Saving the codes as 'text' in excel does not seem to help.
    We cannot therefore see the name for any of these codes when refreshing the workbook in BW.
    Could some please urgently tell us the correct method to save the file for loading into the BW infopackage, with all zeros intact ?
    Regards, Frederick

    Hi Frederick,
    Just some additional thoughts,
    assuming field A1 in Ecel contains 350 and you want to create a string with 8 digits, you could use formula '=text(A1;"00000000")' in an empty column and copy it back to column A. Then 00000350 should be provided in A1. This can be saved in a normal .csv file and be opened with a text editor (e.g. notepad) in order to check content.
    If you don't want to manipulate Excel data, transformation to a field with leading zeros can be easily be processed with a routine in transfer rules.
    Regards
    Joe

  • Please help with dynamic form field names in cfloop

    Hi,
    I need to create a form with day, date, month, year and time for 12 months
    Instead of coding them 12 times, I create day,date,month,year and time fileds in my form 1 time and then I use cfloop from="1" to="12" index="i" to loop these form fields 12 times.
    I gave each form field name such as: <input type="text" name="ScheduleDate_# i #" value=" "> this way each of those field will be named differently such as:
    ScheduleDate_1, ScheduleDate_2,ScheduleDate_3, ScheduleTime_1,ScheduleTime_2, etc
    I'm facing problem when this form is submitted, I think the error has something to do with the pound sign (##) when it comes to updating the back end
    I use MS SQL
    It doesn like this:
    <CFLOOP From="1" To="12" index="k">
    <CFIF Len(Trim(Form.MeetYear_#k#)) NEQ 0 AND Len(Trim(Form.MeetTime_#k#)) NEQ 0>
    <cfquery name="CreateSchedule" datasource="#DSN#">
    UPDATE TableSchedule 
    SET SchedDay = <cfqueryparam cfsqltype="cf_sql_varchar" value="#form.SchedDay_#k##">,SchedMonth =
    <cfqueryparam cfsqltype="cf_sql_varchar" value="#form.SchedMonth_#k##">,SchedDate =
    <cfqueryparam cfsqltype="cf_sql_varchar" value="#form.SchedDate_#k##">,SchedYear =
    <cfqueryparam cfsqltype="cf_sql_varchar" value="#form.SchedYear_#k##">,SchedTime =
    <cfqueryparam cfsqltype="cf_sql_varchar" value="#form.SchedTime_#k##">
    Where SchedId = <cfqueryparam cfsqltype="cf_sql_numeric" value="#k#">  
    </cfquery>
    </CFIF>
    </CFLOOP>
    Can anyone help please?

    You can't nest hash marks. Do this instead:
    SET SchedDay = <cfqueryparam cfsqltype="cf_sql_varchar" value="#form["SchedDay_" & k]#">
    Dave Watts, CTO, Fig Leaf Software
    http://www.figleaf.com/
    http://training.figleaf.com/

  • Please help!! update fields of delivery order by using BAPI.

    hi, any one can help me to update the fields of a delivery order.
    the fields in the delevery order are : Batch no. quantity. and Stock location.
    i cannot use any BDC to do that, BAPI is prefered in that report.
    batch number and quantity are easy to find in any BAPI,  but stock loc can not change from BAPI...
    i have tried BAPI_OUTB_DELIVERY_SAVEREPLICA , but it always give me errors. (VL 564 and VL 295. but i definitly gave the delevery type)
    so, is anyone can give me a better bapi?or give me a instance for using BAPI_OUTB_DELIVERY_SAVEREPLICA.
    thanks a lot.
    Chris

    Try:
    BAPI_INB_DELIVERY_CHANGE
    BAPI_OUTB_DELIVERY_CHANGE
    Rob

  • Please Help: Problem - Combining database fields in a text object

    Hello
    Thank you for viewing my thread and any helpful feedback you may provide. I am having trouble with the "Combining database fields in a text object" tutorial in the Help under: Quick Start\Quick Start for new users\Combining database fields in a text object.
    After following the steps and previewing, I see the last name, first name stacked on top of each other in preview and design view. I don't know why this is happening. Can anyone point me in the right direction so the text is displayed the same way as it is in the Help?
    Thanks
    M

    Hi, 
    I don't think the field is actually in the text object but just stacked on top of it. 
    When you double-click on the text object, you the cursor should be inside it now.  Is the database field in there?  If not, then you can drag and drop it into the text object where you want it to go. 
    You will know if it's going in because the edit cursor will show you where in the text object it will drop. 
    The other way to do it is to drop the database field on the report somewhere and copy it to the clipboard and paste it into the text object. 
    Good luck,
    Brian

  • What is this please help!! Safari cannot open page because the address is invalid? Please help

    How do I fix this please Safari cannot open the page because the address is invalid..... Please help

    Make sure the address of the page you are trying to open is correct. What page are you trying to open?

  • PLEASE HELP. Two computers with the same External IP Address

    I have two computers with the same IP address which is causing problems. I tried to ipconfig/release ipconfig/renew but I get the error "No operation can be performed on a Local Area Connection* 11 while it has its media disconnected.
    I tried resetting router/modem, made sure "Obtain an IP address automatically" are all enabled. DHCP is enabled.
    Two of the computers have the same one and the other IP is completely different (not 1 or 2 off). When I open the router settings and click DHCP Reservation it shows the IPs 1 number off and all different like you said. i.e ***.***.*.106, ***.***.*.107,
    ***.***.*.108. But with the proxy service I'm using, when trying to allow each computer to use them it shows different IP addresses than what is shown in the DHCP Reservation.
    If I clone my MAC address the identical IP of the two computers changes but they'll still share the same IP. The third doesn't change.
    I tried ipconfig /release - ipconfig /renew - ipconfig /flushdns nothing yet. Not sure about your #2 and #3. And I just updated my firmware.
    Anyone with expertise? Thanks.

    Cyber_Defend_Team and ZigZag3143x I powered down all three computers and turned off/reset the modem and router.
    I restarted them one by one and after, the two computers with the conflicting IP address changed their IPs but their IPs are still conflicting.  The third computers IP stayed the same.
    What else can we do?

  • BSP: F4 Help For a custom field...

    Hi All,
    I need to display search help for a custom field in one of my custom view.
    Search Help for the custom field is already implemented.. but how can i use it in BSP View!.
    In the standard CRM_IC application i couldn't find any similar search help scenario, coz it is calling some standard methods like ShowF4KeyAndValueHelp3,
    ICWCShowF4HelpExtern by passing the structure and field name!.
    I think these standard methods will work only with the fields which have value help table at the data element level. As the custom field that i m using does not have any value help i cant go for this method i guess!.
    Any Help/Hint?..
    Thank You,
    sudeep v d.

    Hello Sudeep,
    Here are some more helpful links .Please refer them .
    Re: Inputfield value for a tableView from a help window
    /people/thomas.jung3/blog/2005/08/22/bsp-value-input-help-popups-version-30
    F4 help using javascript
    Please let me know the feedback.
    Warm Regards,
    Rakesh Kumar Verma

  • EVENT PROBLEM please help

    hey everyone,
    ok heres my problem i have a jpanel with 11 jtextfields and i jbutton. when the jbutton is preseed it calls and actionlistener is envoked and the 11 jtextfields are populated. this works fine the textfields all get the correct information.
    my problem is that the information is displayed only after the whole event has finished. not as each individual textfield calls the setText() command.
    please help
    matt
    kappsetsfire

    The text fields won't be updated until a repaint occurs.
    Repaints occur on the same thread as other UI events (like clicking the button).
    Thus the repaint(s) can't be serviced until the UI thread has finished what it's doing - namely, working through your code.
    Even asking the text fields to repaint explicitly won't solve it as the repaint will still have to wait for your code to finish.
    If your method that's setting all the text field values takes a while to execute you should be running it in a separate thread and calling onto the UI thread to set the text field values.
    If you want more information just search/ask.
    Hope this helps.

  • Can't download anything from app store or itunes. everytime i try to install an app i get "there is abilling problem with a previous purchase. please update ur payment method". i have recently changed my address and visa debit card. please help

    can't download anything from app store or itunes. everytime i try to install an app i get this error "there is a billing problem with a previous purchase. please update ur payment method". i have recently changed my visa debit card and home adress and when i make these changes i still get the same error.
    will u please help me out?

    Are you listing the billing address for the card correctly? The address in the iTunes/MAS account must match the address on your bill exactly.

  • For some reason my app store email is incorrect on my ipad 1 how do i change the email address? please help me as this is most frustrating. i want to use the same email address i use on my Iphone and I mac

    Please help.
    for some odd reason my app store email address on my Ipad 1 is incorrect. How do i change it?
    i would like to use the same email address i use on my I Phone and I Mac
    Please help as i find this situation most frustrating.
    many thanks
    Joao

    Do you perhaps have more than one Apple ID?  If your response is "No," are you absolutely positive?

Maybe you are looking for

  • How can I save a project to an external hard-drive?

    Hey guys, I'm trying to clean out my computer and I want to move a finished project to an external hard-drive (while still being able to edit in the future if I choose)... How can I do this, and once I accomplish the task would I be able to delete ev

  • Attachment problem in mail adapter

    Hi We are reading mails from mailbox and forwarding the same to another mailbox, so sending and recieveing mail adapters are configured. The mail is read and sent fine. But not the attachments. The PDF attachment is corrupted when we open it from the

  • Canon MP 600 Bluetooth printing...

    Hello, The Canon MP600 simply will not print via Blueooth for me. I can control the device in Printer Setup Utility via BT. I can print via USB as well. I simply cannot work out how to get the infernal thing to print via BT. I am certain I am missing

  • Itunes crashes every time I add folder to library

    I have deleted my library so that I could start over. I went to add the itunes folder back in and itunes crashes. I have moved the music to anouther folder and then tried it. It crashes again. I have re-installed itunes, it still crashes. I have run

  • JDBC thin driver JDK 1.1.x  for Oracle 9i/WindowsNT

    Is there a thin ORACE JDBC/JDK 1.1.x/WindowsNT driver for 9i database? I saw an ORACE JDBC/JDK 1.1.x in the Solaris list but not in the Windows NT list. Or is possible to work with the existing 8.1.7/JDK1.1.x/WindowsNT driver against a 9i database? G