Can't modify address2, province and country

I tried to modify my user profile. Some columns keep recalling old data or reset to default values when next logon. Those columns are "address2" in company address, "state/province" and "country" in shipping address.
For address2, it keeps recalling the old information when next logon.
For "state/province" and "country", they always reset to default value which are "Please select" and "United States" when next logon.

We will investigate; thanks for your patience...
Regards, OTN

Similar Messages

  • How do I add State/Province and Country to my drop down list?

    How do I add State/Province and Country to my drop down list?

    Hi Gen,
    My problem is that I'm working with the free version of Form Central - I'm willing to purchase a version.  Earlier in my form I have States as a drop down menu (see below) but can't copy it to make it appear later in the same document. I was trying to avoid recreating the entire form. Any tips on copying or duplicating a field inside a document.
    Best Regards,
    Gina Grant
    ink + thread
    312.970.1106 (p)
    773.435.6474 (f)
    www.inknthread.com
    CPS Vendor #: 98626
    The information contained in this email is confidential, proprietary and may be legally privileged. This email is intended solely for the addressee(s). If you are not the intended recipient, you are hereby notified that any use, dissemination, or reproduction is strictly prohibited and may be unlawful. If you are not the intended recipient, please contact ink + thread by e-mail ([email protected]) and destroy all copies of this email.

  • HT1918 changing country with the same apple id? Can't change banke details and country?

    Hello people,
    I creat my apple ID account back in 2007 in London. Now that I live in germany, On the Apple ID I want to change country, update my contact and payment information... and it is not possible. Need some help here.
    Thanks.

    Welcome to the Apple Community.
    Click on your account name in the top right corner of the iTunes store in the iTunes application on your computer, enter your password and click the "view account" button. Navigate to the Apple ID summary where you have the option to "change country or region".
    In order to change your location, you will need a credit card registered to an address in the location you are trying to change to.
    You cannot change your location if you have credit on your account, if you are unable to spend your credit and leave a balance of zero, contact Apple, which you can do through iTunes Store Support.

  • Can I modify the LineStatus and OpenQty fileds in POR1 using DI API?

    Hi, guys,
    The addon under development will run on SBO 2005B PL35. I tried to use DI API to directly modify the values of LineStatus and Openqty in POR1 throught following codes. No error come up but the values of LineStatus and Openqty in POR1 didnot changed.
    Something wrong in the codes? Or such action is not allowed in SBO 2005B?
    Thanks for your reply!
    TRY
    sSQL = "SELECT * FROM POR1 T0 where DocEntry = " & poEntryNo & " and LineNum = " & oPOLine
    oDataTable.ExecuteQuery(sSQL)
    oDTSize = oDataTable.Rows.Count
    Offset = oDataTable.Rows.Offset
    If (oDTSize > 1) Then
            oLineStatus = oDataTable.GetValue("LineStatus", Offset)
            If oLineStatus = "O" Then
                   oOpenQty = oDataTable.GetValue("OpenQty", Offset) - CInt(omatrix.Columns.Item("col_Qty").Cells.Item(row).Specific.string)
                   If oOpenQty > 0 Then
                           oDataTable.SetValue("OpenQty", Offset, oOpenQty)
                   Else
                           oDataTable.SetValue("OpenQty", Offset, 0)
                           oDataTable.SetValue("LineStatus", Offset, "C")
                   End If
           End If
    End If
    CATCH ex as exception
           sbo_application.message(ex.exception)
    End TRY

    hi
    In your code, I didn't find a code which update the LineStatus value in the database.
    You are just updating the DataTable object. Which will not reflect in the database.
    Use the SAPbobsCOM.Documents object if you need to update the LineStatus.
    In Documents object there is a Lines subobject available. Update the LineStatus property.
    Anoop

  • To get the company code and country grouping attached to a position

    Hi everyone,
    I have a position and I need to get the company code and the country grouping that this position is attached to. Could you kindly suggest an FM or a class which would fetch the above data keeping in mind the inheritance tree. That is, if the company code is not maintained in HRP1008, then it should look for the same in the Org Unit that this position belongs to and so on..
    Any help will be greatly appreciated.
    Regards,
    Alpana.

    Hi
    Check the A011 relationship of the position and get the cost center, from cost center you can get the company code and country grouping from Cost Center Master CSKS.
    ~~~Ganesh Kumar K.

  • In the new iOS-7 Safari, has the "reader" function been changed to eliminate the option to modify font size (and hence to modify the number of words per line), or is it just that I can't find how to do that?

    In the new iOS-7 Safari, has the "reader" function been changed to eliminate the option to modify font size (and hence to modify the number of words per line), or is it just that I can't find how to do that?

    iOS 7
    Seperate text size modification is no longer available in Safari Reafer.
    Use Settings.
    Settings >General > Text Size

  • How can I modify one column of current and next record depending of some criteria?

    Having DDL
    CREATE TABLE #ServiceChange(
    [ID] [int] identity(1,1),
    [SHCOMP] [char](2) NOT NULL,
    [SHCRTD] [numeric](8, 0) NOT NULL,
    [SHCUST] [numeric](7, 0) NOT NULL,
    [SHDESC] [char](35) NOT NULL,
    [SHTYPE] [char](1) NOT NULL,
    [SHAMT] [numeric](9, 2) NOT NULL,
    [CBLNAM] [char](30) NOT NULL,
    [GROUPID] [char](2) NULL
    And original and desire data in below link
    https://www.dropbox.com/sh/bpapxquaae9aa13/AADnan31ZASublDjN7sa2Vvza
    I would like to know how can I modify one column of current and next record depending of some criteria using SQL2012?
    The criteria is:
    Type should always flow F->T
    if current abs(amount)> next abs(amount) then groupid = 'PD'
    if current abs(amount)< next abs(amount) then groupid = 'PI'
    there is no case when those amounts will be equals
    where current(custid) = next(custid) and current(service) = next(service) and groupid is null
    Any help will be really apreciated.
    Thank you

    I tried that and got this error
    'LAG' is not a recognized built-in function name.
    You said you were using SQL 2012, but apparently you are not. The LAG function was added in SQL 2012. This solution works on SQL 2005 and SQL 2008:
    ; WITH numbering AS (
       SELECT groupid,
              rowno = row_number()  OVER (PARTITION BY custid, service ORDER BY date, id)
       FROM   #ServiceChange
    ), CTE AS (
       SELECT a.groupid,
              CASE WHEN abs(a.amount) < abs(b.amount) THEN 'PD'
                   WHEN abs(a.amount) > abs(b.amount) THEN 'PI'
              END AS newgroupid
       FROM  numbering a
       JOIN  numbering b ON b.custid  = a.custid
                        AND b.service = a.service
                        AND b.rowno   = a.rowno - 1
    UPDATE CTE
    SET   groupid = newgroupid
    Erland Sommarskog, SQL Server MVP, [email protected]

  • Hello Apple. Iphone6 ios8.0.2. I have problem with activation imsg and fctm. My number doesnt display on both apps. I can only use them with my apple ID. How can i fix this problem. Country:Azerbaijan. Number:  *********

    Hello Apple. Iphone6 ios8.0.2. I have problem with activation imsg and fctm. My number doesnt display on both apps. I can only use them with my apple ID. How can i fix this problem. Country:Azerbaijan. Number:  *******
    <Edited by Host>

    Hello Khayalh,
    You should be able to link your phone number by following the steps in the article below. From your iPhone, sign out of FaceTime and iMessage and then sign back in and it should link. Check in the Start Conversation With and I Can Be Reached at section in iMessage and FaceTime respectively. 
    iOS and OS X: Link your phone number and Apple ID for use with FaceTime and iMessage
    http://support.apple.com/kb/HT5538
    Regards,
    -Norm G. 

  • Can documents created/modified in Pages and Numbers be transferred to Dropbox without having to email them?

    How can transfer documents created/modified in Pages and Numbers to Dropbox other than emailing them?

    If you are working within your own network, there are apps that allow this. One that seems to work well for me is called Fingerprint - it allows you to access non-AirPrint printers on your network, save to Dropbox, open a document directly on your Mac and save to iPhoto or Evernote:
    http://www.collobos.com

  • When I logon for XP, if I am no actively doing something for several minutes I am logoff and must reenter my logon again. How can I modify the time it stays active?

    When I first logon to windows xp if I am not actively doing something minutes I am logoff and must re-enter my ogon again. How can I modify the length of time that it stays active?

    You can find that in control panel

  • Can I import into Illustrator and modify a drawing in Appleworks?

    Can I import into Illustrator and modify a drawing in Appleworks?

    Depending on the detail/complexity/accuracy of the graphics,  you will not likely find back-and-forth wokflows between PostScript-compatible drawing programs (Illustrator, FreeHand, Canvas, Draw, Xara) and OS-meta format (QuickDraw, Quartz, WMF, EMF) based programs ("Works" or "Office" applications) very satisfying.
    You encounter instance-specific caveats stemming from two basic issues:
    PostScript compatible drawing programs use cubic Bezier curves; two curve handles per path segment. "Works" or "Office" type drawing modules typically use simpler quadratic Bezier curves; one handle per path segment. So going back and forth between involves geometric translations and re-translations which wreck the practicality of editng the paths. PostScript drawing programs use cubic curves for good reason: more shape control with fewer anchors.
    The OS-specific meta formats are really not designed for the device-independent resolution fidelity of commercial print. Resolution in vector drawing? Yes. Vector paths are essentially mathematical formulae for *plotting* curves onto a raster grid. (Everything is eventually rasterized; the practical difference between raster and vector graphics is a matter of when.)
    So it's a matter of accuracy; the "fineness" of the theoretical grids the curve-handling format/application is designed to plot upon . Meta formats are more about drawing an acceptable shape onscreen, and you can kind of think of what gets sent to a dumb printing device (one without a PostScript "brain") as a glorified enlarged screenshot. The path objects you draw in a PostScript compatible program that have smooth curves that scale well both upward and downward often translate to meta formats as paths with ugly flats or extra kinks that become apparent when scaled. These caveats are unpredictable and tedious to correct. The bother ends up outweighing the advantages you are seeking.
    In a nutshell, that's why Illustrator's effective "recommendation" for exporting to Office applicaitons (Save For Office...) is the lowest-common-denominator approach of defaulting to a common raster format (PNG), even though Windows does have a vector-based format (EMF) which Illustrator can export to.
    If what you're trying to do is just a one-way trip from some legacy AppleWorks drawings to Illustrator, you'll need an intermediary translation from .awk to something Illustrator can import. You may be able to find an open-source software for doing that.
    JET

  • What is the best software programs that I can use to read, write and modify data / files on external HD (NTFS format i.e.  Windows) ?

    Hi guys,
    I’m new to Mac and have a MacBook Pro Lion OS (10.6.8 I think !!!) with Parallels 7 (Windows 7) installed. Can someone please tell me what is the best software program that I can use to read, write and modify data / files on external HD (NTFS format) from the Mac OS ? I heard of Paragon and Tuxera NTFS. Are they free ? Are they good ? Are there any other software programs out there ? I heard that some people have issues with Paragon.
    Thanks.

    Your best bet would be to take the drive to the oldest/compatible with that drive Windows PC and grab the files off, right click and format it exFAT (XP users can download exFAT from Microsoft) and then put the files back on.
    Mac's can read and write all Windows files formats except write to NTFS (and in some cases not read) so if you can change the format of the drive to exFAT (all data has to be remove first) then you will have a drive that doesn't require paid third party NTFS software (a license fee goes to Microsoft) for updates.
    Also it's one less hassle to deal with too.
    .Drives, partitions, formatting w/Mac's + PC's

  • Can I modify a power point presentation on the keynote and send it back as a power point? Will a PC be able to open it?

    Can I modify a power point presentation that was sent to me on my keynote (OS X version 10.9.4, processor 2.6 GHz Intel Core i5, memory 8GB 1600 MHz DDR3), and send the presentation back after the modification as a power point? Will a PC be able to open it and work with without any problem? How should I do it? Also, there are some videos that do not play, what should I do?
    Thanks for the help.

    Can I modify a power point presentation
    Keynote will open, edit and save PowerPoint files.
    In Keynote use:    File > Open, then select the PowerPoint file.
    Once edited save it by:   press the Option key then,    File > Save As
    PowerPoint file will open if the user has either PowerPoint or PowerPoint Viewer installed on the Windows computer.
    Also, there are some videos that do not play, what should I do?
    If they are Windows Media files they would have to be converted to play on a Mac.

  • Can I modify a Pages file on my IPad that is stored on the iDisk and then save the updated file back to the iDisk?

    As the title states...  I have Pages for the iPad and I need to be able to modify the files and store them on the iDisk for access anywhere. Is this possible?  Thanks  C

    In a word "Yes". You need to download and install the free iDisk app from the iTunes Application Store. After that, it is pretty intuitive how to do it. You can also share the document via iWork.com.
    Message was edited by: Joe Bailey

  • I want to enjoy the itunes music, books and movies store as max as I can, but in my country Indonesia, we still can't purchased books, movie and music. Can apple solve this ASAP? I believe my country is now moving on using apple mobile devices

    I want to enjoy the itunes music, books and movies store as max as I can, but in my country Indonesia, we still can't purchased books, movie and music. Can apple solve this ASAP? I believe my country is now moving on using apple mobile devices

    Apple doesn't have full control over what they can sell in each country or region. The copyright owners control that.

Maybe you are looking for

  • My iphone 4s wifi iz not working after upgrading to ios 7.1

    any sugestions ???

  • Problem in Event driven report

    Dear Gurus...I created the following procedure to implement Event Driven Reporting: CREATE OR REPLACE procedure ABC.eve_drv_rep as myPlist system.SRW_PARAMLIST; myIdent system.SRW.Job_Ident; BEGIN myPlist := system.SRW_PARAMLIST(system.SRW_PARAMETER(

  • Convertion of LDAP entries

    We are planning to use iMT to convert our application from NetDynamics 5.0 to iPlanet server. I would like to know if there is an easy way to convert LDAP entries in Production without changing user's password. Thanks --das 763-593-7167

  • Video on burned DVD drops about 5 minutes in

    So my graduation open house is this weekend. I created a slideshow using iMovie, brought the file into iDVD, and set up the menu and all that. On the computer, it ran very smoothly. The burning process also went very smoothly. I was able to put it in

  • I_step = 2 issue

    I'm defaulting a date entry variable in a query, but I want the users to be able to change the date range when the query is run in BEx but not to be able to change it when it is run on the web. I had various breakpts in the user exit zxrsru01, and th