Problem with custom Reports and forms in R12

Hi All,
we are upgrading from 1103 to R12. In R12 we are facing a peculiar problem with Reports. All seeded reports are running perfectly. But no data is coming while running the custom reports. The operating unit field in the SRS window is getting populated automatically while running the seeded reports but getting greyed off while running custom reports.
We are facing the same problem with forms even, data is not getting retrieved in custom forms. Can any one suggest wether there is any profile option which is being missed out by us. ..
Thank you,
Regards
Raj

Add SRW.USER_EXIT('FND SRWINIT') in the afterPForm trigger.
This will set the org context for reports.
~Sukalyan Ghatak

Similar Messages

  • Problems with Customer Service AND unexplained charges!

    I've been with Verizon for I-don't-know-how-many years, and through the years you are bound to have a few problems here and there but some of the problems are just ridiculous! It's also the same reocurring problem!!!!!!!!!!!!!!!! I was with Alltel first, before it was bought out by Verizon. The years I was with Alltel, I didn't have near as many problems. It seems EVERY time I do the smallest change or something to my phone or bill, I get a ridiculous amount of charges that I was NOT aware of, nor told about... EVEN IF I ask "So this isn't going to change my bill, or there will not be any unexpected/unexplained charges that I don't know about?"... BUT not matter how many times I ask... and NO matter how many times I am told "no"... there always is. For example.... last year, I updated and signed a new 2 year contract and purchased the first Driod. Before, my 30 day warranty was up, I was having problems with my Driod, and decided to send it in and get a new one. Before I did this.. I called customer service to make sure there would be no interuption in my bill, and there wouldn't be any unexpect charges, and there would be no difference in anything. I was told there was not, and once I recieved my new phone, just send it in and nothing would be changed. Of course, when I get my bill.. I see I was charged $500 for the new phone. It was explained to me that my credit card was reimbursed (which I never check that card, because I never used it expect to purchase the phone) and that I was recharged for the new phone, since it was a new phone. So I had to fork out the $500 (on top of my bill) and then wait months to get the $100 rebate card. Months after that, I "assumed liablity of my line" because I was on a plan with my family. I decided to have my own line, so I "assumed liability." I was not told that when I did that, I "renewed" my contract date. So I just added 6 more months to my 2 year contract. Was NOT told about that! Then again...... I was recently having problems with my Driod (the screen went black and would not come back on.) I had to turn on an OLD motorola razor, so I would not be without a phone for two days while I was waiting on my phone to come in. As soon as my phone came in, I had my Droid turned back on. I recieved my bill recently, and my bill was $200 over what it normally should be.... so I called in... apparently, when I had my phone replaced, they dropped off my data package and when I recieved my replacement driod, they never put it back on. So I was being charged for alllll my data usage... again I was NOT told about this. I wasn't even aware that they had dropped off my data package, and when/where did they get the authority to do that??? These are just a FEW of the problems that I have had.................................
    Does anyone have these reoccuring problems!?

    I understand that my bill can be viewed online, and I do view it fairly regularly, so if there are any unexplained charges, I can call Verizon asap. The problem does not come from me not understanding my bill, but from customer service. I have been with Verizon for a very long time, and it is a continuing problem. Where did Verizon get the 'OK' to drop my data package off my plan? Who authorized that?
    After calling Verizon and trying to find out the problem, the gentleman told me that when I activated on old phone while I was waiting on my new Droid to arrive, my data package was dropped off and I "should" have been told about that. When I reactiviated my new Droid, I "should" have called and had them restart my data package. I was not aware that when you activate an old phone that data plan is taken off your plan. In all my years of having cell phones, I never make two years with one phone. I have always, at one point, had to turn on an old phone, and my data package has NEVER changed. Why would I have my data package dropped and why would I have to call Verizon to have it restarted. I would never know to do that unless I was TOLD that my data packaged HAD to be re-added when I recieved my new phone, but I was never told of that.
    All of that is beside the point, the point is, Verizon was never given the authorization to change my plan. Never. My bill was taken care of and readjusted, and I am thankful for that. It does not change the fact it is always a hassle with Verizon Customer Service and I am always the one having to PROVE that I am not at fault, or that I was NEVER told of certian things. EVERY TIME I HAVE CALLED CUSTOMER SERVICE, I AM TOLD "I'M SORRY, THEY SHOULD HAVE TOLD YOU THAT."
    "they should" does not help my bill with the extra armount of charges.

  • Problem with custom control and focus

    I've a problem with the focus in a custom control that contains a TextField and some custom nodes.
    If i create a form with some of these custom controls i'm not able to navigate through these fields by using the TAB key.
    I've implemented a KeyEvent listener on the custom control and was able to grab the focus and forward it to the embedded TextField by calling requestFocus() on the TextField but the problem is that the TextField won't get rid of the focus anymore. Means if i press TAB the first embedded TextField will get the focus, after pressing TAB again the embedded TextField in the next custom control will get the focus AND the former focused TextField still got the focus!?
    So i'm not able to remove the focus from an embeded TextField.
    Any idea how to do this ?

    Here you go, it contains the control, skin and behavior of the custom control, the css file and a test file that shows the problem...
    control:
    import javafx.scene.control.Control;
    import javafx.scene.control.TextField;
    public class TestInput extends Control {
        private static final String DEFAULT_STYLE_CLASS = "test-input";
        private TextField           textField;
        private int                 id;
        public TestInput(final int ID) {
            super();
            id = ID;
            textField = new TextField();
            init();
        private void init() {
            getStyleClass().add(DEFAULT_STYLE_CLASS);
        public TextField getTextField() {
            return textField;
        @Override protected String getUserAgentStylesheet() {
                return getClass().getResource("testinput.css").toExternalForm();
        @Override public String toString() {
            return "TestInput" + id + ": " + super.toString();
    }skin:
    import com.sun.javafx.scene.control.skin.SkinBase;
    import javafx.beans.value.ChangeListener;
    import javafx.beans.value.ObservableValue;
    import javafx.event.EventHandler;
    import javafx.scene.control.TextField;
    import javafx.scene.input.KeyCode;
    import javafx.scene.input.KeyEvent;
    public class TestInputSkin extends SkinBase<TestInput, TestInputBehavior> {
        private TestInput control;
        private TextField textField;
        private boolean   initialized;
        public TestInputSkin(final TestInput CONTROL) {
            super(CONTROL, new TestInputBehavior(CONTROL));
            control     = CONTROL;
            textField   = control.getTextField();
            initialized = false;
            init();
        private void init() {
            initialized = true;
            paint();
        public final void paint() {
            if (!initialized) {
                init();
            getChildren().clear();
            getChildren().addAll(textField);
        @Override public final TestInput getSkinnable() {
            return control;
        @Override public final void dispose() {
            control = null;
    }behavior:
    import com.sun.javafx.scene.control.behavior.BehaviorBase;
    import javafx.beans.value.ChangeListener;
    import javafx.beans.value.ObservableValue;
    import javafx.event.EventHandler;
    import javafx.scene.input.KeyCode;
    import javafx.scene.input.KeyEvent;
    public class TestInputBehavior extends BehaviorBase<TestInput> {
        private TestInput control;
        public TestInputBehavior(final TestInput CONTROL) {
            super(CONTROL);
            control = CONTROL;
            control.getTextField().addEventFilter(KeyEvent.KEY_PRESSED, new EventHandler<KeyEvent>() {
                @Override public void handle(final KeyEvent EVENT) {
                    if (KeyEvent.KEY_PRESSED.equals(EVENT.getEventType())) {
                        keyPressed(EVENT);
            control.focusedProperty().addListener(new ChangeListener<Boolean>() {
                @Override public void changed(ObservableValue<? extends Boolean> ov, Boolean wasFocused, Boolean isFocused) {
                    if (isFocused) { isFocused(); } else { lostFocus(); }
        public void isFocused() {
            System.out.println(control.toString() + " got focus");
            control.getTextField().requestFocus();
        public void lostFocus() {
            System.out.println(control.toString() + " lost focus");
        public void keyPressed(KeyEvent EVENT) {
            if (KeyCode.TAB.equals(EVENT.getCode())) {
                control.getScene().getFocusOwner().requestFocus();
    }the css file:
    .test-input {
        -fx-skin: "TestInputSkin";
    }and finally the test app:
    import javafx.application.Application;
    import javafx.scene.Scene;
    import javafx.scene.control.TextField;
    import javafx.scene.layout.GridPane;
    import javafx.stage.Stage;
    public class Test extends Application {
        TestInput input1;
        TestInput input2;
        TestInput input3;
        TextField input4;
        TextField input5;
        TextField input6;
        Scene     scene;
        @Override public void start(final Stage STAGE) {
            setupStage(STAGE, setupScene());
        private Scene setupScene() {
            input1 = new TestInput(1);
            input2 = new TestInput(2);
            input3 = new TestInput(3);
            input4 = new TextField();
            input5 = new TextField();
            input6 = new TextField();
            GridPane pane = new GridPane();
            pane.add(input1, 1, 1);
            pane.add(input2, 1, 2);
            pane.add(input3, 1, 3);
            pane.add(input4, 2, 1);
            pane.add(input5, 2, 2);
            pane.add(input6, 2, 3);
            scene = new Scene(pane);
            return scene;
        private void setupStage(final Stage STAGE, final Scene SCENE) {
            STAGE.setTitle("Test");
            STAGE.setScene(SCENE);
            STAGE.show();
        public static void main(String[] args) {
            launch(args);
    The test app shows three custom controls on the left column and three standard textfields on the right column. If you press TAB you will see what i mean...

  • Customized Reports and Forms

    How do I attach a customized report to a customized form? The customized form was based on a standard Oracle Application Form which submits a report upon commit.

    How do I attach a customized report to a customized form? The customized form was based on a standard Oracle Application Form which submits a report upon commit. Not sure if this helps; but you may want to look at fnd_request.submit_request in the applications developer guide. The report would need to be defined as a concurrent program, etc.
    Ken Ken,
    Thanks a lot...

  • Problems with custom roms and recovery

    Hello, recntly ive unlocked the bootloader of my xperia z2 and flashed xzdualrecovery and paranoid android. a few days later paranoid android had problems with calling so ive decided to flash another rom so i downloaded the aroma installer of existenz ultimate 3.0 and tried to install it with cwm recovery. it didnt work on cwm so i tried to install twrp with a 1-click twrp flashtool. i didnt get the twrp recovery working so i ened up still having cwm. then i rebooted my phone into flashmode/fastboot mode to flash my recovery with fastboot witch didnt work either. i booted back to cwm and flashed cm11s for the xperia z2. but then when i started booting up into thesystem my phone stuck in the bootanimation, so i tried to flash the boot.img from the rom but my phone wont enter fastboot mode.

    You should check the XDA Forum
    "I'd rather be hated for who I am, than loved for who I am not." Kurt Cobain (1967-1994)

  • Problem with Oracle8i Lite and Forms 6i

    Problem:
    I have installed first Oracle8i Lite Version 4.0.0.2.0 on my computer witch has no network card and it works wery well with The Open Client Adapter (OCA).
    Then, I have installed Oracle Forms and Reports Release 6i, and from this moment, I get this message : "OCA-30002: ubofscr function not supported".
    In the release notes, I can read :
    "OCA Release 6.0.5.3.0 is installed for compatibility with Oracle Required Support Files version 8.0.5. If you install newer client tools which upgrade your Required Support Files to version 8.0.5.1, you may experience an error message, "OCA-30002: ubofscr function not supported". To upgrade OCA to correct this problem, copy the OCA605290.zip file from the \WIN32 folder of the Oracle8i Lite CD-ROM, unzip it and follow the instructions in the README.TXT file which it contains."
    But on my Oracle8i Lite CD-ROM, there is no OCA605290.zip file from the \WIN32 folder.
    What can I do ?
    null

    You could try to "hide" the db-link by creating a local view above the dblink-table.

  • Problem with Custom Theme and Color of Registers

    Hi everybody,
    I am implementing a custom theme with EP SP 15 (Sneak Preview). All the changes I am making in the Theme Editor are displayed correctly, except for the colors of the registers.
    The preview in the Theme editor works fine but when I activate the theme in the portal the background of the registers is still the same as in the standard theme (the images for the borders or the registers however are the ones I chose).
    I read about the caching problem in the SAP library and deleted the browser cache before saving but it didn't help.
    Any ideas or hints would be appreciated!
    Regards Andy

    Hi,
    If you are talking about custom registration page, accessed via login page, you have to change its background manually by editing logon package. There is a procedure on help.sap.com how to change logon page.
    Here I'm pasting the necessary parts. But hava a look at original doc.
    To customize the logon UI, we recommend the following procedure:
       1. Make a copy of com.sap.portal.runtime.logon.par.bak and rename it. In this example, it is renamed to my.new.logon.par.
       2. Move my.new.logon.par to a location outside of the <SAPJ2EEngine-deployment-dir>.
       3. Extract the files from my.new.logon.par preserving the directory structure.
       4. Modify files in the extracted PAR file.
       5. Put the modified files back into my.new.logon.par.
       6. Copy my.new.logon.par back to <SAPJ2Eengine-deployment-dir>\cluster\server\services\servlet_jsp\work\jspTemp\irj\root\WEB-INF\deployment\pcd.
       7. Rename the file <SAPJ2Eengine-deployment-dir>\cluster\server\ume\authschemes.xml.bak to authschemes.xml.
       8. In authschemes.xml, replace all occurrences of the string "com.sap.portal.runtime.logon" with "my.new.logon" in the tags <frontendtarget> and save the file.
       9. Restart the portal.
    --> Changing the authschemes.xml File
    You can change the authschemes.xml file using the Config Tool of SAP Web Application Server Java. When you edit the file, you should download the file to a local directory, edit it, and when uploading the edited file, create a new node in the configuration tree for it. In this way you do not loose the original version of the file.
           1.      Start the Config Tool by executing <SAPJ2EEEngine_installation>\j2ee\configtool\configtool.bat.
           2.      Choose the symbol for Switch to configuration editor mode.
           3.      In the tree, navigate to cluster_data u00AE server u00AE persistent u00AE com.sap.security.core.ume.service.
           4.      To switch to edit mode, choose  (Switch between view and edit mode).
           5.      In the tree, select authschemes.xml and choose  (Show the details of the selected node).
           6.      Choose Download and save the file to a local directory.
           7.      Edit the file locally.
           8.      Create a new node in the configuration tree for the edited file as follows:
                                a.      Select the node com.sap.security.core.ume.service.
                                b.      Choose the symbol for Create a node below the selected node ().
                                c.      Select the type File-entry.
                                d.      Choose Upload and select the file from your local directory.
                                e.      Enter the name for the entry, for example, authschemes_productive.xml. By default, the name of the uploaded file is used.
                                  f.      Choose Create.
                                g.      Choose Close window.
    The new node appears in the configuration tree.
    For UME to use the new file, you have to change the value of the property login.authschemes.definition.file to the name of the new authschemes file. Change the property as described in Editing UME Properties.
           9.      Restart the nodes in the cluster for the changes to take effect.

  • Problem with Interactive Reports and IE 7

    When using IE 7 a user clicks on any of the Interactive Reports options from the "Gear" pulldown and the popup apprears for a fraction of a second then disappears. This occurs in all of the options. I'm using IE 6 and it works fine for me. Has anyone seen this behavior with IE 7?

    Hello Bernd,
    The problems is that they can't read the Flash contents. Video let appear a black window and Animation let appear the Flash logo in B&W.
    I think, at less for Windows 8, that a plug in flash is installed on Internet Explorer. So when you want to get Flash player, an alert tell you that flash is already installed. ...

  • Problems with custom FileSystemView and MultiSelection

    Hi
    I made a custom FileSystemView which can browse a ftp server. When the setMultiSelectionEnabled property is set to false, everythings working perfectly. The getSelectedFile method returns the correct selected file. However, when the multiselection is set to true, the getSelectedFiles method returns nothing, and the selected files doesnt even show in the JFileChooser "selected files" textfield.
    I find it strange cause i thought the only thing multiselection was doing differently was creating a file object array instead of a single file object. So if single selection works, multiselection should work too, no?
    Has this ever happened to anyone?

    nope,
    sorry enabling GEOMETRY_NOT_SHARED didnt do anything. i think it has something to do with the implementation of the SceneGraphIO interface.

  • Please give the complete code for the below problems with action page and Form.

    Create an array, which is holding ‘n’ strings (words), , and implement the functionality to search given string  is present in the array. Give an option to the user to enter the word  to be searched
    Create a static array of ‘n’ numbers , and implement the functionality to search given number is present in the array. Give an option to the user to enter the number to be searched
    Implement the functionality to search given word is present with in the predefined sentence. Give an option to the user to enter the word  to be searched

    As haxtbh has pointed out, these forums are for HELPING you fix code you've already tried and are having issues with.  We aren't here to write your code, whether for a project or homework, from scratch.  We can only help you if you help us by making an attempt.
    V/r,
    ^_^

  • JCheckBox as nodes in JTree having problems with custom renderer and editor

    Ok, let me give some background. I have an XML document that I am parsing and reading in as a JTree. Works fine.
    Next, I have overwritten the DefaultTreeCellEditor to return a JCheckBox and in this implementation of the getTreeCellEditorComponent(), I actually tell the node that he is selected. Works great.
    Next, I have overwritten the DefaultTreeCellRenderer to return a JCheckBox and in the implementation of the getTreeCellEditorComponenet, I actually check to see if the Node is selected in the tree based upon the isSelected state of the actual Tree Node set in the tree cell editor, and if so, I set the JCheckBox to selected(true).Works Great.
    Now, here is the issue. If a node in the tree is selected that contains children, then I want all of the children of that node to also be selected. However, when I select a node with children only the selected node is changed, and then a few moments later, the system repaints the entire tree and ALL nodes int the tree are set to a selected state. Strange? Yes. Any ideas?? WONDERFUL!! :)
    Here is the TreeCellEditor code:
    public Component getTreeCellEditorComponent(JTree tree,
    Object value,
    boolean isSelected,
    boolean expanded,
    boolean leaf,
    int row)
    elementCheckBox_ = new JCheckBox();
    Component result = null;
    System.out.println("isSelected? Editor = " + isSelected);
    TreePath newPath = tree.getPathForRow(row);
    System.out.println("value = " + value.getClass().toString());
    if(value instanceof IMarketTreeNodeElement)
    if(isSelected)
    if(((IMarketTreeNodeElement)value).isSelected())
    ((IMarketTreeNodeElement)value).setSelected(false);
    else
    ((IMarketTreeNodeElement)value).setSelected(true);
    elementCheckBox_.setSelected(isSelected);
    return elementCheckBox_;
    Here is the TreeCellRenderer code:
    public Component getTreeCellRendererComponent(JTree tree,
    Object value,
    boolean selected,
    boolean expanded,
    boolean leaf,
    int row,
    boolean hasFocus)
    Color colSelBorderCol = UIManager.getColor
    ("Tree.selectionBorderColor");
    selBorder_ = BorderFactory.createLineBorder(colSelBorderCol, 1);
    normBorder_ = BorderFactory.createEmptyBorder(1,1,1,1);
    elementCheckBox_.setText(value.toString());
    if(selected)
    elementCheckBox_.setSelected(selected);
    elementCheckBox_.setForeground(Color.YELLOW);
    elementCheckBox_.setBackground(Color.RED);
    else
    elementCheckBox_.setForeground(tree.getForeground());
    elementCheckBox_.setBackground(tree.getBackground());
    if (hasFocus)
    elementCheckBox_.setBorder(selBorder_);
    else
    elementCheckBox_.setBorder(normBorder_);
    return elementCheckBox_;
    Here is the Node Code setting all child nodes to selected:
    public void setSelected(boolean selected)
    isSelected_ = selected;
    if(isSelected_)
    if((this.getTagName() == "MARKET") ||
    (this.getTagName() == "TIER") &&
    (this.getChildCount() != 0))
    selectChildren(true);
    else
    if((this.getTagName() == "MARKET") ||
    (this.getTagName() == "TIER") &&
    (this.getChildCount() != 0))
    selectChildren(false);
    public boolean isSelected()
    return isSelected_;
    public void selectChildren(boolean selected)
    int children = getChildCount();
    for(int i = 0; i < children; i++)
    IMarketTreeNodeElement elem = (IMarketTreeNodeElement)
    this.getChildNodes().item(i);
    isSelected_ = selected;
    Thanks for any help! :-)

    I tried to run your sample code and it won't compile. The header files:
    #include
    #include
    #include
    #include
    #include
    do not exist on my install of MeasurementStudio. I am a bit suspicous that I don't have the latest and greatest (loading the dialong resouce gave version warnings). Here is one of my header file headers:
    //==============================================================================
    // Title : NiAxes3d.h
    // Copyright : National Instruments 1999. All Rights Reserved.
    // Purpose : Defines the CNiAxes3D class.
    //==============================================================================
    I
    looked on your updates site and don't really see an update that applies to ComponentWorks or MeasurementStudio. My version per the MAX program for 3DControls is 3.5.549.
    Do I need a newer version? What do I have to do to get the updated version? What does it cost?
    Chuck

  • Fonts problems with PDF reports and Lexmark printers

    Hi,
    since yesterday we use Oracle Reports Services 10.1.2.3.0 as our productive reports services.
    When we print PDF reports on one of the following printers, the fonts size isn't correct (in the report defined as font size 8, on the paper the font size is about 16!).
    - Lexmark T620 PS3
    - Lexmark W820 PS3
    The printers work correct if I print out a PDF file via Adobe Acrobat Reader.
    Best regards
    Flo

    Hi,
    I'm afraid that this was a couple of years ago so I can't remember the font we used.
    If memory serves then I think it is something to do with True Type fonts.
    Have you searched Metalink? I think that's where I originally got some advice about the fonts in PDF documents.

  • Problem with reports and forms

    Hello,
    I have a problem regarding a report and a problem regarding a form.
    My tables are as follows:
    Account           customer          account_customer (intersecting table because of N:M relationship)
    Account_id     Customer_id     Account_id
    Account_name     Customer_name     Customer_id
    Account_date     Customer_date
    Account_by     Customer_by
    I need a report that shows all the accounts and for every account all the customers connected to it.
    The results I get now is i.e:
    1     Account1     2007-09-17     admin     Customer1
    1     Account1     2007-09-17     admin     Customer2
    1     Account1     2007-09-17     admin     Customer3
    I want it to be like this or any other suggestion you have:
    1     Account1     2007-09-17     admin     Customer1
    Customer2
    Customer3
    The form-problem is that I have two select lists where the first one (group) determines what is included in the second one (group members)
    I want to choose group in the first select list and then only get the selected groups members in the second select list. How have you solved this?
    Best regards
    //Jens

    Hi
    For the form with the select list either:
    1. make the GROUP item type as select list with submit and include an unconditional page process to return to that page after page processing, computation and validation. The GROUP MEMBER should be normal select list.
    2. Else use AJAX select list as mentioned in the following example: http://apex.oracle.com/pls/otn/f?p=11933:37:1556916731898705::NO:::
    Thanks,

  • I think pesimo customer service three days, I'm looking for someone I can ayudr activation problem with my CC and can not find anyone who can help me.

    I think pesimo customer service three days, I'm looking for someone I can ayudr activation problem with my CC and can not find anyone who can help me.

    Online Chat Now button near the bottom for Activation and Deactivation problems may help
    http://helpx.adobe.com/x-productkb/policy-pricing/activation-deactivation-products.html

  • Problems with Custom Paper Size and Address Book

    I'm having some trouble printing from Address Book onto a custom paper size. I'm attempting to set up a notecard, and only print one at a time, rather than multiple columns as in the Labels option. The trouble is that when creating this small size, Address Book doesn't recognize it as anything other than a regular sheet of US Letter, and thus prints the address in the middle of the page.
    I have no problem printing envelopes, though, which seems odd because they too go in the manual feed for my printer. The notecards are similar width to the envelopes, but only about half the length.
    Has anyone else experienced problems with custom paper sizes printing improperly? I'm using an HP 4515 LaserJet, but have access to a few other laser printers. Thanks for any insight

    I have had the same problem, and with the same result; Adobe Tech Support can't help or fix, after 15 hours on phone, Level 2 support. It is a software bug Adobe has, and can't seem to fix.  I just upgraded to Lightroom CC, and my problem migrated with the upgrade.  I print in Photoshop fine.
    If you found an answer, I would appreciate  knowing how to do it!
    Thanks

Maybe you are looking for

  • How to install Windows 7 on Lenovo S300

    Hi, I bought Lenovo s300, and it has come with Windows8. However I would like to install Windows 7. I make bootable on USB, but I cant manage to boot up from it. What I should select in BIOS. What is the best way to arrange partitions. I have SSD 24g

  • Can't get timeout to work as expected for USB VISA

    Hi, I'm using VISA in LabVIEW (7.1) to talk to a custom USB device. My program transmits a request and waits for the response (See attached block diagram). The response may take a long time and my program then sits in the Read vi and becomes unrespon

  • How to pass the report parameters through java not by using URL

    Hello... I have an oracle App. Server 10g with report service I can the report using the URL : http://host:Port/rwservlet/report=.... and passing the report parameters ... But is there any way to call the report by pdf format and passing the paramete

  • Automatic Cenvat Clearing Not Happening

    Dear All,, We made automatic clearing configuration for Cenvat clearing .In that i selected criteria EBELN, EBELP,PRCTR,XBLNR, But i am not able to clear cenvat clearing in F.13. Kindly tel me,Is there any setting is missing. Kindly suggest me for co

  • IMessages work in two or more "i"s

    Greattings, may be this is an old-news. When you are using an apple id's Email in your Caller ID in many iphones or ipads, all of them will receive the same incoming message, and the Notifications will show on. If you are using another Email, then on