Applet problem very strange must read

Hi
all of u.
I have very strange problem in applet.
i created a news ticker in java applet that is running successfully . i kept in the site also that is working .when i created two same applet in my one page it will get out side after 2 hours .out side that means on the top of window. if i use only one then its ok. i don't know what happen.if any one know the solution plz tell me what is the issue.
rakesh.

Hi Rohit,
It was nice to hear that your problem is solved. Thanks for sharing the solution with all of us .
Regards
Vineeth

Similar Messages

  • XSLT problem (very strange problem)

    I am working on TRANSFORM activity. The schema of element that is giving problem in destination schema is ...
    <xs:element name="CustomInformation">
    <xs:complexType>
    <xs:sequence>
    <xs:element name="ColumnValue" minOccurs="0" maxOccurs="unbounded">
    <xs:complexType mixed="true">
    <xs:sequence>
    <xs:element name="Value" minOccurs="0" maxOccurs="unbounded"/>
    <xs:element name="Documents" type="DocumentsType" minOccurs="0"/>
    <xs:element name="tsvData" type="tsvType" minOccurs="0" maxOccurs="unbounded"/>
    </xs:sequence>
    <xs:attribute name="name" type="xs:string" use="required"/>
    </xs:complexType>
    </xs:element>
    <xs:element name="instance" type="InstanceType" minOccurs="0" maxOccurs="unbounded"/>
    </xs:sequence>
    </xs:complexType>
    </xs:element>
    I want output like this...
    <ns1:CustomInformation>
    <ns1:ColumnValue name="client_name">value of source field</ns1:ColumnValue>
    <ns1:ColumnValue name="fa_sales_owner">value of source field</ns1:ColumnValue>
    </ns1:CustomInformation>
    I am trying this code in TRANSFORM source code...
    <ns1:CustomInformation>
    <ns1:ColumnValue>
    <xsl:attribute name="name">
    <xsl:text disable-output-escaping="no">client_name</xsl:text>
    </xsl:attribute>
    <xsl:text disable-output-escaping="no">*<xsl:value-of select="/ns0:SfOpportunityIntfCollection/ns0:SfOpportunityIntf/ns0:accountName"/>*</xsl:text>
    </ns1:ColumnValue>
    <ns1:ColumnValue>
    <xsl:attribute name="name">
    <xsl:text disable-output-escaping="no">fa_sales_owner</xsl:text>
    </xsl:attribute>
    <xsl:text disable-output-escaping="no">*<xsl:value-of select="/ns0:SfOpportunityIntfCollection/ns0:SfOpportunityIntf/ns0:clientExecutive"/>*</xsl:text>
    </ns1:ColumnValue>
    </ns1:CustomInformation>
    against this xml...
    <SfOpportunityIntfCollection xmlns="http://xmlns.oracle.com/pcbpel/adapter/db/top/iSalesAdapter">
    <SfOpportunityIntf>
    <accountId>3</accountId>
    <accountName>4</accountName>
    <clientExecutive>15</clientExecutive>
    <recordType>16</recordType>
    </SfOpportunityIntf>
    </SfOpportunityIntfCollection>
    But the element 'ColumnValue' is coming blank(tag <xsl:value-of> is not working). while the same statement is working out of <customInformation> element!!!
    Can anybody help me?

    Thanks for the link.
    I created a seperate project for xslt but still the same problem. But when I tried with removing <xsl:text disable-output-escaping="no">, it worked. Very strage, but yet don't know what was the problem :) If you know then please let me know.
    Can you help me in other queries too...
    1. In my Empty BPEL process I am receiving data through db partnerlink (through polling) and I am converting it through Transform activity. This time I am only validating my xslt through GUI only. At runtime what xml will be generated, how I can see it? Is there any way to output/log it?
    2. I want one more help from you. In xslt code, I need to put some transformation logic eg. if-else according to the specific value, check for null, blank values etc. Somewhere I read that I can do all this validation in java code also. What will be comfortable?
    3. In output xml, I want to remove the xml declaration as well as namespace declaration for 'ns1' and all prefixed 'ns1' from all element. Is that possible in the same transform process? like this...
    *<NikuDataBus>*
    *<Projects>*
    *<Project name="2" projectID="1" description="13" start="2009-08-04T16:02:23.390" finish="2009-08-04T16:02:23.390">*
    *<CustomInformation>*
    *<ColumnValue name="client_name">4</ns1:ColumnValue>*
    *<ColumnValue name="fa_sales_owner">15</ns1:ColumnValue>*
    *</CustomInformation>*
    *</Project>*
    *</NikuDataBus>*
    Please reply for my all queries.
    Edited by: vicky_007 on Aug 4, 2009 4:49 PM

  • EAS Data Load Problem - Very Strange!

    Hi there,<BR><BR>Has anyone came across the following problem?<BR><BR>Within EAS using any of our applications, or a newly created application, if we create a new rule's file (or open an existing) that much is fine.<BR><BR>However - as soon as we try and "Open Data File" to preview the data in the rule's file - EAS just hangs for anything upto 50minutes before popping up the dialog box to select which data file we want to open.<BR><BR>This does not happen on the server - it works straight away, it only happens when we try and do it on any of the client machines.<BR><BR>Anyoen came across anything like this before?<BR><BR>Cheers.

    <blockquote>quote:<br><hr><i>Originally posted by: <b>brianf08</b></i><BR>I have seen something like this on early version of EAS. Exactly what version is installed on your server and client machines. What operating sytem as well.<BR><BR><BR><BR>Brian<hr></blockquote><BR><BR><BR>We are using EAS 7.1.2 as server and client on a Windows 2003 server. Client machines are XP Professional.<BR><BR>Do you think its worth moving upto 7.1.5?

  • PLSQL update problem, very strange, am i making stupid mistake?

    PROCEDURE update_member( membersid in hkmembers.memberid%TYPE,
    firstname in hkmembers.firstname%TYPE,)
    IS
    BEGIN
    update hkmembers
    set FIRSTNAME = firstname
    where MEMBERID = membersid;
    DBMS_OUTPUT.put_line(firstname);
    END;
    i test the procedure, and it returns message telling that the execution is run successfully, but make no effect of the update.....
    i try add "commit;" at the end but it doent work either coz the only thing that commit does is stopping you rollback...
    Can anyone spot my stupid mistake?
    Thank you very much

    Problematic line is:
    set FIRSTNAME = firstname -- column name = parameter name
    Use different names for parameters, for example:
    PROCEDURE update_member(
      p_membersid IN hkmembers.memberid%TYPE,
      p_firstname IN hkmembers.firstname%TYPE)
    IS
    BEGIN
      UPDATE hkmembers
         SET firstname = p_firstname
       WHERE memberid  = p_membersid;
    END;
    /Regards,
    Zlatko
    This is an example of optimistic locking :)
    Message was edited by:
    Zlatko Sirotic

  • HELP! Desperate, All my shape tools are doing something very strange, must have changed a setting but cannot figure out how to change back!

    Hi Everyone,
    I am not sure how I changed the settings however whenever I go to draw a circle or line/shape, the below keeps happening. I have tried closing down and starting Illustrator up again, but it is still doing the same thing! 

    Ella,
    You may try to see whether your Tilde key ~ is stuck.

  • Sending email, very strange

    Hello all!
    I am having a problem very strange.. first i have two procedures that send emails with a pdf in attach, ok the both is indentical.. but when i execute one this show a message with error:
    "ORA-22288- FILE OR LOP OPERATION FAILED"
    but in other the email was send right, i don't know more what can be, th both procedures use the same directory..
    CREATE OR REPLACE procedure P_ENVIA_EMAIL_TESTE (V_REPORT IN VARCHAR2,V_COD_ACCOUNT IN NUMBER) is
    p_sender varchar2(100);
    p_recipients varchar2(100);
    p_subject varchar2(100);
    p_filename varchar2(100);
    p_blob blob;
    V_NOME_ARQUIVO VARCHAR(50);
    conn utl_smtp.connection;
    i number;
    len number;
    vFlob BFILE;
    vBlob BLOB;
    v_arquivo2 varchar2(100);
    BEGIN
    UPDATE CITEMP_EMAIL SET arquivo = (EMPTY_BLOB()) WHERE COD_ACCOUNT = V_COD_ACCOUNT
    Return arquivo Into vBlob;
         vFlob := BFILENAME('ORALOAD',V_report);
    DBMS_LOB.FILEOPEN(vFlob,DBMS_LOB.FILE_READONLY);
    DBMS_LOB.LOADFROMFILE(vBlob,vFlob,DBMS_LOB.GETLENGTH(vFlob));
    DBMS_LOB.FILECLOSE(vFlob);
         SELECT ARQUIVO,EMAIL_CONF, NOME_REPORT INTO P_BLOB, P_RECIPIENTS, v_nome_arquivo FROM CITEMP_EMAIL WHERE COD_ACCOUNT = V_COD_ACCOUNT;
         SELECT SENDER, MARGIN_SUBJECT INTO P_SENDER, P_SUBJECT FROM CIMASTER_EMAIL;
    conn := demo_mail.begin_mail(
    sender => p_sender,
    recipients => p_recipients,
    subject => p_subject,
    mime_type => demo_mail.MULTIPART_MIME_TYPE);
    demo_mail.begin_attachment(
    conn => conn,
    mime_type => 'application/pdf',
    inline => TRUE,
    filename => V_REPORT,
    transfer_enc => 'base64');
    -- split the Base64 encoded attachment into multiple lines
    i := 1;
    len := DBMS_LOB.getLength(p_blob);
    WHILE (i < len) LOOP
    IF(i + demo_mail.MAX_BASE64_LINE_WIDTH < len)THEN
    UTL_SMTP.Write_Raw_Data (conn
    , UTL_ENCODE.Base64_Encode(
    DBMS_LOB.Substr(p_blob, demo_mail.MAX_BASE64_LINE_WIDTH, i)));
    ELSE
    UTL_SMTP.Write_Raw_Data (conn
    , UTL_ENCODE.Base64_Encode(
    DBMS_LOB.Substr(p_blob, (len - i)+1, i)));
    END IF;
    UTL_SMTP.Write_Data(conn, UTL_TCP.CRLF);
    i := i + demo_mail.MAX_BASE64_LINE_WIDTH;
    END LOOP;
    demo_mail.end_attachment(conn => conn);
    demo_mail.attach_text(
    conn => conn,
    data => NULL,
    mime_type => 'text/html');
    demo_mail.end_mail( conn => conn );
    END;
    please help me!

    1) What is the complete error stack? The error should come with a line number, what is on that line?
    2) I'm assuming that you don't have identical procedures in the same database, right? Does that imply that you have a procedure that works on one database and not on another?
    3) Is the ORALOAD directory created on both systems? Do both procedure owners have access to that directory object? Does the Oracle user on the operating system have access to the specified directory on both systems? Does v_report exist on both file systems?
    Justin

  • Very Strange Mailbox problem

    ./imsimta version
    Sun Java(tm) System Messaging Server 6.1 (built Apr 28 2004)
    libimta.so 6.1 (built 12:38:06, Apr 28 2004)
    SunOS mail.abc.com 5.9 Generic_112234-03 i86pc i386 i86pc
    I faced very strange problem last week regarding the mailbox. I have doubt that must be bug in that release. Previously we were using a single box for multiple domain hosted on it so mailboxes were created like user/[email protected]/INBOX expect the mail boxes for user domain matched with hostname domain. Then we separated one of our domain and mail server was created with hostname like mail.abc.com. All application and services was installed successfully and schema 2 was created at LDAP, as I was migration the users so user�s mail boxes must be migrated as well. Default user mailboxes was created on new box as user/uid/INBOX as domain part was missing so I put all the old mailboxes on the same partition where the default one was created and I manually copy over the contents from old one to new one and run ./reconstruct -m command so users wre eable to see all of their pervious mail and folders. Every thing went fine and well later I issue the ./mboxutil �o to get the orphan mailboxes; output gave me all mail boxes which have @domain part. So I create the file from that list and issue the command ./mboxutil �d �f filename. Oh no! Then seriuos problem occurs as the default mailboxes /usr/uid/INBOX deleted as well and technically they should not be because they were not present in the list. Then I create the mailboxes manually or some was created on reception of mail and I notice the user/[email protected]/INBOX is created as well associated to each user.
    So real question is if user/[email protected]/INBOX is linked with default usr/uid/INBOX then why ./mboxutil �o is giving these mailboxes as orphan in the list, if they are not link or associated then why they are created automatically while the new mail boxes created manually or reception of mail.
    I will appreciate if any body can help me with these question based on scenario presented above.

    Youve found a bug with mboxutil -o
    I would have suggested following a different path to achieve your goal.
    I would have suggested using imsbackup to capture the existing mailboxes you wanted to move, and imsrestore to populate the new server.
    the two mailboxes are NOT linked, other than mboxutil is confused.
    by running reconstruct -m, you entered them both into the database. I think this was a bad idea.
    If you were going to manually manipulate mailbox files, I would have removed the old uid@domain mailboxes before running the reconstruct -m
    I would have also run reconstruct -r afterwards. If you had done these, you would not have seen the problem at all.

  • A very Strange Problem!!!help me!!

    i encounter a very strange problem, in EJB
    i write two EJB, one Stateless Session called A, and one Entity called B.
    i want to call B's findByPrimaryKey method in one A's Business, but failed!!!
    but when i remove the statement that performed the findByPrimaryKey method to A's setSessionContext method, It's Success!!!!!
    what the Problem, i am useing the Borland 's AppServer.
    who can help

    how u create the entity bean B from A?
    using proper lookup?
    can u try by write a small function inside bean A
    that contain proper lookup to Bean B...
    then try to call finbyPrimaryKey...
    now tell me is it working?
    or else can u give code or clear idea..
    if i can help u ,,,, sure i will
    do mail me
    [email protected]

  • Very Strange Internet Problems

    I own a MacBook Pro 15.4 Inch that I purchased about a year and a half ago. I recently upgraded to Leopard and have all the latest updates. I am from the US, and when I am home my internet works fine. However, I am on travel to Seoul, South Korea right now and am having a very strange internet problem.
    As far as I can tell, the URLs that I type in to my browser are, sparodially, not translated correctly into the webpages that they are supposed to represent. This problem is probably effective 75% of the time, and the rest of the time my internet works roughly correctly. For instance, when I enter http://www.google.com, instead of being taken to the Google homepage, I am taking to the homepage of Jammin Beats DJ Service, an obscure website about a company in northern Pennsylvania. The actual URL of this website is http://www.jamminbeats.com, but when my internet is malfunctioning, 'jamminbeats' is for all intensive purposes replaced by 'google' (that is, it applies not only to the main page, but to sub pages, so "http://www.google.com/weddings" takes you to "http://www.jamminbeats.com/weddings" and etc). For most other webpages, one of two things happens. Either I am taken to the correct page but it is displayed without any images or frames (just the html text and links), or I am taken to a blank page with the header "Under Construction", which I assume is the default for a page that doesn't exist. This is why it seems as though the URLs are simply being interpretted erroneously.
    This problem occurs when connecting both to the wireless and the wired internet at my hotel, and it occurs on both Safari and Firefox, so it is not a connection-specific or browser-specific problem. It may be a problem with the hotel's internet, and as of yet I have not had a chance to test the computer at another location. However, a colleague using an IBM computer has had no problems, and I am currently on a Samsung machine in the business center of the hotel and it is working correctly as well. I have searched extensively online for a similar problem but have come up empty handed, and more than anything, I am confused about what might be causing this problem. The strangest thing is that a fraction of the time, the internet functions normally, but it is usually roughly 15 minutes out of every hour, and eventually I am inevitably taken back to Jammin Beats.
    I am a computer science graduate but I still have no idea what would cause this problem. At first I thought it might be a hacker, but if it is, he or she has been at it consistently for 3 days now, and only seems to be targeting my computer. Any ideas or solutions would be greatly appreciated, as I have been forced to resort to the hotel's business center for checking email, doing work, etc. Thanks in advance.

    I did consider that, as I was in Beijing last week and there are a number of censored sites. However, in Korea I have had problems with very basic sites like facebook, wall street journal, google, yahoo, Korean google, my hotel's webpage, etc. Further, I have successfully gotten all of these sites to load seemingly at random, and can access them without problems on other computers. The only disconnect seems to be between my MBP and the internet, not between Korean internet and the web. I have toyed around with the network settings, and although sometimes after switching from "Automatic" to a fixed connection I get some sites to work, it usually only lasts a short time and eventually the same sites stop working. I reset my cache regularly to make sure I'm not getting sent to cached sites, but this also doesn't help. Further, my Apple Mail, Skype and AIM accounts jump between being connected and disconnected randomly as well. Again, this is isolated to my own computer, which is why I'm so confused.

  • Nokia 3250:A very strange problem...

    hi..i'm facing a very strange problem in my handset 3250.. i've upgraded its os but still there is problem: http://discussions.europe.nokia.com/discussions/bo​ard/message?board.id=smartphones&;message.id=9102#M9102 any idea about such type of problem.....

    MR.,
    what is firmware?? How can i have its latest edition??
    Can you help me because i too have the same problem:
    Problem 1:
    1-I install any software (e.g:snake game) through Application manager (Pc Suit) in memory card.
    2-I launch that software (snake game) just after installation it works properly.
    3-Now i switch-off the hand set and than switch-on it.
    4-I try to launch that software (snake game) again but it doesn't response.
    Problem 2:
    1:There is a image in my Memory card.
    2: I set that image as a wallpaper.
    3-Now i switch-off the hand set and than switch-on it.
    4-Wallpaper reset to default one.
    Problem 3:
    1-I install a theme through Application manager (Pc Suit) in memory card.
    2: I apply that theme in my hand set.
    3-Now i switch-off the hand set and than switch-on it.
    4- Now theme reset to default one.

  • Very Strange Rendition of the "Blue Screen" Problems

    So I'm familiar with some of the blue screen freezes, but the problems that I am encountering are very very strange, so let me start:
    Two computers are affected: a MacBook Pro and an Aluminum iMac. Both computers are running Leopard.
    The MacBook Pro:
    A few days ago, it crashed to the blue screen. Turned the machine off and powered it back on. The computer goes to the gray apple screen, then to the blue screen. Once at the blue screen, it does this: Blue screen for a few seconds -> progress indicator spins for a few seconds and disappears -> Mouse shows up for a few seconds and disappears -> Blue screen -> Progress indicator -> Mouse. It cycles like this indefinitely. I tried deleting the loginwindow preferences. I also tried deleting application enhancer preferences, no luck...
    The iMac:
    Started up fine. After a few minutes of not using the machine, it will go to the blue screen. Turn machine off and it starts again. Here's where it gets strange: If you start up with safe mode, the iMac exhibits the blue screen cycle on login that the MacBook Pro experiences. Without safemode, it started. So, I tried creating a new user account to see if it was user preferences, and up on doing that, now the iMac gets hung up on the blue screen login cycle just like the MacBook Pro with or without safe mode.
    So... weird/misc. parts:
    Two machines that have been running leopard for some time, no recent upgrades.
    Problems starting happening at around the same time.
    Computers linked on LAN and Time Capsule.
    Both computers using MobileMe.
    I'm stuck - any ideas?!?!
    Message was edited by: mpaulsen
    Message was edited by: mpaulsen

    Some additional thoughts...
    the MacBook Pro did not have automatic login and had the problems. The iMac did have automatic login and did not have the problems. When automatic login was disabled on the iMac, it did have the problems. When the iMac used safemode, which disables automatic login, it had the problems also.
    So... clearly something with the login window is messed up... but I tried deleting the login window preferences with no avail. Not sure what this means, but interesting I suppose.

  • Hye guys i've a problems with my iPhone : since few days i can't open my application 'apple store ' .. It's very strange ! So have you solutions ?

    Hye guys
    I've problems with my iPhone , since few days i can't open my application Apple store  .. It's very strange because it's the first time ! And everything is okay in my phone .. If you have solutions tell me !

    Hello again,
    I just realized that it was the Address book I was looking for, and it's there. I'm sorry --and embarrased- for the confusion!
    I can't delete the discussion, so please considered resolved!
    Thanks!

  • Safari Crash - Problem with doodle (planer) app  -  doodle web links cause safari to crash with a very strange message "Error - Please make sure Safari is not used in Private Modus" (translated from german) No Privat Modus buttom in ios 7 safari settings!

    Safari Crash - Problem with doodle (planer) app  -  doodle web links cause safari to crash with a very strange message "Error - Please make sure Safari is not used in Private Modus" (translated from german) No Privat Modus buttom in ios 7 safari settings! Works fine with an older Safari Version. Web link, call doodle app.  You could see the website in the backround working but safari crashes after clicking on the error window.   Any suggestions?

    Turn off Private Browsing.
    Tap "Private" on Safari Screen to disable Private Browsing. When top of screen is white, Private Browsing is off.

  • Need your help with very strange Oracle problem..

    hello,
    At our office we have an oracle 10g database (don't have exact version on hand) installation that stores data for many of our applications. We are having a very strange, intermittent issue that is causing us lots of headaches lately.
    The problem is, the database will be running fine, humming along, with clients connected to it, from different hosts, different networks, and using different technologies (PERL DBI::DBD, OJDBC, etc). Every so often (at intermittent intervals, no real patterns we can discern), it seems as though the database will just hang and not respond to requests for a few seconds. Outages have ranged from 1,2,3 seconds to sometimes 20,30,40 seconds (very rarely longer than 5-10 seconds though).
    Over the last few weeks, we've done lots of work to try and rule the network out of the equation. Today, a java client i wrote that was running locally on the database host, connected via OJDBC timed out (my timeout was set to 5 seconds) running a simple query ("select sysdate from dual") at the same time as all our other remote clients.
    I'm really not sure where else to look at this point. Our DBA department says they see no errors in the database, no indication of problems anywhere. We've ruled out our backend applications and the network at this point. The java test client i wrote was running from about 5 different clients, dispersed through many different networks. They all timed out at the same time as other network clients that run via perl's dbi/dbd framework.
    Can anyone suggest what would be a possible cause for this? How could it be possible that network clients issuing "select sysdate from dual" would hang for over 5 seconds?
    Thanks in advance for any suggestions you can offer.

    I am hoping you are not in a situation where your DBA said there's nothing wrong with database, your network admin said networking issue ruled out, your system admin said OS is normal. Yet, you as end user suffer and end up trying to figure out the issue by yourself while you didn't have expertise in any of these fields.That's basically the situation we were in for a few months here. It was, to say the least, extremely frustrating. Since we wrote the applications that were suffering the most due to this db/hardware issue, naturally, we felt "responsible" for taking the ownership to track down and fix the issue (after some perseverance ,we were finally able to narrow this problem down to a database storage issue).
    After exhausting every other dba theory about DBI/JDBC/Firewalls/Networks/etc, we simply just failed over our database to some standby hardware that had some directly attached storage (as opposed to a SAN configuration like our primary db instance runs off of), and the problem has basically disappeared at this point. It's been about two weeks now. Whereas we normally see a handful of episodes a day, now we see none.
    Our system administrators are looking into our SAN now and working to optimize its performance.
    Hopefully this will put this mystery to bed. It's been a long year+ chasing this problem down and I'm glad to see it licked finally. Thank you all for your input. I've learned quite a bit about Oracle in the process and I sincerely hope our DBA team here has learned something valuable from this exercise too.

  • Very strange SQL problem

    Hellou everybody,
    I have very strange problem and I don't understand WHY.
    when i run this query:
    SELECT regexp_instr(nvl(trim('LDAPexport_20150429'), '^.*$'),'^\^[0-9]{2,2}_[A-9]{1,1}[A-9]{1,4}/') FROM dual; --ERROR
    I always getting this error: ORA-12728 - invalid range in regular expression
    but when I run this:
    SELECT regexp_instr(nvl(TRIM('LDAPexport_20150429'), '^.*$'), '^\^[0-9]{2,2}_[A-Z0-9]{1,1}[A-Z0-9]{1,4}/') FROM dual    -IT WORKS
    My client version is: 11.2.0.1.0
    DB version:
    Oracle Database 11g Enterprise Edition Release 11.2.0.3.0 - 64bit Production
    PL/SQL Release 11.2.0.3.0 - Production
    "CORE    11.2.0.3.0    Production"
    TNS for Linux: Version 11.2.0.3.0 - Production
    NLSRTL Version 11.2.0.3.0 - Production
    Please can somebody tell me what is the problem? Because I found this issue in production code and my collegues can run it.
    Thank YOU

    and i have created one transient field Static_cr_limit where i set default value using SQL option- which comes from another table. Can you tell us the expression you used to default this field. Also a little more details or a similified use case as ADF7 mentioned would help.

Maybe you are looking for

  • Goods movement from Maintenance order

    Hi Experts I have the following scenario, I have a component ( with Material master) in the maintenance order  and i use Item category N to trigger  a Purchase requisition. The Pur Req is converted to Purchase Order and then the GR is done directly t

  • Variable with range- only 1st value used in manual planning ?

    Hi, We're trying to define a column in a manual planning layout that will represent a YTD total.  We have defined a variable  for 0fiscper that contains the range of periods we require in the YTD total.  When we execute that manual planning area with

  • Urgent plz:Reports

    1)Hi in my scenario I have to generate a report with Vendor ,Inbound iDoc Number ,iDoc Date ,iDoc Status: 51 or 68 ,PO Number ,Invoice Number,Invoice date ,Invoice Amount ,Error Message: For multiple errors on a single iDoc, multiple records should b

  • How to Display the configurable product in E-Commerce application

    Hi Gurus Need the Help How to dispay the configurable products in E-commerce application.How can u differenciate the Normal products and Variant configured products,If any one having any idea please respond fast. Currently we are using 2007 version o

  • Production Operation open quantity due to Scap ECC confirmation

    Hi We are using transaction CO15 (order confirmation) for confirmations of production orders. When we confirm Scrap, the scrap quantity is updated on the Last operation on the ECC order. So, for example order for 1000 pcs and we confirmed 100 as yiel