SID not Generated

Hi All
I have created a ODS and i have around 57 Objects.When i generate da report in Query Desgnr, I c dat only 44 objects are reflected,others r not displaying,even though they are activated nd linked in ODS,I feel this is SID error.
Also,if ic da contents of ODS,i c that there is data(1500 records),,but when i specifically pick one infoobject and c the contents in it,,its empty
please advice on how to solve this error.
Thanks

HI Noor,
The objects in ODS is split into two categories Key fields/ Datafields. Check both the sections. all the object should be visible. even there is no data available. (no SID come into picture). even without the data all the fields should be visible.
give us more detail error you have.
regards
pv

Similar Messages

  • SID not getting Generated for Fiscal Yr

    Hi,
    I have fiscal yr varaint Z9, year dependent. The settings are maintained for 2008 and 2009.
    This is also present in the Table T009B.
    However, when I check the SID table I only see SIDS generated for 2009.
    I am loading a flat file into a DSO and then to a Cube.
    DSO , setting DO NOT Generate SID. So the flat file load there fine.
    But when I load the data to the Cube, then I get the error
    "Fiscal year variant Z9 is not maintained for calendar year 2008"
    Regards,
    Dheeraj

    Hi,
    Are you using 0FISCYEAR if yes it doesnt refer to T009B table. Hope in the DSO fiscal Year used in Base DSO is of 4 Digit length.
    If not there may be possibility of space coming from flat file to DSO which in turn when loaded with space result in error in Cube.
    Also if you are using infopackage to load to Cube check to load data though master data doesnt exist.
    Hope this helps for you.
    Thanks,
    Arun

  • SID is not generated when i load the master data

    hi
    We got the error "No Sid found "000631330" of characteristic 0COSTELMNT when transaction data is loaded.
    We have loaded the value "000631330" for characteristic 0COSTELMNT  and reloaded from the PSA . still we r getting the error  No Sid found "000631330" of characteristic 0COSTELMNT
    Thanks much in advance
    Raj

    Hi.....
    First check whether that value exist in the Master data table.........to do this Go to RSA1 >> search the infoobject >> Go to the Master data / text tab..............here check the P table...........to check it double click on the table..........there check if that value exist...........and also check the version..........whether it is in M version or A version..............If it is in M version.............then activate the Master data..........because SID gets generated during the activation of the Master data..................
    To activate the Master data.................use the program : RSDDS_AGGREGATES_MAINTAIN...........
    Then repeat the load.........
    If the value does'nt exist in the table...............then first check the IP.............if the setting is only PSA..........then first update the request in the target...........if the setting is OK..............
    Then go to the source system...............check in RSA3...........give the datasource here.........and check whether the value exist in the source system or not.................if not then check the R/3 tables.......that whether the value exist in the table or not..............if the value exist in the table............then check how data is getting populated in the Extract structure..........
    Hope this helps.........
    Regards,
    Debjani.......

  • How to look at sid tables generated for an ods?

    Hi all,
    There  is atrns code : listschema which enables to have a look of the sid tables generated for infocubes.
    Is there any trsn code where we can see the list of sid tables generated for ods. if not let me know the procedure how to look at the sid tables generated for ods.
    regds
    hari

    hi,
    i think u will try like this:
    go to transaction code SE11
    TYEP UR NAME LIKE THIS:
    EX: /BIC/AODS_CUS00XXXX
    BI: MEANS business defined
    C: customer
    0 : SAP defined
    A: Active data table of ods
    TYPE LIKE THIS : /BIC/ODS NAME * (STAR)
    YOU MAY GET VALUES:
    THANKS, KR

  • URGENT*** Test Client testpoint not generated in WebLogic 10.3.0.0

    Hi,
    I have created very basic "Java EE 1.5 with support for jax-ws Annotations" web service and deploying in to web logic server 10.3.0.0. I am using Jdeveloper 11g for convert my java file to web service and deploying the same in to WLS directly from Jdev IDE.
    Problem is, I cant able to see "Test Client" testPoint in order to test my webservice. When I access my web service via WLS admin console can able to see only "?WSDL" test point at TESTING tab and WSDL is accessible. But Test client is not getting generated.
    Please help me, what am I missing here, why the WLServer not generating the test client. Am I missing any setting at server side. Please help me. Below is my web service code.
    package edu.ws;
    import javax.jws.WebService;
    *@WebService(serviceName = "demoWS", portName = "demoWSSoapHttpPort")*
    public class demoWS
    public demoWS()
    public String fullName(String fn, String ln)
    String fullName = fn + ln;
    return fullName;
    WSDL file:
    *<!--*
    Published by JAX-WS RI at http://jax-ws.dev.java.net. RI's version is Oracle JAX-WS 2.1.3-07/10/2008 08:41 PM(bt).
    -->
    *<!--*
    Generated by JAX-WS RI at http://jax-ws.dev.java.net. RI's version is Oracle JAX-WS 2.1.3-07/10/2008 08:41 PM(bt).
    -->
    *<definitions targetNamespace="http://ws.syu.edu/" name="demoWS">*
    *<types>*
    *<xsd:schema>*
    *<xsd:import namespace="http://ws.syu.edu/" schemaLocation="http://192.168.88.131:7001/DemoWebService-DemoWS-context-root/demoWSSoapHttpPort?xsd=1"/>*
    *</xsd:schema>*
    *</types>*
    *<message name="fullName">*
    *<part name="parameters" element="tns:fullName"/>*
    *</message>*
    *<message name="fullNameResponse">*
    *<part name="parameters" element="tns:fullNameResponse"/>*
    *</message>*
    *<portType name="demoWS">*
    *<operation name="fullName">*
    *<input message="tns:fullName"/>*
    *<output message="tns:fullNameResponse"/>*
    *</operation>*
    *</portType>*
    *<binding name="demoWSSoapHttpPortBinding" type="tns:demoWS">*
    *<soap:binding transport="http://schemas.xmlsoap.org/soap/http" style="document"/>*
    *<operation name="fullName">*
    *<soap:operation soapAction=""/>*
    *<input>*
    *<soap:body use="literal"/>*
    *</input>*
    *<output>*
    *<soap:body use="literal"/>*
    *</output>*
    *</operation>*
    *</binding>*
    *<service name="demoWS">*
    *<port name="demoWSSoapHttpPort" binding="tns:demoWSSoapHttpPortBinding">*
    *<soap:address location="http://192.168.88.131:7001/DemoWebService-DemoWS-context-root/demoWSSoapHttpPort"/>*
    *</port>*
    *</service>*
    *</definitions>*
    Thanks
    klogube

    Hi LJ,
    I did the same. I configured my WLS for development mode by making production_mode = false. But still I cant able to open http://localhost:7001/wls_utc window and so far cant able to test my WS :(
    Please check my config file and let me know where else I suppose to make the production mode false!!
    #!/bin/sh
    # WARNING: This file is created by the Configuration Wizard.
    # Any changes to this script may be lost when adding extensions to this configuration.
    # --- Start Functions ---
    BP=100
    SP=$BP
    pushd()
         if [ -z "$1" ]
         then
              return
         fi
         SP=`expr $SP - 1`
         eval _stack$SP=`pwd`
         cd $1
         return
    popd()
         if [ $SP -eq $BP ]
         then
              return
         fi
         eval cd \${_stack$SP}
         SP=`expr $SP + 1`
         return
    # --- End Functions ---
    # This script is used to setup the needed environment to be able to start Weblogic Server in this domain.
    # This script initializes the following variables before calling commEnv to set other variables:
    # WL_HOME - The BEA home directory of your WebLogic installation.
    # JAVA_VM - The desired Java VM to use. You can set this environment variable before calling
    # this script to switch between Sun or BEA or just have the default be set.
    # JAVA_HOME - Location of the version of Java used to start WebLogic
    # Server. Depends directly on which JAVA_VM value is set by default or by the environment.
    # USER_MEM_ARGS - The variable to override the standard memory arguments
    # passed to java.
    # PRODUCTION_MODE - The variable that determines whether Weblogic Server is started in production mode.
    # DOMAIN_PRODUCTION_MODE
    # - The variable that determines whether the workshop related settings like the debugger,
    # testconsole or iterativedev should be enabled. ONLY settable using the
    # command-line parameter named production
    # NOTE: Specifying the production command-line param will force
    # the server to start in production mode.
    # Other variables used in this script include:
    # SERVER_NAME - Name of the weblogic server.
    # JAVA_OPTIONS - Java command-line options for running the server. (These
    # will be tagged on to the end of the JAVA_VM and
    # MEM_ARGS)
    # For additional information, refer to the WebLogic Server Administration
    # Console Online Help(http://e-docs.bea.com/wls/docs103/ConsoleHelp/startstop.html).
    ORACLE_HOME="/opt/oracle/middleware/jdeveloper"
    export ORACLE_HOME
    WL_HOME="/opt/oracle/middleware/wlserver_10.3"
    export WL_HOME
    BEA_JAVA_HOME="/opt/oracle/middleware/jrockit_160_05"
    export BEA_JAVA_HOME
    SUN_JAVA_HOME=""
    export SUN_JAVA_HOME
    if [ "${JAVA_VENDOR}" = "BEA" ] ; then
         JAVA_HOME="${BEA_JAVA_HOME}"
         export JAVA_HOME
    else
         if [ "${JAVA_VENDOR}" = "Sun" ] ; then
              JAVA_HOME="${SUN_JAVA_HOME}"
              export JAVA_HOME
         else
              JAVA_VENDOR="BEA"
              export JAVA_VENDOR
              JAVA_HOME="/opt/oracle/middleware/jrockit_160_05"
              export JAVA_HOME
         fi
    fi
    # We need to reset the value of JAVA_HOME to get it shortened AND
    # we can not shorten it above because immediate variable expansion will blank it
    JAVA_HOME="${JAVA_HOME}"
    export JAVA_HOME
    SAMPLES_HOME="${WL_HOME}/samples"
    export SAMPLES_HOME
    DOMAIN_HOME="/opt/oracle/middleware/user_projects/domains/base_domain"
    export DOMAIN_HOME
    LONG_DOMAIN_HOME="/opt/oracle/middleware/user_projects/domains/base_domain"
    export LONG_DOMAIN_HOME
    if [ "${DEBUG_PORT}" = "" ] ; then
         DEBUG_PORT="8453"
         export DEBUG_PORT
    fi
    if [ "${SERVER_NAME}" = "" ] ; then
         SERVER_NAME="AdminServer"
         export SERVER_NAME
    fi
    POINTBASE_FLAG="false"
    export POINTBASE_FLAG
    enableHotswapFlag=""
    export enableHotswapFlag
    PRODUCTION_MODE="false"
    export PRODUCTION_MODE
    doExitFlag="false"
    export doExitFlag
    verboseLoggingFlag="false"
    export verboseLoggingFlag
    while [ $# -gt 0 ]
    do
         case $1 in
         nodebug)
              debugFlag="false"
              export debugFlag
         production)
              DOMAIN_PRODUCTION_MODE="true"
              export DOMAIN_PRODUCTION_MODE
         notestconsole)
              testConsoleFlag="false"
              export testConsoleFlag
         noiterativedev)
              iterativeDevFlag="false"
              export iterativeDevFlag
         noLogErrorsToConsole)
              logErrorsToConsoleFlag="false"
              export logErrorsToConsoleFlag
         nopointbase)
              POINTBASE_FLAG="false"
              export POINTBASE_FLAG
         doExit)
              doExitFlag="true"
              export doExitFlag
         noExit)
              doExitFlag="false"
              export doExitFlag
         verbose)
              verboseLoggingFlag="true"
              export verboseLoggingFlag
         enableHotswap)
              enableHotswapFlag="-javaagent:${WL_HOME}/server/lib/diagnostics-agent.jar"
              export enableHotswapFlag
              PROXY_SETTINGS="${PROXY_SETTINGS} $1"
              export PROXY_SETTINGS
         esac
         shift
    done
    MEM_DEV_ARGS=""
    export MEM_DEV_ARGS
    if [ "${DOMAIN_PRODUCTION_MODE}" = "true" ] ; then
         PRODUCTION_MODE="${DOMAIN_PRODUCTION_MODE}"
         export PRODUCTION_MODE
    fi
    if [ "${PRODUCTION_MODE}" = "true" ] ; then
         debugFlag="false"
         export debugFlag
         testConsoleFlag="false"
         export testConsoleFlag
         iterativeDevFlag="false"
         export iterativeDevFlag
    fi
    # If you want to override the default Patch Classpath, Library Path and Path for this domain,
    # Please uncomment the following lines and add a valid value for the environment variables
    # set PATCH_CLASSPATH=[myPatchClasspath] (windows)
    # set PATCH_LIBPATH=[myPatchLibpath] (windows)
    # set PATCH_PATH=[myPatchPath] (windows)
    # PATCH_CLASSPATH=[myPatchClasspath] (unix)
    # PATCH_LIBPATH=[myPatchLibpath] (unix)
    # PATCH_PATH=[myPatchPath] (unix)
    . ${WL_HOME}/common/bin/commEnv.sh
    WLS_HOME="${WL_HOME}/server"
    export WLS_HOME
    MEM_ARGS="-Xms256m -Xmx512m"
    export MEM_ARGS
    MEM_PERM_SIZE="-XX:PermSize=48m"
    export MEM_PERM_SIZE
    MEM_MAX_PERM_SIZE="-XX:MaxPermSize=192m"
    export MEM_MAX_PERM_SIZE
    if [ "${JAVA_VENDOR}" = "Sun" ] ; then
         if [ "${PRODUCTION_MODE}" = "" ] ; then
              MEM_DEV_ARGS="-XX:CompileThreshold=8000 ${MEM_PERM_SIZE} "
              export MEM_DEV_ARGS
         fi
    fi
    # Had to have a separate test here BECAUSE of immediate variable expansion on windows
    if [ "${JAVA_VENDOR}" = "Sun" ] ; then
         MEM_ARGS="${MEM_ARGS} ${MEM_DEV_ARGS} ${MEM_MAX_PERM_SIZE}"
         export MEM_ARGS
    fi
    if [ "${JAVA_VENDOR}" = "HP" ] ; then
         MEM_ARGS="${MEM_ARGS} ${MEM_MAX_PERM_SIZE}"
         export MEM_ARGS
    fi
    # IF USER_MEM_ARGS the environment variable is set, use it to override ALL MEM_ARGS values
    if [ "${USER_MEM_ARGS}" != "" ] ; then
         MEM_ARGS="${USER_MEM_ARGS}"
         export MEM_ARGS
    fi
    JAVA_PROPERTIES="-Dplatform.home=${WL_HOME} -Dwls.home=${WLS_HOME} -Dweblogic.home=${WLS_HOME} "
    export JAVA_PROPERTIES
    # To use Java Authorization Contract for Containers (JACC) in this domain,
    # please uncomment the following section. If there are multiple machines in
    # your domain, be sure to edit the setDomainEnv in the associated domain on
    # each machine.
    # -Djava.security.manager
    # -Djava.security.policy=location of weblogic.policy
    # -Djavax.security.jacc.policy.provider=weblogic.security.jacc.simpleprovider.SimpleJACCPolicy
    # -Djavax.security.jacc.PolicyConfigurationFactory.provider=weblogic.security.jacc.simpleprovider.PolicyConfigurationFactoryImpl
    # -Dweblogic.security.jacc.RoleMapperFactory.provider=weblogic.security.jacc.simpleprovider.RoleMapperFactoryImpl
    EXTRA_JAVA_PROPERTIES="-Ddomain.home=${DOMAIN_HOME} -Doracle.home=${ORACLE_HOME} -Doracle.security.jps.config=${DOMAIN_HOME}/config/oracle/jps-config.xml -Doracle.dms.context=OFF -Djava.protocol.handler.pkgs=oracle.mds.net.protocol ${EXTRA_JAVA_PROPERTIES}"
    export EXTRA_JAVA_PROPERTIES
    JAVA_PROPERTIES="${JAVA_PROPERTIES} ${EXTRA_JAVA_PROPERTIES}"
    export JAVA_PROPERTIES
    ARDIR="${WL_HOME}/server/lib"
    export ARDIR
    pushd ${LONG_DOMAIN_HOME}
    # Clustering support (edit for your cluster!)
    if [ "${ADMIN_URL}" = "" ] ; then
         # The then part of this block is telling us we are either starting an admin server OR we are non-clustered
         CLUSTER_PROPERTIES="-Dweblogic.management.discover=true"
         export CLUSTER_PROPERTIES
    else
         CLUSTER_PROPERTIES="-Dweblogic.management.discover=false -Dweblogic.management.server=${ADMIN_URL}"
         export CLUSTER_PROPERTIES
    fi
    if [ "${LOG4J_CONFIG_FILE}" != "" ] ; then
         JAVA_PROPERTIES="${JAVA_PROPERTIES} -Dlog4j.configuration=file:${LOG4J_CONFIG_FILE}"
         export JAVA_PROPERTIES
    fi
    JAVA_PROPERTIES="${JAVA_PROPERTIES} ${CLUSTER_PROPERTIES}"
    export JAVA_PROPERTIES
    # Clear the pre_classpath here in case an application template wants to set it before the larger pre_classpath is invoked below
    PRE_CLASSPATH=""
    export PRE_CLASSPATH
    JAVA_DEBUG=""
    export JAVA_DEBUG
    if [ "${debugFlag}" = "true" ] ; then
         JAVA_DEBUG="-Xdebug -Xnoagent -Xrunjdwp:transport=dt_socket,address=${DEBUG_PORT},server=y,suspend=n -Djava.compiler=NONE"
         export JAVA_DEBUG
         JAVA_OPTIONS="${JAVA_OPTIONS} ${enableHotswapFlag} -ea -da:com.bea... -da:javelin... -da:weblogic... -ea:com.bea.wli... -ea:com.bea.broker... -ea:com.bea.sbconsole..."
         export JAVA_OPTIONS
    else
         JAVA_OPTIONS="${JAVA_OPTIONS} ${enableHotswapFlag} -da"
         export JAVA_OPTIONS
    fi
    if [ ! -d ${JAVA_HOME}/lib ] ; then
         echo "The JRE was not found in directory ${JAVA_HOME}. (JAVA_HOME)"
         echo "Please edit your environment and set the JAVA_HOME"
         echo "variable to point to the root directory of your Java installation."
         popd
         read _val
         exit
    fi
    if [ "${POINTBASE_FLAG}" = "true" ] ; then
         DATABASE_CLASSPATH="${POINTBASE_CLASSPATH}"
         export DATABASE_CLASSPATH
    else
         DATABASE_CLASSPATH="${POINTBASE_CLIENT_CLASSPATH}"
         export DATABASE_CLASSPATH
    fi
    POST_CLASSPATH=""
    export POST_CLASSPATH
    POST_CLASSPATH="${ORACLE_HOME}/modules/features/adf.share_11.1.1.jar${CLASSPATHSEP}${POST_CLASSPATH}"
    export POST_CLASSPATH
    POST_CLASSPATH="${POST_CLASSPATH}${CLASSPATHSEP}${DATABASE_CLASSPATH}${CLASSPATHSEP}${ARDIR}/xqrl.jar"
    export POST_CLASSPATH
    # PROFILING SUPPORT
    JAVA_PROFILE=""
    export JAVA_PROFILE
    SERVER_CLASS="weblogic.Server"
    export SERVER_CLASS
    JAVA_PROPERTIES="${JAVA_PROPERTIES} ${WLP_JAVA_PROPERTIES}"
    export JAVA_PROPERTIES
    JAVA_OPTIONS="${JAVA_OPTIONS} ${JAVA_PROPERTIES} -Dwlw.iterativeDev=${iterativeDevFlag} -Dwlw.testConsole=${testConsoleFlag} -Dwlw.logErrorsToConsole=${logErrorsToConsoleFlag}"
    export JAVA_OPTIONS
    # -- Setup properties so that we can save stdout and stderr to files
    if [ "${WLS_STDOUT_LOG}" != "" ] ; then
         echo "Logging WLS stdout to ${WLS_STDOUT_LOG}"
         JAVA_OPTIONS="${JAVA_OPTIONS} -Dweblogic.Stdout=${WLS_STDOUT_LOG}"
         export JAVA_OPTIONS
    fi
    if [ "${WLS_STDERR_LOG}" != "" ] ; then
         echo "Logging WLS stderr to ${WLS_STDERR_LOG}"
         JAVA_OPTIONS="${JAVA_OPTIONS} -Dweblogic.Stderr=${WLS_STDERR_LOG}"
         export JAVA_OPTIONS
    fi
    # ADD EXTENSIONS TO CLASSPATHS
    if [ "${EXT_PRE_CLASSPATH}" != "" ] ; then
         PRE_CLASSPATH="${EXT_PRE_CLASSPATH}${CLASSPATHSEP}${PRE_CLASSPATH}"
         export PRE_CLASSPATH
    fi
    if [ "${EXT_POST_CLASSPATH}" != "" ] ; then
         POST_CLASSPATH="${POST_CLASSPATH}${CLASSPATHSEP}${EXT_POST_CLASSPATH}"
         export POST_CLASSPATH
    fi
    if [ "${WEBLOGIC_EXTENSION_DIRS}" != "" ] ; then
         JAVA_OPTIONS="${JAVA_OPTIONS} -Dweblogic.ext.dirs=${WEBLOGIC_EXTENSION_DIRS}"
         export JAVA_OPTIONS
    fi
    JAVA_OPTIONS="${JAVA_OPTIONS}"
    export JAVA_OPTIONS
    # SET THE CLASSPATH
    CLASSPATH="${PRE_CLASSPATH}${CLASSPATHSEP}${WEBLOGIC_CLASSPATH}${CLASSPATHSEP}${POST_CLASSPATH}${CLASSPATHSEP}${WLP_POST_CLASSPATH}"
    export CLASSPATH
    JAVA_VM="${JAVA_VM} ${JAVA_DEBUG} ${JAVA_PROFILE}"
    export JAVA_VM
    Edited by: klogube on Oct 23, 2009 10:58 AM

  • Accounting document not generating

    hi friends,
    when i put internal order in sales order profit centre changes, delivery done,billing done , perhaps it generate acounting document regarding excise only ,and not revenue,
    does any one knows why is it so.

    Hi,
    Go to VF02 and press the release flag by giving the relevant billing document number then you will get the error for what reason accounting document not generated.You can also give in side the billing document and there in enviornment Account Determination analysis and revenue Account Determination there you will get clear picture for the reason.May be some setting missing in VKOA.

  • Accounting document should not generate.

    Dear Experts,
    There are certain Z reports in SD and FI in which we have value difference between SD and FI reports. One of the factors for this mismatch is due to adjusting exchange rate difference at FI level. For example, when a late realisation of payment, the difference amount due to exchange rate is directly updated in GL account entries
    Since this doesnu2019t affect SD, we are getting mismatch in the values from SD reports and FI reports.
    In order to eliminate this mismatch after it gets adjusted by FI, we want to issue credit/debit note for the value difference so that it will have an effect in SD reports, but we donu2019t want to affect the entries in GL accounts as it was already impacted directly.
    Solution
    We have crated a separate condition type ZABC and mapped with separate account key. This account key is Not Mapped with any GL account in VKOA. If above said case occurs to our client then he will maintain the price in ZABC condition type. Once the invoice is released the system is not generating accounting document but it say u201CAcc determination erroru201D.
    Note: it is not generating the accounting document but the Posting status of the billing document is B.
    Please suggest is there any other alternative way to address.
    bala

    Hiii
    As per my understanding you want to impact only on SD side where as it is already impacted on FI side due to Exchange rate.
    Now for comparing and reporting purpose you can use Proforma Invoice instead of Commercial invoice so system will not throw any error because no accounting entries will post and you can get report by clubing earlier invoice and proforma invoice.
    Regards
    Shambhu Sarkar

  • Billing Document not generated.....

    Hi Gurus,
    When i am creating a Billing Document VF01....after completion of VL01n...the system shows an error Billing Document not generated...
    Please help me
    Rewards will be given

    To resolve the error, you can analyze account determination in the billing document. Process:
    Goto T.Code: VF02 & Enter Invoice number
    Next (On the top most strip) goto Environment
    Next (Select Environment) go to Account determination
    Next (In Account Determination) select Revenue Account Determination (first option)
    This will list all the condition types in the Billing document & analyze each condition & check for which G/L accounts is not determined.
    Possible errors:
    1. VKOA not maintained for required combination
    Solution: Maintain the combination in VKOA.
    2. Account Assignment of Customer / material not maintained in Customer / Material Master (If maintained in combination in VKOA).
    Solution:
    Option 1 (Standard solution):
    step 1: Cancel Billing Document --> Reverse PGI --> cancel Delivery --> Cancel Sales Order
    step 2: Maintain Customer master / Material Master correctly.
    step 3: Recreate sales Order --> Delivery --> PGI --> Invoicing.
    Option 2:
    Force the Account Assignment Group of Customer / Material through Debug in change mode of Billing document, which will release Billing Document to Accounting.
    3. Account Key not maintained in Pricing Procedure:
    Impact: This may create accounting document, but if condition type, which are to be posted to account, but do not have account key maintained in pricing procedure, it will not be post the relevant condition type to G/L account.
    From FI Side, you require to check that all the G/L account has been maintained through T.Code: FS00. G/L account being Master data has to be created in each client ot uploaded through LSMW / SCATT / BDC.
    In Billing Document in change mode (in the first screen where we enter Billing Document number), on the top most left hand corner, take a dropdown on Billing Document & select Release to accounting. Here you can get the under mentioned possible message:
    1. G/L account not found
    2. Cost Element not maintained for G/L account.
    In both the above cases, FI consultant requires to take corrective action.
    Regards,
    Rajesh Banka
    Reward suitable points.
    How to give points: Mark your thread as a question while creating it. In the answers you get, you can assign the points by clicking on the stars to the left. You also get a point yourself for rewarding (one per thread).

  • Accounting Documented not generated.

    When I save the Billing document it says, "Accounting Documented not generated" any imputs on how to fix this ?

    To resolve the error, you can analyze account determination in the billing document. Process:
    Goto T.Code: VF02 & Enter Invoice number
    Next (On the top most strip) goto Environment
    Next (Select Environment) go to Account determination
    Next (In Account Determination) select Revenue Account Determination (first option)
    This will list all the condition types in the Billing document & analyze each condition & check for which G/L accounts is not determined.
    Possible errors:
    1. VKOA not maintained for required combination
    Solution: Maintain the combination in VKOA.
    2. Account Assignment of Customer / material not maintained in Customer / Material Master (If maintained in combination in VKOA).
    Solution:
    Option 1 (Standard solution):
    step 1: Cancel Billing Document --> Reverse PGI --> cancel Delivery --> Cancel Sales Order
    step 2: Maintain Customer master / Material Master correctly.
    step 3: Recreate sales Order --> Delivery --> PGI --> Invoicing.
    Option 2:
    Force the Account Assignment Group of Customer / Material through Debug in change mode of Billing document, which will release Billing Document to Accounting.
    3. Account Key not maintained in Pricing Procedure:
    Impact: This may create accounting document, but if condition type, which are to be posted to account, but do not have account key maintained in pricing procedure, it will not be post the relevant condition type to G/L account.
    From FI Side, you require to check that all the G/L account has been maintained through T.Code: FS00. G/L account being Master data has to be created in each client ot uploaded through LSMW / SCATT / BDC.
    In Billing Document in change mode (in the first screen where we enter Billing Document number), on the top most left hand corner, take a dropdown on Billing Document & select Release to accounting. Here you can get the under mentioned possible message:
    1. G/L account not found
    2. Cost Element not maintained for G/L account.
    In both the above cases, FI consultant requires to take corrective action.
    Regards,
    Rajesh Banka
    Reward points if helpful.

  • Spool request not generated in smartforms printing

    Hii all,
            I have smartform, which was printing properly in QA server and few days back when i tried to get print from Production Server, it is not generating spool request. and in QA also it is not having same as on date.
    is there anythng to check from ABAP side or there is a problem of Basis.?
    kindly give soln for points .
    - Maharshi

    hi Maharshi,
    Gimme some what clear picture abt ur problem.
    What exactly the problem in QA server.
    I mean when it is working properly and when it is not?
    and what Function Modules u have used ..?
    and i wanna know is there any other print forms are working or not. if the other are working, it is not BASIS problem.
    Regards,
    Naveen

  • FrameMaker to RoboHelp to EPUB for side notes

    Hi,
    I have a FrameMaker 10 document with side notes (paragraph style has format "Side Head-Alignment"):
    I then import into RoboHelp 9 and generate an EPUB document. The result is that the "Note" label is right justified on the body:
    Can you tell me how I can change it so that the Note labels in the EPUB are automatically left justified above the note body instead of right justified? There are hundreds of of "Side Head-Alignment" paragraph styles in the document I'm working with and want to avoid doing this change manually within the RoboHelp GUI.
    Thanks,
    Byron Harris
    Message was edited by: b618

    I have moved this post to the Fm Integration forum.
    I'm not following why you would want to paginate on a style that has no text before the next pagination. That would just give you a topic with a heading.
    Beginning to look like a bug.
    Could you create a line of text in Fm that you could then delete in Rh?
    See www.grainge.org for RoboHelp and Authoring tips
    @petergrainge

  • DB14: BRBACKUP logs not generating

    Dear Team,
    We have an ECC 6.0 Production system.
    1--> In DB14 tcode while monitoring the BRBACKUP logs, we could find no logs generated since past 3 days.
           Till now its not generating any logs.
    2-->We have checked the Redo Log Backups logs, its uptodate till today.
    3-->We had no maintainance activity or shutdown of the system.
    4-->We have informed our DB team also.But they revert saying 'This is via BR tool and DBA do not have control on this'.
    Pleas let us know if there is any setting that we need to look into...
    Regards
    Imaan

    imaan.shaikh wrote:
    balaram reddy wrote:
    > Hi,
    > >
    > > usually backup logs generating in /oracle/<SID>/sapbackup path . Can you please check the alert<sid>.log file any issues in database. and please chek the /oraarch files also is it archived successfully or not day by day.
    > > may i know , any third party  backup tools are you using ??
    > >
    > > regards,
    > > balaram
    >
    >
    >    Hi,
    >
    > 1. The last successful backup happened on 6-mar-2012 . we can see backup logs upto 6th march but after that logs aren't generating
    >
    > 2.   Here are some logs from alert<sid>.log file
    Wed Mar  7 11:23:45 2012
    Completed checkpoint up to RBA [0xfb8b.2.10], SCN: 7849883715886
    Wed Mar  7 11:23:45 2012
    Beginning log switch checkpoint up to RBA [0xfb8e.2.10], SCN: 7849883731013
    Wed Mar  7 11:23:45 2012
    Thread 1 advanced to log sequence 64398 (LGWR switch)
      Current log# 2 seq# 64398 mem# 0: /oracle/PRD/origlogB/log_g12m1.dbf
      Current log# 2 seq# 64398 mem# 1: /oracle/PRD/mirrlogB/log_g12m2.dbf
    Thread 1 cannot allocate new log, sequence 64399
    Checkpoint not complete
      Current log# 2 seq# 64398 mem# 0: /oracle/PRD/origlogB/log_g12m1.dbf
      Current log# 2 seq# 64398 mem# 1: /oracle/PRD/mirrlogB/log_g12m2.dbf
    Wed Mar  7 11:24:00 2012
    Completed checkpoint up to RBA [0xfb8c.2.10], SCN: 7849883721236
    Wed Mar  7 11:24:00 2012
    Beginning log switch checkpoint up to RBA [0xfb8f.2.10], SCN: 7849883735168
    Wed Mar  7 11:24:00 2012
    Thread 1 advanced to log sequence 64399 (LGWR switch)
      Current log# 3 seq# 64399 mem# 0: /oracle/PRD/origlogA/log_g13m1.dbf
      Current log# 3 seq# 64399 mem# 1: /oracle/PRD/mirrlogA/log_g13m2.dbf
    Wed Mar  7 11:24:11 2012
    Thread 1 cannot allocate new log, sequence 64400
    Checkpoint not complete
      Current log# 3 seq# 64399 mem# 0: /oracle/PRD/origlogA/log_g13m1.dbf
      Current log# 3 seq# 64399 mem# 1: /oracle/PRD/mirrlogA/log_g13m2.dbf
    Wed Mar  7 11:24:12 2012
    Completed checkpoint up to RBA [0xfb8d.2.10], SCN: 7849883726339
    Wed Mar  7 11:24:12 2012
    Beginning log switch checkpoint up to RBA [0xfb90.2.10], SCN: 7849883739909
    Wed Mar  7 11:24:12 2012
    Thread 1 advanced to log sequence 64400 (LGWR switch)
      Current log# 4 seq# 64400 mem# 0: /oracle/PRD/origlogB/log_g14m1.dbf
      Current log# 4 seq# 64400 mem# 1: /oracle/PRD/mirrlogB/log_g14m2.dbf
    Thread 1 cannot allocate new log, sequence 64401
    Checkpoint not complete
      Current log# 4 seq# 64400 mem# 0: /oracle/PRD/origlogB/log_g14m1.dbf
      Current log# 4 seq# 64400 mem# 1: /oracle/PRD/mirrlogB/log_g14m2.dbf
    Wed Mar  7 11:24:25 2012
    Completed checkpoint up to RBA [0xfb8e.2.10], SCN: 7849883731013
    Wed Mar  7 11:24:25 2012
    Beginning log switch checkpoint up to RBA [0xfb91.2.10], SCN: 7849883743945
    Wed Mar  7 11:24:25 2012
    Thread 1 advanced to log sequence 64401 (LGWR switch)
      Current log# 1 seq# 64401 mem# 0: /oracle/PRD/origlogA/log_g11m1.dbf
      Current log# 1 seq# 64401 mem# 1: /oracle/PRD/mirrlogA/log_g11m2.dbf
    Wed Mar  7 11:24:39 2012
    Thread 1 cannot allocate new log, sequence 64402
    Checkpoint not complete
      Current log# 1 seq# 64401 mem# 0: /oracle/PRD/origlogA/log_g11m1.dbf
      Current log# 1 seq# 64401 mem# 1: /oracle/PRD/mirrlogA/log_g11m2.dbf
    Wed Mar  7 11:24:40 2012
    Completed checkpoint up to RBA [0xfb8f.2.10], SCN: 7849883735168
    Wed Mar  7 11:24:40 2012
    Beginning log switch checkpoint up to RBA [0xfb92.2.10], SCN: 7849883749377
    Wed Mar  7 11:24:40 2012
    Thread 1 advanced to log sequence 64402 (LGWR switch)
      Current log# 2 seq# 64402 mem# 0: /oracle/PRD/origlogB/log_g12m1.dbf
      Current log# 2 seq# 64402 mem# 1: /oracle/PRD/mirrlogB/log_g12m2.dbf
    >
    > 3. The redo log archive backup is successfully completed as of date
    >
    > 4. we are taking the backup using BACKINT file.

  • Could not generate DH keypair error

    hi,
    My coding was running fine with JDK 1.41.3 but when i am trying to use jdk 1.5 its giving me an error
    "RuntimeException : Cound not generate DH keypair: in the method call sslSock.startHandshake();
    what could cause this ?

    Did you get any replies to this? If so, can you pass it along?
    We are having the same issue. Everything was fine with 1.4. With 1.5, on the server side, we get the following error:
    javax.net.ssl.SSLException: Received fatal alert: internal_error
    The server code is:
    SSLServerSocket ss = null;
    try {
    KeyManagerFactory kmf;
    KeyManager[] km;
    KeyStore ks;
    TrustManagerFactory tmf;
    TrustManager[] tm;
    SSLContext sslc;
    // Create a keystore that will read the JKS (Java KeyStore)
    // file format which was created by the keytool utility.
    ks = KeyStore.getInstance("JKS");
    // Load the keystore object with the binary keystore file and
    // a byte array representing its password.
    ks.load(url.openStream(), keystorepass);
    // Gives us a factory for key managers that will let
    // us handle the asymetric keys we created earlier.
    kmf = KeyManagerFactory.getInstance("sunx509");
    // Initialize the key manager factory with the keystore object,
    // again using the same password for security since it is going to
    // access the private key.
    kmf.init(ks, keystorepass);
    // Now we can get the key managers from the factory, since it knows
    // what type we are using now.
    km = kmf.getKeyManagers();
    // Next, create a trust manager factory using the same algorithm.
    // This is to avoid using the certificates in cacerts that
    // represent an authentication security risk.
    tmf = TrustManagerFactory.getInstance("sunx509");
    // ...then initialize it with the keystore object. This time we don't
    // need the keystore password. This is because trusted certificates
    // are not a sensitive element in the keystore, unlike the
    // private keys.
    tmf.init(ks);
    // Once that's initialized, get the trust managers from the factory.
    tm = tmf.getTrustManagers();
    // Almost done, we need a context object that will get our
    // server socket factory. We specify TLS to indicate that we will
    // need a server socket factory that supports SSL.
    sslc = SSLContext.getInstance("TLS");
    // Initialize the context object with the key managers and trust
    // managers we got earlier. The third parameter is an optional
    // SecureRandom object. By passing in null, we are letting the
    // context object create its own.
    sslc.init(km, tm, null);
    // Finally, we get the ordinary-looking server socket factory
    // from the context object.
    ServerSocketFactory ssf = sslc.getServerSocketFactory();
    SSLServerSocket serversocket = (SSLServerSocket)
    ssf.createServerSocket(port);
    serversocket.setNeedClientAuth(true);
    ss = serversocket;
    } catch (Exception e) {
    SeedServer._logger.error("Unable to create server socket:" + e.getMessage());
    System.exit(-1);
    while(true) {
    SSLSocket socket = null;
    try {
    socket = (SSLSocket) ss.accept();
    System.out.println("Accepted connection from " +
    socket.getInetAddress().getHostAddress() +
    ":" + socket.getPort());
    handleConnection(socket.getInputStream(), socket.getOutputStream());
    } catch (SocketTimeoutException ste) {
    // Error message
    } catch (SocketException se) {
    // Error message
    } catch (Exception e) {
    // Error message -- This is the one thats triggered
    } catch (Throwable t) {
    // Error message
    } finally {
    try {
    if (socket != null)
    socket.close();
    catch (Exception e) {
    The client code is:
    SSLSocketFactory ssf = null;
    try {
    KeyManagerFactory kmf;
    KeyStore ks;
    TrustManagerFactory tmf;
    SSLContext sslc;
    kmf = KeyManagerFactory.getInstance("sunx509");
    ks = KeyStore.getInstance( "JKS" );
    ks.load(url.openStream(), keystorepass);
    kmf.init(ks, keystorepass);
    tmf = TrustManagerFactory.getInstance("sunx509");
    tmf.init(ks);
    sslc = SSLContext.getInstance("TLS");
    sslc.init(kmf.getKeyManagers(), tmf.getTrustManagers(), null);
    // The process is different from here on the client. Instead of
    // getting a ServerSocketFactory, we ask for a SocketFactory from
    // the SSL context.
    ssf = sslc.getSocketFactory();
    } catch (Exception e) {
    System.out.println("Unable to initialize SSL parameters");
    System.exit(-1);
    }

  • Control file in sapmnt is not generated

    Hi
    In usr/sap<SID>/SYS/Global/sapmnt control file size 1 mb is not generating.
    can any one help me why this file is not generating ..how can we fix this issue.
    regards
    Indshree

    Dear  Indshree,
    What is the SAP Product, OS and DB?
    this file is generating of file size 1 mb ..this is for CI and SCS.
    You mean to say control file for SAP CI ...I never heard about that.
    More over what is the error and where you are getting this error text?
    Regards,

  • FB50L Non Leading Document  CO & PCA Document is not generating

    Hi Guys,
    will book expenses in FB50L Non leading ledger document posting that time CO, PCA, CO-PA document is not generating.
    client using New GL and activatied Clasical PCA also. all reports developed based on GLPCA Table
    in controlling side what are settings is required.
    Please provide any configuration settings is required in CO Side.
    Thanks
    Ramu

    HI Ramu,
    Please refer the below notes.
    Note 804753 and 932045.
    Regards
    Madhu M

Maybe you are looking for

  • Lost Boot Drive

    Dual G5 locked up with 2 or 3 apps open and runniing. I turned off the power via the switch on the front and booted back up. The chime goes, the grey screen comes up and the osx window loads and then goes to plain blue screen (not Aqua which is defau

  • How to restrict the user to change the project structure but not the documents?

    Hi, I have created one project assigning different users in Solution manger. I want to risitrict some of the users to change the project structure but simultaneously allwoing the project documents to be created, edited or deleted using solar01 under

  • Ship to Party Other than in Customer Master

    Dear All, I want to control that only the ship to party assigned in the customer master will be derived in the sales order and user will not be able to enter another ship to party even before entering the sold to party. In standard system there is a

  • Variable contents inside "EXECUTE IMMEDIATE" not working properly.

    Hello, I have the following package: CREATE OR REPLACE PACKAGE "BACKUP"."PKG_BACKUP" IS PROCEDURE BACKUP_TABLE (TABLE_NAME IN VARCHAR); END PKG_BACKUP; CREATE OR REPLACE PACKAGE BODY "BACKUP"."PKG_BACKUP" IS PROCEDURE BACKUP_TABLE (TABLE_NAME IN VARC

  • HT201272 Will Apple give me all the music I purchased from iTunes for my new computer?

    My computer crashed so I bought a new one but my entire music library is gone. And to make matters worse it didn't back up on my external hard drive so I would like to get all the music I purchased from iTunes back on to my new computer. My only thou