Discoverer Views not Working in Accounts Receivable Business Area

Discoverer Instance: OracleBI Discoverer Version 10.1.2.54.25
Database: Oracle 10G
Apps Version: R12
Problem: Related to our EUL for Apps
Description: A lot of views in the AR Business Area depend on views that are created with synonyms that have VPD data restrictions.
Example of this problem
The “ARFG_AR_TRANSACTIONS “view depends on the “APPS.RA_CUSTOMER_TRX” synonym. This synonym and “APPS.RA_CUSTOMER_TRX_ALL” are both private synonyms owned by APPS that have the following creation script:
CREATE OR REPLACE SYNONYM "APPS"."SYNONYM_NAME" FOR "AR"."RA_CUSTOMER_TRX_ALL";
The first synonym returns a null set when queried and the second synonym returns an identical set to its source table.
Source of the problem: It appears to be VPD data restrictions.
How to check to see if there are VPD data restrictions:
select
a.object_owner,
a.object_name,
a.function,
a.policy_group,
a.policy_type,
a.policy_name
from
DBA_POLICIES a
where
a.object_owner='APPS'
AND a.object_name='RA_CUSTOMER_TRX';
Solution: Our Discoverer administrator entered a service request on this and we were advised to apply patch # 6819715.
Can anyone speak of any issues associated with this patch?
Thanks,
Patrick

Yispro,
This is the Home Consumer Products forum.
You will want to post your question in the HP Enterprise Business Community.
Here is the section for ALM.
Quality Center Support / ALM - HP Enterprise Business Community
Hope it helps.
If my comment was useful, please click the thumbs up button at the bottom. Thanks

Similar Messages

  • I am not able to see the Business area in Discoverer desktop

    Hi,
    r
    I am new to Discoverer
    I have created a business area in EUL with user name and password as dewip/dewip in Discoverer administrator and now when I am logging in to Discoverer Desktop with the same user name and password to create workbook I am able to log in but I am not able to find the Business area in the Discoverer desktop.
    After creating the business area do we need to do anything ( We don't even have save option to save also).
    In Discoverer admin -> tools-> privilages I checked to see the privilages for this user ,but I could not see this user name(dewip) only.
    Please help me ,its urgent.
    Thanks,
    gsr

    Hi gsr
    If you are working on Desktop and you change the default EUL but it doesn't stick this means that you don't have Admin rights over your machine.
    In order to make these setting stick you need to have permission to update the system registry.
    If you really cannot be given these rights then I suggest you ask you system admin to change the registry setting for you on your machine so that it reflects the correct EUL. You will find it here:
    1. From the Start button, use Run | regedit
    2. Open your registry to display HKEY_CURRENT_USER | Software | Oracle | Discoverer 10
    3. Expand the folder called Database
    4. Inside here you will see one set of settings that begin with AEUL and another with UEL. The format is like this:
    AEUL_username_database and UEUL_username_database
    5. You should see the name of the default EUL in the column called Data
    6. Right-click on the setting you want to change and from the pop-up select Modify
    7. Type the name of the EUL that Desktop should default to for that user in the database, making sure you type it in UPPERCASE
    8. Click the OK button
    9. Close the registry
    When you now connect to Discoverer Desktop you should be in the correct EUL.
    Note: this is only required if you don't have admin rights on your PC. If you do have admin rights then Discoverer will set this for itself.
    By the way, if you or anyone reading this is unsure about manually editing your registry you should back it up first. Here are the steps:
    To backup your registry, follow this workflow:
    1. From your PC, click Start | Run
    2. In the Run dialog box, type "regedit" and press the Enter key
    3. The registry will now be displayed
    4. From the registry menu bar, select Registry | Export Registry File
    5. When the Export Registry File dialog box opens, give a name to the file you want the registry to be saved as
    6. In Export Range, check "All" or "Selected Branch" - Selected Branch will export the current folder, so if you happen to have already navigated down tp the appropriate Discoverer Administrator folder you will be able to back it up
    7. Click the Save button
    8. Close the registry editor
    To restore your registry, follow this workflow:
    1. From your PC, click Start | Run
    2. In the Run dialog box, type "regedit" and press the Enter key
    3. The registry will now be displayed
    4. From the registry menu bar, select Registry | Import Registry File
    5. Navigate to the folder in which your registry is saved and locate the file
    6. Click the Open button - the registry will be restored
    7. Close the registry editor
    Best wishes
    Michael

  • HT204088 Dear sirs,  Could you please help me on my problem with my apple ID  I create new account with security questions, and when I try to purchase paid application,it ask me for answers the questions but it's not working,  My account have 50$ and stil

    Dear sirs,
    Could you please help me on my problem with my apple ID
    I create new account with security questions, and when I try to purchase paid application,it ask me for answers the questions but it's not working,
    My account have 50$ and still didn't buy anything

    You need to ask Apple to reset your security questions; ways of contacting them include clicking here and picking a method for your country, phoning AppleCare and asking for the Account Security team, and filling out and submitting this form.
    (100546)

  • External command is not working in File Receiver Adapter

    Hi,
       I have tried to copy the file which is mentioned in my File Adapter (Receiver) to 3 different folders thru OS command. The purpose is to save time. I have created one CC for Source(File) and one CC for target(File). After the target file is created, I want to copy this file in 3 folders. For this I have written one batch file in my system.
    File Name: copy1.bat
    @ECHO OFF
    COPY %1 C:\TEST1\arch_t1
    COPY %1 C:\TEST2\arch_t2 
    COPY %1 C:\TEST3\arch_t3
    DEL %1
    The command which I entered in the Receiver CC (File Adatper is)
    Run Operating System Command After Message Processing
    Command Line: C:\FILES\copy1.bat %F %f
    Timeout(secs): 60
    Terminate Program After Timeout - Check box is selected.
    But, this external command is not working. (because the target files are not created in those directories C:\TEST1, C:\TEST2, C:\TEST3)
       I did this scenario by refering the Michael'w weblog:
    /people/michal.krawczyk2/blog/2007/02/08/xipi-command-line-sample-functions
       In this blog, he has also given how to troubleshoot external command. I tried this also. It is not working.
        I use Windows XP OS. XI 3.0 SP 18.
       Friends, Could you kindly tell why this external command is not working? What could be the problem?
    Thanks in advance.
    Kind Regards,
    Jeg P.

    Hi, Jeg.
    As the note says, please check the java Runtime.exec behavior
    with the proper user.
    If in doubt, check if the command can be successfully run through
    the Java Runtime.exec(...) API. Also note that the command is run
    as user "<sid>adm" (Unix) / "SAPService<SID>" (Windows).
    So, Could you check the following(very dirty one!) Java in your
    XI server and check if it works? For simulating %F, create a test
    file C:\FILES\test.txt whatever the content is.
    import java.util.*;
    import java.io.*;
    public class ExecJava {
      public static void main(String args[]) {
        try {           
          Runtime rt = Runtime.getRuntime();
          Process proc = rt.exec("C:/FILES/copy1.bat C:
    FILES
    test.txt");
        } catch (Exception e) {
          e.printStackTrace();
    Good Luck.
    Sejoon

  • Order by in MATERIALIZED VIEW not work successfully with first column (ID)

    Dears,
    I am trying to create a Materialized View as below:
    CREATE MATERIALIZED VIEW HR.MV_EMP
    PCTFREE 10
    MAXTRANS 255
    TABLESPACE users
    STORAGE (
    INITIAL 65536
    MINEXTENTS 1
    MAXEXTENTS 2147483645
    BUILD IMMEDIATE
    REFRESH ON DEMAND
    AS
    SELECT *
    FROM employees
    where rownum < 5000 order by employee_id desc ;But while querying the MATERIALIZED VIEW, it did not work successfully as the data did not appear in the accurate order.
    I tried to create the same MATERIALIZED VIEW but order by another column (Column Date), it worked successfully and the data appeared in the accurate order.
    It means that MATERIALIZED VIEW not work successfully with the first column (id).
    Can you please help me in this ?
    Thanks & regards,,

    A few pointers :
    1. As has been pointed out, the ROWNUM has been incorrectly placed. ROWNUM values are assigned as rows are fetched from the source before the ORDER BY. You need to ORDER BY first (in a SubQuery) and then ROWNUM afterwards (outside the SubQuery).
    2. I wonder why you want only the last 5000 EMPLOYEE_IDs. What if Employee_ID 1 is still an active employee (he is the founder, first employee and CEO ?). There could be very many "low" EMPLOYEE_IDs that are still active.
    3. Logically I would expect some filter other than the ROWNUM ... ORDER BY to be used to select candidate rows. Then, an ORDER BY in the CREATE query would be unnecessary.
    4. When querying the Materialized View you must explicitly ORDER BY (irrespective of whether you did or did not do an ORDER BY in the CREATE ...)
    5. How do you expect to refresh the MV ? Will it always be a COMPLETE Refresh ? Remember that your "5000 employees" filter would likely exclude older employees at the next refresh. If you use some other filter, it should be consistent across all refreshs.
    Hemant K Chitale

  • Good morning, AdobeSuite installation does not work and I receive"error initializing program, download adobe advisor" error message. On Adobe site it appears"The Adobe Support Advisor has been discontinued  The Adobe Support Advisor tool was used to analy

    Good morning, AdobeSuite installation does not work and I receive"error initializing program, download adobe advisor" error message. On Adobe site it appears"The Adobe Support Advisor has been discontinued  The Adobe Support Advisor tool was used to analyze installer log and system information associated with installation errors. The tool has been replaced with improved installation support mechanisms. Please visit Adobe Support section for Knowledge base articles around Installation."

    Nobody can tell you anything without proper system info or other technical details. We don't even know what exactly you are trying to install.
    Mylenium

  • PDF Viewer Not Working Some Scanned PDF Files.

    I Have Firefox Latest Version. I Want To View PDF files in Firefox without downloading them. But Firefox PDF Viewer Not Working Scanned PDF. Other Browsers Can View It.
    http://t.co/teYs9LOtyq
    This Is A Serious Problem & Please Fix This Issue.
    Thank You.

    Same problem. Am using Firefox 24 (W7x64).
    I've tried setting it to use the built-in PDF viewer, to always asking, to using Adobe plugin, to using Nitro plugin.
    I changed the pdfjs.disabled in about:config to true but that didn't help.
    The plugin.disable_full_page_plugin_for_types was set to
    user set string ,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,
    I changed it to default, string but that didn't help either.
    The pdfjs.database is set to {"files":[{"fingerprint":"a217d02eee11bdca6fa87ec7d192fd7","exists":true,"page":1,"zoom":"auto","scrollLeft":0,"scrollTop":800},{"fingerprint":"2fc235a8bd85f838d74c927cfcd9842","exists":true,"page":2,"zoom":"auto","scrollLeft":0,"scrollTop":587},{"fingerprint":"c839bb8d692bce1ea48d681a35741e49","exists":true,"page":1,"zoom":"auto","scrollLeft":0,"scrollTop":792},{"fingerprint":"3dc145587d24022921d7e241bc3a5","exists":true,"page":35,"zoom":80,"scrollLeft":360,"scrollTop":707},{"fingerprint":"18a76da679de944893795ed1e4a136","exists":true,"page":2,"zoom":110.00000000000001,"scrollLeft":0,"scrollTop":662},{"fingerprint":"d8270f838618eeca6ea969e255b239f","exists":true,"page":24,"zoom":"auto","scrollLeft":0,"scrollTop":51},{"fingerprint":"443a32303133303630333137313132342d303427303027","exists":true,"page":1,"zoom":"auto","scrollLeft":0,"scrollTop":772},{"fingerprint":"443a32303133303631303135343033332d303427303027","exists":true,"page":1,"zoom":"auto","scrollLeft":0,"scrollTop":772},{"fingerprint":"443a32303133303631303132323731332d303427303027","exists":true,"page":1,"zoom":"auto","scrollLeft":0,"scrollTop":772},{"fingerprint":"443a32303133303631373133313733372d303427303027","exists":true,"page":1,"zoom":150,"scrollLeft":0,"scrollTop":772},{"fingerprint":"591aede8aeea4ade9612674263eaf4a2","exists":true,"page":1,"zoom":"auto","scrollLeft":0,"scrollTop":772},{"fingerprint":"443a32303133303830353132353132372d303427303027","exists":true,"page":1,"zoom":"auto","scrollLeft":0,"scrollTop":772},{"fingerprint":"8bf283ba7a5cc5479db8405215d67d3","exists":true,"page":1,"zoom":"auto","scrollLeft":0,"scrollTop":1008},{"fingerprint":"768e8216a07384f961d92204d6a1ef8","exists":true,"page":1,"zoom":"auto","scrollLeft":0,"scrollTop":800},{"fingerprint":"a4649ba52b2dcd144b35b9bd5c10a7","exists":true,"page":52,"zoom":"auto","scrollLeft":0,"scrollTop":290},{"fingerprint":"d612d5d934c66f4aa936b5b0a6cce91","exists":true,"page":18,"zoom":"auto","scrollLeft":0,"scrollTop":168},{"fingerprint":"de55bb394d87ed4cb8dd7584c4b68f61","exists":true,"page":1,"zoom":"auto","scrollLeft":0,"scrollTop":612},{"fingerprint":"fd4b802248d8a94e825747cf2ba32e2f","exists":true,"page":4,"zoom":"auto","scrollLeft":0,"scrollTop":109},{"fingerprint":"229e846140d9925da79a11f7d6cae","exists":true,"page":1,"zoom":"auto","scrollLeft":0,"scrollTop":800}]}

  • Lomboz J2EE View not working

    Lomboz J2EE View not working always give such type error
    java.lang.NoClassDefFoundError: org/apache/jasper/Options
         at com.objectlearn.jdt.j2ee.core.Project.initContainers(Project.java:370)
         at com.objectlearn.jdt.j2ee.core.Project.init(Project.java:102)
         at com.objectlearn.jdt.j2ee.core.Project.<init>(Project.java:43)
         at com.objectlearn.jdt.j2ee.core.Project.getWorkspaceProjects(Project.java:427)
         at com.objectlearn.jdt.j2ee.ui.ContainerView.init(ContainerView.java:334)
         at com.objectlearn.jdt.j2ee.ui.ContainerView.<init>(ContainerView.java:99)
         at com.objectlearn.jdt.j2ee.ui.J2EEView.createViews(J2EEView.java:241)
         at com.objectlearn.jdt.j2ee.ui.J2EEView.createSashForm(J2EEView.java:262)
         at com.objectlearn.jdt.j2ee.ui.J2EEView.createPartControl(J2EEView.java:306)
         at org.eclipse.ui.internal.ViewReference.createPartHelper(ViewReference.java:370)
         at org.eclipse.ui.internal.ViewReference.createPart(ViewReference.java:227)
         at org.eclipse.ui.internal.WorkbenchPartReference.getPart(WorkbenchPartReference.java:592)
         at org.eclipse.ui.internal.PartPane.setVisible(PartPane.java:299)
         at org.eclipse.ui.internal.ViewPane.setVisible(ViewPane.java:531)
         at org.eclipse.ui.internal.presentations.PresentablePart.setVisible(PresentablePart.java:179)
         at org.eclipse.ui.internal.presentations.util.PresentablePartFolder.select(PresentablePartFolder.java:268)
         at org.eclipse.ui.internal.presentations.util.LeftToRightTabOrder.select(LeftToRightTabOrder.java:65)
         at org.eclipse.ui.internal.presentations.util.TabbedStackPresentation.selectPart(TabbedStackPresentation.java:400)
         at org.eclipse.ui.internal.PartStack.refreshPresentationSelection(PartStack.java:1256)
         at org.eclipse.ui.internal.PartStack.createControl(PartStack.java:668)
         at org.eclipse.ui.internal.PartStack.createControl(PartStack.java:576)
         at org.eclipse.ui.internal.PartSashContainer.createControl(PartSashContainer.java:564)
         at org.eclipse.ui.internal.PerspectiveHelper.activate(PerspectiveHelper.java:270)
         at org.eclipse.ui.internal.Perspective.onActivate(Perspective.java:931)
         at org.eclipse.ui.internal.WorkbenchPage.setPerspective(WorkbenchPage.java:3479)
         at org.eclipse.ui.internal.WorkbenchPage.busySetPerspective(WorkbenchPage.java:997)
         at org.eclipse.ui.internal.WorkbenchPage.access$18(WorkbenchPage.java:981)
         at org.eclipse.ui.internal.WorkbenchPage$18.run(WorkbenchPage.java:3578)
         at org.eclipse.swt.custom.BusyIndicator.showWhile(BusyIndicator.java:67)
         at org.eclipse.ui.internal.WorkbenchPage.setPerspective(WorkbenchPage.java:3576)
         at org.eclipse.ui.internal.PerspectiveBarContributionItem.select(PerspectiveBarContributionItem.java:123)
         at org.eclipse.ui.internal.PerspectiveBarContributionItem$1.widgetSelected(PerspectiveBarContributionItem.java:92)
         at org.eclipse.swt.widgets.TypedListener.handleEvent(TypedListener.java:227)
         at org.eclipse.swt.widgets.EventTable.sendEvent(EventTable.java:66)
         at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:938)
         at org.eclipse.swt.widgets.Display.runDeferredEvents(Display.java:3682)
         at org.eclipse.swt.widgets.Display.readAndDispatch(Display.java:3293)
         at org.eclipse.ui.internal.Workbench.runEventLoop(Workbench.java:2389)
         at org.eclipse.ui.internal.Workbench.runUI(Workbench.java:2353)
         at org.eclipse.ui.internal.Workbench.access$4(Workbench.java:2219)
         at org.eclipse.ui.internal.Workbench$4.run(Workbench.java:466)
         at org.eclipse.core.databinding.observable.Realm.runWithDefault(Realm.java:289)
         at org.eclipse.ui.internal.Workbench.createAndRunWorkbench(Workbench.java:461)
         at org.eclipse.ui.PlatformUI.createAndRunWorkbench(PlatformUI.java:149)
         at org.eclipse.ui.internal.ide.application.IDEApplication.start(IDEApplication.java:106)
         at org.eclipse.equinox.internal.app.EclipseAppHandle.run(EclipseAppHandle.java:169)
         at org.eclipse.core.runtime.internal.adaptor.EclipseAppLauncher.runApplication(EclipseAppLauncher.java:106)
         at org.eclipse.core.runtime.internal.adaptor.EclipseAppLauncher.start(EclipseAppLauncher.java:76)
         at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:363)
         at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:176)
         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 org.eclipse.equinox.launcher.Main.invokeFramework(Main.java:508)
         at org.eclipse.equinox.launcher.Main.basicRun(Main.java:447)
         at org.eclipse.equinox.launcher.Main.run(Main.java:1173)
    How to remove this type of error please help me. I need help.plz reply

    What version of Lomboz are you using? J2EE View was available in Lomboz 2.x releases and is not found in later releases. These olde versions used a lightweight JSP editor based on jasper. Your message looks like it is related to that.
    I would recommend upgrading to one of the later releases such as 3.3, which can be found at:
    http://lomboz.objectweb.org/downloads/download.php
    If you have to pursue your current version, you can post your Lomboz releated help messages at and we will try to help you:
    http://forge.objectweb.org/forum/forum.php?forum_id=360

  • I just got the iPhone 5.  It's completely synced and working.  All my contacts are loaded.  However, caller ID is not working when I receive a call or a text.  Can anyone help me out with this?

    I just got the iPhone 5. It's completely synced and working.  All my contacts are loaded.  However, caller ID is not working when I receive a call or a text.  Can anyone help me out with this?

    Well, assuming all of the above, Notifications, etc., it just might be time for a visit to the Apple tore genius center for a session with the techs.  See if it is a fault in the hardware or just an iOS reinstall is the answer.
    One more thing you could try, backup so you have a record of content, then restore to factory conditions be an Erase All Contents and Settings.  Then restore from the backup you just made.  That has helped some with WiFi problems, may be it would work with your problems.
    But with that behavior of another app with problems, the geniuses looks like a less stressful thing to do.

  • Google street view not working on firefox 14.0.1

    google street view not working on firefox 14.0.1 - after moving the person to the map it goes blank. Have tried the fixes in the community support. Still works fine in IE

    Do you have Flash installed? You need a different version of it for Firefox. The plugin for IE will not work with Firefox. You can get it here:
    http://www.adobe.com/products/flashplayer/distribution3.html

  • Customized strings in iPad viewer not working?

    Hello,
    per request of client i've tried to change one string in viewer for iPad. So i've created template in DSP App Builder, modified this template on my computer, choose this file in App Builder and prepared another build (V28). Unfortunately, i still see old original string (i've double tested that i'm downloading new version of app). When i now check DPS App Builder, it just says "Asset stored on server", so i asume, that everything goes smoothly on this side.
    Any similar experience with customized strings?
    Thanks
    Martin

    Everything was done from scratch with V28.
    1. 10. 2013 v 16:14, Bob Bringhurst <[email protected]>:
    Re: Customized strings in iPad viewer not working?
    created by Bob Bringhurst in Digital Publishing Suite - View the full discussion
    That's odd. It worked for me when I tested it. Perhaps you should try moving the current xml file to a different folder, downloading a new version, copying and pasting, and rebuilding.
    Please note that the Adobe Forums do not accept email attachments. If you want to embed a screen image in your message please visit the thread in the forum to embed the image at http://forums.adobe.com/message/5728130#5728130
    Replies to this message go to everyone subscribed to this thread, not directly to the person who posted the message. To post a reply, either reply to this email or visit the message page: http://forums.adobe.com/message/5728130#5728130
    To unsubscribe from this thread, please visit the message page at http://forums.adobe.com/message/5728130#5728130. In the Actions box on the right, click the Stop Email Notifications link.
    Start a new discussion in Digital Publishing Suite at Adobe Community
    For more information about maintaining your forum email notifications please go to http://forums.adobe.com/message/2936746#2936746.

  • My Pavilion g7-1075dx notebook's sound is not working since I received an IDT update yesterday.

    My Pavilion g7-1075dx notebook's sound is not working since I received an IDT update yesterday.  The audio icon on the task bar has a red X and when I try to enable sound it says "detecting problems," followed by "Troubleshooter could not identify problem.  
    I "troubleshooted" sound under HP Support Assistant and it showed IDT High Definition Audio CODEC Error(52) stwrt64.sys version 6.10.6341.0
    I tried to restore the system to pre-update but that didn't work.  HP, help....

    When insert my earpee sound still come out in the main speakers i have gone to control plane tried changing the options still is not working..

  • A/c doc not created and error msg "Business Area Miss-Match Check input"

    Hi,
    After creation of new Plant and Business area create a invoice , But my accounting document does't created and error msg show "Business Area Miss-Match Please Check Your Input". plz suggest me.
    Regards,
    Sohail

    Dear Sohail Rahman,
    Looks like the Business area has not been properly assigned.
    Business area can be created for three combinations:
    1. Business area by sales area
    2. Business area by plant and division
    3. Business area by plant and item division
    In your case, check whether the business area is maintained for the combination of plant/division and plant/item division.
    Hope this helps
    Thanks
    Murtuza

  • Why did not I got assignment of Business Area by sales Area

    Hi Experts,
    Can anybody please tell me,
    Why did not I got assignment of Business Area by sales Area in following path.
    IMG  -- Enterprise Structure  --  Assignment  --  Sales and Distribution  --  Business Area Account Assignment --  Assign Business Area by Sales Area.
    Please help.

    HI,
    For business area assignment to Sales Area there the Steps u need to follow.
    1.Define Business Area
    2.Then maintain Consolidated business Area
    3.Now in Assignment in Define rule by Salee Area u have to select Rule 002 which indicate
      Rule     002     Business area determination from sales area Table use (TVTA)
    Then u will find the data in Assign business Area by sales Area Screen & u can fill the business area there .
    I hope this will help u
    Regards
    Deepak

  • Vendor account balance business area wise

    Please guide me for taking vendor account balances business area wise

    Hi Sarath,
    Goto FBL1N enter your vendor codes company code and posting dates in dynamic selections select your respective business area.

Maybe you are looking for

  • How to back up music and video from  iphone to laptop.

    I have a problem about my boss's iphone. His iphone is 3G apple.he want to move music and video from his iphone to his laptop.His laptop use Window xp professional Sp 2 and has itue 8.He want to back up music and video in his laptop because the music

  • Display HTML 5 code in Design View in DW CS5 (was: HTML 5)

    Even if I can write code in my old version of Dreamweaver it still doesn't show up in Design mode. I tried to make rounded corners and I couldn't figure out why it didn't work. Then I checked in a browser - and Voila! Is there a way to update DWCS5 s

  • Problem with Config Agent

    Hello together, I have noticed that I can only distribute configuration parameter with my agent when I distribute an application at the same time. Can I distribute only configuration parameters to my devices? Perhaps exists a parameter for this behav

  • WRT54GX2 setup won't recognize PPPoE

    Hello, I have a computer (Windows XP) running DSL on PPPoE, no modem, the cable goes straight from the wall to the PC. I have a WRT54GX2 that usually works fine. However, installation of the router fails as of late. I remember when I started the setu

  • How to use dictation in mountain lion?

    How do you use dictation in Mountain Lion.  The site says you just have to speak anywhere you can type and it will dictate.  Please advise. Thanks!