Hi!!!Can anyone suggest how to change data block dynamically using input

Hi all,
Here is my requirement...I have a datablock which has 7 columns, these coloumn represent dates. I have a header in which I will input the date[b] from and to ( this is restricted to not more than one month). Now when I enter these 2 date fields in header, My 7 coloumn data block need to be changed to 'n' number of coloumn( which is less than 1 month) as per input fields. Can I do this, if we can then please give me the guide lines.
Thank you

it is a good solution Jeneesh, because it is the only one.
You cannot create items dynamically at runtime, so you have to create them in your form at designtime and show and hide them.

Similar Messages

  • While updating I lost all my data photos etc can anyone suggest how to restore my lost data on my iPad 2

    Hi I had updated and now have the iOS 7 but in the process lost all my precious data photos videos notes etc
    Can anyone suggest how to restore how to recover the lost data

    Restore from your iTune or iCloud backup if you have one.

  • Can anyone suggest how I can save voicemails from my dad who passed away.

    I am preparing to change carriers. Can anyone suggest how I can save voicemails from my dad who passed away?  Im not familiar with Icloud but I cannot lose these voicemails. Please help thanks

    Play them into a recorder.  Many computers have built-in microphones and record and save them as a .wav file.  On a PC you can use Sound Recorder or QuickTime Player.  On a Mac you can use QuickTime Player (see "Recording  with QuickTime Player" here: Mac Basics: QuickTime Player creates, plays, edits, and shares video and audio files).
    You might also try contacting your carrier as some allow you to download them from your account on their website.

  • My iPad was logging me out so I have reset it - I cannot log into iCloud now and also my login for app updates defaults to an incorrect email address can anyone suggest how to re configure

    My iPad was logging me out so I have reset it - it retained all apps but I cannot now log into iCloud and when downloading apps it defaults to the wrong email details so the iPad doesn't recognise it to update - can anyone suggest how to resolve this

    Have you attempted to access your Apple ID through iforgot.apple.com ?
    If you have access to the internet, you should be able to go through the process of resetting your Apple ID password via security questions or email.
    Assuming that you use the same Apple ID for iCloud and the iTunes/App Stores, resetting your password may help you log back into iCloud and the iTunes/App Stores.

  • When updating iTunes on my Windows PC, I am getting a M/S Visual C   runtime error...can anyone suggest how to fix it?

    When updating iTunes on my Windows PC, I am getting a M/S Visual C   runtime error...can anyone suggest how to fix it?

    It has been discussed a few times, and is even available in the Apple support web site.  Basically, you need to un-install all teh Apple software you have installed, then re-install it all.  When you re-install, right click on theinstaller and select "Run as Administrator" to make sure it has The proper rights to complete the installation.

  • Can anyone suggest how to check  JSP version

    can anyone suggest how to check JSP version

    How to check JSP version of what? Your server?
    Handy little JSP page to do just that:
    Working with server: <%= application.getServerInfo() %><br>
    Servlet Specification: <%= application.getMajorVersion() %>.<%= application.getMinorVersion() %> <br>
    JSP version: <%= JspFactory.getDefaultFactory().getEngineInfo().getSpecificationVersion() %><br>
    Sessionid : <%= session.getId() %><br>

  • Hi, I've lost sound on my IPad can anyone suggest how to get it back please? Thanks JG

    Hi I've list the sound on my IPad can anyone suggest how to get it back please? Thanks

    Hello Brumell,
    Thanks for using Apple Support Communities.
    I understand that you are unable to hear anything from the speakers on your iPad.  To troubleshoot this issue, I'd like you to follow the instructions in the article below.  Even though the article states it's for iPhone, the same troubleshooting applies to your iPad.
    iPhone: No sound or distorted sound from speaker
    http://support.apple.com/kb/ts5180
    Take care,
    Alex H.

  • Can anyone help how to print stack trace messages using log4j?

    Can anyone help how to print stack trace messages using log4j?

    <?xml version="1.0" encoding="UTF-8" ?>
    <!DOCTYPE log4j:configuration SYSTEM "log4j.dtd">
    <log4j:configuration xmlns:log4j='http://jakarta.apache.org/log4j/'>
    <appender name="STDOUT" class="org.apache.log4j.ConsoleAppender">
    <layout class="org.apache.log4j.PatternLayout">
    <param name="ConversionPattern" value="%d %-5p %m%n"/>
    </layout>
    </appender>
    <appender name="DEBUG" class="org.apache.log4j.RollingFileAppender">
    <param name="File" value="/usr/local/dice/d2jbin/cmdToNetJobs/app-debug.log"/>
    <param name="Append" value="true"/>
    <param name="MaxFileSize" value="1000KB"/>
    <param name="MaxBackupIndex" value="5"/>
    <layout class="org.apache.log4j.PatternLayout">
    <param name="ConversionPattern" value="%d %-5p %m%n"/>
    </layout>
    <filter class="org.apache.log4j.varia.LevelRangeFilter">
    <param name="LevelMin" value="DEBUG" />
    <param name="LevelMax" value="DEBUG" />
    </filter>
    </appender>
    <appender name="INFO" class="org.apache.log4j.RollingFileAppender">
    <param name="File" value="/usr/local/dice/d2jbin/cmdToNetJobs/app-info.log"/>
    <param name="Append" value="true"/>
    <param name="MaxFileSize" value="1000KB"/>
    <param name="MaxBackupIndex" value="5"/>
    <layout class="org.apache.log4j.PatternLayout">
    <param name="ConversionPattern" value="%d %-5p %m%n"/>
    </layout>
    <filter class="org.apache.log4j.varia.LevelRangeFilter">
    <param name="LevelMin" value="INFO" />
    <param name="LevelMax" value="INFO" />
    </filter>
    </appender>
    <appender name="WARN" class="org.apache.log4j.RollingFileAppender">
    <param name="File" value="/usr/local/dice/d2jbin/cmdToNetJobs/app-warn.log"/>
    <param name="Append" value="true"/>
    <param name="MaxFileSize" value="1000KB"/>
    <param name="MaxBackupIndex" value="5"/>
    <layout class="org.apache.log4j.PatternLayout">
    <param name="ConversionPattern" value="%d %-5p %m%n"/>
    </layout>
    <filter class="org.apache.log4j.varia.LevelRangeFilter">
    <param name="LevelMin" value="WARN" />
    <param name="LevelMax" value="WARN" />
    </filter>
    </appender>
    <appender name="ERROR" class="org.apache.log4j.RollingFileAppender">
    <param name="File" value="/usr/local/dice/d2jbin/cmdToNetJobs/app-error.log"/>
    <param name="Append" value="true"/>
    <param name="MaxFileSize" value="1000KB"/>
    <param name="MaxBackupIndex" value="5"/>
    <layout class="org.apache.log4j.PatternLayout">
    <param name="ConversionPattern" value="%d %-5p %m%n"/>
    </layout>
    <filter class="org.apache.log4j.varia.LevelRangeFilter">
    <param name="LevelMin" value="ERROR" />
    <param name="LevelMax" value="ERROR" />
    </filter>
    </appender>
    <root>
    <priority value="debug"/>
    <!--<appender-ref ref="STDOUT"/>
    --><appender-ref ref="DEBUG"/>
    <appender-ref ref="INFO"/>
    <appender-ref ref="WARN"/>
    <appender-ref ref="ERROR"/>
    </root>
    </log4j:configuration>
    I ve written like this
    and to print stack trace I used
    log.error(Throwable(e))
    but does nt display printstacktrace how to do it

  • Can anyone explain how the LO data source flows from ECC to BI up to cubes?

    Dear all,
    Can anyone explain step by step (HOW THE DATA FLOWS)....By taking 2LIS_11_VAHDR  from SD , starting from Activate Data source in ECC  to Info Cube in BI7.0. Please this will be helpful -
    Thanks for the advance answers...
    Edited by: harishk.225 on Dec 23, 2011 9:56 AM

    Hi Harish,
    First go to RSA5 in ECC  select your datasource 2LIS_11_VAHDR and activate it.
    After activatin check in RSA6 whether the datasoure activated properly or not.
    Then log on  to BI sytem Select datasource and click on replicate.
    Then Create Infocube infopackage ,Transformation, DTP ...entire flow. But dont schedule it because there is no data in SETUP Tables.For full load first we need to run statistical set up , so that data should come to SETUP Table.
    Now go to ECC  enter T.CODE OLI7BW to filled up the SETUP Table  for datasource 2LIS_11_VAHDR.
    It will ask  you for Run Name etc give the run name and time limit and execute it.
    If you get some error then first delete the SETUP Table by using Transaction Code LBWG.
    In LBWG it will ask you for applicatiion number , give 11 i.e for sales datasourc and execute it.
    Data will get deleted from SETUP Table. To check data is deleted or not  in SET UP Tabe go to database table MC11VA0HDRSETUP. Always remember the name of SETUP Table will be Extract Structure followed by SETUP.
    EX : If extract structure name is MC11VA0HDR then name of the SETUP Table will MC11VA0HDRSETUP.
    If data gets deleted then again go to 0LI7BW and run the Statistical Setup then agan check in MC1VAOHDRSETUP table contains data or not.
    Then trigger the Infopackage and DTP in BI.  Above steps was for full load.
    Now to Load deltas follow below steps.
    First Create INIT at BI side which enable delta at ECC Side.
    Then go to ECC and execute T.CODE LBWE.
    LBWE is LO Cockpit Work Bench. There we have folowng functions 1.Maintan Datasource. 2.Maintain Extract Structure. 3. Job  Control.  4.Delta Type 5.. Activate/deactivate.
    If you want to add any new field to your datasource then to to Maintain Extract Strucutere remeber before adding or modififying datasource first we should deactivate datasource by using 5th function  Activate/Deactivate.
    Then select DELTA TYPE in delta type we have four types of delta. 1. Delta Queue (RSA7) 2. Queued Delta (LBWQ)
    3. Unserialized (SM13) , 4. Seriaized (SM13)
    If you select Delta queue then deltas drectly come to RSAT.
    if you select Queued Delta  deltas goes to LBWQ then you have perform V3 job by using Job Control  function to move data from LBWQ to RSA7. Remeber to BI  data  always goes from RSA7 only.
    If you select Unserealized then delta goes to SM13 again you have to perorm V3 Job to move deltas in RSA7.
    Serialize update is not in used in Lo-cockpit.
    There is a differerence between  DELTA QUEUE , QUEUED DELTA, UNSERIALIZE UPDATE. Pls find the differences on net.
    Then select your delta type and create deltas dtp in BI and start loading .
    Hope this help you.
    In RSA7 we have two tables delta and repeat delta, to know the functionality of this please search for the documents on  net.
    Regards,
    Asim

  • Can anyone suggest how to fix batch processor performance?

    The DBA's examined the OPA batch process while it was running. Oracle was sitting idle most the time waiting on the batch processor (according to the DBA staff.) Locks were not an issue and the DB was not under any load.
    The performance is absolutely dismal and we are going to open an OPA support ticket, but would like a quick answer if anyone on this forum has a quick answer.
    (Also, if you try to kill the batch job with <ctrl-c> because it is taking too long, then it leaves the sessions and cursors open. Is there a way to gracefully shut down the batch processor?)
    We have a single simple table where the first 5 columns are conditions and the last column is a conclusion.
    I filled the table with 1,000,000 rows of conditional data. I ran with a configuration like below:
    <configuration>
    <options>
    <rulebase>../output/MyRules.zip</rulebase>
    <database>
    <url>jdbc:oracle:thin:myusername/mypassword@mydatabase:1521:mySID</url>
    <driver>oracle.jdbc.OracleDriver</driver>
    <driversrc>\myjdbcdriverpath\ojdbc6.jar</driversrc>
    </database>
    <output type="db" />
    <mappings>
    <boolean-format true-value="TRUE" false-value="FALSE" />
    <mapping entity="global" table="SSPNA_IN" primary-key="ID">
    <attribute name="bHasNoCountableIncome" field="BHASNOCOUNTABLEINCOME" />
    <attribute name="bIsResidentOfNY" field="BISRESIDENTOFNY" />
    <attribute name="cSSIBenefitAmt" field="CSSIBENEFITAMT" />
    <attribute name="tFedLivingArrangementCD" field="TFEDLIVINGARRANGEMENTCD" />
    <attribute name="tManualHMOInd" field="TMANUALHMOIND" />
    <attribute name="tPaymentStatusCD" field="TPAYMENTSTATUSCD" />
    <attribute name="tPrincipleProviderCD" field="TPRINCIPLEPROVIDERCD" />
    <attribute name="cSSPNAPayment" field="CSSPNAPAYMENT" output="true" />
    </mapping>
    </mappings>
    </options>
    </configuration>

    This is definitely not something we've seen in the testing environment.
    Can you please raise a SR via Oracle Support and provide the following information?
    1. Product version. Version 10.4.1 added multi-processor support for Java database connection in case you were using 10.4.0
    2. Oracle database version
    3. Is the database installed on a physical server or a VM? What's the machine specification, i.e. CPU and memory size?
    4. Is the SSPNA_IN table indexed?
    5. What is the logging level? Does it help if you change the logging level to ERROR?
    6. Please provide the rulebase project and DDL/DML to create tables and insert sample data.

  • E-mail filtering in iCloud mail is amateurish and nearly useless. No booleans. No nested rules. Can anyone suggest how I can get these things in iCloud or Mac Mail?

    I need some real sophisticated filtering and I can't figure out how to do this with Mail on the iPad. No booleans, (and, not, etc.) no redirects. This is nearly useless in a real world setting

    I'm afraid that whether or not there are any plans about this, Apple don't tell us. If they do decide to increase the facilities we will only know when they implement it. (And by the Terms of Us of these Discussions we are not allowed to speculate.)

  • Using Outlook 2011 on new Macbook, I am getting error code 50 The message could not be sent because it has unresolved recipients."  Can anyone suggest how to resolve this?  Thank you!

    I have used Outlook since it came out and am using it on new Macbook Air.  Today, I started getting this message. 
    thank you!
    Gary

    It sounds to me like some of the addressees in an email message you're tryijng to send are not legitimate.  Perhaps you're trying to use Apple's Contacts address book instead of Outlook's.  Check each outgoing address in the message.

  • How to change date format of user input prompt in infoview.

    Hi All,
    Every report webi or deski having date field as prompt when viewed in view mode in infoview shows date format as M/d/yyyy h:mm:ss a.
    Where this format is stored and how can we change it to dd/mm/yyyy.
    Any ideas.
    Regards,
    Gaurav

    Not sure id this helps...
    I was up against a similar issue of placing the user input dates, Starting & Ending, into one cell for a reference on each report header. After a few hours of diligence, I came up with a working model that finally worked:
    u_StartDateAsTXT=FormatDate(ToDate(UserResponse("Enter Date/Time Shipped (Start):");"MM/dd/yyyy hh:mm:ss a");"MM/dd/yyyy")
    and
    u_EndDateAsTXT=FormatDate(ToDate(UserResponse("Enter Date/Time Shipped (END):");"MM/dd/yyyy hh:mm:ss a");"MM/dd/yyyy")
    The report header has the following function:
    =u_StartDateAsTXT + u201C u2013 u201C + u_EndDateAsTXT

  • How to change company logo dynamically using login information of the user in flex4 CSS styl method?

    hi all,
    I am doing mxml flex4 web application. i am using a login in my application. this login for multi user  purpose.
    My need is when a user login using his username and password his company logo should show the top of my application and his copyright details show the bottom of my application
    if another user login means his company logo and copywrights should show in my application.
    This logo and copyrights details should change dynamically based on the login information.
    I want to create this using CSS file (skins and sparks)
    How to do this,i am struck in this place,
    Looking for useful and helpful suggession or snippet code,
    Thanks in advance,
    Cheers,
    B.Venkatesan.

    If the user is logging in, presumably you are having the user hit a back end web-server and database and using something like Blaze to connect? Right?
    I personally would not do this with CSS. I would map the company icons to the users in the DB, retrieve the proper company icon and then pass it down (or embed it in the app) when the user logs in. Then, I would just set the source of the icon to be what I passed down:
    Add your image where you want it to go:
    <s:Image id="emptyImage" x="locationx" y="locationy".../>
    Then in your ActionScript, when the user logs in and you know what company the user belongs you could do this:
    private function loginUserBlazeResponse(resultEvent:ResultEvent):void {
    var bytes:ByteArray = ByteArray(resultEvent.target);
    emptyImage.source = bytes;
    addElement(img);
    img.visible = false;
    img.addEventListener(FlexEvent.UPDATE_COMPLETE, imageLoaded);

  • Can anyone share how to integrate Demantra Demand Management to EBS R12?

    Hi all,
    Can anyone suggest how to integrate Demantra Demand Management to EBS R12?
    I use Demantra 7.2 and EBS R12.
    I search in Manual and in some blogs but not much data support. If possible, I want step-by-step starting from set up such as setup the instance.
    More of my concern are;
    - Is Demantra can integrate with MRP, without APS or ASCP?
    - Is that necessary to integrate by using seed data? If I implement my series with all new series, how can I suppose to link them to EBS?
    Thank you in advance.
    Best Regards,
    Tanya T.

    Hi Tanya,
    To begin with, you can refer to the Metalink doc 434991.1 for an in-depth explanation on the integration from a technical perspective. Apart from this, there is an ocean of knowledge in the Demantra Documentation libraby in the metalink.The Implementation Guide provides an overview of the integration processes that synchronize or move data between Oracle Demantra and E-Business Suite applications.
    Now coming to your concerns:
    - Can Demantra be integrated with MRP, without APS or ASCP?
    After going through the above mentioned documents on Demantra, if you still want an integrated instance of Demantra and MRP without using APS, then it will have to be a highly customized solution.This scenario will obviously have a great impact on various business aspects,which is out of scope of this discussion.
    - Is it necessary to integrate by using seeded data?How to link new series to EBS?
    The Demantra - EBS integration adds two new responsibilities for Demand Management viz. i)Demand Management System Administrator and ii)Demand Analyst.
    The System Administrator creates a new user in the E-Business Suite with the relevant responsibility for which the user is automatically created in Oracle Demantra.
    The user with "Demand management system Administrator" responsibility can create new series that get added in the Demand management component on creation. This series can then be used as per requirement.
    I hope my comments help.Feel free for further discussions.
    Regards,
    Shekhar

Maybe you are looking for