How to check credit card number when clicking Update order

Hi Experts,
I need to check credit card number when clicking Update order.
I put  if(document.forms['order_positions'].elements['nolog_cardno'].value == "") in submit_refresh function,  but get "document.forms.order_positions.elements.nolog_cardno.value is null or not an object" error.  Any advises?
Thanks, Jin

Try like this
      if ( document.forms['order_positions'].elements['nolog_cardno[0]'].value == "" )

Similar Messages

  • Credit Card number entered CRM sales order is not appearing in R3 Sales ord

    Hi,
    We are entering our Sales orders in CRM which are gtting replicated to SAP R3,In the credit card scenario ,In some sales orders entered in CRM,where the Credit card numer has been entered,In some cases,the card numer is not appearing in R3 Sales order either in the overview screen or Payment card tab,due to ehich most of the times these cards fail authorization .
    Kindly let me know as to what could be the reasons as to why the card numer seen in CRM is not appearing in SAP R3,sales order?
    Appreciate your help on this.
    Regards
    Mohammed Roshan

    Hi All,
    Looking forward to your valuable inputs on this as to  how and why Credit Card number entered CRM sales order iwould not appear in R3 Sales order?
    Regards
    Mohammed Roshan

  • It always ask me to fill my credit card number when I want to purchase just with my apple store gift card

    It always ask me to fill my credit card number when I want to purchase just with my apple store gift card. I chose 'none' for my billing address, and it always ask for my credit card Number, and ive actually redeemed $110 itunes gift card.

    Apple verifies your payment method with nearly every purchase now for your security.
    On an iOS device make sure to tap Done after selecting None.
    Same thing on a computer. Make sure to click Done if you select None for Payment Method.

  • How to remove Credit Card number from the account

    Dear Sir/Madam,
    Someone used my Creadit card to buy credit and I agreed initially.
    Now i want to remove my creadit card number from her account and disallow her to use it. But it seems the credit card infomation can not be removed and she still can buy credit using my credit card.
     I checked with her account and it seems my credit card number is always shown there, no matter how I try.
    May I know how can I do?
    Thanks
    Solved!
    Go to Solution.

    Hi,
    You can delete a credit card if you have used it to buy Skype Credit, but you cannot delete a card that is being used for recurring payments (a subscription or Auto-recharge). You have to cancel the recurring payment first.
    To delete a credit card:
    1. Sign in to your account:
    http://www.skype.com/go/myaccount
    2. In the Account details section, click Billing & payments.
    3. On the Payment settings page that appears, click Stored payment details, and then next to the credit card you want to delete, click the Delete button.
    For more help with updating your credit card details, visit:
    https://support.skype.com/faq/FA10486/
    Hope this helps.
    Rod
    If you found this answer helpful, please give Kudos. If it resolved your issue, mark it as a solution to help others. Thanks!

  • How to get credit card number.

    Hi everybody,
    I'm trying to get a customer credit card number for use it on a form that is generated from a reversed document created when a credit card payment fails or if the card is declined.
    I found the credit card information on table VCNUM but how can I relate that information with the data that storages documents information like BKPF, BSEG, etc...
    If anyone can help me will be appreciated...

    Hi,
    Check this table VCNUM, this is Credit card master table. and CCNUM (Credit card number) is the field which you are looking for .
    Get the Card number from VCNUM and go to table <b>BSEGC</b> here you get all the info.
    Regards
    vijay

  • How to remove credit card information when the none button is not available?

    The None button doesn't show up when I edit my billing information. Help?

    Maybe:
    How do I remove my credit card...: Apple Support Communities
    How to remove credit card details?...: Apple Support Communities
    Some uses have said they could not.

  • Credit card number field in sales order

    Hi Friends,
    Can we configure this field so that it only retains the card number as xxxx1234 (last 4 digits.  Currently we have full visibility to customer card data to anyone who has SD display access in sales order.
    Thanks,
    Sree.Manam

    Sree,
    I'd suggest you have a look at OSS note 766703.  SAP has functionality for encrypting credit card number and note 766703 is an FAQ that references notes related to that functionality.  You'll find reference to notes that discuss how to activate the "masking" of the card number - which is what you describe.  Once you've implemented those notes you'll be able to have all execpt the last several digits of the card number masked with '*'.
    Regards,
    Eric Bushman
    VP, Solutions Engineering
    Paymetric

  • Credit card number display in sales order

    Hi,
    I would like to know in which transaction the configuration needs to be done, to display partial credit card number as *.  Eg.  it should be displayed as ************7654
    Thanks in advance.
    Meenakshi

    Hi,
    The sales order is created using the Idoc information sent from a website.
    E1EDK36 segment has that credit card details.
    Menu Goto->Header->Payment card will display the details in the sales order after creation.
    Thanks
    Meenakshi

  • How to get the page number when click the(Next page) Icon on Tableview

    Hi all,
           I had implemented a tableview in one of the Views that I had implemented for a BSP application. I am using MVC framework.
    Let us assume when we execute the BSP and a table view got 11 pages.
    How I can keep track of the page number when we click the  (Next page, Previous page, Bottom , Top) Icons on my tableview . Is there any attribute willstore that  corresponding page number of the tableview when we click the corresponding Icon's??
    I had checked both CL_HTMLB_TABLEVIEW and CL_HTMLB_EVENT_TABLEVIEW Classes and i don't find any attribute.
    Any help will be appreciated.
    Thanks in advance.
    Thanks,
    Greetson

    Hi Greetson,
      I was thinking to write a weblog about that.
      But now I would like to have your opinion:
      I coded a generic method in my main controller (but you could also insert it in the application class) that save the firstvisible row in the class  me->firstvisiblerowlist (that is a table)
      DATA: l_firstvisiblerowlist TYPE zmmsp_tableview_1st_visi_row.
      DATA: ff  TYPE ihttpnvp,
            ffs TYPE tihttpnvp.
      me->request->get_form_fields( CHANGING fields = ffs ).
      LOOP AT ffs INTO ff.
        IF ff-name CP 'f*visiblefirstrow'.
          READ TABLE me->firstvisiblerowlist INTO l_firstvisiblerowlist WITH KEY name = ff-name.
          CASE sy-subrc.
            WHEN 0.
              l_firstvisiblerowlist-name  = ff-name.
              l_firstvisiblerowlist-value = ff-value.
              MODIFY me->firstvisiblerowlist FROM l_firstvisiblerowlist INDEX sy-tabix.
            WHEN 4.
              IF sy-tabix = 0.
                l_firstvisiblerowlist-name  = ff-name.
                l_firstvisiblerowlist-value = ff-value.
                APPEND l_firstvisiblerowlist TO me->firstvisiblerowlist.
              ELSE.
                l_firstvisiblerowlist-name  = ff-name.
                l_firstvisiblerowlist-value = ff-value.
                INSERT l_firstvisiblerowlist INTO me->firstvisiblerowlist INDEX sy-tabix.
              ENDIF.
            WHEN 8.
              l_firstvisiblerowlist-name  = ff-name.
              l_firstvisiblerowlist-value = ff-value.
              APPEND l_firstvisiblerowlist TO me->firstvisiblerowlist.
          ENDCASE.
        ENDIF.
      ENDLOOP.
    Than you have to provide a generic method to read the firstvisiblerow for each tableview
    GET_FIRSTVISIBLEROW
    *IM_TABLENAME
    *RE_VALUE
      DATA: l_firstvisiblerow  TYPE zmmsp_tableview_1st_visi_row.
      READ TABLE me->firstvisiblerowlist INTO l_firstvisiblerow WITH KEY name = im_tablename.
      IF sy-subrc = 0.
        re_value =  l_firstvisiblerow-value.
      ELSE.
        re_value =  1.
      ENDIF.
    And in the DO_REQUSET of each controller you could write something like:
    * Paginator
      DATA: l_tab1_visiblefirstrow TYPE sytabix.
      l_tab1_visiblefirstrow = o_bsp_main->get_firstvisiblerow( 'f019id_tab1_visiblefirstrow'    ).
    As usual pass the value to the view via:
      o_page->set_attribute( name = 'tab1visiblefirstrow' value = l_tab1_visiblefirstrow ).
    Did you get it?

  • Do I have to put in a credit card number when you are setting up your apple ID

    Apple ID why I need credit card

    You can:
    Create a NEW account/ID  using these instructions. Make sure you follow the instructions. Many do not and if you do not you will not get the None option. You must use an email address that you have not used with Apple before. Make sure you specify a birthdate that results in being at least 13 years old
      Creating an iTunes Store, App Store, iBookstore, and Mac App Store account without a credit card
    More details of how:
      http://ipadhelp.com/ipad-help-tips-tricks/how-to-get-free-apps-from-the-app-stor e-without-a-credit-card/

  • HT5621 How to change credit card number and get new security code?

    Tell me please.

    You can encrypt data using the dbms_obfuscation_toolkit package, http://download-west.oracle.com/docs/cd/B10501_01/appdev.920/a96612/d_obtool.htm#ARPLS028.
    The big challenge in this sort of application is key management, not the actual encryption. Ensuring that the key is available for the system to be able to automatically decrypt the data without allowing users to force the database to do this decryption is a rather challenging task. In addition to encrypting the data and determining how to securely store the key, I would look into fine-grained access control (FGAC) and fine-grained auditing (FGA) as well to limit the ability of users to retrieve the encrypted text and to audit the retrieval when it does happen.
    Of course, I'm assuming that you have already configured Oracle Advanced Security to encrypt the database session communication, otherwise you'll end up sending the data over the wire in the clear.
    Justin
    Distributed Database Consulting, Inc.
    http://www.ddbcinc.com/askDDBC

  • How to see masked Credit Card number in Sales Order !!

    Hi,
    In our SAP system credit card enceryption is activated. Certain users want to see the credit card number in the sales order change/display screen.We are in SAP ECC 6.0.
    Please let me know how we can achieve this.
    Thanks
    Ambuj

    Dear Ambuj,
    There is no possibility to view the credit card number unmasked in the sales order. You will always get the masked number even if you have C4 authorisation ('C4' action for the V_VBAK_AAT authorisation object). You can view the unmasked credit card number in transaction XD02/XD03.
    If you use BAPISDORDER_GETDETAILEDLIST to view the order then the C4 authorisation will be checked and the unmasked number will be displayed (if the user has this authorisation).
    If you have access to OSS notes then please check 836079 (FAQ: Credit card encryption and master data) and 766703 (FAQ: Credit card encryption in R/3 systems).
    I hope this helps.
    Best regards,
    Ian Kehoe.

  • How to avoid giving credit card number

    i dont want to give my credit card number when confirming my apple id what do i do

    - Redeem and iTunes gift card
    - Create a NEW account using these instructions. Make sure you follow the instructions. Many do not and if you do not you will not get the None option. You must use an email address that you have not used with Apple before.
      Creating an iTunes Store, App Store, iBookstore, and Mac App Store account without a credit card

  • How remove credit card details when I have iTunes credit

    How to remove credit card details when account is frozen and have iTunes credit?

    http://support.apple.com/kb/HT1918 for changing payment types in iTunes

  • Can't Change Credit Card Number, told to reregister but can't find reregister button

    Hello,
    Sorry to be a trouble, But I can't change my credit card # (because BBapps will not allow me to log on to control panel to do so. Made the mistake as a 1st timer to assume would ask for credit card number after I purchased Documents to Go.
    Did not ask, but charged the purchase to the CDMA number from former owner of my BBS2. I then erased the downloaded Docuiments to Go as I was not intending to charge some one else's card. Need to change credit card number to square this away. This is my first BB machine and I find that I don't know all the needed things.
    Can someone point out how to reregister so I can add my credit card #
    OR
    Can someone point out how to change the current assigned Number/credit card charge in control panel.(does not allow me in with my password that works for downloading free apps)
    Can still dow free programs, but cannot buy upgrades. Frustrating,  THanks, Ty Parr, Ph,D,

    Hello,
    I am more than willing to pay for the Documents to Go app on my own credit card, the problem is getting to  it. I don't intend to have Blackberry service, but surely this does not prevent paying for and down loading programs for my device, If I will wipe the device without a new CDMA number I suspect that will not allow me to to offer a credit card number and get the Documents to Go program as well as others. Why is it impossivle to buy programs for a blackberry without a blackberry service contract for a CDMA number? This really seems very rigid since the BBS2 is so long out of date. There must be plenty of individuals that are doing this who had the wisdom to give a credit card number when they registered - I did not realize this was required as I routinely buy things on the net AND THEN give CREDIT CARD # to compelete the purchase. Is this some sort of Catch 22 situation ?
    I like this phone and don't want to give it up. If necessary, I will buy a second BBS2 and try to register that WITH A CREDIT CARD number so that I Can use this machine. This an endless Catch 22?   I don't want a CDMA service that is very hard to get outside the USA. 
    Can I register my BBS2 if I have a T-Mobile plan for the CDMA number (which I will never use and for which I will pay for programs with a separate credit card number ?). ?  Otherwise I have a wonderful piece of junk because of arbitraty and rigid rules that are also preventing Blackberry profits as well as App producer profits .  If I can't solve this, I will have to re-examine whether I want this machine that I still really like. 
    Again thanks, If you can help me navigate this seeming endless Catch 22 ! 

Maybe you are looking for

  • ITunes compatibility between OSX 10.6.8 and iOS 7.1.2?

    I recently got a new iPhone 5S and was trying to sync it with the iTunes library on my (admittedly old) late '08 MacBook (Apple spec page). However, when plugging my phone into the laptop, I received an error message which read "iTunes could not conn

  • I want to upgrade the hard drive in my MacBook Pro

    I bought one of the first MacBook Pros that only came with a 100gb drive. I want to buy at least a 250gb drive for it. The problem is that I would like to maintain what I already have on the existing drive. I am getting Leopard on Monday so I'm not s

  • Invoice as PDF

    Hi all, I need some advice. The task is to print the invoice as PDF-file and then mail it via SAP to the customer. Do you have any ideas how to do this? Thanks for all your answers. Florian http://www.mindsquare.de

  • Date Profile

    Hi there SAP Gurus. I'm trying to set a data type that let me copy another one. Quite easy. I've done it before. I have to work with data rules. But today the task is different. I do not create a sales order in CRM. I create a sales order in R3 and,

  • 9.3.3 Acrobat Reader: Slow to get printer options tab prior to printing

    9.3.3 needs to be fixed.  It takes forever to get the Windows printer tab.  Went back to 8.2; no problems with that platform.  Running a Brother HL-2040 local printer.  Downloaded the latest XP driver.  It wasn't that.