BP telephone pulled out from another BP in CRM webui

Dear Experts:
When I created a bp through CRM webui 7.0, I maintained the general address info. and saved it. after that, I accessed the address details section by clicking on address assignment block in order to add the phone and email info. however, the  fields had been already filled with the phone and email info. from another BP which I have created right before this BP.  it should be blank before adding any data. It seems like the second BP's address detail view still pointed to that of the last BP I have created prior to this one.  However, if I logoff from webui and logon back, it is blank and looks right.   Is ther any advise?
Thanks

Hello,
Perhaps you could check if the BSP component view BP_ADDR/StandardAddress has been enhanced in your system. If so, see if the getter for TELEPHONE of the model node for BuilStandardAddress is available.
If this method has been enhanced, it is possible there is an error in the code. Possibly, casting the property access to an object of CL_CRM_BOL_ENTITY and calling the REREAD( ) method could solve your problem.
Kind regards,
Tom.

Similar Messages

  • Error message in pulling data from R/3 to CRM

    Hi,
    I am trying to pull customer data from R/3 to CRM with different SHIP-TO partner. In this case, the VAT REG. NO. is different from its country ISO code, so when i try to execute in tcode R3AR2 and R3AR4, I was encountered error message in tcode 'SMW01' saying "ISO CODE <code> IS NOT CORRECT IN THE VAT REGISTRATION NUMBER".
    As far as I know, SAP had an on-going dialog enhancements on this one, is there anyone knows any recent updates from SAP that might solve this problem?
    Please help.
    Thanks.

    Hello,
    according to our development this message only should accur in case there are inconsistencies on R/3 side which lead to such errors in inbound processing.
    Therefore in case you don't see any inconsistencies I would recommend to address it via OSS message.
    Best regards,
    Christian

  • Using XML for Live Data- How do you get the XML file to pull data from another xls file?

    Post Author: joseph_atkinson
    CA Forum: Xcelsius and Live Office
    I was wondering you can help me.
    I am currently receiving an *.xls reports on a daily basis (same report, same format, different data). I have put this report into Crystal Xcelcius Designer 4.5 Professional version and created the dashboard I want.
    I am aware of the xml mapping functionality where I can map from the *.swf straight to a database. However, is it possible to map to an xls file that will change on a daily basis? (obviously I can you the refresh button in Designer, but I need to automate this process).
    Your help really would be appreciated.
    Joe

    In Firefox, I'm seeing a bad icon for your zip files. I can
    download it,
    but it looks like something might be amiss with your zip
    files
    themselves.
    Al Sparber - PVII
    http://www.projectseven.com
    Popup Menus | Image Galleries | CSS Tutorials & Templates
    Newsgroup: news://forums.projectseven.com/pviiwebdev/
    CSS Newsgroup: news://forums.projectseven.com/css/
    DW Newsgroup: news://forums.projectseven.com/dreamweaver/
    "Conjurer" <[email protected]> wrote in message
    news:e8upg1$kee$[email protected]..
    > Conjurer wrote:
    >> Boy - I thought this was as simple as creating an
    <a> tag link to the
    >> file like you do with Word docs and Excel xls files.
    So I wrote my
    >> link as follows:
    >>
    >> <li><a
    href="OMGMASalSvy/Survey.zip">2006 Adminsistrators
    >> Survey.zip</a></li>
    >>
    >> But when I click on it I get a big nothing!
    >>
    >> I put the files out there on the host and the
    Word/Excel links all
    >> work great.
    >>
    >> Is there some secret magic to this one?
    >>
    >> My page links are at:
    http://www.omgma.com/surveyforms.htm#Documents
    >>
    >> Thanks for any help.
    >
    >
    > I guess it is working in IE but not in Firefox.... hmmm

  • How do I know a user has been logged out from another screen

    If one user is already logged in to the web application and another user with the same user name and password trying to log in to the same web application, i need to logout the first screen's user session. In other word, I want to disable first screen access right since it has been logged out.
    I have a user log class to record users login activities. A new user log object will be created for every login.
    How should I do that?

    Try to write an implementation of HttpSessionListener and HttpSessionAttributeListener something like the one down below and configure it accordingly.Believe tht should very well cater your requirment.
    public SessionAttributeListener implements HttpSessionAttributeListener,HttpSessionListner{
       List<HttpSession> sessionsList;
        public SessionAttributeListener(){
             this.sessionsList = new ArrayList<HttpSession>();   
        public void sessionCreated(HttpSessionEvent se){
        public void sessionDestroyed(HttpSessionEvent se) {
                this.sessionList.remove(se.getSession());
        public void attributeAdded(HttpSessionBindingEvent se){
                    if(se.getName().equals("userInfo"))
                         this.appAction(se);
        public void attributeRemoved(HttpSessionBindingEvent se){
                  if(se.getName().equals("userInfo"))
                            this.sessionsList.remove(se.getSession());  
        public void attributeReplaced(HttpSessionBindingEvent se) {
        private void appAction(HttpSessionBindingEvent se){
                    UserBean ub = (UserBean)se.getValue();
                     for(HttpSession session:this.sessionsList) {
                             UserBean ub1 = (UserBean)session.getAttribute("userInfo"); 
                             if(ub1.getUserName().equals(ub.getUserName())){
                                    try{
                                       session.removeAttribute("userInfo");
                                       session.invalidate();
                                   }catch(Exception exp){}
                    this.sessionsList.add(se.getSession());
    }Hope this might give you a brief idea of how to go about. :)
    REGARDS,
    RaHuL

  • Excel pulling information from another SpreadSheet (source) when (source) is closed

    Hi,
    I have been struggling with changing some fields in a SpreadSheet from COUNTIFS and SUMIFS to SUMPRODUCT as below:
    =COUNTIFS('S:\Data\HQ\2014\Report.xlsx'!Table2[RFI Date],">="&B1,'S:\Data\HQ\2014\Report.xlsx'!Table2[RFI
    Date],"<="&B2)
    to
    =SUMPRODUCT(('S:\Data\HQ\2014\Report.xlsx'!Table2[RFI Date]>=B1)*('S:\Data\HQ\2014\Report.xlsx'!Table2[RFI
    Date]<=B2))
    It still seems to require the source spreadsheet to be open.
    Can somebody please advise is it possible to pull cell data from a closed source SpreadSheet without first opening it or using VBA?
    Thanks,
    Charles 

    Hi,
    If a formula that contains the SUMIF, SUMIFS, COUNTIF, COUNTIFS or COUNTBLANK functions may return the "#VALUE!" error when it contains the function refers to cells in a closed workbook and the cells are calculated.
    To work around this behavior, use a combination of the SUM and IF functions together in an array formula.
    Example:
    SUMIF:
    Instead of using a formula that is similar to the following:
    =SUMIF([Source]Sheet1!$A$1:$A$8,"a",[Source]Sheet1!$B$1:$B$8)
    use the following formula:
    =SUM(IF([Source]Sheet1!$A$1:$A$8="a",[Source]Sheet1!$B$1:$B$8,0))
    COUNTIF:
    Instead of using a formula that is similar to the following:
    =COUNTIF([Source]Sheet1!$A$1:$A$8,"a")
    use the following formula:
    =SUM(IF([Source]Sheet1!$A$1:$A$8="a",1,0))
    Quote From:
    http://support.microsoft.com/kb/260415/en-us
    Regards,
    George Zhao
    TechNet Community Support

  • Create Sequences on one computer and render out from another

    Essentially what i'm trying to acheive is to use Premiere Pro (CS6) on my Mac to create sequences themselves but use a PC on the network to do the rendering work overnight.
    I create a number sequences, anywhere from a few minutes each that can be combined into hour plus long final videos.
    Is there a way to "package" a project onto a network drive where the PC can then see the project itself with the relevant source media?. I can move the project file and the source media singularly but I then need to manually relocate the media each time.
    The workflow would then be
    All source media originally loaded onto Mac
    Sequences within project made on the Mac
    When ready for rendering transfer to PC
    PC does work with Media Encoder, freeing up Mac for other tasks.
    Any help or suggestions would be most welcome!
    Thanks guys

    You will first have to have a consistent folder naming setup for both computers, so PPro may find the files
    You will need to have the project and all files in one place on the server, and then copy everything to the appropriate computer for work... PPro does NOT work on a network, only on a local hard drive
    So... edit on Mac, copy all to server... copy all to PC... render on PC... copy all back to server
    Some reading about networks...
    Win Server is NOT supported http://forums.adobe.com/thread/851602
    Not in a Network environment http://forums.adobe.com/thread/771151
    -a work around, of sorts http://forums.adobe.com/thread/957523
    -and not on a "domain" http://forums.adobe.com/thread/858977

  • Oracle B2B 11g question about pulling data from remote TP sftp server

    Hi,
    We would like replace our custom b2b solution with oracle b2b, but without resulting much changes in remote TP side. To do that the following issues are to be resolved.
    1) in the existing custom b2b, host tp is pulling data from remote TP location. How does oracle b2b pull data from remote location using sftp(AS1 1.1)? Oracle document says that by using global listening channel, we can make oracle b2b listen to the sftp server? Is that correct? Is there any sample about how to configure and test it.
    2) For outbound file we would like to preserve the file name. If you use sftp for sending the file out, is it possible to preserve the filename?
    3) Some incoming files which are datafiles , does not have any identification pattern. Is there any other way to identify the document type? For example from which location we are pulling the file can tell us the document type.

    1) in the existing custom b2b, host tp is pulling data from remote TP location. How does oracle b2b pull data from remote location using sftp(AS1 1.1)? Oracle document says that by using global listening channel, we can make oracle b2b listen to the sftp server? Is that correct? Is there any sample about how to configure and test it. I am not sure what do you mean by AS1 1.1 but yes, SFTP is supported in Oracle B2B and if you want to poll a SFTP location, then you need to create a listening channel in Oracle B2B. For creating a listening channel, please refer -
    http://download.oracle.com/docs/cd/E14571_01/integration.1111/e10229/bb_listen_chan.htm#BAJJICJJ
    2) For outbound file we would like to preserve the file name. If you use sftp for sending the file out, is it possible to preserve the filename?Yes, it is possible. There is a setting "Preserve Filename" in transport protocol parameter of a SFTP channel which should be enabled for this purpose.
    3) Some incoming files which are datafiles , does not have any identification pattern. Is there any other way to identify the document type? For example from which location we are pulling the file can tell us the document type. In case of FTP/FILE/SFTP, file name can be used to pass document type and revision information to Oracle B2B. Please refer "Filename format" setting on the above mentioned link.
    I figured it out from another thread about how to pull the file. I configured the listening channel so that it reads from a remote server using sftpo protocol. And I have given the filename format as %FROM_PARTY%.dat. I am putting a file like TESTBC.dat. TESTBC is the name of the remote TP. B2B is reading the file but, recognizes the document tupe, but says that FromTP null. What is the solution?
    Make sure that TP name is same as what you are giving in filename (cross-check for spelling). You may also try with default naming convention (do not mention anything in Filename format in listening channel configuration) - %FROM_PARTY%_%TIMESTAMP%.dat
    for eg -
    Acme_12345.dat
    Regards,
    Anuj

  • Enabling firewire out from Color?

    Has anyone attempted to edit the file in color where it says video output disabled?
    I truly believe that Silicon Color the originator of Color intended for firewire out to be enabled, is it possible the apple made a deal with the AJA Kona and the Black Magic design that make the cards for video output to boost their sales?
    If you are just working with standard DV, firewire out should be available don't you agree?
    in one of the forums a user asked this question and several responded, if you want to play colorist, you must pay the big bucks, but why? if there is a way around.
    I look forward to some feedback
    Thanks
    Sigi

    Maybe Sigi lives closer to the source, and knows something the rest of us don't (and obviously there is much that is unknown), but...
    if you're strictly going on "faith", my perception is that Final Touch was NEVER intended to work over FireWire; the original team considered anything less than a 3-monitor Kona/Blackmagic configuration to be at best a joke, and at worst an insult. Maybe both. But that was a long time ago in computing terms.
    But here's some financial and historical background that might be instructive, and may help to shed some light on the path this app has been following.
    FT was originally envisioned to be a dpx DI solution, but for business case considerations was diverted into a Quicktime corrector, and further perverted to work with Long-GOP formats, and then purchased (rescued?) and scabbed onto FCS2. COLOR 1.0, as most FCP users came to know it, was really FT version 2.7+? or maybe 8-something. We all got the rug pulled out from under us virtually within days of 2.7 Release Candidate 2 being posted on the old Silicon Color website. The whole thing went dark from October 2006 until April 2007. Six months, no support, no news, no fixes, no updates, no contact, nothing. Some of us had spent anywhere between $5K and $32K depending on whether one opted for the HD or 2K versions. Apple's compensation for the lost investment was a "free" upgrade to FCS2.... if you still had a valid Support contract. Now, interestingly enough, sales were suspended as of October 2006. FTHD service contracts were only valid for a couple of months, while 2K licenses came with a year of support. So effectively all of the HD licensees' contracts expired in that period. As compensation, Apple offered them an "upgrade" to FCS2, including COLOR, for $US499. The 2K licensees whose contracts still hadn't expired effectively wound up with a $30,000 version of Final Cut that came with a slightly better integrated Final Touch. (If they argued in order to receive it.)
    Just like Warren Buffett said.... "There were mistakes made". I don't know if its a widespread attitude, but COLOR, née Final Touch, as it exists now, still has the feel of an "awkward child". You could say "special needs" if you follow my meaning. It has lost all of the cachet that it might have had as a serious grading tool. Speedgrade is pretty much the indie choice of the moment if you can't afford a Lustre, Baselight, Scratch, or whatever, etc. (At least my Tangent panels would work with the new system.) Apple's non-presence at NAB2008 pretty much suggested "withdrawal" in the eyes of broadcast professionals. The rampant secrecy that the company operates under is poison if there are large budgets involved -- consumers might find the whole thing delightful because they like to be surprised. You'd be amazed at how dim the view is from completion bonding companies when certain technical solutions are suggested as part of a project's workflow.
    Showstopper is the word.
    So, now you want FireWire for your SD projects. It seems like a trivial thing, doesn't it? But how would you assess the odds of that happening?
    Given the history of decline, maybe you will get your wish. And then the app will be remaindered like LiveType and Shake. Because there will be no business case to put further R&D into it. I know, Apple sells hardware and the software is the frosting on the cake. I understand that. But the math of the bottom line will also start speaking louder than anything else. Under present economic circumstances maybe sooner than later.
    Anything in this that is not true? Let me know.
    jPo

  • How Do i create a list that will show in a dropdown box with the list being pulled from another tab and not the cell data format junk?

    How Do i create a list that will show in a dropdown box with the list being pulled from another tab and not the cell data format junk?
    I currently run OS X 10.10.1
    Now i have been trying to work on this for a while now and what i want to do should be simple but its apparently not.
    Here is an example of what i want to happen.
    I will have 2 tabs: Contact | Sales
    Now Contacts will have the list of names and various information about a customer, While Sales will have one drop-down box for each Cell Row that will show the names of the person in tab contacts
    for what i am wanting to do i cant use the data format pop-up menu because the list is edited everyday several times a day.
    Now how do i do this, Excel can do this so how can numbers do it?

    Hi Shegra,
    Paste this into a applescript editor window and run it from there. In the script you may need to adjust the four properties to agree with your spreadsheet. Let me know if you have any questions.
    quinn
    Script starts:
    -- This script converts column A in one table into an alphabetized list of popups. It copies the last cell in that column. Then reverts the column to text. It then refreshes popups in column A of a data table starting with a user defined row.
    property DataEntrySheet : "Sheet 1" --name of sheet with popups to be refreshed
    property DataEntryTable : "Sales" --name of table with popups to be refreshed
    set copyRange to {}
    property PopValueSheet : "Sheet 1" --name of sheet with popup values table
    property PopValueTable : "Contacts" --name of table with popup values
    set PopStartRow to {}
    tell application "Numbers"
      set d to front document
      set ps to d's sheet PopValueSheet
      set pt to ps's table PopValueTable
      set s to d's sheet DataEntrySheet
      set t to s's table DataEntryTable
      set tf to t's filtered --this records filter setting on data Entry Table
      display dialog "Start from row #..." default answer "" with icon 1 -- with icon file "Path:to:my.icon.icns" --a Week # row
      set PopStartRow to {text returned of result}
      tell pt --convert list to alphabetized popups
      set ptRows to count rows
      set copyRange to ("A2:" & name of cell ptRows of column "A")
      set selection range to range copyRange
      set selection range's format to text
      sort by column 1 direction ascending
      set selection range's format to pop up menu
      -- popupsmade
      set selection range to cell ptRows of column 1 of pt
      set v to value of cell ptRows of pt
      end tell
      activate application "Numbers"
      tell application "System Events" to keystroke "c" using command down
      tell pt
      set selection range to range copyRange
      set selection range's format to text
      end tell
      tell t
      set filtered to false
      set tRows to count rows
      set pasteRange to ((name of cell PopStartRow of column "A") & ":" & (name of cell tRows of column "A"))
      set selection range to range pasteRange
      tell application "System Events" to keystroke "v" using command down
      set filtered to tf
      end tell
    end tell

  • How do I get a disc out of my super drive when I forgot to eject it from the drive before pulling out the USB cable ?

    how do I get a disc out of my super drive when I forgot to eject it from the drive before pulling out the USB cable ?

    How force eject disc: Apple Support Communities
    Mac Mini: Eject DVD Apple Support Communities

  • The other day I had to reset my phone because i pulled it out from my laptop when it was updating. I then tried to restore it but i clicked the wrong option and it has restored all of my stuff from 2 years ago, is there any way to get back the stuff I had

    The other day I had to reset my phone because i pulled it out from my laptop when it was updating. I then tried to restore it but i clicked the wrong option and it has restored all of my stuff from 2 years ago, is there any way to get back the stuff I had

    maggielou wrote:
    I thought that I had backed up my pictures to icloud, but when I looked online at icloud, I don't see pictures listed.  However, a few of the recent pictures have shown up on my phone.
    IHow could I get these from my MacBook to my phone?
    Thanks again.
    When you log into you icloud account on your computer you are viewing data that you sync to icloud not the backups.  You can't view the backups.
    Look at the two links I provided.
    You still didn't answer any of my two questions I asked.

  • I have a brand new macbook pro that i was doing a data transfer from an old macbook, it got stopped/cable pulled out, now have spinning wheel of death that wont stop, how do i reboot/stop the wheel of death and start again?

    i have a brand new macbook pro that i was doing a data transfer via firewire from an old macbook, it got stopped/cable pulled out, now have spinning wheel of death that wont stop, how do i reboot/stop the wheel of death and start again? (this time il use time machine transfer)

    Just power off the machine(s). Shut them down. Migration Assistant gets 'stuck' sometimes - best way to migrate really isn't over Firewire, though it will certainly work, but with both machines hardwired via Ethernet to the same router. You can use a TM backup, too, of course, provided that it's recent. Which is the best? Your choice. I've done it both ways and have a preference for MA, but TM restore can be a bit faster and less quarrelsome.
    Clinton

  • How do I pull information from a master table to another table?

    This may be quite simple, but I'm missing something.  I want to pull information from my master table into a secondary table.  In the Master Table in Column A, I have a list of teams ("Team 1" through "Team 12"), then in Columns B through D I have information for each assignment given to each team.  I want to have a secondary table for each team that lists all of their assignments.  So, this is what I want:   if Column A says 'Team 1', then I want the secondary table to have the info from Columns B through D.
    Again, I'm sure it's simple, but I just can't figure it out.
    Thanks for any help.
    Mark

    Hi Mark,
    1)  But does this work if in the Master Table (which will be over 300 rows long) each team will show up 10-15 times over the course of the 300 rows randomly (hence the need to have sub-tables for each team...so it's easier for them to see what their tasks are).
    Your fellow Numbers enthusiasts in this forum will need more information to help you with that. You are on the right track though with the idea of many tables. Therein lies the power of Numbers.
    2)  I'm a bit confused by the formula.  With the "$A2" do I select the first column in the Master Table?  And can you break down the second part of the formula?  The "$A$2:$D$4,2,0"  Why would you have A2 and D4 in the same formula?  They are not in the same row.  And what's the 2,0 at the end?
    Breaking this question down:
    With the "$A2" do I select the first column in the Master Table? 
    No. The $ keeps the reference to Column A absolute (it won't change to B then C as you Fill Right in the Team Task Table.
    And can you break down the second part of the formula?  The "$A$2:$D$4,2,0"  Why would you have A2 and D4 in the same formula?  They are not in the same row.
    $A$2:$D$4 is the range of cells (a rectangle) where VLOOKUP will search (in my example) but not in your 300 row table!
    And what's the 2,0 at the end?
    The syntax of VLOOKUP is VLOOKUP(search-for, columns-range, return-column, close-match)
    The 2,0 at the end means "return column" is 2 (the second column of the range) and 0 means "Exact Match" - it won't find a close match. After Fill Right you will need to edit the formula in each Column to change "return column" to 3, then 4, then ...
    With a table selected, click on the Function Button in the Toolbar and choose Function Browser. I find that much more useful than the Help Menu. However (there is always a however in life) the Help Menu will show Numbers User Guide, and Formulas and Functions Help. Download them and read at your leisure. The first four chapters of the User Guide are well worth a read. Use other chapters as a reference when you need them.
    Regards,
    Ian.

  • How to pull content from div on one page to div on another page

    Hi all,
    I would like to pull content from the divs on page to divs on another page (so that I only have to update information on one page).
    Could anybody give me a tip on where to read about this/how to do this? I am not expecting the final answer, just a clue on where to start looking for how to get startet.
    Thanks in advance for any answers.
    Best regards,
    Ivan
    www.colombiareiser.no

    Try reading on DW Spry html data sets. The Spry HTML data set allows users to use standard HTML tables and other structured markup as a data source.
    http://labs.adobe.com/technologies/spry/articles/html_dataset/index.html
    http://labs.adobe.com/technologies/spry/docs.html
    Regards,
    Vinay

  • Is there any way to pull out computer Mac addresses from GPO?

    Hello!
    I was wondering if there is any way to pull out the mac address from all the computers in the organisation via the group policy?
    It would be rather difficult to pull out mac address one by one from each computer.
    Appreciate your assistance and advise on this!
    Thank you so much :)

    You can use group policy to run a startup or logon script to get the information and write it to some file/database.
    You could also get the information remotely using a script.
    You could also as your network guy for a list of IPs and MACs they see.
    Group policy is intended to make settings, not to get information. However you can
    set a startup or logonscript that reads out the information through group policy.
    A sample script surely is available in the scriptcenter, but I think help on the specific script is more something or the scripting forums.
    MCP/MCSA/MCTS/MCITP

Maybe you are looking for