Collection Data Form Schedule

We did have our form set to appear on every refresh as we were silently trying to gather some data. I've gone back and change the schedule type back to "No Schedule" but the devices are still showing the form each refresh, like it's not pushing out the setting to clients.
Anyone else experiencing this?

mmoshcs,
It appears that in the past few days you have not received a response to your
posting. That concerns us, and has triggered this automated reply.
Has your problem been resolved? If not, you might try one of the following options:
- Visit http://support.novell.com and search the knowledgebase and/or check all
the other self support options and support programs available.
- You could also try posting your message again. Make sure it is posted in the
correct newsgroup. (http://forums.novell.com)
Be sure to read the forum FAQ about what to expect in the way of responses:
http://forums.novell.com/faq.php
If this is a reply to a duplicate posting, please ignore and accept our apologies
and rest assured we will issue a stern reprimand to our posting bot.
Good luck!
Your Novell Product Support Forums Team
http://support.novell.com/forums/

Similar Messages

  • Collection Data Form in invisible mode.

    Hi,
    We are using zcm 10.3 installed on SLES 11. Our clients are XP SP3. I have configured a collection data form with autofill and checked "Invisible mode for autofill only" In the autofill settings I have entered a environment variable. I have configured a Collection data form schedule to run "When a device is refreshed". The collection data form never pick up the environment variable value when running a refresh. When I right click on the ZenWorks notify icon and choose "Collection data form" the environment variable value configured in autofill is picked up.
    Autofill worked well when refreshing a device in zcm 10.2.2.
    Does anybody know if this is a known "bug"?
    /John

    hajo68,
    It appears that in the past few days you have not received a response to your
    posting. That concerns us, and has triggered this automated reply.
    Has your problem been resolved? If not, you might try one of the following options:
    - Visit http://support.novell.com and search the knowledgebase and/or check all
    the other self support options and support programs available.
    - You could also try posting your message again. Make sure it is posted in the
    correct newsgroup. (http://forums.novell.com)
    Be sure to read the forum FAQ about what to expect in the way of responses:
    http://forums.novell.com/faq.php
    If this is a reply to a duplicate posting, please ignore and accept our apologies
    and rest assured we will issue a stern reprimand to our posting bot.
    Good luck!
    Your Novell Product Support Forums Team
    http://support.novell.com/forums/

  • Collection Data Form Invisible Mode for Autofill Only

    I am trying to use the Collection Data Form to get information from the registry. The following entry worked for a little bit and then stopped working: HKEY_LOCAL_MACHINE\Software\Microsoft\Windows\Curr entVersion\Authentication\LogonUI\LastLoggedOnUser . Is this syntax correct? If not, what is the correct way to enter the registry key information?

    Originally Posted by cmtallyadmin
    I am trying to use the Collection Data Form to get information from the registry. The following entry worked for a little bit and then stopped working: HKEY_LOCAL_MACHINE\Software\Microsoft\Windows\Curr entVersion\Authentication\LogonUI\LastLoggedOnUser . Is this syntax correct? If not, what is the correct way to enter the registry key information?
    According to the docs that is the correct syntax, but you could also try HKLM instead of HKEY_LOCAL_MACHINE to see if it makes any difference...
    Have you verified on the workstation that the LastLoggedOnUser key is not empty? Since you say that this have worked but suddenly stopped working then could it be that you have enable Interactive Logono not display last user name in the GPO for your workstations?
    Thomas

  • How can i collect data form diff. Internal Tables to single main table

    hi
       i am using 3 diffrent internal tables for fatching & store data , but when i want to put it on report for display it come in APPENDING MANNER i.e. data from 1 table get displayed , all otther fields remain blank, then data from 2 table appended at bottom , similar for 3 table ,
         but i want the data together.
    is there any way by which i can insert data to final table's particular field without effecting all others fields data . ?
    please give answer it's urgent

    <b>see how data is brought into I_OUT.</b>
    REPORT  Y_RK_REPORT_TASK2 LINE-SIZE 180
                              LINE-COUNT 25(8)
                              NO STANDARD PAGE HEADING.
    *&                      TABLE DECLARATION                              *
    TABLES: MARA,              "GENERAL MASTER DATA
            MARC,              "PLANT DATA FOR MATERIAL
            MARD,              "STORAGE LOCATION DATA FOR MATERIAL
            MBEW,              "MATERIAL VALUATION
            MVKE,              "SALES DATA FOR MATERIAL
            MAKT.              "MATERIAL DESCRIPTION
    *&                      INTERNAL TABLE DECLARATION                     *
    DATA: BEGIN OF I_MARC OCCURS 0,
              MATNR LIKE MARC-MATNR,
              WERKS LIKE MARC-WERKS,
              LVORM LIKE MARC-LVORM,
              PSTAT LIKE MARC-PSTAT,
          END OF I_MARC.
    DATA: BEGIN OF I_MARA OCCURS 0,
               MATNR LIKE MARA-MATNR,
               MBRSH LIKE MARA-MBRSH,
               MEINS LIKE MARA-MEINS,
          END OF I_MARA.
    DATA: BEGIN OF I_MAKT OCCURS 0,
               MATNR LIKE MAKT-MATNR,
               MAKTX LIKE MAKT-MAKTX,
          END OF I_MAKT.
    DATA: BEGIN OF I_MBEW OCCURS 0,
               MATNR LIKE MBEW-MATNR,
               BWKEY LIKE MBEW-BWKEY,
               BWTAR LIKE MBEW-BWTAR,
               LBKUM LIKE MBEW-LBKUM,
          END OF I_MBEW.
    DATA: BEGIN OF I_MVKE OCCURS 0,
               MATNR LIKE MVKE-MATNR,
               VKORG LIKE MVKE-VKORG,
               VTWEG LIKE MVKE-VTWEG,
          END OF I_MVKE.
    DATA: BEGIN OF I_MARD OCCURS 0,
               MATNR LIKE MARD-MATNR,
               WERKS LIKE MARD-WERKS,
               LGORT LIKE MARD-LGORT,
               LABST LIKE MARD-LABST,
          END OF I_MARD.
    DATA: BEGIN OF I_OUT OCCURS 0,
            MATNR LIKE MARC-MATNR,
            WERKS LIKE MARC-WERKS,
            LVORM LIKE MARC-LVORM,
            PSTAT LIKE MARC-PSTAT,
            MBRSH LIKE MARA-MBRSH,
            MEINS LIKE MARA-MEINS,
            MAKTX LIKE MAKT-MAKTX,
            BWKEY LIKE MBEW-BWKEY,
            BWTAR LIKE MBEW-BWTAR,
            LBKUM LIKE MBEW-LBKUM,
            VKORG LIKE MVKE-VKORG,
            VTWEG LIKE MVKE-VTWEG,
            LGORT LIKE MARD-LGORT,
            LABST LIKE MARD-LABST,
          END OF I_OUT.
    *&             A T - S E L E C T I O N - S C R E E N                   *
    SELECTION-SCREEN BEGIN OF BLOCK B1 WITH FRAME TITLE TEXT-101.
    PARAMETERS: P_WERKS LIKE MARC-WERKS.
    SELECTION-SCREEN END OF BLOCK B1.
    SELECTION-SCREEN BEGIN OF BLOCK B2 WITH FRAME TITLE TEXT-102.
    SELECT-OPTIONS: S_MATNR FOR MARC-MATNR,
                    S_LGORT FOR MARD-LGORT.
    SELECTION-SCREEN END OF BLOCK B2.
    *&                             INITIALIZATION.
    INITIALIZATION.
      P_WERKS = '3000'.
      S_MATNR-SIGN = 'I'.
      S_MATNR-OPTION = 'EQ'.
      S_MATNR-LOW = '1'.
      S_MATNR-HIGH = '995'.
      S_LGORT-SIGN = 'I'.
      S_LGORT-OPTION = 'EQ'.
      S_LGORT-LOW = '0001'.
      S_LGORT-HIGH = '0007'.
      APPEND S_LGORT.
      APPEND S_MATNR.
      CLEAR S_MATNR.
      CLEAR S_LGORT.
    *&             S T A R T - O F - S E L E C T I O N                     *
    START-OF-SELECTION.
         SELECT MATNR WERKS LVORM FROM MARC
                             INTO TABLE I_MARC
                             WHERE WERKS = P_WERKS
                             AND MATNR IN S_MATNR.
        SELECT MATNR MBRSH MEINS FROM MARA
                              INTO TABLE I_MARA
                              FOR ALL ENTRIES IN I_MARC
                              WHERE MATNR = I_MARC-MATNR.
        SELECT MATNR  MAKTX FROM MAKT
                             INTO TABLE I_MAKT
                             FOR ALL ENTRIES IN I_MARA
                             WHERE MATNR = I_MARA-MATNR
                             AND SPRAS = SY-LANGU.
        SELECT MATNR BWKEY BWTAR FROM MBEW
                            INTO TABLE I_MBEW
                            FOR ALL ENTRIES IN I_MARA
                            WHERE MATNR = I_MARA-MATNR.
        SELECT MATNR VKORG VTWEG FROM MVKE
                            INTO TABLE I_MVKE
                            FOR ALL ENTRIES IN I_MARA
                            WHERE MATNR = I_MARA-MATNR.
        SELECT MATNR WERKS LGORT LABST FROM MARD
                            INTO TABLE  I_MARD
                            FOR ALL ENTRIES IN I_MARC
                            WHERE MATNR = I_MARC-MATNR
                            AND WERKS = P_WERKS
                            AND LGORT IN S_LGORT..
    *&             MOVING DATA TO I-OUT                                    *
    LOOP AT I_MARC.
      MOVE I_MARC-MATNR TO I_OUT-MATNR.
      MOVE I_MARC-WERKS TO I_OUT-WERKS.
      MOVE I_MARC-LVORM TO I_OUT-LVORM.
      READ TABLE I_MARA WITH KEY MATNR = I_MARD-MATNR.
      MOVE I_MARA-MBRSH TO I_OUT-MBRSH.
      MOVE I_MARA-MEINS TO I_OUT-MEINS.
      READ TABLE I_MAKT WITH KEY MATNR = I_MARD-MATNR.
      MOVE I_MAKT-MAKTX TO I_OUT-MAKTX.
      READ TABLE I_MBEW WITH KEY MATNR = I_MARD-MATNR.
      MOVE I_MBEW-BWKEY TO I_OUT-BWKEY.
      MOVE I_MBEW-BWTAR TO I_OUT-BWTAR.
      READ TABLE I_MVKE WITH KEY MATNR = I_MARD-MATNR.
      MOVE I_MVKE-VKORG TO I_OUT-VKORG.
      MOVE I_MVKE-VTWEG TO I_OUT-VTWEG.
        LOOP AT I_MARD WHERE MATNR = I_MARC-MATNR
                         AND WERKS = I_MARC-WERKS.
            MOVE I_MARD-LGORT TO I_OUT-LGORT.
            MOVE I_MARD-LABST TO I_OUT-LABST.
            APPEND I_OUT.
        ENDLOOP.
    CLEAR I_OUT.
    ENDLOOP.
    *&             DISPLAYIING FROM I-OUT                                  *
    LOOP AT I_OUT.
    *FORMAT HOTSPOT ON.
    WRITE: /5 I_OUT-MATNR,
            22 I_OUT-WERKS,
            29 I_OUT-LGORT,
            33 I_OUT-LABST,
            56 I_OUT-LVORM,
            61 I_OUT-MBRSH,
            71 I_OUT-MEINS,
            82 I_OUT-VTWEG,
            93 I_OUT-BWKEY,
            104 I_OUT-BWTAR,
            118 I_OUT-VKORG,
            130 I_OUT-MAKTX.
    *FORMAT HOTSPOT OFF.
    ENDLOOP.
    *&        E N D -- O F --  S E L E C T I O N                           *
      END-OF-SELECTION.
    *&                  T O P - O F - P A G E                              *
    TOP-OF-PAGE.
    WRITE 60 'MATERIAL MASTER REPORT -- BASIC LIST'
            COLOR COL_GROUP.
    WRITE: SY-ULINE.
    WRITE: /2 'MATERIAL_NO',
            22 'PLANT',
            28 'STORGE_LOC',
            45 'STOCK',
            54 'FLAG',
            60 'INDUSTRY',
            70 'UNIT',
            76 'DISTR_CHANNEL',
            91 'VALU_AREA',
            102 'VALU_TYPE',
            114 'SALES_ORG',
            128 'DESCRIPTION'.
    *&                  E N D - O F - P A G E                              *
    END-OF-PAGE.
      WRITE: / SY-ULINE.
      WRITE: /85 'PAGNO: ',SY-PAGNO,
               SY-ULINE.
    regards,
    srinivas
    <b>*reward for useful answers*</b>

  • Collecting Data using forms

    Need help soon or else I am going to throw my computer out
    the window.
    My problem is simple (or so I thought). I would like to
    collect data from people using a simple form. I thought all I would
    have to do is create the form (done this already), and have the
    form dump the info into a file (say a database). Then I could go
    into the database and look at the data at my leisure. This is
    proving far too difficult.
    Steps I have taken so far:
    1. I have created the form.
    2. I have created the associated database using ACCESS 2000.
    3. I have talked to my provider, they use ASP
    This is where I get stuck. I want the info dumped into my
    database. This apparently is not so easy. I have scoured the
    internet for a layman's tutorial, but to no avail. There is talk of
    a script required. Where does this go, in dreamweaver or elsewhere?
    I switched to dreamweaver from FrontPage recently because of
    the power behind the program. However, FrontPage is sooooo much
    easier when it comes to collecting data. Why is dreamweaver so much
    more difficult?
    I am getting frustrated and hope someone out there can give
    me a hand.

    >I switched to dreamweaver from FrontPage recently because
    of the power behind the program. However, FrontPage is >sooooo
    much easier when it comes to collecting data. Why is dreamweaver so
    much more difficult?
    Because FP relies on a propriatary server technology that is
    installed on the Windows Server.
    DW works with all kinds of operating systems, web servers and
    technologies. For some tasks, like the one you are inquiring about,
    it has server behaviors that essential write the server side
    scripts for you. Again, read the tutorial I mentioned.

  • Email Form Not Collecting Data

    I have an email form on my index page. The form is not
    collecting data. Any suggestions?
    Here's the code:
    <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0
    Transitional//EN" "
    http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
    <html xmlns="
    http://www.w3.org/1999/xhtml">
    <head>
    <meta http-equiv="Content-Type" content="text/html;
    charset=utf-8" />
    <title>Home Page</title>
    <style type="text/css">
    <!--
    body,td,th {
    font-family: Verdana, Arial, Helvetica, sans-serif;
    font-size: medium;
    body {
    background-color: #FF0099;
    a {
    font-size: 90%;
    color: #33FFCC;
    a:link {
    text-decoration: none;
    -->
    </style>
    <link href="/css/layout.css" rel="stylesheet"
    type="text/css" />
    </head>
    <body>
    <div id="container">
    <div id="top">
    <p><!--content for ID top goes here
    --></p>
    <p> </p>
    <p>Rocking Horse Video</p>
    </div>
    <div id="nav">
    <ul>
    <li><a
    href="/pages/index.html">Home</a></li>
    <li><a
    href="/pages/pricing.html">Pricing</a></li>
    <li><a href="/pages/SEHJ 8-08.html">Browse Your
    Rides</a></li>
    <li><a href="/pages/To Order.html">To
    Order</a></li>
    <li><a href="
    http://shop.rockinghorsevideo.com">Shopping
    Cart</a></li>
    </ul>
    <!--content for nav div goes here -->
    </div>
    <!--content for container goes here -->
    <div id="main">
    <div id="story">
    <h1 class="style1">Rocking Horse Video</h1>
    <h2 class="style2">High-Definition DVDs</h2>
    <h4><img src="/images/Rocking Horse Video.jpg"
    width="100" height="70" class="image-left" />How was your last
    “Horse Shows In The Park?”  Wasn’t it
    fabulous?  Wasn’t it a total blast?  How was your
    horse over the jumps?  Weren’t those little girls with
    their pigtails and ponies adorable?  (Well, I guess they were
    cute when they weren’t beating you.)  Did you take home
    something (besides all those ribbons)  that truly captured the
    magic of that weekend , something that was yours to keep
    forever?</h4>
    That’s what Rocking Horse Video is all about. 
    Rocking Horse Video creates high-definition DVDs of you and your
    horse that you can enjoy for years to come.  Check out those
    rides.  Feel the exciting ambience of the show every time you
    watch your DVD.  These DVDs are more than a two minute ride to
    classical music.  Rocking Horse Video edits raw footage with
    state-of-the-art software to high-light your horse’s
    performance and reproduce more than a ride.   Every time
    you watch you get to experience the whole horse show all over
    again.
    <h2>Critique Your Rides</h2>
    <p>Rocking Horse Video gives you high-definition DVDs
    that entertain, educate, and sell.  See you and your horse in
    action and make your next horse show an even better one.  (You
    just have to beat those ponies next time.)  This is an
    affordable way to improve your performance for competitions to
    come.   Go over the video with your trainer and get
    double the benefit.</p>
    <h2>Sell Your Horse</h2>
    <p>Order a marketing video to show prospective buyers
    hands down how well your horse performs in the show ring.</p>
    <!--content for story div goes here --></div>
    <!--content for div main goes here -->
    <div id="sidebar"><h2><img src="/images/L'il
    Mite and Peanutbutter.jpg" width="150" height="113"
    class="image-left" />Capture Your Precious Memories</h2>
    Get a DVD at every show.
    <h5 align="left"><span
    class="style2"> Contact Rocking Horse
    Video</span><img src="/images/Rocking Horse Video.jpg"
    width="100" height="70" class="image-right" /></h5>
    <p>By Email: <a href="mailto:[email protected]"
    class="style3">[email protected]</a><a
    href="mailto:[email protected]"></a><br />
    By Phone: (352)281-0322<br />
    By Mail: Rocking Horse Video<br />
    6714 NW 34th Drive Gainesville, FL 32653</p>
    <p>
    <!-- End Sign-Up Form -->
    <!-- End Sign-Up Form -->
    </p>
    <form action="gdform.asp" method="post"
    enctype="text/plain" name="email" id="email">
    <p>Would you like to subscribe to our email list so
    you can be notified of upcoming events?
    yes
    <input type="radio" name="subscribe" id="radio"
    value="radio" />
    no
    <input type="radio" name="subscribe" id="radio2"
    value="radio2" />
    </p>
    <p>email address:
    <input name="email address" type="text" id="email
    address" size="40" />
    </p>
    <p>
    <input type="submit" name="button" id="button"
    value="Subscribe" />
    <input name="recipient" type="hidden" id="recipient"
    value="[email protected]" />
    </p>
    </form>
    </div>
    </div>
    </div><!--end container div -->
    </body>
    </html>
    Thanks!
    Kate

    > <h4><img src="/images/Rocking Horse Video.jpg"
    width="100" height="70"
    > class="image-left" />How was your last ?Horse Shows
    In The Park??? Wasn?t
    > it
    > fabulous?? Wasn?t it a total blast?? How was your horse
    over the jumps??
    > Weren?t those little girls with their pigtails and
    ponies adorable??
    > (Well, I
    > guess they were cute when they weren?t beating you.)?
    Did you take home
    > something (besides all those ribbons) ?that truly
    captured the magic of
    > that
    > weekend , something that was yours to keep
    forever?</h4>
    That's a big chunk of <h4>!
    > That?s what Rocking Horse Video is all about.? Rocking
    Horse Video
    > creates
    > high-definition DVDs of you and your horse that you can
    enjoy for years
    > to
    > come.? Check out those rides.? Feel the exciting
    ambience of the show
    > every
    > time you watch your DVD.? These DVDs are more than a two
    minute ride to
    > classical music.? Rocking Horse Video edits raw footage
    with
    > state-of-the-art
    > software to high-light your horse?s performance and
    reproduce more than a
    > ride.?? Every time you watch you get to experience the
    whole horse show
    > all
    > over again.
    That's a big chunk of nothing. You cannot have bare text like
    that on a
    page. It would have to be within a <p> tag, or
    something.
    > <form action="gdform.asp" method="post"
    enctype="text/plain"
    > name="email"
    > id="email">
    You are sending your form to a file called "gdform.asp" that
    is at the same
    folder level as this file. Is that file *there*?
    (it has nothing to do with a scripts folder)
    Murray --- ICQ 71997575
    Adobe Community Expert
    (If you *MUST* email me, don't LAUGH when you do so!)
    ==================
    http://www.projectseven.com/go
    - DW FAQs, Tutorials & Resources
    http://www.dwfaq.com - DW FAQs,
    Tutorials & Resources
    ==================
    "dreamer spiderwoman1" <[email protected]>
    wrote in message
    news:[email protected]...
    >I have an email form on my index page. The form is not
    collecting data.
    >Any
    > suggestions?
    >
    > Here's the code:
    >
    ...snip...
    >
    > <!--content for container goes here -->
    >
    > <div id="main">
    > <div id="story">
    > <h1 class="style1">Rocking Horse Video</h1>
    > <h2 class="style2">High-Definition DVDs</h2>
    > <h4><img src="/images/Rocking Horse Video.jpg"
    width="100" height="70"
    > class="image-left" />How was your last ?Horse Shows
    In The Park??? Wasn?t
    > it
    > fabulous?? Wasn?t it a total blast?? How was your horse
    over the jumps??
    > Weren?t those little girls with their pigtails and
    ponies adorable??
    > (Well, I
    > guess they were cute when they weren?t beating you.)?
    Did you take home
    > something (besides all those ribbons) ?that truly
    captured the magic of
    > that
    > weekend , something that was yours to keep
    forever?</h4>
    > That?s what Rocking Horse Video is all about.? Rocking
    Horse Video
    > creates
    > high-definition DVDs of you and your horse that you can
    enjoy for years
    > to
    > come.? Check out those rides.? Feel the exciting
    ambience of the show
    > every
    > time you watch your DVD.? These DVDs are more than a two
    minute ride to
    > classical music.? Rocking Horse Video edits raw footage
    with
    > state-of-the-art
    > software to high-light your horse?s performance and
    reproduce more than a
    > ride.?? Every time you watch you get to experience the
    whole horse show
    > all
    > over again.
    > <h2>Critique Your Rides</h2>
    > <p>Rocking Horse Video gives you high-definition
    DVDs that entertain,
    > educate, and sell.? See you and your horse in action and
    make your next
    > horse
    > show an even better one.? (You just have to beat those
    ponies next
    > time.)?
    > This is an affordable way to improve your performance
    for competitions to
    > come.?? Go over the video with your trainer and get
    double the
    > benefit.</p>
    > <h2>Sell Your Horse</h2>
    > <p>Order a marketing video to show prospective
    buyers hands down how
    > well
    > your horse performs in the show ring.</p>
    > <!--content for story div goes here
    --></div>
    >
    > <!--content for div main goes here -->
    >
    > <div id="sidebar"><h2><img
    src="/images/L'il Mite and Peanutbutter.jpg"
    > width="150" height="113" class="image-left" />Capture
    Your Precious
    > Memories</h2>
    > Get a DVD at every show.
    > <h5 align="left"><span
    class="style2">?Contact Rocking Horse
    > Video</span><img src="/images/Rocking Horse
    Video.jpg" width="100"
    > height="70"
    > class="image-right" /></h5>
    > <p>By Email: <a
    href="mailto:[email protected]"
    > class="style3">[email protected]</a><a
    > href="mailto:[email protected]"></a><br
    />
    > By Phone: (352)281-0322<br />
    > By Mail: Rocking Horse Video<br />
    > 6714 NW 34th Drive Gainesville, FL 32653</p>
    > <p>
    >
    > <!-- End Sign-Up Form -->
    > <!-- End Sign-Up Form -->
    > </p>
    > <form action="gdform.asp" method="post"
    enctype="text/plain"
    > name="email"
    > id="email">
    > <p>Would you like to subscribe to our email list
    so you can be
    > notified of
    > upcoming events?
    > yes
    > <input type="radio" name="subscribe" id="radio"
    value="radio" />
    > no
    > <input type="radio" name="subscribe" id="radio2"
    value="radio2" />
    > </p>
    > <p>email address:
    > <input name="email address" type="text" id="email
    address" size="40"
    > />
    >
    > </p>
    > <p>
    > <input type="submit" name="button" id="button"
    value="Subscribe" />
    > <input name="recipient" type="hidden" id="recipient"
    > value="[email protected]" />
    > </p>
    > </form>
    >
    > </div>
    > </div>
    > </div><!--end container div -->
    > </body>
    > </html>
    >
    > Thanks!
    >
    > Kate
    >

  • How to add a new view in Factsheet to collect data from R3

    Hi Experts,
    I need to add a new view in Account Factsheet called  'Open Delivery data'
    which will collect the delivery data from R3 system.
    As I know we have two Function Modules (at CRM) 'CRMT_ERP_FACT_SHEET_RETRIEVE'
    (at R3) 'CRM_CCKPT_EXPORTSUMMARY'
    All We need to do is create view which calls the data from R3 Via these modules.
    How should I proceed.
    Is this relevent steps :-
    http://wiki.sdn.sap.com/wiki/display/CRM/Howtodisplayaz-tableinanassignmentblock
    Regards,
    Ram

    Hi Sandeep,
    To add a new currency in Metadata, just add in Currencies dimension, and to add in Data form-just send the script what you are using as of now for rest of the currencies, or follow the same steps as specified above. or just add the script A#CLORATE.w#Periodic.C2#XYZ in rows of your data form (where XYZ- is the new currency).
    To add a new location in FDM login to FDM web client- click on Metadata--> locations and select the Controls review location where you want to add the data load location, right click and add the new location.

  • How to reset values in a Data Form Bean?

    I have created an ADF application that has a search facility in it. The architecture is as follows:
    DataPage (search.jsp) --> DataAction (validateSearch) -->DataAction (refreshCollection) --> DataPage (results.jsp)
    I have successfully created a data form bean to hold the data that is submitted in the search and bind it to the refresh method of the collection. I have also successfully overridden the validate method, which catches and throws and displays appropriate ActionErrors on the search.jsp page.
    I have added a link back to the search.jsp page from the results.jsp page (as a user may wish to perform another search), the ActionErrors are resetting ok but I have not managed to work out how to reset the values of the actual data form bean.
    I have tried several different ways of overriding the reset method within the data form bean but so far have been unsuccessful - I would appreciate any assistance with this matter.
    Shown here is a basic example of a form bean that I have been trying different things out with - I can not get the reset method to even be called - please help!
    package uk.dmf.eg02;
    import javax.servlet.http.HttpServletRequest;
    import org.apache.struts.action.ActionError;
    import org.apache.struts.action.ActionErrors;
    import org.apache.struts.action.ActionForm;
    import org.apache.struts.action.ActionMapping;
    public class searchForm extends ActionForm
    String search;
    public setupForm()
    public ActionErrors validate(ActionMapping mapping, HttpServletRequest request)
    ActionErrors errors = new ActionErrors();
    if (search.trim().length()==0)
    errors.add("search", new ActionError("error.search"));
    return errors;
    public void reset(ActionMapping mapping, HttpServletRequest request)
    System.err.println("EXECUTING RESET METHOD");
    this.search = "";
    public void setSearch(String search)
    this.search = search;
    public String getSearch()
    return search;

    If you run in request scope the reset method is called, however in session scope is't only called once (or never?). See documentation of method reset():
    public void reset(ActionMapping mapping,
    javax.servlet.http.HttpServletRequest request)
    Reset bean properties to their default state, as needed. This method is called before the properties are repopulated by the controller.
    The default implementation does nothing. In practice, the only properties that need to be reset are those which represent checkboxes on a session-scoped form. Otherwise, properties can be given initial values where the field is declared.
    If the form is stored in session-scope so that values can be collected over multiple requests (a "wizard"), you must be very careful of which properties, if any, are reset. As mentioned, session-scope checkboxes must be reset to false for any page where this property is set. This is because the client does not submit a checkbox value when it is clear (false). If a session-scoped checkbox is not proactively reset, it can never be set to false.
    This method is not the appropriate place to initialize form value for an "update" type page (this should be done in a setup Action). You mainly need to worry about setting checkbox values to false; most of the time you can leave this method unimplemented.

  • Collective Planned orders Scheduling for lower level orders with reference to the Superior order

    Hi All,
    Collective planned order scheduling.
    I have been trying to reschedule the superior planned order and i was expecting the lower level planned orders to reschedule based on the superior planned order.
    My problem is
    when i try to reschedule the superior planned order the system is not rescheduling the lower level planned orders.
    For example if i change the basic finish date of superior planned order as 30/09/2014 and reschedule the planned order it is only scheduling the header planned order and the lower level planned order is not scheduling.
    Could some one tell me why this is not happenning at planned order level.
    As the rescheduling of collective order will work at production order level but for some reason it is not happening at planned order level(as there is no option available to do so).
    Please give your thoughts on this asap.
    Mahee.

    Hello Mahee
    Please observe that your system is working as designed. Planned orders are scheduled independently, even when they are part of a network/collective order. Note 152319 explains the planned order scheduling in detail and it provides the following information:
    * No scheduling of overall networks is executed although a directly manufactured component is assigned.
    Note that no scheduling of the overall network is executed for planned orders. For the components requirements dates are determined. In order to cover them, planned orders are created in the next MRP run. Since the requirements are not managed using the exact time, the results of the planned order scheduling and of a scheduling of the overall network of the converted collective order can differ.
    BR
    Caetano

  • How to stop scheduled ship date and scheduled arrival date from defaulting to sysdate

    Hello,
    We have a business scenario where we are deriving scheduled ship date and scheduled arrival date outside and then imported in the instance with the order. However we find that the scheduled ship date and scheduled arrival date are defaulting to sysdate. The atp flag is set to N for these items. I have checked the defaulting rules, there is no such defaulting rule set for scheduled ship date or arrival date ( screenshot attached) Please share your thoughts on how can I stop scheduled ship date and arrival date date from defaulting to sysdate ?
    Thanks
    Rajesh

    Hi
    Please visit following link. It may be useful.
    How to prevent auto default of schedule ship date in sales order form
    HTH
    sd

  • Is it possible using SQLite to collect data from an older SQL database?

    Is it possible using SQLite to collect data from an older SQL database? Where can I find a possible answer. Thanks in advance.

    There are 3rd-party tools (see comprehensive list at http://www.kenhamady.com/bookmarks.html) that provide extra pdf functionality on top of the pdf export from Crystal. 
    In the case of my Visual CUT software, you can use hidden formulas inside your Crystal report to generate form fields (pre-populated as well as empty) as part of the pdf export process.
    hth,
    ido

  • Does anyone have a suggestion for a device that I can upload data to from an iPod when there is no wi-fi available? I'm using iForm to collect data and I need to get it uploaded to a database.

    can anyone recommend a device to upload data from an iPod when no wi-fi is available? I am using iForm to collect data in the field and I want to be able to upload it periodically.

    Hi there,  I'm myseld using the Application data-field in order to collect mobile forms OFFLINE.
    I can collect as many mobile form as i want BUT, of course, need to be online to sync the data from mobile to their cloud.
    Hope that helps.
    Otherwise, would probably need to plug ur idevice and look for the application database with such tool as iConnector.

  • Unable to Access Data Form with Users Provisioned as 'Planner'

    Hello,
    I am currently experiencing an issue that I can't seem to resolve. I was hoping someone else might have some insight and/or have come across this issue.
    I created two data forms. Users have been assigned permissions to the dimensions included in the data form. I have also assigned users access to the data form. The model is a single currency model.
    Upon logging into the application, the user is unable to open the data form unless he/she is provisioned as an 'Administrator'. Provisioning the user as a 'Planner' or 'Interactive User' does not allow the user to open the data form. The following message appears:
    *"Security and/or filtering has resulted in a required dimension not being represented on this data form."*
    My data form uses the following dimensions:
    POV: ELEMENT
    PAGE: SCENARIO, YEAR, VERSION, ENTITY
    ROWS: ACCOUNT
    COLUMNS: PERIOD
    We are currently implementing Hyperion Planning 11.1.2.0. The operating system is Windows Server 2008 64-bit R2.
    Any advice/suggestions on how to resolve this would be greatly appreciated. Thank you.
    Corey

    I went ahead a created a data form that just used level 0 members and confirmed that the user had access to the members defined in the form. Still no luck.
    I also checked to make sure the filters existed in Essbase. Here is what I found in Essbase:
    Access: None
    Member Specification: @IDES("Account"),@IDES("Scenario"),@IDES("Version"),@IDES("Entity"),@IDES("NTTA_ELEMENT")
    I have no issues accessing the data through the Essbase Add-in.
    I did notice some additional items in my Planning setup:
    1. Task>Manage Process - Sub-Status states 'Failed' when I attempt to validate
    2. Task>Manage Process - Status changes from 'Not Started' to 'Under Review' when I start the cycle.
    3. Dimension Security - Users are attached to a group that has write access at the Descendent(Inclusive) level.
    4. In the Account, Department, Scenario and Version dimensions I also setup the user to have write access at the member level.
    As for my earlier post with the data forms, that was just my way of showing the dimensions used. I do have two data forms, 1) with top level and descendants/children and 2) with level 0 members only.
    I checked the logs and there isn't really much info there. I have a case open with Oracle and a webex scheduled for tomorrow.
    Thoughts?
    Thanks
    Corey

  • SP2013 alternative for Collect Data workflow task?

    SP2010 offered a workflow action named Collect Data, allowing for easy data collection from users without having to create custom ASPX forms. Apparently, SP2013 no longer offers this feature.
    I'm doing a SP2013 project now that absolutely inhibits me from doing any custom development, so I'm trying to find an easy way to collect data from users in a SP2013 without having to do custom coding. Are there alternatives?

    Hi,
    I understand that there is a big list of workflow actions that are not available in SharePoint 2013. However, SharePoint 2013 still allows users to create workflows on the SharePoint 2010 platform. If you need these legacy actions, make sure you select the
    "Platform Type" as SharePoint 2010 when you create the workflow. You cannot change the platform type once the workflow is created.
    Source link:
    What's new in workflow in SharePoint Server 2013
    http://technet.microsoft.com/en-us/library/jj219638.aspx
    Tracy Cai
    TechNet Community Support

  • SPD 2010 Workflow "Collect Data From User" activity + Multi User selection

    Creating a SPD 2010 workflow. Trying to do something that I think should be simple.
    Use a “Collect Data From a User” activity to collect 0 to many “people” that should be affiliated with a piece of content (Discussion).
    After the assigned user completes the task (and after ensuring that there have actually been people associated from the task) I want to take the “people” from the Task list item and move them over to a field on the core Discussion item,
    that is also setup as a Person/Group field (allowing multiple).
    I have tried using both the “Set Field in Current Item” and “Update List Item” activities to map the data over (pulling from the Task item) and in both cases tried using every combination of “Return field as”
    values to do the mapping (i.e. ‘String’, ‘Display Names, Semicolon Delimited’, ‘User Ids, Semicolon Delimited’, etc). In some cases I get vague errors about not being able to do mapping (I get it), in others, it sets the
    data, but only to the first user entered in the Task’s instance of the field.
    After researching a bit, I find that the task from which I am pulling the data only contains one value, eventhough when I submitted the InfoPath form for the task, it accepted my data entry of two
    different users. So I think somewhere between the data entry into the custom task's infopath form, and the update of the same data field in the Task list, the value is being lost.
    I am sure this would be trivial with a custom activity, but we are exploring OOB ways of doing things and I have to imagine this is possible.
    Am I missing something here? This seems “buggy”…
    I am able to repro this in two different environments, using an out-of-box Discussion Board on an out-of-box Team Site.  If it matters Claims Based Auth against Windows only...
    TIA!
    Brian McCullough

    Hi brianpmccullough,
    Collect Data from a user action can only use to collect data from one user, and if you need to collect data from one than one user, please use “Assign
    a Form to a Group” instead, then it will create separate task for each user.
    And if we need to update a user and group field which with multiple selections enabled, we can only use lookup field to get only the one user. And
    to add multiple users to this field, we can only use String Builder, type the user account directly or get information from multiple fields.
    Best regards
    Emir Liu
    TechNet Community Support

Maybe you are looking for

  • How to post a link (URL) in "Apple Discussions"

    You can shorten your links (URLs) by using HTML coding. This is preferable when the URL is very long. Posting the entire URL can extend the width of a post beyond the range of many computer screens. This can make a post difficult to read, as it neces

  • JTextArea wordwrap according to the window size

    Hi All, I have a problem with JTextArea. I am constructing my UI as explained below: 1. Panel with GridBagLayout. 2. This panel have a grid of component. Each row will have a text area as a description and a text field to enter the value [ Text Area

  • Trouble setting HeadingFormat on table created exclusively by VBA

    I'm taking the text from the Notes pages of a PowerPoint presentation, and turning it into a table in Word. Each slide has a row in a table, with one of the columns being the text from the notes page of the slide. So far so good! The first row in the

  • How should a family use Ping?

    Home sharing requires that everyone in the house use the same Apple ID, so the three of us share one ID. Ping is also based off of the Apple ID. Does only one of us get to use Ping, or is there a way I haven't seen to allow personalization per indivi

  • Time Capsule firmware 7.6.1 & PPPoE

    I have struggled with DSL line drops since updating my TC to fimware 7.6.1. The drop occured first maybe 15 minutes after the firmware update.  After 4 visits from an ATT tech all lines and connections were perfect but I still had the drops. Many peo