Table for invoice mailing address

hi gurus,
is there any database table for the invoice mailing address?
thanks.

Hi
Go through the link given below : you wil find tables related invoice.
http://www.erpgenie.com/abap/tables.htm
With Regards
Nikunj Shah
Edited by: Nikunj Shah on Jul 9, 2008 5:38 AM

Similar Messages

  • Table for E Mail statuses

    Hello Experts,
    I am able to see the E Mails statuses in SOST transaction code. Can anyone tell me where these statuses are stored. Is there any way to know the status of an email whether it is reached the receiver or not?
    Regards,
    sunil.

    Hi Sunil,
    There is no such table.
    However the below link will shed a light on your requirement :-
    [Table for E-mail content (ERMS);
    Regards
    Abhii...

  • Regarding tables for Invoice

    Hi
    What are the tables for INVOICE.
    Regards
    Sandeep.
    Edited by: Sandeep Reddy on Feb 28, 2008 3:41 PM

    Hi,
    RSEG- Document Item: Incoming Invoice
    VRKPA: Sales Index: Bills by Partner Functions(VBELN,BELNR,KUNDE,PARVW)
    VRPMA: SD Index: Billing Items per Material(MATNR,VBELN,BELNR,KUNNR)
    VBRK (Billing Document Header table)
    VBRP (Billing Document Item table)
    VBAP,
    VBFA ,
    vbuk,
    vbup.
    Regards,

  • Tables for invoice held documents

    Dear All,
    May i know the sap table for Invoice held documents.
    Please suggest
    Thanks in advance

    u can get the details in table RBKP  field RBSTAT
    and details are
    1     Defined for background verification
    2     Deleted
    3     With Errors
    4     Correct (posted, not completed)
    5     Posted
    A     Parked
    B     Parked and completed
    C     Parked and held
    D     Entered and held
    E     Parked and released
    hope this helps

  • Table for Invoice

    Hello Gurus,
    Can any one tell me the table for Invoicing header details and Line item details,
    Regards,
    Prasanna

    Hello
    Invoice Header table: RBKP
    Invoice item table: RSEG
    Regards
    Gregory Mathews

  • Sending INVOICE as attachment in PDF for  external Mail address

    HI!,
    We have made configuraiton for sendin mail while saving VF01 or VF02 from SAP R/3 to external id.
    Email is going to the partner Payer but the attachment of the invocie is going as OTF format and not in PDF.
    Where i am missing. I have gone thro the discussion thread of srinivas talks about some coding required in Program which what is that
    thanks in advance

    Hi,
    Check this program.
    Re: send a mail thro abap report  
    Posted: Mar 14, 2006 11:40 AM      Reply      E-mail this post 
    hi,
    the below program will help you to send email with any kind of attachment.It is working fine for me.Just try it.
    REPORT ZSAMPL_001 .
    INCLUDE ZINCLUDE_01.
    DATA
    DATA : itab LIKE tline OCCURS 0 WITH HEADER LINE.
    DATA : file_name TYPE string.
    data : path like PCFILE-PATH.
    data : extension(5) type c.
    data : name(100) type c.
    SELECTION SCREEN
    PARAMETERS : receiver TYPE somlreci1-receiver lower case.
    PARAMETERS : p_file LIKE rlgrap-filename OBLIGATORY.
    *PARAMETERS : appfn(150) TYPE c LOWER CASE OBLIGATORY.
    DATA : pos TYPE i.
    DATA : len TYPE i.
    AT SELECTION SCREEN
    AT SELECTION-SCREEN ON VALUE-REQUEST FOR p_file.
    CLEAR p_file.
    CALL FUNCTION 'F4_FILENAME'
    IMPORTING
    file_name = p_file.
    START-OF-SELECTION
    START-OF-SELECTION.
    PERFORM ml_customize USING 'Tst' 'Testing'.
    PERFORM ml_addrecp USING receiver 'U'.
    PERFORM upl.
    PERFORM doconv TABLES itab objbin.
    PERFORM ml_prepare USING 'X' extension name.
    PERFORM ml_dosend.
    SUBMIT rsconn01
    WITH mode EQ 'INT'
    AND RETURN.
    FORM
    FORM upl.
    file_name = p_file.
    *file_name = appfn.
    *OPEN DATASET appfn FOR INPUT IN BINARY MODE.
    *DO.
    READ DATASET appfn INTO ITAB.
    IF SY-SUBRC EQ 0.
    *APPEND ITAB.
    ELSE.
    *APPEND ITAB.
    EXIT.
    ENDIF.
    *ENDDO.
    CALL FUNCTION 'GUI_UPLOAD'
    EXPORTING
    filename = file_name
    filetype = 'BIN'
    TABLES
    data_tab = itab
    EXCEPTIONS
    file_open_error = 1
    file_read_error = 2
    no_batch = 3
    gui_refuse_filetransfer = 4
    invalid_type = 5
    no_authority = 6
    unknown_error = 7
    bad_data_format = 8
    header_not_allowed = 9
    separator_not_allowed = 10
    header_too_long = 11
    unknown_dp_error = 12
    access_denied = 13
    dp_out_of_memory = 14
    disk_full = 15
    dp_timeout = 16
    OTHERS = 17.
    path = file_name.
    CALL FUNCTION 'PC_SPLIT_COMPLETE_FILENAME'
    EXPORTING
    complete_filename = path
    CHECK_DOS_FORMAT =
    IMPORTING
    DRIVE =
    EXTENSION = extension
    NAME = name
    NAME_WITH_EXT =
    PATH =
    EXCEPTIONS
    INVALID_DRIVE = 1
    INVALID_EXTENSION = 2
    INVALID_NAME = 3
    INVALID_PATH = 4
    OTHERS = 5
    ENDFORM. "upl
    ***INCLUDE ZINCLUDE_01 .
    Data
    tables crmrfcpar.
    DATA: docdata LIKE sodocchgi1,
    objpack LIKE sopcklsti1 OCCURS 1 WITH HEADER LINE,
    objhead LIKE solisti1 OCCURS 1 WITH HEADER LINE,
    objtxt LIKE solisti1 OCCURS 10 WITH HEADER LINE,
    objbin LIKE solisti1 OCCURS 10 WITH HEADER LINE,
    objhex LIKE solix OCCURS 10 WITH HEADER LINE,
    reclist LIKE somlreci1 OCCURS 1 WITH HEADER LINE.
    DATA: tab_lines TYPE i,
    doc_size TYPE i,
    att_type LIKE soodk-objtp.
    DATA: listobject LIKE abaplist OCCURS 1 WITH HEADER LINE.
    data v_rfcdest LIKE crmrfcpar-rfcdest.
    FORM
    FORM ml_customize USING objname objdesc.
    Clear Variables
    CLEAR docdata.
    REFRESH objpack.
    CLEAR objpack.
    REFRESH objhead.
    REFRESH objtxt.
    CLEAR objtxt.
    REFRESH objbin.
    CLEAR objbin.
    REFRESH objhex.
    CLEAR objhex.
    REFRESH reclist.
    CLEAR reclist.
    REFRESH listobject.
    CLEAR listobject.
    CLEAR tab_lines.
    CLEAR doc_size.
    CLEAR att_type.
    Set Variables
    docdata-obj_name = objname.
    docdata-obj_descr = objdesc.
    ENDFORM. "ml_customize
    FORM
    FORM ml_addrecp USING preceiver prec_type.
    CLEAR reclist.
    reclist-receiver = preceiver.
    reclist-rec_type = prec_type.
    APPEND reclist.
    ENDFORM. "ml_customize
    FORM
    FORM ml_addtxt USING ptxt.
    CLEAR objtxt.
    objtxt = ptxt.
    APPEND objtxt.
    ENDFORM. "ml_customize
    FORM
    FORM ml_prepare USING bypassmemory whatatt_type whatname.
    IF bypassmemory = ''.
    Fetch List From Memory
    CALL FUNCTION 'LIST_FROM_MEMORY'
    TABLES
    listobject = listobject
    EXCEPTIONS
    OTHERS = 1.
    IF sy-subrc <> 0.
    MESSAGE ID '61' TYPE 'E' NUMBER '731'
    WITH 'LIST_FROM_MEMORY'.
    ENDIF.
    CALL FUNCTION 'TABLE_COMPRESS'
    IMPORTING
    COMPRESSED_SIZE =
    TABLES
    in = listobject
    out = objbin
    EXCEPTIONS
    OTHERS = 1
    IF sy-subrc <> 0.
    MESSAGE ID '61' TYPE 'E' NUMBER '731'
    WITH 'TABLE_COMPRESS'.
    ENDIF.
    ENDIF.
    Header Data
    Already Done Thru FM
    Main Text
    Already Done Thru FM
    Packing Info For Text Data
    DESCRIBE TABLE objtxt LINES tab_lines.
    READ TABLE objtxt INDEX tab_lines.
    docdata-doc_size = ( tab_lines - 1 ) * 255 + STRLEN( objtxt ).
    CLEAR objpack-transf_bin.
    objpack-head_start = 1.
    objpack-head_num = 0.
    objpack-body_start = 1.
    objpack-body_num = tab_lines.
    objpack-doc_type = 'TXT'.
    APPEND objpack.
    Packing Info Attachment
    att_type = whatatt_type..
    DESCRIBE TABLE objbin LINES tab_lines.
    READ TABLE objbin INDEX tab_lines.
    objpack-doc_size = ( tab_lines - 1 ) * 255 + STRLEN( objbin ).
    objpack-transf_bin = 'X'.
    objpack-head_start = 1.
    objpack-head_num = 0.
    objpack-body_start = 1.
    objpack-body_num = tab_lines.
    objpack-doc_type = att_type.
    objpack-obj_name = 'ATTACHMENT'.
    objpack-obj_descr = whatname.
    APPEND objpack.
    Receiver List
    Already done thru fm
    ENDFORM. "ml_prepare
    FORM
    FORM ml_dosend.
    SELECT SINGLE * FROM crmrfcpar WHERE consumer = 'CRM'.
    v_rfcdest = crmrfcpar-rfcdest.
    CALL FUNCTION 'SO_NEW_DOCUMENT_ATT_SEND_API1' DESTINATION v_rfcdest
    EXPORTING
    document_data = docdata
    put_in_outbox = 'X'
    commit_work = 'X' "used from rel. 6.10
    IMPORTING
    SENT_TO_ALL =
    NEW_OBJECT_ID =
    TABLES
    packing_list = objpack
    object_header = objhead
    contents_bin = objbin
    contents_txt = objtxt
    CONTENTS_HEX = objhex
    OBJECT_PARA =
    object_parb =
    receivers = reclist
    EXCEPTIONS
    too_many_receivers = 1
    document_not_sent = 2
    document_type_not_exist = 3
    operation_no_authorization = 4
    parameter_error = 5
    x_error = 6
    enqueue_error = 7
    OTHERS = 8
    IF sy-subrc <> 0.
    MESSAGE ID 'SO' TYPE 'S' NUMBER '023'
    WITH docdata-obj_name.
    ENDIF.
    ENDFORM. "ml_customize
    FORM
    FORM ml_spooltopdf USING whatspoolid.
    DATA : pdf LIKE tline OCCURS 0 WITH HEADER LINE.
    Call Function
    CALL FUNCTION 'CONVERT_OTFSPOOLJOB_2_PDF'
    EXPORTING
    src_spoolid = whatspoolid
    TABLES
    pdf = pdf
    EXCEPTIONS
    err_no_otf_spooljob = 1
    OTHERS = 12.
    Convert
    PERFORM doconv TABLES pdf objbin.
    ENDFORM. "ml_spooltopdf
    FORM
    FORM doconv TABLES
    mypdf STRUCTURE tline
    outbin STRUCTURE solisti1.
    Data
    DATA : pos TYPE i.
    DATA : len TYPE i.
    Loop And Put Data
    LOOP AT mypdf.
    pos = 255 - len.
    IF pos > 134. "length of pdf_table
    pos = 134.
    ENDIF.
    outbin+len = mypdf(pos).
    len = len + pos.
    IF len = 255. "length of out (contents_bin)
    APPEND outbin.
    CLEAR: outbin, len.
    IF pos < 134.
    outbin = mypdf+pos.
    len = 134 - pos.
    ENDIF.
    ENDIF.
    ENDLOOP.
    IF len > 0.
    APPEND outbin.
    ENDIF.
    ENDFORM. "doconv
    FORM
    FORM ml_saveforbp USING jobname jobcount.
    Data
    *data : yhead like yhrt_bp_head.
    *DATA : ydocdata LIKE yhrt_bp_docdata,
    *yobjtxt LIKE yhrt_bp_objtxt OCCURS 0 WITH HEADER LINE,
    *yreclist LIKE yhrt_bp_reclist OCCURS 0 WITH HEADER LINE.
    *DATA : seqnr TYPE i.
    Head
    *yhead-jobname = jobname.
    *yhead-jobcount = jobcount..
    *MODIFY yhrt_bp_head FROM yhead.
    Doc Data
    *ydocdata-jobname = jobname.
    *ydocdata-jobcount = jobcount.
    *MOVE-CORRESPONDING docdata TO ydocdata.
    *MODIFY yhrt_bp_docdata FROM ydocdata.
    Objtxt
    *seqnr = 0.
    *LOOP AT objtxt.
    *seqnr = seqnr + 1.
    *yobjtxt-jobname = jobname.
    *yobjtxt-jobcount = jobcount.
    *yobjtxt-seqnr = seqnr.
    *MOVE-CORRESPONDING objtxt TO yobjtxt.
    *MODIFY yhrt_bp_objtxt FROM yobjtxt.
    *ENDLOOP.
    RecList
    *seqnr = 0.
    *LOOP AT reclist.
    *seqnr = seqnr + 1.
    *yreclist-jobname = jobname.
    *yreclist-jobcount = jobcount.
    *yreclist-seqnr = seqnr.
    *MOVE-CORRESPONDING reclist TO yreclist.
    *MODIFY yhrt_bp_reclist FROM yreclist.
    *ENDLOOP.
    ENDFORM. "ml_saveforbp
    FORM
    FORM ml_fetchfrombp USING jobname jobcount.
    *CLEAR docdata.
    *REFRESH objtxt.
    *REFRESH reclist.
    *SELECT SINGLE * FROM yhrt_bp_docdata
    *INTO corresponding fields of docdata
    *WHERE jobname = jobname
    *AND jobcount = jobcount.
    *SELECT * FROM yhrt_bp_objtxt
    *INTO corresponding fields of TABLE objtxt
    *WHERE jobname = jobname
    *AND jobcount = jobcount
    *ORDER BY seqnr.
    *SELECT * FROM yhrt_bp_reclist
    *INTO corresponding fields of TABLE reclist
    *WHERE jobname = jobname
    *AND jobcount = jobcount
    *ORDER BY seqnr.
    ENDFORM. "ml_fetchfrombp
    -suresh

  • DEBMAS06 IDoc, field for e-mail address

    Hi guys,
    I do not know if this is the correct forum to post this question, but I have the following issue in XI mapping:
    I cannot find a field to pass the e-mail address for the customer.
    Any ideas ?

    Hi,
    I have not found a place for it in our scenarios so we decided to extend the idoc with a custom z-segment containing the email-address. A user-exit will then have to process this extension and store the field value to the correct tables.
    Hope it helps!
    -Kenneth

  • Bypass spam filters for certain mail addresses

    I am looking for a way to bypass virus checks on mail from a certain mail user (actually system mail sent from a process that we have, so we can trust it).
    I have been playing with the @bypassspam_checksacl = qw( [email protected] ); entry in /etc/amavisd.conf but this doesn't seem to bypass as I would expect.
    Does anyone know if this file might be over riden else where or perhaps if I can bypass in another way?
    Cheers

    Greetings
    there is probably more than one way to skin a cat.
    here is a postfix only method however i'm not sure if it will pass all before amavid. so see the snippit from the amavisd.conf below.
    main.cf
    smtpd_recipient_restrictions = hash:/etc/postfix/spamlovers, .....
    create a file call spamlovers
    [email protected] OK
    biggroup.net OK
    that will prevent all subsequent anti-spam checks from being applied to
    the listed recipient domains/addresses. in short - they want spam, let
    them eat spam.
    ((snip)) amavisd.conf
    # %bypass_virus_checks, @bypass_virus_checks_acl and $bypass_virus_checks_re
    # lookup tables:
    # (this is mainly a time-saving option, unlike virus_lovers* !)
    # Similar in concept to %virus_lovers, a hash %bypass_virus_checks,
    # access list @bypass_virus_checks_acl and regexp list
    $bypass_virus_checks_re
    # are used to skip entirely the decoding, unpacking and virus checking,
    # but only if ALL recipients match the lookup.
    # %bypass_virus_checks/@bypass_virus_checks_acl/$bypass_virus_checks_re
    # do NOT GUARANTEE the message will NOT be checked for viruses - this may
    # still happen when there is more than one recipient for a message, and
    # not all of them match these lookup tables. To guarantee virus delivery,
    # a recipient must also match %virus_lovers/@virus_lovers_acl lookups
    # (but see milter limitations above),
    # NOTE: it would not be clever to base virus checks on SENDER address,
    # since there are no guarantees that it is genuine. Many viruses
    # and spam messages fake sender address. To achieve selective filtering
    # based on the source of the mail (e.g. IP address, MTA port number, ...),
    # use mechanisms provided by MTA if available.
    # Similar to lookup tables controlling virus checking,
    # there exist spam scanning and banned names/types control counterparts:
    # %spam_lovers, @spam_lovers_acl
    # %banned_files_lovers, @banned_files_lovers_acl
    # and:
    # %bypass_spam_checks/@bypass_spam_checks_acl/$bypass_spam_checks_re
    # (but no bypass_banned_checks, as $bypass_decode_parts controls it
    already)
    # See README.lookups for detailsabout the syntax.
    # The following example disables spam checking altogether,
    # since it matches any recipient e-mail address (any address
    # is a subdomain of the top-level root DNS domain):
    # @bypass_spam_checks_acl = qw( . );
    # See README.lookups for further detail, and examples below.
    # $virus_lovers{lc("postmaster\@$mydomain")} = 1;
    # $virus_lovers{lc('[email protected]')} = 1;
    # $virus_lovers{lc('[email protected]')} = 1;
    # $virus_lovers{lc('some.user@')} = 1; # this recipient, regardless of
    domain
    # $virus_lovers{lc('[email protected]')} = 0; # never, even if domain matches
    # $virus_lovers{lc('example.com')} = 1; # this domain, but not its
    subdomains
    # $virus_lovers{lc('.example.com')}= 1; # this domain, including its
    subdomains
    #or:
    # @virus_lovers_acl = qw( [email protected] !lab.xxx.com .xxx.com yyy.org );
    # $bypass_virus_checks{lc('[email protected]')} = 1;
    # @bypass_virus_checks_acl = qw( some.ddd !butnot.example.com
    .example.com );
    # @virus_lovers_acl = qw( [email protected] );
    # $virus_lovers_re = new_RE( qr'(helpdesk|postmaster)@example\.com$'i );
    # $spam_lovers{lc("postmaster\@$mydomain")} = 1;
    # $spam_lovers{lc('[email protected]')} = 1;
    # $spam_lovers{lc('[email protected]')} = 1;
    # @spam_lovers_acl = qw( !.example.com );
    # $spam_lovers_re = new_RE( qr'^user@example\.com$'i );
    # don't run spam check for these RECIPIENT domains:
    # @bypass_spam_checks_acl = qw( d1.com .d2.com a.d3.com );
    # or the other way around (bypass check for all BUT these):
    # @bypass_spam_checks_acl = qw( !d1.com !.d2.com !a.d3.com . );
    # a practical application: don't check outgoing mail for spam:
    # @bypass_spam_checks_acl = ( "!.$mydomain", "." );
    # (a downside of which is that such mail will not count as ham in SA
    bayes db)
    I'm sure anyone of these methods will allow the lovers of the blessed spam to fill their hearts content. Hope you have good hard drives
    --j

  • Tax tables for Invoices

    Hello Experts,
    I am trying to create a Vendor Spend report (both MIRO and KR invoices) which also needs some tax information on it. Can you help in locating the tax amounts in the following cases:
    1) The company pays the whole amount (including taxes) to the vendors and then the vendor is responsible to pay the taxes to the government. How can i locate what amount went to the vendor and what was the tax amount - which table stores this information?
    Thanks,
    Rishi

    Hi Michael,
    The Line item ID = 'T' identifies only those taxes which the company pays on its own. In other words, the tax amounts which hit the company's G/L account. However, I also want to track down the taxes which were part of the Vendor payment. E.g. I pay the Vendor 600 $ for an invoice of which only 550 $ was for the material and the rest 50 $ was tax but the total invoice was created for 600 $. in this case, I won't see a line item in the BSEG table for those 50$. How can I locate this break-up.
    Thanks,
    Rishi

  • Setup tables for invoices header data (2LIS_13_VDHDR)

    Hi experts,
    I am using 2LIS_13_VAHDR and 2LIS_13_VAITM to transfer data to SAP BW.  Through the t-code SBIW, I I run the job to fill setup tables with invoices data. the job is completed succefully. when I check the extractors in RSA3, the extractor 2LIS_13_VAHDR doesn't bring any data while 2LIS_13_VAITM bring a set of items !!
    I m wondering why I dont get invoices header data!
    Thank's a lot for your help.
    Abdess,

    Hi,
    Did you delete the old initialization request from BW and also delete old setup table.
    Because the issue is strange, If you are able to see entries in item then header should also fetch data.
    Repeat the steps again if you have time.
    Use T-Code LBWG to delete setup table.
    Delete MCXE13 entries in LBWQ.
    Use T-Code OLI9BW to fillup setup table for 2lis_13.
    Thanks,
    Shakthi Raj Natarajan.

  • Best way to update RBSELBEST table for invoice

    what is the best way to update RBSELBEST table for PO invoice? Is there any BAPI or FM for this?

    Thanks. I tried this one also, but it does not update the table.
    in case if someone used this, what parameters i need to pass for this to work?

  • Allowed lenght for e-mail addresses

    Hello,
    in transaction VV12 I have condition records "Sales Organization/customer" for an output message to be sent via e-mail. The transmission medium is "7 - Simple Mail". I double click on the field "Partner" (PARNR) to enter manually the e-mail address of the customer, and the system brings to the same screen that you would reach if you run transaction SBWP and then click on "New message". In the field "Recipient" (L_ADR_NAME) I enter the e-mail address which is 39 characters long, and it's shown correctly. When I get back to VV12 screen, the e-mail address is shown in the field "Partner", but truncated at 35 characters, even if both the lenght of field L_ADR_NAME and "Partner" (PARNR) is 241 characters long.
    Does anybody faced this problem, and knows the reason of this behaviour and/or the possible solution?
    Thanks in advace.
    Best regards,
    Andrea

    Does the same occur with the two email accounts and SMTP server provided by your ISP?
    If not, I don't believe this is a Mail problem.
    Does this email account not provided by your ISP have its own SMTP server and is the SMTP server authenticated?
    And sometimes it isn't delivered until 48 hours later???
    This definitely has nothing to do with the Mail.app or with any email client. Most electronic messages are delivered right away but not always. Email does not take a straight line from your internet connection and SMTP server used by the account to the recipient's incoming mail server and especially if you are not using an SMTP server provided by your ISP for this email account.
    I access a total of 5 different email accounts in Mail with 4 SMTP servers - 2 accounts share the same SMTP server and only one account and SMTP server is provided by my ISP. No problems sending mail within any of my accounts and 4 SMTP servers.
    Sorry but the person who told you this is wrong.

  • Class for e-mail addresses

    I am looking for a class to validate e-mail addresses. I am quite sure that such a class should exist, but I could not find one.
    Ewout

    and what if someone wants to put in his address but makes a typo which results in another, but valid, address?
    You'd never catch that.
    The only way to go is to try to send a message to that address and wait for a reply confirming the validity of the address.
    That does of course require a conscious action from the owner of that address, which is both good and bad.
    It might deter some people from giving you their address, but also prevents pranksters from signing up others to your service who don't want to be signed up.
    If you're thinking of making a filter which validates email addresses harvested from usenet to improve the quality of the database of your spam generator that's of course not the way to go.

  • Verification code for e-mail address

    I have changed e-mail address for the service Share picture using e-mail attachment in Photoshop Elements 11. This should be confirmed by Adobe sending me an e-mail  stating the verification code but no code received. What should I do? Without verification I cannot go on.

    In Organizer, go to preferences (Under Edit menu)
    Then go to sharing under sharing you can change the email address to your latest email address, click ok and then send the email verification cod again.
    Thanks
    Harshit yadav

  • It keeps asking for e-mail address to sign in

    when trying to sign in it keeps asking for my e-mail and password

    Hi Mandy2010 and rpatrick!
    Unfortunately, you can't sign in without using your e-mail address. I believe you are using e-Print. If so, then it is necessary to register your device in order to use the app. 
    When putting the e-mail address you have to register your printer to HP in HP's website. The link will be provided down below. The main purpose for registering your device is to check what printer you have, so then it can identify it and can allow you to have access to the printer. 
    Link: https://h20366.www2.hp.com/americas/flowPage/regis​tration/index.do?execution=e1s1&cc=US&lang=en
    Hope this information helps!

Maybe you are looking for

  • R12 Upgrade: appsutil.zip does not contain scripts folder.

    I am upgrade 11.5.10.2 to R12. Doc: Oracle Applications Upgrade Guide: Release 11i to Release 12 Section: Finish the Upgrade Step: Update RDBMS_ORACLE_HOME file system with AutoConfig files. perl %ad_top%/bin/admkappsutil.pl Error: scripts folder mis

  • Issue with upper case in cyrillic characters - error with SID generation

    Hi all, I have a problem loading a cyrillic string into a characteristic in a DSO. I get an error message when trying to activate the data in the DSO. The characteristic is a CHAR18 with the "lowercase letters" unmarked and there is an abap routine t

  • HELP! Oracle FailSafe - Listener fails when adding standalone database

    Well, I have a cluster of two nodes with the following specs: (1) an Oracle 10g database each (2) Microsoft Cluster Service (MSCS) (3) Windows Server 2003 64-bit edition (4) Intel Itanium Processor (5) Oracle Failsafe 3.3.3 for Windows 2003 64-bit Th

  • CC desktop install not working

    to start I'm on windows 8.1. I've been trying to install the trial for illustrator because I plan on buying the whole collection, but wanted to make sure it worked well first. Apparently it does not. I downloaded the install tool and installed it. I

  • Problem with reverse mapping

    Hi! I am having a problem with reverse mapping. Here's what I do (copying the generated files to a correct directory omitted): % rd-schemagen -properties jdo.properties -file schema.xml % rd-reversemappingtool -properties jdo.properties -package test