Doc Error

Hi all,
When i am posting a vendor invoice through F-43 transaction (along with TAX code), system is giving error like below.
Item category 02000 not allowed in accounting transaction 0300/0001
Message no. GLT2001
Diagnosis
The online document splitting is active in your system. Here, each document is assigned to a accounting transaction variant and each document row to an item category.
You determine for each business transaction variant which item categories can or must be posted here.
The following error occurred for the document you entered:
Item category 02000 in accounting transaction 0300, variant 0001 is not allowed.
System Response
The document cannot be posted.
Procedure
Check the document entered, the derivation of the business transaction variant, the derivation of the item category, and the assignment of the item categories to the business transaction variant.
Could any one help me out in this regard.
Thanks,
Srinu

Hi Surya,
Thank you very much for spending time for my issue.
The settings you have specified were already there in the system.
KR     Vendor invoice     0300     0001     Vendor invoice     Standard
Kindly try to create a tax code for me with assignment to customer code instead of GL account in account determination in TCODE OB40.
Post a F-43 invoice with that tax code and tax amount should appear in a separate line item with customer debit posting (We will treat this as receivable/ Input Tax)
Please do the needful.
Thanks,
Srinu

Similar Messages

  • [solved]guile-gnome-platform: make[4]: *** [gobject.doc] Error 1

    Hi All,
    I'm trying to compile guile-gnome-platform from aur:
    http://aur.archlinux.org/packages.php?ID=20033
    This gives me the following error:
    make[4]: Entering directory `/storage/home/cedric/download/guile-gnome-platform/src/guile-gnome-platform-2.16.1/glib/gnome/gobject'
    guile-snarf -DHAVE_CONFIG_H -I. -I. -Wall -g -pthread -std=gnu99 -pthread -I/usr/lib/libffi-3.0.9/include -pthread -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include gc.c > gc.x \
    || { rm gc.x; false; }
    guile-snarf -DHAVE_CONFIG_H -I. -I. -Wall -g -pthread -std=gnu99 -pthread -I/usr/lib/libffi-3.0.9/include -pthread -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include gutil.c > gutil.x \
    || { rm gutil.x; false; }
    guile-snarf -DHAVE_CONFIG_H -I. -I. -Wall -g -pthread -std=gnu99 -pthread -I/usr/lib/libffi-3.0.9/include -pthread -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include gtype.c > gtype.x \
    || { rm gtype.x; false; }
    guile-snarf -DHAVE_CONFIG_H -I. -I. -Wall -g -pthread -std=gnu99 -pthread -I/usr/lib/libffi-3.0.9/include -pthread -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include gparameter.c > gparameter.x \
    || { rm gparameter.x; false; }
    guile-snarf -DHAVE_CONFIG_H -I. -I. -Wall -g -pthread -std=gnu99 -pthread -I/usr/lib/libffi-3.0.9/include -pthread -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include gvalue.c > gvalue.x \
    || { rm gvalue.x; false; }
    guile-snarf -DHAVE_CONFIG_H -I. -I. -Wall -g -pthread -std=gnu99 -pthread -I/usr/lib/libffi-3.0.9/include -pthread -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include gclosure.c > gclosure.x \
    || { rm gclosure.x; false; }
    guile-snarf -DHAVE_CONFIG_H -I. -I. -Wall -g -pthread -std=gnu99 -pthread -I/usr/lib/libffi-3.0.9/include -pthread -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include gsignal.c > gsignal.x \
    || { rm gsignal.x; false; }
    guile-snarf -DHAVE_CONFIG_H -I. -I. -Wall -g -pthread -std=gnu99 -pthread -I/usr/lib/libffi-3.0.9/include -pthread -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include gobject.c > gobject.x \
    || { rm gobject.x; false; }
    gcc -E -DSCM_MAGIC_SNARF_DOCS -DHAVE_CONFIG_H -I. -I. -Wall -g -pthread -std=gnu99 -pthread -I/usr/lib/libffi-3.0.9/include -pthread -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include gobject.c \
    | grep -E '^\^\^ {.*\^\^ }' > gobject.doc || { rm gobject.doc; false; }
    make[4]: *** [gobject.doc] Error 1
    make[4]: *** Waiting for unfinished jobs....
    make[4]: Leaving directory `/storage/home/cedric/download/guile-gnome-platform/src/guile-gnome-platform-2.16.1/glib/gnome/gobject'
    make[3]: *** [all-recursive] Error 1
    make[3]: Leaving directory `/storage/home/cedric/download/guile-gnome-platform/src/guile-gnome-platform-2.16.1/glib/gnome'
    make[2]: *** [all-recursive] Error 1
    make[2]: Leaving directory `/storage/home/cedric/download/guile-gnome-platform/src/guile-gnome-platform-2.16.1/glib'
    make[1]: *** [all-recursive] Error 1
    make[1]: Leaving directory `/storage/home/cedric/download/guile-gnome-platform/src/guile-gnome-platform-2.16.1'
    make: *** [all] Error 2
    Aborting...
    To me, it looks like the compiler is looking for gobject.doc, but this is not present, find does not return any hits:
    cedric@laptop:/storage/home/cedric/download/guile-gnome-platform$ find -iname gobject.doc
    cedric@laptop:/storage/home/cedric/download/guile-gnome-platform$
    My version of gnome is 2.30.2, maybe  guile-gnome-platform-2.16.1 is too old? however, 2.16.1 is the newest version here:
    http://ftp.gnu.org/pub/gnu/guile-gnome/ … -platform/
    Best regards,
    Cedric
    Last edited by cdwijs (2010-10-18 16:25:40)

    Let's try with the latest git version, as described here:
    http://www.gnu.org/software/guile-gnome/dev/
    git clone git://git.sv.gnu.org/guile-gnome.git guile-gnome-platform
    cedric@laptop:~/download/guile-gnome-platform-git$ git clone git://git.sv.gnu.org/guile-gnome.git guile-gnome-platform
    Cloning into guile-gnome-platform...
    remote: Counting objects: 9599, done.
    remote: Compressing objects: 100% (3199/3199), done.
    remote: Total 9599 (delta 6306), reused 9599 (delta 6306)
    Receiving objects: 100% (9599/9599), 12.38 MiB | 589 KiB/s, done.
    Resolving deltas: 100% (6306/6306), done.
    cd guile-gnome-platform
    scripts/configure-packages guile-gnome-platform
    cedric@laptop:~/download/guile-gnome-platform-git$ cd guile-gnome-platform
    cedric@laptop:~/download/guile-gnome-platform-git/guile-gnome-platform$ scripts/configure-packages guile-gnome-platform
    configuring scripts/.. as package guile-gnome-platform
    checking out atk
    first checking out local tracking branch for origin/atk
    Branch atk set up to track remote branch atk from origin.
    Cloning into atk...
    done.
    Branch atk set up to track remote branch atk from origin.
    Switched to a new branch 'atk'
    checking out cairo
    first checking out local tracking branch for origin/cairo
    Branch cairo set up to track remote branch cairo from origin.
    Cloning into cairo...
    done.
    Branch cairo set up to track remote branch cairo from origin.
    Switched to a new branch 'cairo'
    checking out corba
    first checking out local tracking branch for origin/corba
    Branch corba set up to track remote branch corba from origin.
    Cloning into corba...
    done.
    Branch corba set up to track remote branch corba from origin.
    Switched to a new branch 'corba'
    checking out defs
    first checking out local tracking branch for origin/defs
    Branch defs set up to track remote branch defs from origin.
    Cloning into defs...
    done.
    Branch defs set up to track remote branch defs from origin.
    Switched to a new branch 'defs'
    checking out gconf
    first checking out local tracking branch for origin/gconf
    Branch gconf set up to track remote branch gconf from origin.
    Cloning into gconf...
    done.
    Branch gconf set up to track remote branch gconf from origin.
    Switched to a new branch 'gconf'
    checking out glib
    first checking out local tracking branch for origin/glib
    Branch glib set up to track remote branch glib from origin.
    Cloning into glib...
    done.
    Branch glib set up to track remote branch glib from origin.
    Switched to a new branch 'glib'
    checking out gnome-vfs
    first checking out local tracking branch for origin/gnome-vfs
    Branch gnome-vfs set up to track remote branch gnome-vfs from origin.
    Cloning into gnome-vfs...
    done.
    Branch gnome-vfs set up to track remote branch gnome-vfs from origin.
    Switched to a new branch 'gnome-vfs'
    checking out gtk
    first checking out local tracking branch for origin/gtk
    Branch gtk set up to track remote branch gtk from origin.
    Cloning into gtk...
    done.
    Branch gtk set up to track remote branch gtk from origin.
    Switched to a new branch 'gtk'
    checking out libglade
    first checking out local tracking branch for origin/libglade
    Branch libglade set up to track remote branch libglade from origin.
    Cloning into libglade...
    done.
    Branch libglade set up to track remote branch libglade from origin.
    Switched to a new branch 'libglade'
    checking out libgnome
    first checking out local tracking branch for origin/libgnome
    Branch libgnome set up to track remote branch libgnome from origin.
    Cloning into libgnome...
    done.
    Branch libgnome set up to track remote branch libgnome from origin.
    Switched to a new branch 'libgnome'
    checking out libgnomecanvas
    first checking out local tracking branch for origin/libgnomecanvas
    Branch libgnomecanvas set up to track remote branch libgnomecanvas from origin.
    Cloning into libgnomecanvas...
    done.
    Branch libgnomecanvas set up to track remote branch libgnomecanvas from origin.
    Switched to a new branch 'libgnomecanvas'
    checking out libgnomeui
    first checking out local tracking branch for origin/libgnomeui
    Branch libgnomeui set up to track remote branch libgnomeui from origin.
    Cloning into libgnomeui...
    done.
    Branch libgnomeui set up to track remote branch libgnomeui from origin.
    Switched to a new branch 'libgnomeui'
    checking out pango
    first checking out local tracking branch for origin/pango
    Branch pango set up to track remote branch pango from origin.
    Cloning into pango...
    done.
    Branch pango set up to track remote branch pango from origin.
    Switched to a new branch 'pango'
    cedric@laptop:~/download/guile-gnome-platform-git/guile-gnome-platform$
    ./autogen.sh --prefix=... && make <=fails
    cedric@laptop:~/download/guile-gnome-platform-git/guile-gnome-platform$ ./autogen.sh --prefix=... && make
    + passing --prefix=... to configure
    + options passed to configure: --prefix=...
    + check for build tools
    checking for autoconf >= 2.52 ... found 2.67, ok.
    checking for automake >= 1.7 ... found 1.11.1, ok.
    checking for libtoolize >= 1.4.0 ... found 2.2.10, ok.
    checking for pkg-config >= 0.8.0 ... found 0.25, ok.
    + creating configure.ac and top-level Makefile.am
    + using VERSION 2.16.1 from glib
    + configuring tree as guile-gnome-platform, version 2.16.1
    + sorting package dependencies...
    defs glib cairo atk pango gtk libgnomeui libgnomecanvas libgnome libglade gnome-vfs gconf corba
    + running libtoolize --copy --force...
    libtoolize: putting auxiliary files in `.'.
    libtoolize: copying file `./ltmain.sh'
    libtoolize: You should add the contents of the following files to `aclocal.m4':
    libtoolize: `/usr/share/aclocal/libtool.m4'
    libtoolize: `/usr/share/aclocal/ltoptions.m4'
    libtoolize: `/usr/share/aclocal/ltversion.m4'
    libtoolize: `/usr/share/aclocal/ltsugar.m4'
    libtoolize: `/usr/share/aclocal/lt~obsolete.m4'
    libtoolize: Consider adding `AC_CONFIG_MACRO_DIR([m4])' to configure.ac and
    libtoolize: rerunning libtoolize, to keep the correct libtool macros in-tree.
    libtoolize: Consider adding `-I m4' to ACLOCAL_AMFLAGS in Makefile.am.
    + running aclocal ...
    /usr/share/aclocal/libstroke.m4:29: warning: underquoted definition of smr_ARG_WITHLIB
    /usr/share/aclocal/libstroke.m4:29: run info '(automake)Extending aclocal'
    /usr/share/aclocal/libstroke.m4:29: or see http://sources.redhat.com/automake/automake.html#Extending-aclocal
    + running autoheader ...
    + running autoconf ...
    + running automake -a -c...
    configure.ac:25: installing `./config.guess'
    configure.ac:25: installing `./config.sub'
    configure.ac:6: installing `./install-sh'
    configure.ac:6: installing `./missing'
    atk/doc/Makefile.am:13: installing `atk/doc/mdate-sh'
    atk/doc/Makefile.am:13: installing `atk/doc/texinfo.tex'
    atk/gnome/gw/Makefile.am: installing `./depcomp'
    corba/doc/Makefile.am:9: installing `corba/doc/texinfo.tex'
    gconf/doc/Makefile.am:19: installing `gconf/doc/mdate-sh'
    gconf/doc/Makefile.am:19: installing `gconf/doc/texinfo.tex'
    glib/doc/glib/Makefile.am:27: installing `glib/doc/glib/mdate-sh'
    glib/doc/glib/Makefile.am:27: installing `glib/doc/glib/texinfo.tex'
    glib/doc/gobject/Makefile.am:12: installing `glib/doc/gobject/texinfo.tex'
    gnome-vfs/doc/Makefile.am:44: installing `gnome-vfs/doc/mdate-sh'
    gnome-vfs/doc/Makefile.am:44: installing `gnome-vfs/doc/texinfo.tex'
    gtk/doc/gdk/Makefile.am:28: installing `gtk/doc/gdk/mdate-sh'
    gtk/doc/gdk/Makefile.am:28: installing `gtk/doc/gdk/texinfo.tex'
    gtk/doc/gtk/Makefile.am:42: installing `gtk/doc/gtk/mdate-sh'
    gtk/doc/gtk/Makefile.am:42: installing `gtk/doc/gtk/texinfo.tex'
    libglade/doc/Makefile.am:14: installing `libglade/doc/mdate-sh'
    libglade/doc/Makefile.am:14: installing `libglade/doc/texinfo.tex'
    libgnome/doc/Makefile.am:24: installing `libgnome/doc/mdate-sh'
    libgnome/doc/Makefile.am:24: installing `libgnome/doc/texinfo.tex'
    libgnomecanvas/doc/Makefile.am:13: installing `libgnomecanvas/doc/mdate-sh'
    libgnomecanvas/doc/Makefile.am:13: installing `libgnomecanvas/doc/texinfo.tex'
    libgnomeui/doc/Makefile.am:58: installing `libgnomeui/doc/mdate-sh'
    libgnomeui/doc/Makefile.am:58: installing `libgnomeui/doc/texinfo.tex'
    pango/doc/pango/Makefile.am:26: installing `pango/doc/pango/mdate-sh'
    pango/doc/pango/Makefile.am:26: installing `pango/doc/pango/texinfo.tex'
    pango/doc/pangocairo/Makefile.am:19: installing `pango/doc/pangocairo/mdate-sh'
    pango/doc/pangocairo/Makefile.am:19: installing `pango/doc/pangocairo/texinfo.tex'
    + running configure ...
    ./configure default flags: --enable-maintainer-mode
    ./configure external flags: --prefix=...
    configure: WARNING: unrecognized options: --enable-maintainer-mode
    configure: error: expected an absolute directory name for --prefix: ...
    configure failed
    cedric@laptop:~/download/guile-gnome-platform-git/guile-gnome-platform$
    ./autogen.sh --prefix=/usr && make
    Now it compiles without any problems.
    Best regards,
    Cedric
    Last edited by cdwijs (2010-10-17 08:34:40)

  • Billing doc error due t copa standard quantity

    Hi  I am facing an issue .this is regarding the error while releaseing a billing doc the errortranslating the quantity to the COPA standard quatity.
    in material master i checked the unit of measure is SET and in copa KEA6 VVAUM( Alt Uom)
    Error translating the quantity to the CO-PA standard quantity
    Message no. K/832
    Diagnosis
    Customizing in Profitability Analysis CO-PA allows a standard quantity field to be updated.
    An error has occurred in the present document while the standard quantity field "VVAUM" was being supplied.
    The base unit of measure "SET" could not be translated into the standard unit of measure "M3" for the material "B/CAL/PROJECT5".
    System Response
    It is not possible to process the document again.
    Procedure
    1. If required, maintain the unit of measure "M3" as an alternative unit of measure in the material master for the material "B/CAL/PROJECT5".
    2. In certain cases, you should check whether derivation of the unit of measure for the CO-PA standard quantity field "VVAUM" needs to be changed in Customizing for CO-PA characteristic derivation
    This is billing docments needs to be released . what is the problem some body can help me to resolve the issue
    Arjun

    Hi
    I am assuming that you want to update qty in COPA with UoM M3
    In MM02 - Maintain conversion of SET to M3
    In KE4MS - Maintain M3 as the Standard Unit of Measure
    In KE4M - Assign SD Qty field (FKIMG) to VVAUM
    BR,Ajay M

  • Billing Doc error posting to Accounting

    Hi,
    I am getting an error message while posting the Billing doc to Accounting.
    "Reconciliation a/c 222 or short key 00 is not permitted"
    Message No. F5788
    what may be the reason
    Rgds
    Sunfico

    Hi
    This problem usually occurs when the reconciliation account defined in    
    the customer master has alternative reconciliation accounts assigned to   
    it.                                                                               
    If this is your case, please check the customizing for your allowable     
    alternative reconciliation accounts, table THKON, for an entry for  the    
    account defined on the customer master.                                   
    Regards
    Javier

  • Vf02 -on releasing a Billing Doc , error Message F5354

    Hi All,
    On VF02 as I am releasing a Billing Doc, its giving an error Message F5354 (Account 4710018 in company code FR11 cannot be directly posted to)
    On debugging , I found that xaccit_deb-cash should be space then only the u201Cifu201D code will be executed.
    but it is coming as "X" , thats why it is not allowing Kunnr to be passed as well as Release of Document.
    ACCIT_DEB is getting populated by a method Fill_ACCIT_DEB under BADI- BADI_SD_ACCOUNTING.
    Can any one of you please help me out and guide me through some feasible solution so that the document can be released?

    Hi
    Please check the G/L account settings of Account 4710018 in company code.
    Please refer the following threads
    AUC settlement through KO88
    Message no. F5354
    Regards
    Srinath

  • Downloaded Adobe 9 -- Using Word 2007 to open PDF doc (Error Msg)

    I just updated to Adobe 9 and am getting this signature error message when trying to open a pdf doc from MicroSoft Word 2007:  appname: acrord32.exe appver: 9.3.0.148 ModName: acrord32dll ModVer: 9.3.0.148 Offset: 001937fa
    Am not able to get beyond the error msg. 
    Help anyone?

    I have MicroSoft Word Office 2007.
    I recently upgraded from Adobe 8.1 to 9.3.  Now, I can no longer open pdf docs.
    I am getting an error that says: "Adobe Reader 9.3 (or 8.1) has encountered a problem and needs to close."
    I have uninstalled 9.3 and reinstalled.  I have uninstalled 9.3 and reinstalled 8.1.  I have gone back to 9.3.
    I have run 2008 Advanced Registry Optimizer.
    The error signature when trying to open a pdf file w/ either Adobe Reader (9.3 or 8.1) is this:
    AppName acrord exe AppVer: 9.3.0148 ModName: acrord32.dll ModVer: 9.3.0.148 Offset: 0019371a.
    How do I get back to opening pdf docs??

  • Google Docs error in Safari

    I've started receiving strange error in Safari 8 (Yosemite) when opening a Google Document:
    https://docs.google.com
    This error has been reported to Google and we'll into it as soon as possible. Please reload this page to continue
    Reloading does not help, I continue receiving it. It stops when I switch off extensions support in settings and restart the browser. But I only have 1 extension - 1Password - and it does not look it's related to it. For testing purposes, I tried several different extensions, in different combinations, with and without 1Password. All the same - when I switch extensions off, works ok, with any of extension enabled, does not work.
    Have no idea why it's happening, any clues? Something to reset somewhere? Any help would be very welcome!
    P.S. Same documents works perfectly in Google Chrome.

    Contacted Google Support today and they answered me:
    "Since there is still compatibility issue between the new OS of MAC to Google Drive. We strongly advised you to use Google Chrome for a moment."
    Interesting fact: if you go to https://support.google.com/drive/answer/2375082?hl=en you will see that Yosemite is not supported (yet).

  • 6.1 search engine customization doc error

    I'm not sure who to report this to, but there seems to be an error in the documentation for the search engine customization examples.
    The page is at http://docs.sun.com/source/817-1831-10/agsearch.html
    The section in question says, "The following sample code lists the top ten articles on Java Web Services on a site"
    The first line of HTML/JSP says:
    <s1ws:search Collection="Articles" Query="Java Web Services" />
    Note that "Collection" and "Query" are uppercase.
    If you copy that whole example block into a JSP and run it, you get server errors.
    On my machine (Win 2000), the error messages say the attributes are invalid according to the TLD. In the TLD, they're lowercase and if I change them to lowercase, the page runs (after having changed the collection to match my local config.)
    If that saves anybody any headache time, so be it.
    Dave

    Thanks for the note, David. It's been forwarded along.

  • Problem editing Billing Doc (error WVA 014)

    Hi,
    I'm editing a billing document because of lack of info (missing export data).
    When I add this, I save and everything seems ok, but when I enter, a error appears and in my SAP inbox there is a error log saying:
    Update was terminated
    WVA 014: Item &2 in sales document &1 does not exist
    What can be the problem?
    Note: It after this correction, a clearing document should be created...

    Hi Pedro,
    the error is thrown by fm SD_VBAP_SINGLE_READ when reading items of the sales doc (table VBAP, POSNR = item nr)
    Pls check the relevant sales document&post more info if issue persists
    Thanks and regards,
    Zuzana Surdova

  • PO Doc Error on Header Tab

    A new tab has been added in the hdr of the PO doc.
    1 How do I get the error to appear when you press enter? (error does appear  when you do a check)
    2 If you do a check and the error appears in the poupuscreen, if you select the error and press edit,how do I leaf to the new tab so the error can be corrected?

    Have you got the answer,
    Please share

  • Billing doc error

    Hello Gurus,
      When I am trying to release my billing document to Accounting, it says "Cannot release document for controlling area 0001/0001 Cost center on 02/18/2006, please change the cost center or open it for revenue postings"
    How do I resolve this error ?
    Please let me know.
    THanks

    Hi Raj,
    As a SD consultant, the main role in an Implementation proj would be to configure the SD biz process in SAP, as you might know. Here, you will not be covering anything with respect to F-28. However, in a testing phase, you will be doing lot of transactions in SD. It depends on how you have agreed with the client - either till VF01 or till F-28 in a SD cycle. Thats where the knowledge of some FI end user transactions will help.
    If you are in a Support proj, normally F-28 will be handled by a FI biz user and those queries will never come to you. All you face will be issues till VF02 t.code. Accounting doc "Not cleared" is just a status of that doc like - Sales Order - "Open". Its not an error and as a SD consultant we need not worry.
    So, I would still suggest F-28 is an optional transaction level knowledge for us rather than anything related to config.
    Hope, this helps!
    Siva

  • Excise Invoive doc error for STO: Intracompany

    Dear Gurus,
    I have executed the STO process between plant of same company code say Plant A: Normal manufacturing plant and Plant B : Depot.
    I have created the PO for plant B ->Outbound delivery from plant A->Picking->PGI -> and posted the excise invoice through J1IS.
    Now, while doing GR for the receiving plant for depot, I have selected excise invoice tab: Create RG23d entry, system gave me warning msg: excise invoive doesn't exit in the supplying plant  (4F281). and proceed further and posted the GR.
    Now while executing incomming excise invoice for depot receiving plant: J1IEX for the following combination I am getting the error:
    1) Carture excise invoice --- Goods receipt  (error msg: The material doc has already been refered for diff excise invoice)
    so I tried to post with
    2) Post -
    Vendor excise Invoice-----(error msg: No part 1 exists for avaling credit in excise invoice 11 2009).
    Kindly clarify my doubts.
    Regards,
    Prashanth Pai

    this is SAP bug
    while u r posting MIGO and capturing RG23D reg and giving excise invoice number that have come form mfg plant
    in excis tab u wll have to give correct inviove number
    in manuf plant have send excise invoing number  1234  31/12/09
    in migo in excise screen in excise number u have to give 000001234 and in date  311209 
    traling zeros is very important
    hope this solves ur issue

  • CRM sales doc Error and resolutions

    I am preparing a data bank on common errors and their resolutions in sales docs. What are the most common causes of errors and what are their resolutions?
    Please mention the resolutions as far as possible.
    Thanks.
    Jon

    Here are some...
    - Error CRM_STRUCT_I 303 when copying:
    "The structure data for item &1 could not be copied"
    => Notes 793211 and 727961 explain how to correct this error.
    - Error CRM_CONFIG 103
    " Configuration for product &1 is missing"
    => Notes 618057 and 706162 explain how to correct this error.
    - Error CUX1 016
    "No configuration data transferred".
    => Notes 708725 and 733083 explain how to correct this error.
    This is usually due to the material variants, either the assessment of
    the variant is not complete in the R/3 material master or a knowledge
    base for the corresponding configurable material was not created and
    loaded into the CRM system.
    Also text items may have been sent to the CRM system. This is not
    supported.
    Will post more if i recollect/ find.
    Julius

  • Saving scanned doc error message when using Mac Maverick with HP Photosmart C4795

    When I use HP Scan to scan documents with my HP Photosmart C4795 it scans fine.  The problems comes when I try to save the scanned document. I get one of two things, an error message or black document.  I get an error that states "An error has occurred saving the file because it could not be written to.  Check the properties for the file to make sure it is not read-only.  I know that's the location is not read only because I save documents there all the time from other programs.    When I get the black document, I open the file and its a black page with white lines going across.  
    This started happening when I upgraded to Maverick.  When I had snow leopard I didn't have this problem.  I looked for update drivers and there aren't any available on the HP software & drivers webpage.  HP help! Any suggestions please help.

    Hi,
    That happens due to lack of compatibility of the HP Scan application for your device with Mavericks, it is not intended for the operating system and will cause issues while saving a file.
    Be sure to run Software Update, then scan using Image Capture or Preview as listed below.. those are the scan solutions provided for Mavericks:
    http://h10025.www1.hp.com/ewfrf/wc/document?docname=c03550518&tmp_task=useCategory&cc=us&dlc=en&lc=e...
    Once you launch Image Capture, I would suggest keeping it on the dock for easier access.
    Shlomi
    Say thanks by clicking the Kudos thumb up in the post.
    If my post resolve your problem please mark it as an Accepted Solution

  • Doc error in OrderBook Tutorial

    At the end of the chapter for fault handling it says in the summary:
    Reviewed the credit rating results returned from the Credit Rating service to the
    client. The invalid social security card number that you entered invoked the fault
    handling and exception management capabilities that you designed. A bad credit
    history message was returned to the client. The BPEL process was terminated
    before the Rapid Distributors and Select Manufacturing services were invoked.
    The process continues successfully, just with a zero credit rating, since nothing is added to end the process. maybe that will happen in a follow-on chapter.. not there yet.

    I did redo the whole customerdata tutorial from beginning on own after creating trasformation and while saving it pops up message saying invalid XML and map is invalid , In source it shows error @ 1st line near
    <?xml version="1.0" encoding="UTF-8" ?>
    Error is :
    Required attribute version missing from element xsl:stylesheet
    thanks

  • B Doc Error(Sent to receiver ( not all have  confirmed)

    Hello Guru's
    We are facing issue with the B Do error's  the error mssg is (Sent to Receiver(not all have confirmed)),which is in colour yellow
    *wht do u mean by that .........?
    *when can we over come this kind of error ...?
    *wht may cause this issue...?
    Thanks in advance
    Regards
    Sreeram

    Hi,
    Sent to receivers (not all have confirmed). The remote system must still return an inbound status to update the receiveru2019s state in the sender system. This status is set if no receiver in error state exists, but there is a receiver in u2018processing stateu2019
    Check the RFC user and connection in R/3 Backend. Are there short dumps or other error indicators on the receiving system? Check the whole loop (outbound qRFC queue in CRM, short dump or update termination in R/3, outbound qRFC queue in R/3 and inbound qRFC queue in CRM for the created delta download).
    Select BDoc Message, go to u2018Receiversu2019, Status: Sent. Check the Inbound Queues from R/3 Backend system (R3AD*), check if they are registered and if they are failing for any reason.
    Check whether the delta events are active in the receiving R/3 system for the used object class (transaction R3AC4).
    Regards
    Srinu

Maybe you are looking for

  • Printing in TUMBLE mode not working

    hello, I have the problem that the TUMBLE mode does not work in my program. I have tested the printer with MS Word to be sure it works with my hardware and it succeeded. I use a DocPrint Object and specified the PrintRequestAttributeSet attributes Or

  • Copying data to CD

    I am simply trying to back up my data by copying it onto some High Speed CD-RW. I had purchased a box of them and have used each one of them once. No matter what I do I can't seem to figure out how to reuse the CD, even if the first copy to a specifi

  • Instantiation with Generics

    Consider the following code: public class InstantiateWithGenerics {      public static <C> C possibleSelects(C from) {           try {                Class<C> clazz = (Class<C>) from.getClass();  // Displays typical type safety warning when casting  

  • How to select domain OU for "Apply Network Settings" task sequence step, based on the ip address.

    We are finally getting ready to migrate from SCCM 2007 to 2012 R2. Our current setup has 5 site servers with five OSD setups with boot media and Windows 7 task sequences. I want to move all that to one site with a single OSD W7 task sequence. The cur

  • How to read an xml database using xsd file in labview

    I have Labview 8.5. I have an xml file (Database) that contains data from sensors. The data doesnt conform to the LabView's xml schema we have our own schema for the data. is there a way to extract the  digitized waveform data from this xml file by u