Substitution Maintenance error

Hi All,
Please help me for creation substitution for Business area updating.
Actual I maintain but it is not Execute
I Crete in OBBH t code but not sure for that creation please guide me.
CASE:--
We want substitution create for Business area updating ;- When Document has 4 line item at the time of TAX and TDS line item the Business area not update, MIRO Document also not update the Business area.
My client process is depended on Business area.
Thanks & Regards,
Seema

Hi Seema
SAP has just released a note for this case... Its 1576560
This helps you to populate BA and PC in the tax line items... Please go for this note, rather than Substitution
br, Ajay M

Similar Messages

  • Receiver File Adapter:Variable substitution :FATAL  ERROR

    HI all
    as per the previous thread :
    <b>Receiver File Name Variable Substitution :payload: Fatal Error
    in our idoc to file sceanrio, we are using simple <b>graphical mapping.</b>
    for dynamic file name , variable field is at <b>Target message type</b>,So  on using <b>Variable substitution</b>, again the error is same :
    SAXException while parsing XML payload: Fatal Error: com.sap.engine.lib.xml.parser.ParserException: XMLParser: No data allowed here: (hex) .
    <b>Our XI  Component version : 2004
    WAS 6.4 SP 15</b>
    Thanks
    AR

    Ashutosh,
       There is nothing to do with your mapping programs. Its the mistake in ur reciever file adapter configuration for variable substitution.I asked u whether u changed message mapping in order to implement the UDF!!
    Did u tried checking the audit log. Ok just to see where u are going wrong, instead of using Payload :... in Variable substitution use Message:..... and give some interface name so that to check whether the file is created with Interface name.
    Juz give a try!!!
    Best regards
    raj.

  • Variable substitution in error message

    I'm trying to create a document that contains generic error messages in a module used by different projects. I intended to share the messages by including them as a variable substitution within the error message e.g.:
    Error("%message_dob_in_future%") but all I get out in the error message is the stuff between the quote marks (i.e. %message_dob_in_future%).
    I presume that variable substitution doesn't work in error or warning messages? If not, any chance of including it in the future?

    Hi Matthew
    You should be able to use a screen label to achieve the same functionality. Just add the label to the screen on which you want it to appear, substitute in the attribute value, and format it to look like an error.
    Does that help?
    Fiona

  • VO Substitution Remove error

    Hi
    i extend the VO.
    import vo succcessfully.
    But i wann to deltete VO Substitution.
    first i removed substitution from Project Properties.
    then i run the jdr_utils.deletedocument script., i got msg document deleted successfully.
    But i want to again import the substitution .
    i add the substitution and run the JPX import script.
    i m getting Resource Busy Please nowait
    JDR_UTILS_INTERNAL error.
    My Page is error out.
    plz help me on this.

    Please ensure after performing jdr_utils.deletedocument you have explicitly commited your transaction.
    commit the transaction and then try to run jpximport command.
    Hope it helps!!
    Thanks
    AJ

  • FI SUBSTITUTION throwing error

    Hi,
    I copied RGGBS000 into ZBGGBS000 and added two exits U102 and U103 to it  after that we did all the steps required  like going to GCX2 then OB28 .......steps that are required to have custom include for substitution.
    now when we are transporting the customizing request which has these customizing changes it shows following error during transport
    User exit UFP00 not declared in form pool RGGBS000
    Postprocessing necessary when upgrade has been completed
    User exit UFP01 not declared in form pool RGGBS000
    Postprocessing necessary when upgrade has been completed
    User exit UFP02 not declared in form pool RGGBS000
    Postprocessing necessary when upgrade has been completed
    User exit UFP04 not declared in form pool RGGBS000
    Postprocessing necessary when upgrade has been completed
    User exit UFP05 not declared in form pool RGGBS000
    Postprocessing necessary when upgrade has been completed
    User exit UFP06 not declared in form pool RGGBS000
    Postprocessing necessary when upgrade has been completed
    User exit UFP13 not declared in form pool RGGBS000
    Postprocessing necessary when upgrade has been completed
    User exit UFP02 not declared in form pool RGGBS000
    Postprocessing necessary when upgrade has been completed
    User exit UFP02 not declared in form pool RGGBS000
    Postprocessing necessary when upgrade has been completed
    User exit UFP02 not declared in form pool RGGBS000
    Postprocessing necessary when upgrade has been completed
    User exit UFP02 not declared in form pool RGGBS000
    Postprocessing necessary when upgrade has been completed
    User exit UFP30 not declared in form pool RGGBS000
    Postprocessing necessary when upgrade has been completed
    User exit UFP31 not declared in form pool RGGBS000
    Postprocessing necessary when upgrade has been completed
    User exit UFP32 not declared in form pool RGGBS000
    Postprocessing necessary when upgrade has been completed
    The sequence of transports are correct.
    Whan i am worried is how come these series of user exit are throwing error they are neither present in RGGBS000 or my version ZGGBS000. Can any one let me know how/where these exit UFP00  are called and declared.

    Have you added all your exits to the GET_EXIT_TITLES subroutine at the top of the program?  See below.
    *       FORM GET_EXIT_TITLES                                           *
    *       returns name and title of all available standard-exits         *
    *       every exit in this formpool has to be added to this form.      *
    *       You have to specify a parameter type in order to enable the    *
    *       code generation program to determine correctly how to          *
    *       generate the user exit call, i.e. how many and what kind of    *
    *       parameter(s) are used in the user exit.                        *
    *       The following parameter types exist:                           *
    *       TYPE                Description              Usage             *
    *       C_EXIT_PARAM_NONE   Use no parameter         Subst. and Valid. *
    *                           except B_RESULT                            *
    *       C_EXIT_PARAM_FIELD  Use one field as param.  Only Substitution *
    *       C_EXIT_PARAM_CLASS  Use a type as parameter  Subst. and Valid  *
    *  -->  EXIT_TAB  table with exit-name and exit-titles                 *
    *                 structure: NAME(5), PARAM(1), TITEL(60)
    FORM get_exit_titles TABLES etab.
      DATA: BEGIN OF exits OCCURS 50,
              name(5)   TYPE c,
              param     LIKE c_exit_param_none,
              title(60) TYPE c,
            END OF exits.
      exits-name  = 'U100'.
      exits-param = c_exit_param_none.
      exits-title = text-100.             "Cost center from CSKS
      APPEND exits.
      exits-name  = 'U101'.
      exits-param = c_exit_param_field.
      exits-title = text-101.             "Cost center from CSKS
      APPEND exits.
    * begin of insertion                                          "wms092357
      exits-name  = 'U200'.
      exits-param = c_exit_param_field.
      exits-title = text-200.             "Cons. transaction type
      APPEND exits.                       "from xref1/2
    * end of insertion                                            "wms092357
    * PLEASE DELETE THE FIRST '*' FORM THE BEGINING OF THE FOLLOWING LINES *
    *        IF THE ACCOUNTING MODULE IS INSTALLED IN YOUR SYSTEM:         *
    *  EXITS-NAME  = 'U102'.
    *  EXITS-PARAM = C_EXIT_PARAM_CLASS.
    *  EXITS-TITLE = TEXT-102.             "Sum is used for the reference.
    *  APPEND EXITS.
    ** EXIT EXAMPLES FROM PUBLIC SECTOR INDUSTRY SOLUTION
    ** PLEASE DELETE THE FIRST '*' FORM THE BEGINING OF THE FOLLOWING LINE
    ** TO ENABLE PUBLIC SECTOR EXAMPLE SUBSTITUTION EXITS
      INCLUDE rggbs_ps_titles.
      REFRESH etab.
      LOOP AT exits.
        etab = exits.
        APPEND etab.
      ENDLOOP.
    ENDFORM.                    "GET_EXIT_TITLES

  • JAXB: Abstract Types and Substitution Group Errors

    I am using several schemas as defined below:
    Schema 1 defines an abstract type
    Schema 2 extends abstract type
    Schema 3 makes reference to abstract type in 1 and is using substitution groups on the abstarct type
    The error only occurs when the element is Abstract and what extends
    the abstract element specify a substitution group (which I believe is
    correct according to
    http://www.w3.org/TR/2001/REC-xmlschema-0-20010502/#abstract). I can't
    remove the substitution group because declaring the element as abstract
    requires this. Is there a way to fix this?
    code that generates error:
    When attempting to do a JAXBContext jaxbContext = JAXBContext.newInstance(Schema3.class) I get the following error
    Exception in thread "main" com.sun.xml.bind.v2.runtime.IllegalAnnotationsException: 1 counts of IllegalAnnotationExceptions
    There's no ObjectFactory with an @XmlElementDecl for the element {[http://test.com/FeatureBase.xsd|http://seams.csp.com/FeatureBase.xsd]}FeatureBase.
         this problem is related to the following location:
              at com.test.blah
         at com.sun.xml.bind.v2.runtime.IllegalAnnotationsException$Builder.check(IllegalAnnotationsException.java:102)
         at com.sun.xml.bind.v2.runtime.JAXBContextImpl.getTypeInfoSet(JAXBContextImpl.java:448)
         at com.sun.xml.bind.v2.runtime.JAXBContextImpl.<init>(JAXBContextImpl.java:297)
         at com.sun.xml.bind.v2.ContextFactory.createContext(ContextFactory.java:139)
         at com.sun.xml.bind.v2.ContextFactory.createContext(ContextFactory.java:117)
         at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
         at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source)
         at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source)
         at java.lang.reflect.Method.invoke(Unknown Source)
         at javax.xml.bind.ContextFinder.newInstance(ContextFinder.java:214)
         at javax.xml.bind.ContextFinder.find(ContextFinder.java:375)
         at javax.xml.bind.JAXBContext.newInstance(JAXBContext.java:574)
         at javax.xml.bind.JAXBContext.newInstance(JAXBContext.java:522)

    Hi all,
    This seems to be a bug unless someone of you have a solution.
    Also I ma new to xml/xsd world, so could someone please give the differences between xsi:type vs substitution groups with both element and complex type being abstract. Can this scenario be accomplished by usuage of choice groups.
    Also can anyone suggest any other good xml forums.
    Please let me know.
    Thanks in advance.

  • Table Maintenance Error

    I'm getting an error when trying to generate a One Step maintenance view.
        Field ZDT_SERTAGP-ZLED_CATALOG_NUMBER shortened (new visible length:...
        Field ZDT_SERTAGP-Z_LED_ULT_OPTIONS_S shortened (new visible length:...
        Screen SAPLZFG_SERTAGP                         0001 could not be gene...
        In TCTRL_ZDT_SERTAGP field LENGTH has the invalid value 02
    1, 3, and 4 are all red errors, so it won't create the view.
    I can't reduce the size b/c this exact same table maintenance activated in another system fine and dandy. I must have missed something when I copied it over or something is different in the system.
    I have it set to Delivery Class: A
    Display/Maintenance Allowed
    The table is active and has no inconsistencies when I check it.
    I've tried deleting and recreating the Maintenance view as well as the FG I made for it, but no good.
    What am I missing?
    I am able generate a Two step view fine, but not one.

    Hi Tom,
    Seems it`s your one step screen have problem, so you can go to SE51, type the program(SAPL+function group name) and the one step screen number, then check it.
    Regards,
    Archer

  • Process order SLOC maintenance error message

    Good Day SAP expert!
    Previously when we were in SAP4.5, when an SLOC is manually assigned to a component inside the process order, we get a warning message if the material is not yet maintained in the SLOC.
    In ECC, we get an error message that the SLOC is not found for a certain material. Can this message be configured to give only warning instead of error?
    Thanks!

    Hi,
    Thanks for the reply. Where is the config you have mentioned?
    In response to other advise to enter the material-SLOC in MMSC, we do know this setup but would like to avoid it since once you move inventory in a specific location, the SLOC view would automatically be created thus no need for MMSC initially for new materials. We would like to have the previous warning message only so that user can proceed manual assignment in Process order instead of getting error.

  • Power Pack Substitution Variables error

    Hi,
    One of our users experienced couple of .NET Framework error messages followed by an Excel crash. Is this a known issue? Any fixes so far?
    SV 11.1.2.1
    Excel 2007
    Win XP SP3
    Detail of the error message:
    See the end of this message for details on invoking
    just-in-time (JIT) debugging instead of this dialog box.
    ************** Exception Text **************
    System.AccessViolationException: Attempted to read or write protected memory. This is often an indication that other memory is corrupt.
    at System.Windows.Forms.UnsafeNativeMethods.IDispatch.Invoke(Int32 dispIdMember, Guid& riid, Int32 lcid, Int32 dwFlags, tagDISPPARAMS pDispParams, Object[] pVarResult, tagEXCEPINFO pExcepInfo, IntPtr[] pArgErr)
    at System.Windows.Forms.Control.ActiveXImpl.GetAmbientProperty(Int32 dispid, Object& obj)
    at System.Windows.Forms.Control.ActiveXImpl.get_AmbientFont()
    at System.Windows.Forms.Control.get_Font()
    at System.Windows.Forms.Control.GetParentFont()
    at System.Windows.Forms.Control.get_Font()
    at System.Windows.Forms.Control.GetParentFont()
    at System.Windows.Forms.Control.get_Font()
    at System.Windows.Forms.Control.AssignParent(Control value)
    at System.Windows.Forms.Control.ControlCollection.Remove(Control value)
    at Oracle.SmartView.PowerPack.SubstitutionVariables.ucVariables.HideErrorPanel()
    at Oracle.SmartView.PowerPack.SubstitutionVariables.ucVariables.BuildList()
    at Oracle.SmartView.PowerPack.SubstitutionVariables.ucVariables.cExtension_ConnectionStateChanged(Object sender, EventArgs e)
    at Oracle.SmartView.PowerPack.SubstitutionVariables.cExtension.OnConnectionStateChanged(Object sender, EventArgs eventArgs)
    at Oracle.SmartView.PowerPack.SubstitutionVariables.cExtension.t_Tick(Object sender, EventArgs e)
    at System.Windows.Forms.Timer.OnTick(EventArgs e)
    at System.Windows.Forms.Timer.TimerNativeWindow.WndProc(Message& m)
    at System.Windows.Forms.NativeWindow.Callback(IntPtr hWnd, Int32 msg, IntPtr wparam, IntPtr lparam)
    ************** Loaded Assemblies **************
    mscorlib
    Assembly Version: 2.0.0.0
    Win32 Version:
    CodeBase: file:///C:/WINNT/Microsoft.NET/Framework/v2.0.50727/mscorlib.dll
    BIPlusConnector
    Assembly Version: 11.1.2.0
    Win32 Version:
    CodeBase: file:///C:/Oracle/SmartView/Bin/BIPlusConnector.DLL
    Oracle.SmartView.Interop.SVRC
    Assembly Version: 1.0.0.0
    Win32 Version:
    CodeBase: file:///C:/Oracle/SmartView/Bin/Oracle.SmartView.Interop.SVRC.DLL
    System.Windows.Forms
    Assembly Version: 2.0.0.0
    Win32 Version:
    CodeBase: file:///C:/WINNT/assembly/GAC_MSIL/System.Windows.Forms/2.0.0.0__b77a5c561934e089/System.Windows.Forms.dll
    System
    Assembly Version: 2.0.0.0
    Win32 Version:
    CodeBase: file:///C:/WINNT/assembly/GAC_MSIL/System/2.0.0.0__b77a5c561934e089/System.dll
    System.Drawing
    Assembly Version: 2.0.0.0
    Win32 Version:
    CodeBase: file:///C:/WINNT/assembly/GAC_MSIL/System.Drawing/2.0.0.0__b03f5f7f11d50a3a/System.Drawing.dll
    Accessibility
    Assembly Version: 2.0.0.0
    Win32 Version:
    CodeBase: file:///C:/WINNT/assembly/GAC_MSIL/Accessibility/2.0.0.0__b03f5f7f11d50a3a/Accessibility.dll
    System.Xml
    Assembly Version: 2.0.0.0
    Win32 Version:
    CodeBase: file:///C:/WINNT/assembly/GAC_MSIL/System.Xml/2.0.0.0__b77a5c561934e089/System.Xml.dll
    SubstitutionVariables
    Assembly Version: 1.1.0.0
    Win32 Version:
    CodeBase: file:///C:/Program%20Files/Oracle/Power%20Pack%20Substitution%20Variables%20Extension/SubstitutionVariables.dll
    Microsoft.Office.Interop.Excel
    Assembly Version: 12.0.0.0
    Win32 Version:
    CodeBase: file:///C:/WINNT/assembly/GAC/Microsoft.Office.Interop.Excel/12.0.0.0__71e9bce111e9429c/Microsoft.Office.Interop.Excel.dll
    ExtensionHelper
    Assembly Version: 1.0.0.0
    Win32 Version:
    CodeBase: file:///C:/Program%20Files/Oracle/Power%20Pack%20Substitution%20Variables%20Extension/ExtensionHelper.DLL
    CustomControls
    Assembly Version: 1.0.0.0
    Win32 Version:
    CodeBase: file:///C:/Program%20Files/Oracle/Power%20Pack%20Substitution%20Variables%20Extension/CustomControls.DLL
    office
    Assembly Version: 12.0.0.0
    Win32 Version:
    CodeBase: file:///C:/WINNT/assembly/GAC/office/12.0.0.0__71e9bce111e9429c/office.dll
    SmartViewToolkit
    Assembly Version: 1.0.0.0
    Win32 Version:
    CodeBase: file:///C:/Program%20Files/Oracle/Power%20Pack%20Substitution%20Variables%20Extension/SmartViewToolkit.DLL
    ************** JIT Debugging **************
    To enable just-in-time (JIT) debugging, the .config file for this
    application or computer (machine.config) must have the
    jitDebugging value set in the system.windows.forms section.
    The application must also be compiled with debugging
    enabled.
    For example:
    <configuration>
    <system.windows.forms jitDebugging="true" />
    </configuration>
    When JIT debugging is enabled, any unhandled exception
    will be sent to the JIT debugger registered on the computer
    rather than be handled by this dialog box.

    Did you ever find a solution to your error from the extensions?
    We are getting the same error as well with the sub var extensions.
    11.1.2.2 is what we are on with 64-bit Office / 64-Bit Windows

  • Resource dimension maintenance error

    Hello Experts,
    We have to maintain capacity of the vehicle for a variety of products. The company has a wide list with mix of goods which has different units of measure for them.
    There is no one unit of measure to calculate the load of the vehicle. So we decided to maintain one unit of measure for the vehicle resource (in terms of % percentage) and maintain the conversion factor for each product in additional units of measure tab of APO. This was the idea to calculate the capacity of the vehicle for mixed loads & full loads.
    So in vehicle resource master apart from MASS (kg) we maintained PROPOR ( proportion for %) the system complained that "Dimension PROPOR does not exist in dimension table for SAP liveCache".
    Is there a way to maintain proportion in resource master or can you suggest another way to measure the vehicle load for the wide variety of materials.
    Thanking you in anticipation.
    Regards,
    Vasudevan

    Hello Jennsen,
    There is a chance it is a data corruption issue. Have you found the root cause already?
    Best regards,
    Alex.

  • Substitution Exit for AR01

    Hey All,
          I have a requirement in which I want to run the AR01 report for asset balances based on customer number ( Custom Z Field saved in the ANLU table ). The current selection criteria does not have the customer number. Can this be done be not creating a custom report and by using some exits or substitution rules. Say for example Can I create a substitution exit to copy the customer field to the Asset super number field (which is currently in the selection criteria) . The substitution Field to Field doesnt help as the table ANLU is not avalaible for substitution. What options do i have in this case.
    Any suggestion is highly appreciated.
    Thanks,
    Aparna.

    hi aparna,
    Validation Rules  and Substitution User exits
    Syntax:
    =Uzzzz (zzzz = up to 4 characters - this is true for Document Level validations - call point 3 - *Header Level & Line Item Level - call points 1 & 2 - allow up to 30 charaters.)
    /NORFB->Bus.transactions->Base parameters->Validation
    /NORFB->Bus.transactions->Base parameters->Substitution
    Example
    =ULTE "FI_DOCU 001 "Parked SA,FY,SI=>long text CORRESP. "
    =U&VALID_WBS_IN_ZUONR "FI_ITEM 011 Spon.Res: Check WBS valid in ZUONR"
    changed in 4.5B (* Form UFIA -- formerly U&VALID_WBS_IN_ZUONR)
    User exits are form routines that the user programs. There are two types of user-exits:
    1. Validation exits are used in the prerequisites and checks. They have either the value 'T' for true or 'F' for false. They are interpreted as a part of the logical statement, like a constant or field comparison. For this type of user exit, you must fill a parameter with the results of your check ('T' for true; 'F' for false).
    Example
    FORM Uzzzz USING B_RESULT. "'T' or 'F'
    from program ZGGBR000 (ZGGBRI03)
    2. Substitution exits are used to change one or more fields. However, you can only change those fields that are permitted in the Boolean class for the substitution. You can display these fields by selecting the following menu options in substitution maintenance: <Extras -> Fields for substitutions>
    Example
    FORM Uzzzz USING COST_CENTER.
    from program ZGGBS000 (ZGGBSI02)
    Substitution Fields can be found from this window
    /NORFB->Bus.transactions->Base parameters->Substitution->Call Pnt 2->Substitution step 3->Extras->Substitution flds
    The name of the form pool (e.g., ZGGBR000 & ZGGBS000) that contains your user exit must be stored in table T80D.
    Note
    1. Data declaration
    Tables and field stings cannot be declared in form routines, so that the contents can be used along with the calling transaction.
    2. Parameter definition
    It is important that you make declare the code generation program for your user exit; how many and what type of parameters you are using for the user exit. You do this by entering your newly defined user exits in the form routine GET_EXIT_TITLES.
    found in program ZGGBR000 (ZGGBRTIT)
    found in program ZGGBS000 (ZGGBSTIT)
    One exception is the parameter for the results of a validation exit. You must not declare this, it is automatically generated be the system. What types of parameters are available and how you use them is described in the online documentation. When creating your user exits, you can use the example form pools delivered by SAP (RGGBR000 for validations; RGBBS000 for substitutions) as a reference. We recommend that you copy the example form pools delivered by SAP when creating your own user exits. In these example form pools, entries already exist in the form routine GET_EXIT_TITLES for the examples delivered. The GET_EXIT_TITLES must absolutely exist in your form pool. 
    You can find additional information on the creation of user exits in the online documentation on validations and substitutions.
    SAP exits
    SAP exits are form rountines programmed by SAP. The name of the form pool is SAPFGBEB.
    Syntax:
    =Szzzz (zzzz = up to four characters)
    FORM Szzzz using B_result. "'T' or 'F'
    Example
    =S01 "SAP exit S01"
    Display description of T80D configuration
    Return ->
    Change Validation: FI_ITEM (Message view)
    thanks
    karthik
    <REMOVED BY MODERATOR>
    Edited by: Alvaro Tejada Galindo on Apr 15, 2008 3:05 PM

  • Error while populating Dimension

    I am unable to populate the dimension I am getting the below error message
    INI: XOQ-01711: Aggregation path for hierarchies on a dimension "ACCOUNT" is inconsistent, Generic at TxsOqStdFormCommand::execute
    I am creating a Account Dim with the following hierarchy and Levels
    All_Accounts
    Account_Type
    Account_Group
    Account_no
    Regards
    Ishaq

    Please find the details of the dimension
    Environment Details :- AWM (11.1.0.7 B).
    Data Base 11.1.0.7
    Details Regarding the Dimension
    Cost Center Dim
    Levels
    ALL_Cost_centers
    Cost_Center_Group
    Cost_Center_Sub_Group
    Cost_Center
    Hierarchy
    Cost_Center_Hier
    ALL_Cost_centers
    Cost_Center_Group
    Cost_Center_Sub_Group
    Cost_Center
    Cost center Attribute created and last level is checked (the lowest level)
    Attribute Mappings
    Hierarchy
    Account_Hier
    All_Cost_Centers
    Member --&gt; 'ALL_COST_CENTERS'
    Long Desc --&gt; 'All Cost Centers'
    Short Desc --&gt; 'All Cost Centers'
    Cost_Center_Group
    Member --&gt; Cost_Center_Dim.Code_B_Group
    Long Desc --&gt; Cost_Center_Dim.Code_B_Group
    Short Desc --&gt; Cost_Center_Dim.Code_B_Group
    Cost_Center_Sub_Group
    Member --&gt; Cost_Center_Dim.Code_B_Sub_Group
    Long Desc --&gt; Cost_Center_Dim.Code_B_Sub_Group
    Short Desc --&gt; Cost_Center_Dim.Code_B_Sub_Group
    Cost_Center_No
    Member --&gt; Cost_Center_Dim.Cost_B_Key
    Long Desc --&gt; Cost_Center_Dim.Code_B_Descrip
    Short Desc --&gt; Cost_Center_Dim.Code_B_Descrip
    Cost_Center_No --&gt; Cost_Center_Dim.Code_B
    Code_B Table Data
    CODE_B_GROUP CODE_B_SUB_GROUP CODE_B_KEY CODE_B CODE_B_DESCRIP
    PRODUCTION 1 C0010 PRODUCTION
    PRODUCTION PRODUCTION 2 C0011 PROCESS/RECOMBINING
    PRODUCTION ENGINEERING 11 C0020 ENGINEERING
    PRODUCTION MATERIAL MANAGET 20 C0030 MATERIAL MANAGEMEN
    SALES 27 C0050 SALES & DISTRIBUTION
    SALES SALES 28 C0055 SALES
    SALES SALES 29 C0056 SALES & MARKETING - GENERAL - H/O
    SALES MARKETING 33 C0060 MARKETING
    FINANCE 40 C0080 FINANCE & ADMINISTRATION
    FINANCE ADMINISTRATION 44 C0100 ADMINISTRATION
    FINANCE IT 51 C0110 INFORMATION TECHNOLOGY (IT)
    I have also checked metalink it points to the below bug 7606712 - DIMENSION MAINTENANCE ERRORS OUT WITH MULTIPLE HIERARCHIES UNDER 11G

  • FI Baseline date substitution

    Hello Experts,
    I'm doing a date substitution for the baseline date under the following condition:
    if actual delivery date is set then use it
    else if not then if planned delivery date is set then use
    else use invoice date or document date
    we are doing the user exit for this but the problem the baseline date is not appearing in the substitutable fields to set a substitution by a user exit.
    can you please help how to have baseline date in the substitutable fields?
    Thanks in advance

    Hi,
    Try use Rules and Validatio/ Substitution Maintenance.
    Tcode : GGB0/GGB1.
    Regards
    Arbind
    Edited by: Arbind Prasad on Apr 19, 2010 4:29 PM

  • Registering XSD in JDeveloper Getting Invalid Substitution affiliation Err

    Hi
    I am trying to Register IFRS Taxanomy xsd in JDeveloper - Tools - Preference - XML Schemas. I am getting "Invalid Substitution affiliation" error in various lines.
    Please guide as to go about Registing the taxanomy.
    Regards
    Edited by: Krithivasan N on Jan 26, 2012 3:01 PM

    Hi
    Is this a wrong forum for XML with JDeveloper?

  • Psn down for maintenance?

    The site says no maintenance scheduled but my game keeps giving me a maintenance error code Netflix works but the store gives me the same error I tried power cycling and everything. I can't find info anywhere on what the problem is

    i have same problem yet i see others playing the game i want to play whats up with the network.. Was online yesterday and another friend had same problem im now getting

Maybe you are looking for

  • ORA-00600: internal error code, arguments: [kqlidp0:no user], [258], [], []

    Hi, Does anyone has solution to the below problem ORA-00600: internal error code, arguments: [kqlidp0:no user], [258], [], [] Thanks and Regards

  • Not able to use multiple grid function in smartview

    Hi, One of my client want to use multiple grid function in Hyperion smartview and he was using latest version of Hyperion smartview 11.1.2.5. But still that feature was not enabled in smart view. Our's is windows environment and essbase server versio

  • Some Text Messages do not display when using large font on iphone

    When using increased font size (accessability function) on iphone some text messages will not display. The iphone just seems to lock up. If normal font size is used text massage displays with out any issue. When font size is increased, text message w

  • Sharing a calendar of a shared mailbox

    Hello We have a group of people that need a common calendar so that sounds simple enough, right?  I created a shared mailbox and set the permissions on the calendar for everyone that requires access to Owner.  I thought that would be it but nobody ca

  • Battery issue?

    Hey. I've installed my brand new Vertex 4 SSD a couple of days ago, in my Macbook Pro 13" from late 2011... The problem is, that my battery time has dropped from normally being about 7 hours left at full charge, to 5 hours on full charge. I've tried