Passing from FM to Prog.?

Hi,
I need to pass the S_CUST of 10000 from FM to Prog. and there i wanna to use it as input. So,
I am using syntax as,
submit my_prog. USING SELECTION-SET 'SS_STATS' and return.
The error is thrwing as NO VARIANT is available as SS_CUST!
But not working?
What is the correct one?
thanq.
Message was edited by:
        Sridhar

Hello Srikhar,
X is other report program
SUBMIT X
WITH <b>s_auart</b> IN <b>s_auart</b> - this is your passing from ur program
            other Report program selection-screen field
WITH s_aufnr IN s_aufnr
AND RETURN.
See the example program and i am passing values from one program to MMPV Transaction( Here MMPV is Transaction and which is like report program only and it has selection-screen.
TABLES: marv,
        t001.
                         DATA DECLARATION                            *
DATA: wa_lfmon LIKE rm03q-nperi,
      wa_lfgja LIKE rm03q-lfgja,
      wa_xcomp LIKE rm03q-xcomp,
      wa_vmmon LIKE rm03q-nperi,
      wa_vmgja LIKE rm03q-lfgja.
DATA: t_param LIKE rsparams OCCURS 10 WITH HEADER LINE.
DATA: wa_today     LIKE sy-datum.
DATA: wa_lastday   LIKE sy-datum.
DATA: wa_newperiod LIKE sy-datum.
DATA: wa_marv      LIKE marv.
DATA: wa_variant(12) TYPE c  VALUE 'MM_PRD_CLOSE'.
DATA: wa_lines     TYPE i.
DATA: wa_try       TYPE i.
                              RANGES                                 *
RANGES: wa_messg FOR soli-line.
Start of change   Seshu  02/27/2007
ranges : r_bukrs for t001-bukrs.
End of change     Seshu  02/27/2007
                              CONSTANTS                              *
CONSTANTS: w_subject_nc(132) TYPE c VALUE
                                  'Attention MM Period was not Closed!'.
CONSTANTS: w_subject_c(132) TYPE c VALUE
                                  'MM Period is Closed Successfully!'.
                           INCLUDES                                  *
                          INITIALIZATION                             *
wa_today = sy-datum.
                           TOP OF PAGE                               *
                          SELECTION SCREEN                           *
SELECTION-SCREEN: BEGIN OF BLOCK b1 WITH FRAME TITLE text-001.
SELECTION-SCREEN: SKIP 1.
SELECT-OPTIONS:   s_bukrs FOR t001-bukrs OBLIGATORY NO INTERVALS.
PARAMETERS    :   p_try   TYPE i.
SELECTION-SCREEN: END OF BLOCK b1.
                         START OF SELECTION                          *
START-OF-SELECTION.
clear wa_try.
loop at s_bukrs.
WA_TRY  =  WA_TRY + p_try.
endloop.
clear r_bukrs.
refresh r_bukrs.
Start of change   Seshu 02/27/2007
          move s_bukrs to r_bukrs.
          append r_bukrs.
End  of change   Seshu 02/27/2007
  wa_try  =  p_try.
*--Get the system date and check whether the period to be closed.
*--Usually last of each month.
  CALL FUNCTION 'SG_PS_GET_LAST_DAY_OF_MONTH'
       EXPORTING
            day_in            = wa_today
       IMPORTING
            last_day_of_month = wa_lastday
       EXCEPTIONS
            day_in_not_valid  = 1
            OTHERS            = 2.
  IF sy-subrc <> 0.
    MESSAGE e000(zwave) WITH text-002 .
  ENDIF.
*-- IMP!! We should  NOT execute the program if the day is not the last
*-- day of the month
  IF sy-datum NE wa_lastday.
    LEAVE PROGRAM.
  ENDIF.
**-- New Period is the next day (Get only the month & year)
  CLEAR: wa_newperiod, wa_lfmon, wa_lfgja.
  wa_newperiod = wa_lastday + 1.
  MOVE wa_newperiod+0(4) TO wa_lfgja.
  MOVE wa_newperiod+4(2) TO wa_lfmon.
  wa_xcomp = 'X'.
  CLEAR: wa_vmgja, wa_vmmon.
*-- Move the current date for cross checking..
  MOVE wa_today+0(4) TO wa_vmgja.
  MOVE wa_today+4(2) TO wa_vmmon.
  DO wa_try TIMES.
    LOOP AT s_bukrs.
*-- Build Selection Screen value for RMMMPERI (MMPV)
*-- Company Code
      t_param-selname = 'I_VBUKR'. t_param-kind = 'P'.
      t_param-low  = s_bukrs-low.
      APPEND t_param.
*-- Period
      t_param-selname = 'I_LFMON'. t_param-kind = 'P'.
      t_param-low  = wa_lfmon.
      APPEND t_param.
*-- Fiscal Year
      t_param-selname = 'I_LFGJA'. t_param-kind = 'P'.
      t_param-low  = wa_lfgja.
      APPEND t_param.
*-- Check and close period (Default 'X')
      t_param-selname = 'I_XCOMP'. t_param-kind = 'P'.
      t_param-low  = wa_xcomp.
      APPEND t_param.
*-- Check once again whether the selected period is OK
      SUBMIT rmmmperi VIA SELECTION-SCREEN
                          WITH SELECTION-TABLE t_param
                          AND RETURN.
      WAIT UP TO 2 SECONDS.
      CLEAR wa_marv.
      SELECT SINGLE * FROM marv INTO wa_marv WHERE bukrs = s_bukrs-low.
      IF sy-subrc = 0.
        IF wa_marv-lfgja = wa_lfgja  AND
           wa_marv-lfmon = wa_lfmon  AND
           wa_marv-vmgja = wa_vmgja  AND
           wa_marv-vmmon = wa_vmmon.
*-- Come out of the loop
*-- Since the period is closed for the given company code
*-- Remove it from the list (internal Table)
          DELETE s_bukrs.
          EXIT.
        ENDIF.
      ELSE.
        MESSAGE e000(zwave) WITH text-003.
      ENDIF.
      WAIT UP TO 300 SECONDS.
    ENDLOOP.
  ENDDO.
                         END OF SELECTION                            *
END-OF-SELECTION.
*-- After trying 10 times and waiting for 15 mins in each loop, if the
*-- period is not closed then send email to the respective users.
  CLEAR s_bukrs.
  clear r_bukrs.
Start of change   Seshu  02/27/2007
Used r_bukrs instead of s_bukrs
  LOOP AT r_bukrs.
    CLEAR wa_marv.
    SELECT SINGLE * FROM marv INTO wa_marv WHERE bukrs = r_bukrs-low.
    IF sy-subrc = 0.
      IF wa_marv-lfgja = wa_lfgja  AND
         wa_marv-lfmon = wa_lfmon  AND
         wa_marv-vmgja = wa_vmgja  AND
         wa_marv-vmmon = wa_vmmon.
*-- Come out of the loop and period is closed
*-- Enter all the information for period closed
        wa_messg-sign   = 'I'.
        wa_messg-option = 'EQ'.
        wa_messg-low    = text-006.
        APPEND wa_messg.
        CLEAR wa_messg.
        wa_messg-sign   = 'I'.
        wa_messg-option = 'EQ'.
        CONCATENATE 'For Company Code - '  r_bukrs-low INTO
        wa_messg-low SEPARATED BY space.
        APPEND wa_messg.
        CLEAR wa_messg.
        wa_messg-sign   = 'I'.
        wa_messg-option = 'EQ'.
        CONCATENATE 'For Period  - ' wa_lfmon 'and year - '
                     wa_lfgja INTO wa_messg-low SEPARATED BY space.
        APPEND wa_messg.
        CLEAR wa_messg.
        wa_messg-sign   = 'I'.
        wa_messg-option = 'EQ'.
        wa_messg-low = text-005.
        APPEND wa_messg.
        CLEAR wa_messg.
        CLEAR wa_lines.
        DESCRIBE TABLE wa_messg LINES wa_lines.
        IF wa_lines > 0.
          SUBMIT z_notify_user USING SELECTION-SET wa_variant
                              WITH  text1      IN wa_messg
                              WITH  sub_line   EQ w_subject_c
                              AND   RETURN.
        ENDIF.
      ELSE.
*-- Enter all the information for error in closing
        wa_messg-sign   = 'I'.
        wa_messg-option = 'EQ'.
        wa_messg-low    = text-004.
        APPEND wa_messg.
        CLEAR wa_messg.
        wa_messg-sign   = 'I'.
        wa_messg-option = 'EQ'.
        CONCATENATE 'For Company Code - ' r_bukrs-low INTO
        wa_messg-low SEPARATED BY space.
        APPEND wa_messg.
        CLEAR wa_messg.
        wa_messg-sign   = 'I'.
        wa_messg-option = 'EQ'.
        CONCATENATE 'For Period  - ' wa_lfmon 'and year - '
                     wa_lfgja INTO wa_messg-low SEPARATED BY space.
        APPEND wa_messg.
        CLEAR wa_messg.
        wa_messg-sign   = 'I'.
        wa_messg-option = 'EQ'.
        wa_messg-low = text-005.
        APPEND wa_messg.
        CLEAR wa_messg.
        CLEAR wa_lines.
        DESCRIBE TABLE wa_messg LINES wa_lines.
        IF wa_lines > 0.
          SUBMIT z_notify_user USING SELECTION-SET wa_variant
                              WITH  text1      IN wa_messg
                              WITH  sub_line   EQ w_subject_nc
                              AND   RETURN.
        ENDIF.
      ENDIF.
    ELSE.
      MESSAGE e000(zwave) WITH text-003.
    ENDIF.
  ENDLOOP.
  End of change seshu 02/27/2007
Clear wa_lines.
describe table wa_messg lines wa_lines.
if wa_lines > 0.
   SUBMIT z_notify_user USING SELECTION-SET WA_VARIANT
                       WITH  text1      IN wa_messg
                       WITH  sub_line   EQ w_subject
                       AND   RETURN.
endif.

Similar Messages

  • Field Value not passed from IDOC (orders01) to File Generated

    Hi All,
    I have added a custom field to a PO at item level (ekpo-Ztest)and Passing it to OUTBOUND IDOC.
    In process of passing to IDOC(ORDERS01) i mapped the field to segment E2EDP19001-MFRPN and i see the value in the IDOC when i view it in WE02.
    The problem is when i generate a file i don't see the value of E2EDP19001-MFRPN
    We are already using QUALF,IDTNR,KTEXT of E2EDP19001 and i see all the values of these fields being passed from IDOC to file generated .
    Let me know as i'm missing anything in here
    I quick note ,
    I see 3 version for E2EDP19 Segment for orders01
    Vesrion
    002     E2EDP19002                             8     242     02/14/2005
    001     E2EDP19001     40A                    5     160     08/19/1997
    000     E2EDP19             30A                     3     108     04/03/1995
    1)The version 000 and 001 are released but not 002 Version
    2)May be i 'm using version 000 and its out put length is only 108 and these fields(QUALF,IDTNR,KTEXT) together occupy 108 and there is no room for my new field but My IDOC dispalys E2EDP19001 and E2EDP19002 and also it displays my new field but its the output file generated that doesn't show the value
    Thanks

    Resolved Myself
    Thanks

  • Why there is no dependent req. passed from discontinued material ?

    Dear gurus,
    I set discotinue indicator=1, effective-out date and follow-up material. But, there is no dependent requirement passed from discontinued material material. That is I can't see the dependent requirement for the follow-up material. Anyone tell me the reason? Thanks!
    Regards
    David

    I will test soon. Thanks to all involved.

  • How to retrieve a message into an html page passed from a servelt?

    am new to servlet.
    i have a Login.html contains a form having username and a password field.when the form is submitted it goes to VerifyServlet for authentication.
    now if the user provide the correct username and password i authenticate him into a new servlet called UserhomeServlet which i have already done. but if the password is incorrect i wanted to take him back to the Login.html with a Error message printed on it passed from the VerifyServlet. i dont know how to do that.
    pls tell me if you have any idea.

    Hi ,
    Try the following in your VerifyServlet doPost / doGet method.
    //for simplicity i have defined name & pwd in the same file and compared values from the login.html //
    //you can implement your logic //
                     if (name.equals(login)&& pwd.equals(pass)){
              //redirect to UserhomeServlet
                          else {
                   out.println("Invalid Login");
                   RequestDispatcher rd = req.getRequestDispatcher("/html/login.html");
                   rd.include(req,res);
         }bye for now
    sat

  • File Name and File Content  not gettinng passed from Proxy to Business Serv

    Hi All ,
    I have a requirement in OSB , where i need to pick the file from remote Source and FTP the files to Remote Target .Below are the steps which i did to achieve this.
    1.Created a FTP Adapter in JDeveloper to Get the files from Source and a FTP Adpater to Put the files to Target.Inboth the adapters i have choose 'Shema is Opaque'
    2.Imported the wsdl and jca file to OSB
    3.Generated Proxy Service (PS ) and Business service (BS) out of Step 2
    4.I edited the Message flow such a way that , the PS is routed to invoke the BS
    Aslo i assigned $inbound/ctx:transport/ctx:request/tp:headers/jca:jca.file.FileName to a variable 'FileName' in PS
    and in BS service i passed $outbound/ctx:transport/ctx:request/tp:headers/jca:jca.ftp.FileName = 'FileName'
    When i tried to activate my session , the file that is getting written to the target has 0 byte.Also , the file name is also not getting passed from PS to BS
    Can some one help me with the steps on how to use the Xpath , so as to pass the file name and file body from proxy servive to business service.
    Thanks
    John

     I search multiple shares to find a common file name then create a single output file. I will be doing this search and file creation
    for 5-10 different file names. If there is a better way .. certainly open for suggestions. It's working but having issue with
    the cmd file for every file and folder I check. It puts this error out for each run of the process.
      Error message in LOG file:
    Get-ChildItem : Cannot find path 'F:\powershell\-SearchFor' because it does not exist.
     Thanks.
    I tried your code with little changes and saved in Temp folder.
    My CMD file has the below code
    PowerShell C:\Temp\Untitled1.ps1
    It worked.
    Regards Chen V [MCTS SharePoint 2010]

  • How to pass from a document pdf towards another

    Hello,
    I have two open documents.
    In javascript, how to pass from a document pdf towards another.
    David G

    You need to mark each document as "disclosed", in order for them to talk to each other. See the Acrobat JavaScript docs on "this.disclosed".
    Leonard

  • How to use parameter passed from standard page in VO query of custom page

    Hi everyone,
    I have a custom page which needs to be called from a standard page. Now this custom page is based on some parameters passed from standard page.
    How do I catch those parameters i my custom page .
    And how to use those parameters in the VO query of my custom page.
    Edited by: Bunny on Nov 11, 2010 9:16 AM

    Hi,
    Bunny wrote:
    I have a custom page which needs to be called from a standard page. Now this custom page is based on some parameters passed from standard page.
    How do I catch those parameters i my custom page .---If standard page the button style is :Button,Then u can set Destination URL in personalization.
    Destination UR:"OA.jsp?page=/xxx/oracle/apps/po/msg/webui/CustomUpdatePG&Flag=" +Value  ---Like u can pass params
    ---IF the button style is :Submitbutton ,Then u need to customization of the co.
    ---In co processFormReq call a cutom page like below.
    pageContext.setForwardURL("OA.jsp?page=/xxx/oracle/apps/po/msg/webui/customUpdatePG&Flag=" +Value, null, (byte)0, null, null, true, "N", (byte)0);
    ---In custom page co in processRequest u can get these value :String value=pageContext.getParameter("Flag");
    And how to use those parameters in the VO query of my custom page.---Get the vo and set where clause
    String where="valueAttr="+value;
    vo.setWhereClauseParams(null);
    vo.setWhereClause(where);
    vo.executeQuery();
    Regards
    Meher Irk
    Edited by: Meher Irk on Nov 11, 2010 11:53 PM

  • When mousing over text, the cursor flickers constantly (with each letter passed) from arrow to i-beam and back.  The problem occurs in both MS Word and Pages.  Any idea of how to resolve this annoying problem is appreciated.  System: 10.10.1

    When mousing over text, the cursor flickers constantly (with every letter passed) from arrow to i-beam and back.  The problem occurs in both MS Word 2011 and Pages.  Any idea of how to solve this annoying problem will be much appreciated.  System 10.10.1 on a MacPro (Late 2013)

    The mouse is controlled by the OS so don't guess any app other than a mouse driver or OS X itself would be able to cause this sort of flicker issue.
    Have you seen the following and is it what you are seeing? Maybe you could make a movie (Quicktime is great for this this to make a screen recording) - but not sure how to attach a movie to these discussions as mine is grayed out and can't be selected (to the right of the insert image). Here is the what I found for a search of "mouse cursor flickers os x yosemite"
         https://www.youtube.com/watch?v=ZNQ0D84DdF4
    What kind of mouse are you using? Is the mouse driver up to date if it's a third party mouse?

  • 1Z0-007 and 1Z0-051 can be passed from home???

    i had come to know that exams 1Z0-007 and 1Z0-051 can be passed from home at http://oracle.prometric.com/ as this test does not require a proctor sign-in (test supervisor). so does this mean that i could write these exams in my home without visiting prometric centers??? or does that mean something else??
    and how about the exam
    1Z0-001 Introduction to Oracle: SQL® and PL/SQL™.
    please let me know.
    Thank you.

    i had come to know that exams 1Z0-007 and 1Z0-051 can be passed from home at http://oracle.prometric.com/ as this test does not require a proctor sign-in (test supervisor). so does this mean that i could write these exams in my home without visiting prometric centers??? or does that mean something else??
    Online exams are non-proctored, which means that you can take them at your convenience any time, anywhere. Pre-registration is not required. You register when you are ready to take the exam.
    Online exams are closed-book exams --- books, course materials and notes are not allowed. You should prepare for them fully and rely on your own mastery of the material.
    Candidates who take the online exams are subject to the Oracle Fraudulent Activity policy and must agree to the Oracle Candidate Agreement (presented at the beginning of the exam). You should never have someone take the exam for you. You should never test under a name other than your own, and/or test using more than one name or Prometric Testing ID.
    Oracle Certification Program - Online Exams
    http://education.oracle.com/pls/web_prod-plq-dad/db_pages.getpage?page_id=54
    and how about the exam
    1Z0-001 Introduction to Oracle: SQL® and PL/SQL™.Unlike 1Z0-007 and 1Z0-051, 1Z0-001 exam is not available online.

  • Need help with Link passed from XML

    This is to create a flash driven navigation menu. What I have
    is a coldfusion page that serves a simple XML formatted page. There
    are 3 XML components, linkLabel, linkURL and linkType. The label
    just passes text, the type is just a number 0-9 that is used to
    determine the style of the button. The linkURL that is passed from
    coldfusion comes across encoded for XML, so what I end up with is
    url's that replace "&" with ";amp;".
    So my question is this, is there an easy way in the
    actionscript to replace the ";amp;" with "&"? Other than that
    little problem, the rest of the script runs just fine, I just can't
    seem to find the syntax I'm looking for to replace items in a
    string. I saw the code for replacesel() but this doesn't seem to do
    it, unless i'm writing it wrong.

    Just in case you want something similar in future:
    string = string.split("&amp;").join("&");
    is an easy way to replace something in a string (here
    '&amp;' gets replaced with '&').
    greets,
    blemmo

  • Calling Servlet from a java prog?

    Hi all,
    I am calling servlet from a java prog (Java Agent in Lotus Notes) by using URL and URLConnection object. how can i trigger the Servlet By using doPost method .I have to send some parameter also.
    Thanx
    Muthu

    you need to open a connection to the servlet. Then you must call getInputStream() and getOutputStream() and use them in any way you see fit. I was trying this before and could not get POST to work unless I openned the input stream from the servlet. Strange... but doGet worked without openning the input stream???
    // open a connection....
    // write to the servlet
    servletConnection.getOutputStream().write("whatever");
    servletConnection.getOutputStream().flush();
    servletConnection.getOutputStream().close();
    // grab what the servlet sends back, required to do a post.
    byte [] in = new byte[100];
    servletConnection.getInputStream().read(in);
    servletConnection.getInputStream().close();

  • Standard PO workflow giving error due to Release coe is not getting passed from event

    Hi Team,
    I am getting the below error while processing the Standard workflow for PO.
    I think its due to the Release code is not getting passed from Event to workflow.
    Can you please sugest from where the release code is getting fetched before triggering the event.
    Error processing following event linkage:
    BUS2012 RELEASESTEPCREATED WS20000075
    Following error occurred:
    SWF_RUN 594
    Message text:
    Import container contains errors (are any obligatory elements missing?)
    Event container appended as attachment.
    Event linkage not changed.
    Event stored temporarily.
    Events can be redelivered via event queue
    administration (transaction SWEQADM)

    Hi 
    Please check threads, response by Fernando Carames, ( Jul 19, 2007 2:37 PM): http://scn.sap.com/thread/483005
    Or by Trevor Ticehurst  on Oct 9, 2008 3:39 PM at:  http://scn.sap.com/thread/1080411
    OR
    http://www.sapfans.com/forums/viewtopic.php?f=26&t=297786
    All these mention certian notes which may be helpful.
    However, it is important to first ensure that the release startegy is configured and working properly (check with your MM con)
    regards,
    Modak

  • How get runing total but opening balance pass from form through parameter

    Sir I have tow table in accbal have opening balance and in voudetail have daily transaction I need ledger report with opening balance
    My report get opening balance from accbal and get befor given date balance from voudetail
    Such as
    For opening balance
    Selelect case when dr>cr then dr-cr
    When cr>dr then cr-dr
    End opbal from accbal
    For get balance form daily transaction
    Select case when sum(debit)-sum(credit)> sum(credit)-sum(debit) then
    sum(debit)-sum(credit)
    when sum(credit)-sum(debit)>sum(debit)-sum(credit) then
    sum(credit)-sum(debit)
    end trbalance from voudetail
    where date <givendate
    cal acute both balance in variable
    total =opbal+trbal
    and send this total in report as opening balance on top of report and add this amount asper condition in amount report amount is debit and totalbal is debit then
    placeholdercolumn=totalbal+reportdebit
    or credit then
    placeholdercolumn=totalbal-reportdebit
    sir I need this type of calculation in report
    or
    if you give me idea n query is best for me I calculate with over function and use report only for output
    please sir give me idea urgent
    thank
    aamir

    Meilan (guest) wrote:
    : I wrote a Report called by a Form and pass a parameter from the
    : Form to the Report, successfully! But I imported a Graphic in
    : the Report, and the Graphic could not get the parameter...(the
    : parameter in the Report and Graphic should both pass from the
    : Form).
    : I call the Report by " Run_Product( REPORTS, :V_PRTNAME,
    : SYNCHRONOUS, RUNTIME, FILESYSTEM, pl_id,NULL); " in the Form.
    : and I imported the image from file for the Graphic in the
    Report.
    : Thanks for your help!
    Meilan,
    This forum is for Headstart related questions and experiences
    only. Please go to metalink.oracle.com to get more information on
    your problem.
    Regards,
    Ton
    null

  • Viewset does not have data passed from GenIL

    Hi All,
    We have a custom component in which data is not getting passed from a ViewSet to the Overview page. The details of the issue are given below:
    There is a detail view zsoEF and a table view zsoChild. These 2 views are housed in a viewset zsoVS. This view set has an event Eh_OnBack which requires the data from views zsoEF and zsoChild to be passed to overview view zsoOV.
    We recently upgraded to CRM 7.0. After the upgrade, the values entered on the views zsoEF and zsoChild are processed in the ZGenIL. The context nodes and the custom controllers are filled correctly with the screen values and some auto added data based on validations..
    When we click on the Back button, then Eh_OnBack does not have data in the Custom Controller. I am not able to pin point the reason for this missing data in the Back event. From the way i understand, when we do data binding in the views, we don't have to do that in ViewSet. Has there been any change in this design in CRM 7.0?
    I would like to know if there is any workaround for this issue.
    Thanks,
    Rini

    Hi Rini,
        Did you try to bind the context nodes with the component controller. Can give it a try whether it resolves the problem. Any way it is difficult to say anything as we don't have an idea what exactly you did in the component. Lets take it forward. In the mean time have a look in the below link.
    History navigation and context initialization calls - CRM - SCN Wiki
    Thanks,
    Javed.

  • Material Gate Pass from Maintenance order?

    Dear SAPIENTS,
    Is there any system to issue returnable material gate pass from maintenance order in case of sending material outside for repairing. I want to keep track of material through maintenance order i.e the reason.
    Regards,

    Hi,
    There is no STD SAP Functionality Available but You can Develope the Customising Smart Form to get this fuctionality.
    Also You can get The information about the Outgoing Material in TC MB51 if your making The Reservation Of that Material agianst the Vendor,while sending that material outside.
    Regards,
    Rakesh

Maybe you are looking for

  • How to resolve the dump Syntax error in program /1BCWDY/824VCAJI0ED4WMLLJ7N

    I have created 4 components and I have linked them to a single web dynpro application component through an interface. This is working fine in development. When we moved all these objects to quality and when i run the application it is opening the def

  • The cursor shapes change with Flash player 12

    Yestrerday I updated to Flash player 12 to view the content of a supplier catalog, since that my cursor change the shape from arrow to a cross and crashes the system, needed to restart every time. I'm n ot confrotable looking for my cusros seams to d

  • Interactive Adobe Forms

    Hi I have an Interactive Adobe form, in which I have 3 Drop lists in a Table. If User enter  same data ( Duplicates ), then we need to control those. how we can control it? ex:     DD1     DD2     DD3           101      10         1           102    

  • Simultaneous writing of different DAQmx tasks to TDMS files

    Hi, I am using a 6368 to moniter several different voltage readings simultaneously on a circuit. I would like to have each of these channels sampling as close to the 2MS/s limit as possible, while writing the data to disk. From what I've gathered, it

  • ARCHIVELOG files not found for Restore

    I'm restoring a 10g database from one server to another via RMAN. I've restored the CONTROLFILES & DATABASE files just fine. However, I am NOT able to restore the ARCHIVELOGs. The ARCHIVELOG files list out fine in RMAN when I do a "list backup". Here